/* ─── TOKENS ─────────────────────────────────── */
:root {
  --bg:           #130A24;
  --bg-2:         #1C1133;
  --bg-card:      #261845;
  --purple:       #4B1F5B;
  --purple-mid:   #6b2d82;
  --gold:         #D4A017;
  --gold-light:   #f0c84a;
  --gold-dim:     #a07810;
  --white:        #FFFFFF;
  --cream:        #F5F0E8;
  --text-muted:   rgba(245,240,232,0.6);
  --border:       rgba(255,255,255,0.09);

  /* Light section palette */
  --bg-light:     #FAF7F2;
  --bg-light-2:   #F2EDE5;
  --text-dark:    #1B0F34;
  --text-dark-sub:#3D2B56;
  --text-dark-muted: #6B5882;
  --border-light: rgba(107,45,130,0.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --font-script:  'Great Vibes', cursive;

  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.35;
}

/* ─── NAVIGATION ────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(19, 10, 36, 0.96);
  padding: 14px 56px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.07), 0 4px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px);
}
.nav-logo { height: 52px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition: transform 0.3s var(--ease-spring); }
nav.scrolled .nav-logo { height: 40px; }
.nav-logo:hover { transform: scale(1.04); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,240,232,0.65); text-decoration: none;
  position: relative; padding-bottom: 4px; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: #130A24 !important;
  font-weight: 700 !important; padding: 10px 26px !important;
  border-radius: 1px; letter-spacing: 0.1em !important;
  transition: background 0.25s, transform 0.2s var(--ease-spring) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }
.nav-cta.active { background: var(--gold-light) !important; }

/* ─── HERO ───────────────────────────────────── */
#hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: var(--bg);
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 90% at 0% 55%, rgba(107,45,130,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 45% 65% at 100% 0%, rgba(212,160,23,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 35% 45% at 85% 85%, rgba(75,31,91,0.35) 0%, transparent 50%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 80px 100px 56px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-script); font-size: clamp(3.2rem, 5vw, 5rem); color: var(--gold);
  line-height: 1; margin-bottom: 20px;
  opacity: 0; animation: fade-up 0.7s var(--ease-smooth) 0.2s forwards;
}
.hero-headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.0; letter-spacing: -0.03em;
  color: var(--cream); margin-bottom: 32px;
  opacity: 0; animation: fade-up 0.8s var(--ease-smooth) 0.35s forwards;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-tagline {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(212,160,23,0.7);
  margin-bottom: 32px;
  opacity: 0; animation: fade-up 0.7s var(--ease-smooth) 0.5s forwards;
}
.hero-tagline span.dot { opacity: 0.4; font-size: 0.55rem; }
.hero-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); max-width: 460px; margin-bottom: 48px;
  opacity: 0; animation: fade-up 0.7s var(--ease-smooth) 0.65s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.7s var(--ease-smooth) 0.8s forwards;
}
.hero-right {
  position: relative; overflow: hidden;
  opacity: 0; animation: fade-in 1.2s var(--ease-smooth) 0.3s forwards;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 30%),
    linear-gradient(180deg, transparent 50%, rgba(19,10,36,0.6) 100%);
}
.hero-right::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 3px; height: 100%; z-index: 2;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  opacity: 0.5;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 56px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  opacity: 0; animation: fade-up 0.7s var(--ease-smooth) 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,240,232,0.3); font-weight: 600;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ─── PAGE BANNER (inner pages) ─────────────── */
.page-banner {
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at -10% 100%, rgba(107,45,130,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 110% 0%, rgba(212,160,23,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 0%, rgba(107,45,130,0.2) 0%, transparent 60%);
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  opacity: 0.4;
}
.page-banner-inner {
  max-width: 1240px; width: 92%; margin: 0 auto;
  position: relative; z-index: 2;
}
.page-banner-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.0; letter-spacing: -0.03em; color: var(--cream);
  margin-bottom: 24px; margin-top: 16px;
  opacity: 0; animation: fade-up 0.8s var(--ease-smooth) 0.3s forwards;
}
.page-banner-title em { font-style: italic; color: var(--gold); }
.page-banner-desc {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); max-width: 580px;
  opacity: 0; animation: fade-up 0.7s var(--ease-smooth) 0.5s forwards;
}
.page-banner .section-eyebrow {
  opacity: 0; animation: fade-up 0.7s var(--ease-smooth) 0.15s forwards;
}

