/* ============================================================
   P. K. MISHRA — DESIGN SYSTEM
   Premium Editorial Aesthetic · Deep Navy / Ivory / Gold
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --navy: #0a1628;
  --navy-deep: #060e1a;
  --navy-mid: #132240;
  --charcoal: #1a2332;
  --charcoal-light: #243044;
  --slate: #3d4f6a;
  --ivory: #f5f0e8;
  --ivory-light: #faf7f2;
  --ivory-warm: #ede6d8;
  --cream: #e8e0cf;
  --gold: #c9a94e;
  --gold-light: #dfc76e;
  --gold-muted: #a08530;
  --gold-glow: rgba(201, 169, 78, 0.12);
  --text-dark: #0d1520;
  --text-body: #3a4557;
  --text-muted: #6b7a90;
  --text-light: #c8d0dc;
  --text-ivory: #e8e2d6;
  --white: #ffffff;
  --border-light: rgba(201, 169, 78, 0.15);
  --border-navy: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 30px rgba(10,22,40,0.1);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.15);
  --shadow-gold: 0 4px 20px rgba(201, 169, 78, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--ivory-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

.heading-lg {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.heading-md {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.heading-sm {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.body-lg { font-size: 1.125rem; line-height: 1.8; }
.body-md { font-size: 1rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.7; }

.label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.label-dark { color: var(--gold-muted); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-navy {
  background: var(--navy);
  color: var(--text-ivory);
}

.section-charcoal {
  background: var(--charcoal);
  color: var(--text-ivory);
}

.section-ivory {
  background: var(--ivory);
}

.section-cream {
  background: var(--ivory-warm);
}

/* --- Gold Separator --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem 0;
}

.gold-line-center {
  margin: 1.5rem auto;
}

/* --- Grid Systems --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* asymmetrical editorial grids */
.grid-editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.grid-editorial-reverse {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* ============================================================
   PASSWORD GATE
   ============================================================ */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.gate-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,78,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,78,0.03) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, #0d1a30 100%);
}

.gate-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,78,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gateGridShift 30s linear infinite;
}

@keyframes gateGridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.gate-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
}

.gate-emblem {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: emblemPulse 3s ease-in-out infinite;
}

.gate-emblem svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

@keyframes emblemPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,78,0.2); }
  50% { box-shadow: 0 0 0 15px rgba(201,169,78,0); }
}

.gate-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.gate-subtitle {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.gate-input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.gate-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,78,0.2);
  border-radius: var(--radius-md);
  color: var(--ivory);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-align: center;
  transition: all var(--transition-base);
  outline: none;
}

.gate-input::placeholder {
  color: rgba(200,208,220,0.35);
  letter-spacing: 0.1em;
}

.gate-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(201,169,78,0.1);
}

.gate-submit {
  width: 100%;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.gate-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.gate-submit:active {
  transform: translateY(0);
}

.gate-error {
  color: #e85d5d;
  font-size: 0.82rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all var(--transition-base);
}

.gate-error.visible {
  opacity: 1;
  transform: translateY(0);
}

.gate-footer {
  margin-top: 3rem;
  font-size: 0.7rem;
  color: rgba(200,208,220,0.25);
  letter-spacing: 0.08em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,169,78,0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-title {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,78,0.08);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,14,26,0.95) 0%,
    rgba(6,14,26,0.7) 30%,
    rgba(6,14,26,0.3) 60%,
    rgba(6,14,26,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(2rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
  max-width: 850px;
}

.hero-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201,169,78,0.12);
  border: 1px solid rgba(201,169,78,0.25);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245,240,232,0.75);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

/* Page heroes (shorter) */
.hero-page {
  min-height: 55vh;
  align-items: flex-end;
}

.hero-page .hero-content {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* ============================================================
   CARDS & CONTENT BLOCKS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

/* Dark card variant */
.card-dark {
  background: var(--charcoal);
  border: 1px solid var(--border-navy);
}

.card-dark .card-body {
  color: var(--text-ivory);
}

/* Stat cards */
.stat-card {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* Section on dark bg */
.section-navy .stat-label,
.section-charcoal .stat-label {
  color: var(--text-light);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201,169,78,0.15));
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-4px);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.timeline-year {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* dark variant */
.section-navy .timeline-title,
.section-charcoal .timeline-title {
  color: var(--ivory);
}

.section-navy .timeline-text,
.section-charcoal .timeline-text {
  color: var(--text-light);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,26,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Large featured item */
.gallery-item-lg {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .label {
  margin-bottom: 0.8rem;
  display: block;
}

.section-header .gold-line {
  margin-top: 1.2rem;
}

.section-header p {
  max-width: 650px;
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-header-center {
  text-align: center;
}

.section-header-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-header-center .gold-line {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-ivory {
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--ivory);
}

.btn-ivory:hover {
  background: var(--ivory);
  color: var(--navy-deep);
}

/* ============================================================
   BLOCKQUOTE
   ============================================================ */
.quote-block {
  position: relative;
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-left: 3px solid var(--gold);
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
}

.quote-attr {
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
}

.section-navy .quote-text,
.section-charcoal .quote-text { color: var(--ivory); }

.section-navy .quote-attr,
.section-charcoal .quote-attr { color: var(--gold); }

/* Text stat variant (for non-numeric values like 'Cabinet', 'NDMA') */
.stat-number-text {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(201,169,78,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(200,208,220,0.6);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(201,169,78,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,169,78,0.08);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(200,208,220,0.6);
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,78,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(200,208,220,0.7);
  transition: fill var(--transition-fast);
}

.footer-social-icon:hover svg {
  fill: var(--navy-deep);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--gold-light);
}

.footer-contact-line a {
  color: rgba(200,208,220,0.6);
  transition: color var(--transition-fast);
}

.footer-contact-line a:hover {
  color: var(--gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity var(--transition-elegant);
}

.fade-in.visible {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   EDITORIAL FEATURE BLOCK
   ============================================================ */
.feature-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.feature-block-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.feature-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.feature-block-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(6,14,26,0.9), transparent);
  color: var(--ivory);
}

/* ============================================================
   NEWS / INSIGHTS CARDS
   ============================================================ */
.news-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,169,78,0.1);
  transition: all var(--transition-base);
}

.news-card:hover {
  padding-left: 0.5rem;
}

.news-card-image {
  width: 140px;
  min-width: 140px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.news-card-date {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.4rem;
}

.news-card-title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(201,169,78,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.contact-detail-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail-value a {
  color: var(--navy-mid);
  transition: color var(--transition-fast);
}

.contact-detail-value a:hover {
  color: var(--gold);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,14,26,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,78,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2,
  .grid-editorial,
  .grid-editorial-reverse { grid-template-columns: 1fr; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-lg { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }

  .hero { min-height: 85vh; }
  .hero-page { min-height: 50vh; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-meta { flex-direction: column; gap: 0.5rem; }

  .news-card { flex-direction: column; }
  .news-card-image { width: 100%; }

  .timeline { padding-left: 2rem; }
  .timeline-item::before { left: -2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-lg { grid-column: span 1; }
  .stat-card { padding: 1.2rem; }
}

/* --- Utility --- */
.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-navy { color: var(--navy); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
