/* ═══════════════════════════════════════════════════════════════════════════
   ADRIAAN JANSE VAN RENSBURG — LEGAL PRACTITIONER
   Theme: White + Deep Navy + Gold
   Stack: GSAP 3.12.5, Cinzel + Inter, Pure CSS/JS
   ══════════════════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ──────────────────────────────────────────────────────────── */
:root {
  --navy:       #0C1D3A;
  --navy2:      #132847;
  --navy3:      #1B3A6B;
  --gold:       #B08D4A;
  --gold-light: #C9A84C;
  --gold-pale:  rgba(176,141,74,0.07);
  --gold-border:rgba(176,141,74,0.28);
  --white:      #FFFFFF;
  --off-white:  #F7F5F1;
  --light:      #EEF1F7;
  --text:       #0C1D3A;
  --body:       #3D4A5C;
  --muted:      #6B7A8D;
  --grey:       #9BA8B4;
  --border:     rgba(12,29,58,0.1);
  --border2:    rgba(12,29,58,0.18);
  --head:       'Cinzel', serif;
  --body-font:  'Inter', sans-serif;
  --shadow:     0 4px 24px rgba(12,29,58,0.08);
  --shadow-lg:  0 14px 48px rgba(12,29,58,0.14);
  --r:          2px;
}

/* ─── BASE ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--head); color: var(--text); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: 0.04em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: 0.03em; }
h4 { font-size: 1rem; letter-spacing: 0.08em; }
p  { line-height: 1.8; }

/* ─── UTILITIES ──────────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before { content: '— '; }
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-pad  { padding: 100px 0; }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--muted); }
[data-reveal] { opacity: 0; }
[data-stagger-group] > * { opacity: 0; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: var(--body-font);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: var(--r);
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px rgba(176,141,74,0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(176,141,74,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 20px rgba(12,29,58,0.25);
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 74px;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}
nav.nav-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(12,29,58,0.06);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-main {
  font-family: var(--head); font-size: 0.9rem;
  letter-spacing: 0.18em; color: var(--white);
  transition: color 0.35s;
}
.nav-logo-main strong { color: var(--gold-light); }
nav.nav-scrolled .nav-logo-main { color: var(--navy); }
.nav-logo-sub {
  font-size: 0.48rem; letter-spacing: 0.3em; font-weight: 700;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  transition: color 0.35s;
}
nav.nav-scrolled .nav-logo-sub { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links li a {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  padding: 8px 12px; border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
}
nav.nav-scrolled .nav-links li a { color: var(--muted); }
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); }
nav.nav-scrolled .nav-links li a:hover,
nav.nav-scrolled .nav-links li a.active { color: var(--navy); }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: var(--r);
  box-shadow: 0 4px 16px rgba(176,141,74,0.35);
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
nav.nav-scrolled .nav-cta { color: var(--white) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: background 0.35s;
}
nav.nav-scrolled .nav-burger span { background: var(--navy); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--navy);
  padding-top: 74px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(27,58,107,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(176,141,74,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0C1D3A 0%, #0A1628 60%, #111E35 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(176,141,74,0.025) 79px, rgba(176,141,74,0.025) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(176,141,74,0.025) 79px, rgba(176,141,74,0.025) 80px);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center; padding-top: 72px; padding-bottom: 80px;
}
.hero-text { max-width: 580px; }
.hero-eyebrow {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(176,141,74,0.85);
  margin-bottom: 28px; display: block;
}
.hero-title {
  font-family: var(--head);
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.1; letter-spacing: 0.02em;
  margin-bottom: 24px; overflow: hidden;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; color: var(--white); }
.hero-title .line.gold-line span { color: var(--gold-light); }
.hero-role {
  font-family: var(--head); font-size: 0.75rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-role::before, .hero-role::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(176,141,74,0.3));
}
.hero-role::after { background: linear-gradient(to left, transparent, rgba(176,141,74,0.3)); }
.hero-desc {
  font-size: 0.95rem; line-height: 1.85; color: rgba(255,255,255,0.6);
  max-width: 480px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 24px; margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(176,141,74,0.15);
  flex-wrap: wrap;
}
.hero-badge {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-badge-num {
  font-family: var(--head); font-size: 1.6rem;
  color: var(--gold-light); letter-spacing: 0.02em;
}
.hero-badge-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-svg-wrap {
  position: relative; width: 320px; height: 380px;
}
.hero-svg-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(176,141,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-svg { width: 100%; height: 100%; }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.55rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.3);
  text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(176,141,74,0.6), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── LANG STRIP ─────────────────────────────────────────────────────────── */