/* ─── KEYFRAMES ──────────────────────────────── */
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); } to { transform: translateX(-50%); }
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #130A24;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 16px 36px; border-radius: 1px; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s var(--ease-spring), box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,160,23,0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--cream);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 15px 36px; border-radius: 1px;
  border: 1px solid rgba(245,240,232,0.2); cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.2s var(--ease-spring);
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-2px);
}

/* ─── MARQUEE STRIP ─────────────────────────── */
.marquee-strip {
  background: var(--gold); padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0; animation: marquee 30s linear infinite; width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 20px; padding: 0 40px;
  white-space: nowrap; font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #130A24;
}
.marquee-item::before { content: '◆'; font-size: 0.45rem; opacity: 0.5; }

/* ─── SECTION UTILITIES ─────────────────────── */
.section-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05; letter-spacing: -0.025em; color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ─── SERVICES ───────────────────────────────── */
#services {
  background: var(--bg-2); padding: 120px 0;
  position: relative; overflow: hidden;
}
#services::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(75,31,91,0.2) 0%, transparent 60%);
}
.services-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto; position: relative; z-index: 1;
}
.services-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 80px;
}
.services-intro {
  font-size: 1rem; line-height: 1.8; color: var(--text-muted); padding-top: 8px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card); padding: 48px 40px;
  position: relative; overflow: hidden; cursor: default;
  transition: background 0.35s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.service-card:hover { background: rgba(75,31,91,0.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--gold); opacity: 0.4; margin-bottom: 28px;
}
.service-icon { margin-bottom: 18px; display: flex; line-height: 1; color: var(--gold); }
.service-name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--cream); margin-bottom: 14px; line-height: 1.2;
}
.service-desc {
  font-size: 0.88rem; line-height: 1.8; color: var(--text-muted);
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  transition: gap 0.25s var(--ease-spring);
}
.service-link:hover { gap: 14px; }
.service-link::after { content: '→'; font-size: 1rem; }

/* ─── SERVICE PROCESS ────────────────────────── */
.process-section {
  background: var(--bg); padding: 120px 0; position: relative; overflow: hidden;
}
.process-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(75,31,91,0.12) 0%, transparent 70%);
}
.process-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto; position: relative; z-index: 1;
}
.process-head { text-align: center; margin-bottom: 80px; }
.process-head .section-eyebrow { justify-content: center; }
.process-head .section-eyebrow::before { display: none; }
.process-head .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  position: relative;
}
.process-step {
  background: var(--bg-card); padding: 52px 36px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.process-step:hover { background: rgba(75,31,91,0.2); }
.process-step-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: rgba(212,160,23,0.08); line-height: 1; margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.process-step-icon {
  margin-bottom: 20px; display: flex; color: rgba(212,160,23,0.8);
}
.process-step h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--cream); margin-bottom: 12px;
}
.process-step p {
  font-size: 0.88rem; line-height: 1.8; color: var(--text-muted);
}
.process-step::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.process-step:hover::after { transform: scaleX(1); }

/* ─── ABOUT ──────────────────────────────────── */
#about {
  background: var(--bg); padding: 0; overflow: hidden;
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 700px;
}
.about-photo {
  position: relative; overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.about-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--bg-2) 100%),
              linear-gradient(0deg, rgba(19,10,36,0.5) 0%, transparent 50%),
              linear-gradient(135deg, rgba(107,45,130,0.3) 0%, transparent 60%);
}
.about-badge {
  position: absolute; bottom: 56px; left: 40px; z-index: 2;
  background: var(--gold); color: #130A24; padding: 20px 28px;
  border-radius: 1px;
}
.about-badge-num {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 900; line-height: 1; letter-spacing: -0.03em;
}
.about-badge-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; margin-top: 6px; opacity: 0.7;
}
.about-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 80px 100px 72px;
  background: var(--bg-2);
}
.about-body {
  font-size: 1rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px;
}
.about-signature {
  font-family: var(--font-script); font-size: 2.6rem;
  color: var(--gold); margin-top: 40px; margin-bottom: 4px; line-height: 1;
}
.about-sig-role {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
}
.about-credentials {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.about-cred-tag {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(212,160,23,0.3); border-radius: 2px;
  padding: 6px 14px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-light);
  background: rgba(212,160,23,0.06);
}
.about-cred-tag::before {
  content: '◆'; font-size: 0.45rem; color: var(--gold);
}
.about-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
}

/* ─── CAREER TIMELINE ────────────────────────── */
.timeline-section {
  background: var(--bg-2); padding: 120px 0; position: relative; overflow: hidden;
}
.timeline-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 50%, rgba(75,31,91,0.2) 0%, transparent 60%);
}
.timeline-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto; position: relative; z-index: 1;
}
.timeline-head { margin-bottom: 80px; }
.timeline-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px 100px;
  position: relative;
}
.timeline-grid::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(212,160,23,0.1) 100%);
  opacity: 0.3;
}
.timeline-item {
  position: relative; padding: 36px 0 36px 28px;
  border-left: 2px solid rgba(212,160,23,0.2);
  transition: border-color 0.3s;
}
.timeline-item:hover { border-color: var(--gold); }
.timeline-item::before {
  content: ''; position: absolute; left: -6px; top: 42px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}
.timeline-item:hover::before { opacity: 1; transform: scale(1.4); }
.timeline-date {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.timeline-role {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--cream); margin-bottom: 6px; line-height: 1.25;
}
.timeline-org {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold-light); opacity: 0.7; margin-bottom: 12px; text-transform: uppercase;
}
.timeline-desc {
  font-size: 0.88rem; line-height: 1.75; color: var(--text-muted);
}

/* ─── EDUCATION SECTION ──────────────────────── */
.education-section {
  background: var(--bg); padding: 120px 0; position: relative; overflow: hidden;
}
.education-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0% 50%, rgba(75,31,91,0.18) 0%, transparent 60%);
}
.education-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto; position: relative; z-index: 1;
}
.education-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); margin-top: 64px;
}
.edu-card {
  background: var(--bg-card); padding: 48px 44px;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.edu-card:hover { background: rgba(75,31,91,0.2); }
.edu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.edu-card:hover::before { transform: scaleX(1); }
.edu-degree {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--cream); margin-bottom: 8px; line-height: 1.3;
}
.edu-school {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.edu-year {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}
.edu-field {
  font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); margin-top: 14px;
}
.edu-badge {
  display: inline-block; margin-top: 16px;
  background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 1px;
}

/* ─── WHY CHOOSE ─────────────────────────────── */
#why {
  background: var(--bg-card); padding: 120px 0;
  position: relative; overflow: hidden;
}
#why::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 0% 100%, rgba(75,31,91,0.25) 0%, transparent 60%);
}
.why-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
  position: relative; z-index: 1;
}
.why-reasons { display: flex; flex-direction: column; gap: 0; margin-top: 52px; }
.why-item {
  display: flex; gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: rgba(212,160,23,0.2); line-height: 1; flex-shrink: 0; width: 48px;
}
.why-item-text h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--cream); margin-bottom: 8px;
}
.why-item-text p {
  font-size: 0.88rem; line-height: 1.75; color: var(--text-muted);
}
.why-visual { position: relative; top: 0; }
.why-img-wrap {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 1px;
}
.why-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.why-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19,10,36,0.6) 100%);
}
.why-stat-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); margin-top: 1px;
}
.why-stat-box {
  background: var(--bg-card); padding: 28px 32px; text-align: center;
}
.why-stat-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 900;
  color: var(--gold); line-height: 1; letter-spacing: -0.03em;
}
.why-stat-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 8px;
}

/* ─── IMPACT STRIP ───────────────────────────── */
#impact {
  background: linear-gradient(135deg, #D4A017 0%, #e8b420 50%, #D4A017 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
#impact::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg, transparent, transparent 40px,
      rgba(0,0,0,0.02) 40px, rgba(0,0,0,0.02) 41px
    );
}
.impact-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.impact-item {
  text-align: center; padding: 24px 20px;
  border-right: 1px solid rgba(0,0,0,0.1);
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 900; color: #130A24; line-height: 1; letter-spacing: -0.03em;
}
.impact-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(19,10,36,0.65); margin-top: 10px;
}