.lang-strip {
  background: var(--gold);
  padding: 14px 5%; text-align: center;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.32em;
  color: var(--white); text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.lang-strip span { opacity: 0.65; }
.lang-strip strong { opacity: 1; }

/* ─── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy2);
  padding: 52px 5%;
  border-bottom: 1px solid rgba(176,141,74,0.12);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  padding: 0 32px; text-align: center; position: relative;
}
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(176,141,74,0.15);
}
.stat-num {
  font-family: var(--head); font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold-light); letter-spacing: 0.02em;
  display: block; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
}

/* ─── ABOUT SECTION ──────────────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--navy);
  padding: 56px 48px;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: 'AJvR';
  position: absolute; right: -20px; bottom: -20px;
  font-family: var(--head); font-size: 9rem; font-weight: 700;
  color: rgba(176,141,74,0.05); letter-spacing: 4px;
  line-height: 1; pointer-events: none; user-select: none;
}
.about-card-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; display: block;
}
.about-cred {
  display: flex; flex-direction: column; gap: 22px;
}
.about-cred-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.about-cred-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.about-cred-item h5 {
  font-family: var(--head); font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--white); margin-bottom: 4px;
}
.about-cred-item p { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.about-card-since {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(176,141,74,0.2);
  font-size: 0.62rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.about-card-since strong { color: var(--gold); font-family: var(--head); font-size: 1.1rem; display: block; margin-top: 6px; letter-spacing: 0.1em; }
.about-text {}
.about-text h2 { margin-bottom: 24px; }
.about-text .lead {
  font-size: 1.05rem; line-height: 1.8; color: var(--text);
  margin-bottom: 24px; font-weight: 500;
}
.about-text p { color: var(--body); margin-bottom: 18px; }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.about-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--navy);
  padding: 8px 16px; border: 1px solid var(--border2);
  transition: all 0.2s;
}
.about-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ─── SERVICE PREVIEW ────────────────────────────────────────────────────── */
.services-preview { background: var(--off-white); }
.services-header {
  text-align: center; max-width: 600px; margin: 0 auto 64px;
}
.services-header h2 { margin-bottom: 16px; }
.services-header p { color: var(--muted); }
.svc-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.svc-card {
  background: var(--white); padding: 48px 40px;
  border-top: 3px solid transparent;
  transition: all 0.3s; position: relative; overflow: hidden;
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--head); font-size: 3rem;
  color: rgba(12,29,58,0.06); letter-spacing: 0.05em;
  display: block; margin-bottom: 4px;
}
.svc-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all 0.3s;
}
.svc-card:hover .svc-icon { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 16px; color: var(--navy); }
.svc-card p { font-size: 0.85rem; line-height: 1.75; color: var(--muted); margin-bottom: 28px; }
.svc-link {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px; transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 14px; }

/* ─── TIMELINE / CAREER ──────────────────────────────────────────────────── */
.timeline-section {
  background: var(--navy);
  padding: 100px 0;
}
.timeline-header { text-align: center; margin-bottom: 72px; }
.timeline-header .section-label { color: var(--gold); }
.timeline-header h2 { color: var(--white); }
.timeline-track {
  max-width: 900px; margin: 0 auto; padding: 0 5%;
  position: relative;
}
.timeline-spine {
  position: absolute; left: calc(5% + 28px); top: 0; bottom: 0; width: 1px;
  background: rgba(176,141,74,0.2);
}
.tl-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 32px; margin-bottom: 60px; position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--navy);
  flex-shrink: 0; transition: background 0.3s;
  position: relative; z-index: 1; margin-top: 6px;
}
.tl-item:hover .tl-dot { background: var(--gold); }
.tl-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(176,141,74,0.14);
  padding: 32px 36px; transition: border-color 0.3s;
}
.tl-item:hover .tl-content { border-color: rgba(176,141,74,0.32); }
.tl-year {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.26em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px; display: block;
}
.tl-content h4 { font-family: var(--head); font-size: 1rem; letter-spacing: 0.08em; color: var(--white); margin-bottom: 6px; }
.tl-firm { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; font-style: italic; }
.tl-content p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.55); }
.tl-badge {
  display: inline-block; margin-top: 14px;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 5px 12px;
  background: rgba(176,141,74,0.1); border: 1px solid rgba(176,141,74,0.25);
  color: var(--gold);
}