/* ─── SPEAKING / PROJECTS ────────────────────── */
#projects {
  background: var(--bg-2); padding: 120px 0; overflow: hidden;
}
.projects-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto;
}
.projects-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 64px;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto; gap: 1px; background: var(--border);
}
.project-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
  background: var(--bg-card);
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-smooth);
}
.project-card:hover img { transform: scale(1.05); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19,10,36,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  opacity: 0; transition: opacity 0.35s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.project-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--cream); line-height: 1.2;
}
.project-placeholder {
  background: var(--bg-card); display: flex; flex-direction: column;
  justify-content: flex-end; padding: 36px 32px; border: none;
  transition: background 0.3s;
}
.project-placeholder:hover { background: rgba(75,31,91,0.4); }
.project-placeholder .project-tag { opacity: 1; margin-bottom: 10px; }
.project-placeholder .project-name { font-size: 1.25rem; color: var(--cream); font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
.project-placeholder .project-overlay { opacity: 1; position: static; background: none; padding: 0; }

/* ─── SPEAKING TOPICS ────────────────────────── */
.topics-section {
  background: var(--bg); padding: 120px 0; position: relative; overflow: hidden;
}
.topics-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0% 50%, rgba(75,31,91,0.2) 0%, transparent 60%);
}
.topics-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto; position: relative; z-index: 1;
}
.topics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); margin-top: 64px;
}
.topic-card {
  background: var(--bg-card); padding: 48px 40px;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.topic-card:hover { background: rgba(75,31,91,0.25); }
.topic-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.topic-card:hover::before { transform: scaleX(1); }
.topic-icon { margin-bottom: 20px; display: block; color: var(--gold); }
.topic-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--cream); margin-bottom: 14px; line-height: 1.2;
}
.topic-desc {
  font-size: 0.88rem; line-height: 1.8; color: var(--text-muted);
}

/* ─── BOOKING CALLOUT ────────────────────────── */
.booking-callout {
  background: var(--bg-card); padding: 100px 0; position: relative; overflow: hidden;
}
.booking-callout::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(75,31,91,0.3) 0%, transparent 70%);
}
.booking-inner {
  max-width: 1240px; width: 92%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  position: relative; z-index: 1;
}
.booking-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--cream); line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.booking-text h2 em { font-style: italic; color: var(--gold); }
.booking-text p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 36px;
}
.booking-details { display: flex; flex-direction: column; gap: 20px; }
.booking-detail {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 1px; transition: border-color 0.25s;
}
.booking-detail:hover { border-color: rgba(212,160,23,0.3); }
.booking-detail-icon {
  flex-shrink: 0; margin-top: 2px; color: var(--gold);
}
.booking-detail-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.booking-detail-text {
  font-size: 0.88rem; line-height: 1.7; color: var(--text-muted);
}

/* ─── CONTACT FORM ───────────────────────────── */
.contact-section {
  background: var(--bg-2); padding: 120px 0; position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(75,31,91,0.2) 0%, transparent 60%);
}
.contact-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start;
  position: relative; z-index: 1;
}
.contact-info { position: sticky; top: 120px; }
.contact-info-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--cream); margin-bottom: 20px; margin-top: 24px; line-height: 1.2;
}
.contact-info p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-detail-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.contact-detail-item:first-child { border-top: 1px solid var(--border); }
.contact-detail-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.contact-detail-value {
  font-size: 0.95rem; color: var(--cream);
}
.contact-detail-value a {
  color: var(--cream); text-decoration: none; transition: color 0.25s;
}
.contact-detail-value a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--cream); font-family: var(--font-body); font-size: 0.9rem;
  padding: 14px 18px; border-radius: 1px; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(212,160,23,0.5);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.07);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.7; }
.form-submit {
  margin-top: 8px; align-self: flex-start;
}