/* ─── RESOURCES PREVIEW ──────────────────────────────────────────────────── */
.resources-section { background: var(--white); }
.resources-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.resource-card {
  border: 1px solid var(--border);
  padding: 36px 32px; position: relative;
  transition: all 0.3s; overflow: hidden;
}
.resource-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s;
}
.resource-card:hover { box-shadow: var(--shadow); border-color: var(--border2); transform: translateY(-4px); }
.resource-card:hover::after { transform: scaleY(1); }
.resource-type {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.resource-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.resource-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.resource-link {
  margin-top: 20px; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); display: flex; align-items: center; gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.resource-card:hover .resource-link { color: var(--gold); gap: 12px; }

/* ─── NEWS GRID ──────────────────────────────────────────────────────────── */
.news-section { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card {
  background: var(--white); padding: 32px 28px;
  border-bottom: 2px solid transparent; transition: all 0.3s;
}
.news-card:hover { box-shadow: var(--shadow); border-bottom-color: var(--gold); transform: translateY(-3px); }
.news-source {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.news-card h4 { font-size: 0.95rem; color: var(--navy); line-height: 1.5; margin-bottom: 14px; }
.news-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }
.news-read {
  margin-top: 18px; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.news-card:hover .news-read { color: var(--gold); }

/* ─── CTA STRIP ──────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--navy) 100%);
  padding: 96px 5%; text-align: center;
  border-top: 1px solid rgba(176,141,74,0.12);
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.7rem,3.5vw,2.6rem); margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 40px; }
.cta-strip .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: #07142A;
  border-top: 1px solid rgba(176,141,74,0.12);
  padding: 80px 5% 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand p { font-size: 0.8rem; line-height: 1.85; max-width: 260px; margin-top: 16px; color: rgba(255,255,255,0.35); }
.f-logo { font-family: var(--head); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 2px; color: var(--white); }
.f-logo strong { color: var(--gold-light); }
.f-sub { font-size: 0.5rem; letter-spacing: 0.28em; color: var(--gold); font-weight: 700; }
.footer-col h4 { font-family: var(--head); font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: '·'; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-row { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.35); align-items: flex-start; }
.footer-contact-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(176,141,74,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.25); gap: 16px; flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ────────────────────────────────────────────── */
.page-hero {
  min-height: 52vh; display: flex; align-items: flex-end;
  padding: 0 5% 80px; position: relative; overflow: hidden;
  padding-top: 74px; background: var(--navy);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(176,141,74,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0C1D3A 0%, #0A1628 100%);
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(176,141,74,0.02) 79px, rgba(176,141,74,0.02) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(176,141,74,0.02) 79px, rgba(176,141,74,0.02) 80px);
}
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero h1 {
  font-family: var(--head); font-size: clamp(2.4rem,5vw,4.4rem);
  color: var(--white); letter-spacing: 0.03em; margin-bottom: 16px;
}
.page-hero h1 strong { color: var(--gold-light); }
.page-hero-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); max-width: 520px; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: var(--gold); }

/* ─── SERVICES PAGE ──────────────────────────────────────────────────────── */
.svc-intro { background: var(--white); padding: 72px 0 48px; }
.svc-intro p { font-size: 0.95rem; max-width: 680px; color: var(--body); }
.svc-areas { background: var(--white); padding: 0 0 100px; }
.svc-category { border: 1px solid var(--border); margin-bottom: 16px; overflow: hidden; }
.svc-cat-header {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 28px 36px; text-align: left; transition: background 0.2s;
}
.svc-cat-header:hover { background: var(--off-white); }
.svc-cat-num {
  font-family: var(--head); font-size: 1.8rem;
  color: rgba(12,29,58,0.1); flex-shrink: 0; min-width: 48px;
}
.svc-cat-header h3 { font-size: 1.05rem; color: var(--navy); flex: 1; letter-spacing: 0.05em; }
.svc-toggle-hint {
  margin-left: auto; font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(12,29,58,0.3); white-space: nowrap; flex-shrink: 0; transition: color 0.25s;
}
.svc-cat-header:not(.is-closed) .svc-toggle-hint { color: var(--gold); }
.svc-arrow { flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.svc-cat-header.is-closed .svc-arrow { transform: rotate(-90deg); }
.svc-cat-body { overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1); max-height: 2000px; }
.svc-cat-header.is-closed + .svc-cat-body { max-height: 0; }
.svc-cat-inner {
  padding: 8px 36px 40px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.svc-item {
  opacity: 1;
  padding: 24px 28px; border: 1px solid var(--border);
  transition: all 0.3s; position: relative;
}
.svc-item::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px; background: var(--gold); opacity: 0; transition: opacity 0.3s;
}
.svc-item:hover { border-color: var(--border2); box-shadow: var(--shadow); }
.svc-item:hover::before { opacity: 1; }
.svc-item-icon { color: var(--gold); margin-bottom: 14px; }
.svc-item h4 { font-size: 0.82rem; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 8px; }
.svc-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────── */
.about-page-bio { background: var(--white); padding: 100px 0; }
.about-page-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.about-page-text h2 { margin-bottom: 28px; }
.about-page-text p { margin-bottom: 18px; color: var(--body); }
.about-page-text .lead { font-size: 1.05rem; color: var(--text); font-weight: 500; line-height: 1.85; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
.skill-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 10px 14px; background: var(--light); color: var(--navy);
  border-left: 3px solid var(--gold); transition: background 0.2s;
}
.skill-tag:hover { background: var(--off-white); }
.about-awards { background: var(--off-white); padding: 80px 0; }
.awards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.award-card {
  background: var(--white); padding: 36px 30px;
  border-top: 3px solid var(--gold); text-align: center;
}
.award-icon { font-size: 2rem; margin-bottom: 16px; }
.award-card h4 { font-size: 0.88rem; color: var(--navy); margin-bottom: 10px; }
.award-card p { font-size: 0.78rem; color: var(--muted); }
.about-community { background: var(--navy); padding: 80px 0; }
.community-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.community-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(176,141,74,0.14);
  padding: 32px 28px;
}
.community-card h4 { font-size: 0.88rem; color: var(--white); margin-bottom: 10px; }
.community-card p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-section { background: var(--white); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 32px 28px; border: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start; transition: all 0.3s;
}
.contact-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  transition: all 0.3s;
}
.contact-card:hover .contact-card-icon { background: var(--navy); color: var(--gold); }
.contact-card-title {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-card-value { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.contact-card-value a:hover { color: var(--gold); }
.contact-card-sub { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.hours-card {
  background: var(--off-white); padding: 32px 28px; border: 1px solid var(--border);
  margin-top: 8px;
}
.hours-card h4 { font-size: 0.65rem; letter-spacing: 0.24em; color: var(--gold); font-family: var(--head); text-transform: uppercase; margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--navy); font-weight: 500; }
.hours-time { color: var(--muted); }
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--navy); }
.contact-form-wrap p { font-size: 0.85rem; color: var(--muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--body-font); font-size: 0.85rem;
  color: var(--text); background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7A8D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit { width: 100%; }

/* ─── RESOURCES PAGE ─────────────────────────────────────────────────────── */
.guides-section { background: var(--white); padding: 100px 0; }
.news-full-section { background: var(--off-white); padding: 80px 0; }
.blog-section { background: var(--white); padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  border: 1px solid var(--border); overflow: hidden; transition: all 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-body { padding: 28px 28px 32px; }
.blog-tag {
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.blog-card h4 { font-size: 0.95rem; color: var(--navy); line-height: 1.5; margin-bottom: 12px; }
.blog-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { padding-bottom: 60px; }
  .hero-title { font-size: clamp(2.8rem,10vw,4.5rem); }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .svc-cards { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 40px 1fr; gap: 20px; }
  .resources-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-cat-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 0; }
  .timeline-spine { display: none; }
}

/* ─── MOBILE NAV OVERLAY ──────────────────────────────────────────────────── */
#mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy); display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
#mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
#mobile-nav-overlay::before {
  content: 'AJvR';
  position: absolute; font-family: var(--head); font-size: 26vw; font-weight: 700;
  color: rgba(176,141,74,0.04); pointer-events: none; user-select: none;
  letter-spacing: 8px;
}
.overlay-close {
  position: absolute; top: 24px; right: 5%;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 1.5rem; cursor: pointer; transition: color 0.2s;
}
.overlay-close:hover { color: var(--gold); }
.overlay-links { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; width: 100%; text-align: center; }
.overlay-links a {
  font-family: var(--head); font-size: clamp(1.6rem,5vw,2.4rem);
  letter-spacing: 0.12em; color: rgba(255,255,255,0.6);
  text-transform: uppercase; padding: 10px 20px;
  transition: color 0.2s; display: block; width: 100%; text-align: center;
}
.overlay-links a:hover, .overlay-links a.active { color: var(--gold-light); }
.overlay-contact {
  margin-top: 24px; font-size: 0.75rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.12em; text-align: center; position: relative; z-index: 1;
}
.overlay-contact a { color: var(--gold); }