/* ─── VIDEOS ─────────────────────────────────── */
#videos {
  background: var(--bg); padding: 120px 0;
  position: relative; overflow: hidden;
}
#videos::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(107,45,130,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.vid-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto; position: relative;
}
.vid-head { text-align: center; margin-bottom: 72px; }
.vid-eyebrow { justify-content: center !important; }
.vid-eyebrow::before { display: none !important; }
.vid-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.vid-title { color: var(--cream) !important; }
.vid-subtitle {
  font-size: 0.92rem; color: var(--text-muted); margin-top: 12px;
  font-family: var(--font-body); letter-spacing: 0.02em;
}
.vid-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.vid-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth), border-color 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 1px 4px rgba(0,0,0,0.2);
}
.vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 4px 12px rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.3);
}
.vid-card:hover .vid-arrow { transform: translateX(4px); }
.vid-thumb {
  position: relative; height: 150px; overflow: hidden; flex-shrink: 0;
}
.vid-thumb-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease-smooth);
}
.vid-card:hover .vid-thumb-bg { transform: scale(1.04); }
.vid-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-smooth);
}
.vid-card:hover .vid-thumb-img { transform: scale(1.04); }
.vid-thumb::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(19,10,36,0.3) 0%, rgba(19,10,36,0.65) 100%);
  z-index: 1;
}
.vid-play { z-index: 2; }
.vid-fb-badge { z-index: 2; }
.vid-thumb-bg--1 {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212,160,23,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(107,45,130,0.4) 0%, transparent 55%),
    linear-gradient(135deg, #1C1133 0%, #2e1050 50%, #1a0a28 100%);
}
.vid-thumb-bg--2 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,160,23,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(75,31,91,0.5) 0%, transparent 60%),
    linear-gradient(135deg, #130A24 0%, #261845 60%, #1C1133 100%);
}
.vid-thumb-bg--3 {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(212,160,23,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(107,45,130,0.45) 0%, transparent 60%),
    linear-gradient(160deg, #1a0f24 0%, #2a1248 55%, #130A24 100%);
}
.vid-thumb-bg--4 {
  background:
    radial-gradient(ellipse at 60% 60%, rgba(212,160,23,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 20%, rgba(75,31,91,0.5) 0%, transparent 60%),
    linear-gradient(120deg, #261845 0%, #1C1133 50%, #0f0820 100%);
}
.vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 36px; height: 36px;
  background: rgba(19,10,36,0.55); border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(212,160,23,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s, border-color 0.3s;
}
.vid-card:hover .vid-play {
  transform: translate(-50%,-50%) scale(1.15);
  background: rgba(212,160,23,0.18);
  border-color: var(--gold);
}
.vid-play svg { width: 24px; height: 24px; }
.vid-fb-badge {
  position: absolute; bottom: 12px; right: 14px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(24,119,242,0.85); backdrop-filter: blur(6px);
  border-radius: 3px; padding: 4px 9px;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.06em; color: #fff; text-transform: uppercase;
}
.vid-info {
  padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1;
}
.vid-card-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--cream); line-height: 1.35; margin-bottom: 10px;
}
.vid-card-desc {
  font-size: 0.82rem; line-height: 1.75; color: var(--text-muted);
  flex: 1; margin-bottom: 20px;
}
.vid-watch-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(212,160,23,0.3);
  padding-bottom: 2px; align-self: flex-start;
  transition: color 0.25s, border-color 0.25s;
}
.vid-card:hover .vid-watch-btn { color: var(--gold-light); border-color: var(--gold-light); }
.vid-arrow { display: inline-block; transition: transform 0.25s var(--ease-spring); }

/* ─── FAQ ────────────────────────────────────── */
#faq {
  background: var(--bg-2); padding: 120px 0;
}
.faq-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start;
}
.faq-left { position: sticky; top: 120px; }
.faq-left .section-title { margin-bottom: 28px; }
.faq-left p {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 40px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; cursor: pointer; gap: 20px;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--cream); transition: color 0.25s; user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); transition: transform 0.35s var(--ease-smooth), background 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(212,160,23,0.1); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-smooth), padding 0.35s;
}
.faq-a-inner {
  font-size: 0.92rem; line-height: 1.85; color: var(--text-muted);
  padding-bottom: 24px;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ─── CTA SECTION ────────────────────────────── */
#cta {
  background: #3A1550; padding: 140px 0;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(107,45,130,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 90% 10%, rgba(212,160,23,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(212,160,23,0.07) 0%, transparent 50%);
}
#cta::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
}
.cta-inner {
  max-width: 860px; width: 92%; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}
.cta-script {
  font-family: var(--font-script); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 24px;
}
.cta-heading {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--cream); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 28px;
}
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-body {
  font-size: 1rem; line-height: 1.8; color: rgba(245,240,232,0.6);
  max-width: 560px; margin: 0 auto 52px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-divider {
  display: flex; align-items: center; gap: 24px;
  margin: 56px auto 0; max-width: 380px;
}
.cta-divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.cta-divider-text {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.cta-contacts {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 32px; flex-wrap: wrap;
}
.cta-contact-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cta-contact-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.cta-contact-value { font-size: 0.88rem; color: rgba(245,240,232,0.7); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-inner {
  max-width: 1240px; width: 92%; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 72px;
  padding-bottom: 56px; border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.footer-brand img { height: 68px; margin-bottom: 20px; }
.footer-brand-script {
  font-family: var(--font-script); font-size: 1.8rem;
  color: var(--gold); margin-bottom: 14px; line-height: 1;
}
.footer-brand p {
  font-size: 0.85rem; line-height: 1.75; color: var(--text-muted); max-width: 300px;
}
.footer-col-title {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a {
  font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.75rem; color: rgba(245,240,232,0.2); }
.footer-tagline { font-family: var(--font-script); font-size: 1.4rem; color: var(--gold); opacity: 0.5; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  text-decoration: none; color: var(--text-muted);
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s var(--ease-spring), box-shadow 0.25s;
}
.social-link svg { flex-shrink: 0; transition: transform 0.2s var(--ease-spring); }
.social-link:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212,160,23,0.07);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.12);
}
.social-link:hover svg { transform: scale(1.15); }
.social-link:active { transform: translateY(0); }

/* ─── HOME SERVICES TEASER ───────────────────── */
.home-services {
  background: var(--bg-light); padding: 120px 0; position: relative; overflow: hidden;
}
.home-services::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(107,45,130,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(212,160,23,0.05) 0%, transparent 50%);
}
.home-services .section-eyebrow { color: var(--gold); }
.home-services .section-eyebrow::before { background: var(--gold); }
.home-services .section-title { color: var(--text-dark); }
.home-services .services-intro { color: var(--text-dark-muted); }
.home-services .home-services-grid { background: var(--border-light); border-color: var(--border-light); }
.home-services .service-card {
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(27,15,52,0.06), 0 1px 4px rgba(27,15,52,0.04);
}
.home-services .service-card:hover {
  background: #FDF9F5;
  box-shadow: 0 10px 40px rgba(107,45,130,0.12), 0 2px 8px rgba(27,15,52,0.06);
}
.home-services .service-num { color: var(--gold); opacity: 0.5; }
.home-services .service-name { color: var(--text-dark); }
.home-services .service-desc { color: var(--text-dark-muted); }
.home-services .service-link { color: var(--gold); }
.home-services .service-card::before { background: linear-gradient(90deg, var(--gold), transparent); }
.home-services-wrap {
  max-width: 1240px; width: 92%; margin: 0 auto; position: relative; z-index: 1;
}
.home-services-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 72px;
}
.home-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.home-services-footer {
  margin-top: 52px; display: flex; align-items: center; gap: 32px;
}
.home-services-link {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.25s var(--ease-spring);
}
.home-services-link:hover { gap: 16px; }
.home-services-link::after { content: '→'; font-size: 1rem; }

/* ─── SCROLL REVEAL ─────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE NAV ────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0; z-index: 201;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--cream); border-radius: 1px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav-overlay {
  position: fixed; inset: 0; z-index: 198;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-smooth);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ─── PRINT STYLES ───────────────────────────── */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  nav { position: static !important; box-shadow: none !important; }
  .nav-toggle, .nav-overlay { display: none !important; }
  body::before { display: none !important; }
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 140px 40px 80px; min-height: 100vh; justify-content: flex-end; }
  .hero-right { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-content { padding: 72px 40px; }
  .why-wrap { grid-template-columns: 1fr; gap: 60px; }
  .why-visual { display: none; }
  .faq-wrap { grid-template-columns: 1fr; gap: 60px; }
  .faq-left { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 60px; }
  .contact-info { position: static; }
  .booking-inner { grid-template-columns: 1fr; gap: 60px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-grid::before { display: none; }
  .education-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(300px, 80vw);
    background: rgba(19,10,36,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    padding: 96px 36px 60px;
    gap: 0;
    transition: right 0.4s var(--ease-smooth);
    z-index: 199;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 0.88rem;
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { display: block !important; text-align: center; margin-top: 20px; }
  .services-head { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .home-services-head { grid-template-columns: 1fr; gap: 28px; }
  .home-services-grid { grid-template-columns: 1fr 1fr; }
  .projects-head { grid-template-columns: 1fr; gap: 28px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .impact-wrap { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .page-banner { padding: 140px 0 60px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .home-services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .impact-wrap { grid-template-columns: 1fr 1fr; }
  .impact-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .why-stat-bar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
