/* Khumo Phala Tutoring — static stylesheet */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --radius: 0.75rem;
  --background: oklch(0.14 0.005 250);
  --foreground: oklch(0.97 0 0);
  --card: oklch(0.18 0.006 250);
  --muted-fg: oklch(0.68 0.01 250);
  --secondary: oklch(0.24 0.008 250);
  --border: oklch(0.27 0.008 250);
  --gold: oklch(0.82 0.13 85);
  --accent-fg: oklch(0.14 0.005 250);
  --gradient-gold: linear-gradient(135deg, oklch(0.88 0.12 88), oklch(0.72 0.14 75));
  --gradient-card: linear-gradient(180deg, oklch(0.2 0.006 250 / 0.8), oklch(0.16 0.006 250 / 0.9));
  --shadow-elegant: 0 30px 80px -20px oklch(0 0 0 / 0.6);
  --shadow-gold: 0 10px 40px -10px oklch(0.82 0.13 85 / 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
h1, h2, h3, h4 { font-family: "Space Grotesk", "Inter", sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.muted { color: var(--muted-fg); }
.gold { color: var(--gold); }
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.divider { height: 1px; background: var(--border); flex: 1; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--background) 70%, transparent);
  backdrop-filter: blur(20px);
  /* smooth height/shadow transition on scroll — CSS only, no conflict with GSAP */
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
/* JS adds this class when user scrolls down */
.site-header.header-scrolled {
  background: color-mix(in oklab, var(--background) 90%, transparent);
  box-shadow: 0 4px 30px oklch(0 0 0 / 0.4);
}
.site-header .container { display: flex; height: 4rem; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 0.5rem; font-family: "Space Grotesk"; font-weight: 600; font-size: 1.125rem; }
.brand svg { color: var(--gold); }
.nav { display: none; gap: 2rem; font-size: 0.875rem; color: var(--muted-fg); }
.nav a { transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--foreground); }
@media (min-width: 768px) { .nav { display: flex; align-items: center; } }

/* Buttons
   NOTE: transform is intentionally excluded from transition here —
   GSAP owns the transform; CSS owns color/bg/shadow only. */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  border-radius: 0.5rem; border: 1px solid transparent; cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  will-change: transform;
}
.btn-sm { padding: 0 1rem; height: 2.25rem; font-size: 0.875rem; font-weight: 500; }
.btn-primary {
  background-image: var(--gradient-gold);
  color: var(--accent-fg);
  box-shadow: var(--shadow-gold);
}
.btn-secondary {
  background: color-mix(in oklab, var(--secondary) 40%, transparent);
  border-color: var(--border);
  color: var(--foreground);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: var(--secondary); }
.btn-block { width: 100%; justify-content: center; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay-1 { position: absolute; inset: 0;
  background: linear-gradient(to right, var(--background), color-mix(in oklab, var(--background) 90%, transparent), color-mix(in oklab, var(--background) 30%, transparent)); }
.hero-overlay-2 { position: absolute; inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--background) 40%, transparent), transparent, var(--background)); }
.hero-grid {
  position: absolute; inset: 0; opacity: 0.07;
  background-image:
    linear-gradient(to right, oklch(0.82 0.13 85 / 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.82 0.13 85 / 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-orb { position: absolute; border-radius: 9999px; pointer-events: none; filter: blur(120px); }
.hero-orb-1 { left: -8rem; top: 5rem; height: 20rem; width: 20rem; background: color-mix(in oklab, var(--gold) 20%, transparent); }
.hero-orb-2 { right: 0; bottom: 0; height: 24rem; width: 24rem; background: color-mix(in oklab, var(--gold) 10%, transparent); filter: blur(140px); }
.hero-equations { position: absolute; inset: 0; pointer-events: none; display: none; font-family: "Space Grotesk"; }
@media (min-width: 768px) { .hero-equations { display: block; } }
.hero-equations span { position: absolute; will-change: transform; }
.eq-int { right: 8%; top: 18%; font-size: 3.75rem; color: color-mix(in oklab, var(--gold) 15%, transparent); }
.eq-sigma { right: 22%; top: 60%; font-size: 3rem; color: color-mix(in oklab, var(--gold) 10%, transparent); }
.eq-pi { left: 55%; top: 30%; font-size: 1.875rem; color: color-mix(in oklab, var(--gold) 15%, transparent); }
.eq-mc2 { right: 14%; top: 42%; font-family: ui-monospace, monospace; font-size: 0.75rem; color: color-mix(in oklab, var(--gold) 25%, transparent); }

.hero-inner { position: relative; padding: 4rem 1.5rem 8rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .hero-inner { padding: 6rem 1.5rem 10rem; } }

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  background: color-mix(in oklab, var(--gold) 5%, transparent);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.badge .dot {
  height: 0.375rem; width: 0.375rem; border-radius: 9999px; background: var(--gold);
  animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero h1 {
  margin-top: 1.5rem;
  font-size: 3rem; font-weight: 700; line-height: 1.02;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 5.5rem; } }

.gold-text {
  display: inline-block;
  padding-bottom: 0.75rem;
  line-height: 1.15;
  background-image: var(--gradient-gold);
  background-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.hero .signature {
  margin-top: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.signature span.bar { display: block; height: 1px; width: 3rem; background: color-mix(in oklab, var(--gold) 70%, transparent); }
.signature p { font-family: "Space Grotesk"; font-size: 0.875rem; letter-spacing: 0.25em; color: var(--muted-fg); }

.hero p.lead { margin-top: 2rem; max-width: 36rem; font-size: 1.125rem; color: var(--muted-fg); }
.hero .actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 36rem;
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  padding-top: 1.5rem;
}
.stats .k { font-family: "Space Grotesk"; font-size: 1.5rem; font-weight: 700; }
@media (min-width: 768px) { .stats .k { font-size: 1.875rem; } }
.stats .v { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-fg); }

/* Pricing strip cards */
.pricing-strip { max-width: 72rem; margin: -5rem auto 0; padding: 0 1.5rem; position: relative; }
.pricing-strip .grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) { .pricing-strip .grid { grid-template-columns: repeat(3, 1fr); } }

/* Glass cards
   transform excluded from transition — GSAP handles hover lift */
.glass {
  background: oklch(0.2 0.008 250 / 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid oklch(1 0 0 / 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  will-change: transform;
}
.strip-card { display: flex; align-items: center; gap: 1rem; }
.icon-box {
  display: flex; height: 3rem; width: 3rem; align-items: center; justify-content: center;
  border-radius: 0.75rem; background: var(--secondary);
}
.icon-box svg { color: var(--gold); }
.strip-card .price { font-family: "Space Grotesk"; font-size: 1.5rem; font-weight: 700; }
.strip-card .price small { font-size: 1rem; font-weight: 400; color: var(--muted-fg); }
.strip-card .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-fg); }

/* Generic sections */
.section { max-width: 72rem; margin: 0 auto; padding: 6rem 1.5rem; }
.section-narrow { max-width: 56rem; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.section-title { display: flex; align-items: center; gap: 0.75rem; }
.section-title h2 { font-family: "Space Grotesk"; font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .section-title h2 { font-size: 2.25rem; } }

.cards-3 { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

/* Feature cards — transform excluded; GSAP owns hover lift */
.feature-card {
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--gradient-card);
  padding: 1.5rem;
  transition: border-color 0.3s ease;
  will-change: transform;
}
.feature-card:hover { border-color: color-mix(in oklab, var(--gold) 40%, var(--border)); }
.feature-card svg { color: var(--gold); height: 1.5rem; width: 1.5rem; }
.feature-card h3 { margin-top: 1rem; font-family: "Space Grotesk"; font-size: 1.125rem; font-weight: 600; }
.feature-card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-fg); }

/* Access programme */
.access {
  position: relative; overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid color-mix(in oklab, var(--gold) 20%, transparent);
  background: var(--gradient-card);
  padding: 2.5rem;
}
@media (min-width: 768px) { .access { padding: 3.5rem; } }
.access .orb { position: absolute; right: -5rem; top: -5rem; height: 16rem; width: 16rem; border-radius: 9999px;
  background: color-mix(in oklab, var(--gold) 10%, transparent); filter: blur(60px); }
.access .row { position: relative; display: flex; align-items: flex-start; gap: 1rem; }
.access .icon-box { height: 3rem; width: 3rem; background: color-mix(in oklab, var(--gold) 15%, transparent); flex-shrink: 0; }
.access h3 { margin-top: 0.5rem; font-family: "Space Grotesk"; font-size: 1.5rem; font-weight: 600; }
@media (min-width: 768px) { .access h3 { font-size: 1.875rem; } }
.access p { margin-top: 0.75rem; max-width: 42rem; color: var(--muted-fg); }
.access .link {
  margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--gold);
}
.access .link:hover { text-decoration: underline; }

/* CTA */
.cta {
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--secondary) 30%, transparent);
}
.cta .inner { max-width: 72rem; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; }
.cta h2 { margin-top: 0.75rem; font-family: "Space Grotesk"; font-size: 2.25rem; font-weight: 700; }
@media (min-width: 768px) { .cta h2 { font-size: 3rem; } }
.cta p { margin: 1rem auto 0; max-width: 36rem; color: var(--muted-fg); }
.cta .btn { margin-top: 2rem; }

/* Footer */
.site-footer { border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); background: var(--background); }
.site-footer .inner {
  max-width: 72rem; margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer .inner { grid-template-columns: repeat(3, 1fr); } }
.site-footer h3 { font-family: "Space Grotesk"; font-size: 1.125rem; font-weight: 600; }
.site-footer .col p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.site-footer .contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer .contact p { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-fg); }
.site-footer .contact svg { color: var(--gold); height: 1rem; width: 1rem; }
.site-footer .copy { font-size: 0.875rem; color: var(--muted-fg); }
@media (min-width: 768px) { .site-footer .copy { text-align: right; } }

/* Page hero (about/pricing/book) */
.page-hero { padding: 4rem 1.5rem 3rem; text-align: center; max-width: 72rem; margin: 0 auto; }
.page-hero h1 { margin-top: 0.75rem; font-family: "Space Grotesk"; font-size: 3rem; font-weight: 700; }
@media (min-width: 768px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p { margin: 1rem auto 0; max-width: 42rem; color: var(--muted-fg); }

/* Pricing plans */
.plans { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem 6rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan {
  position: relative; border-radius: 1.5rem; border: 1px solid var(--border);
  background: var(--card); padding: 2rem;
  transition: border-color 0.3s ease;
  will-change: transform;
}
.plan.highlight {
  border-color: color-mix(in oklab, var(--gold) 40%, transparent);
  background: var(--gradient-card); box-shadow: var(--shadow-gold);
}
.plan .tag {
  position: absolute; top: -0.75rem; left: 2rem;
  border-radius: 9999px; background-image: var(--gradient-gold); color: var(--accent-fg);
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600;
}
.plan > svg { color: var(--gold); height: 1.75rem; width: 1.75rem; }
.plan h3 { margin-top: 1rem; font-family: "Space Grotesk"; font-size: 1.25rem; font-weight: 600; }
.plan .price { margin-top: 1rem; font-family: "Space Grotesk"; font-size: 2.25rem; font-weight: 700; }
.plan .price small { font-size: 1rem; font-weight: 400; color: var(--muted-fg); }
.plan ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.plan li { display: flex; gap: 0.5rem; align-items: flex-start; color: var(--muted-fg); }
.plan li svg { margin-top: 0.125rem; height: 1rem; width: 1rem; color: var(--gold); flex-shrink: 0; }
.plan .btn { margin-top: 2rem; }

/* About */
.about-card { margin-top: 4rem; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 2rem; }
@media (min-width: 768px) { .about-card { padding: 2.5rem; } }
.about-card h2 { font-family: "Space Grotesk"; font-size: 1.5rem; font-weight: 700; }
.about-card ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; color: var(--muted-fg); }
.about-card li strong { color: var(--foreground); font-weight: 600; }

/* Book */
.book-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; max-width: 64rem; margin: 0 auto; padding: 0 1.5rem 6rem; }
@media (min-width: 900px) { .book-grid { grid-template-columns: 1.4fr 1fr; } }
.form-card { border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 2rem; }
.form-row { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-row label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-fg); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
  border: 1px solid var(--border); background: oklch(0.2 0.008 250 / 0.6);
  color: var(--foreground); font: inherit;
  /* transform excluded — GSAP handles focus scale */
  transition: border-color 0.2s, box-shadow 0.2s;
  will-change: transform;
}
.form-row textarea { min-height: 6rem; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid color-mix(in oklab, var(--gold) 60%, transparent); outline-offset: 1px;
}
.form-grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.book-side { display: flex; flex-direction: column; gap: 1rem; }
.book-side .glass { padding: 1.5rem; }
.book-side h4 { font-family: "Space Grotesk"; font-weight: 600; margin-bottom: 0.5rem; }
.book-side .contact p { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-fg); font-size: 0.875rem; margin-top: 0.5rem; }
.book-side .contact svg { color: var(--gold); height: 1rem; width: 1rem; }

.success {
  text-align: center; padding: 3rem; border-radius: 1.5rem; border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  background: var(--gradient-card);
}
.success svg { color: var(--gold); height: 3rem; width: 3rem; margin: 0 auto; }
.success h2 { margin-top: 1rem; font-family: "Space Grotesk"; font-size: 1.5rem; font-weight: 700; }
.success p { margin-top: 0.5rem; color: var(--muted-fg); }
.hidden { display: none !important; }

.spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Brand & NextStep additions ============ */
.brand em { font-style: normal; color: var(--gold); font-weight: 500; margin-left: .15rem; }

/* Services grid */
.services-grid {
  max-width: 72rem; margin: 0 auto; padding: 1rem 1.5rem 5rem;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  /* transform excluded — GSAP owns hover lift */
  transition: border-color 0.3s ease;
  will-change: transform;
}
.service-card:hover { border-color: color-mix(in oklab, var(--gold) 40%, var(--border)); }
.service-card .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: .75rem; letter-spacing:.3em; color: var(--gold);
  display:block; margin-bottom:.75rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.service-card p { color: var(--muted-fg); line-height: 1.6; font-size: .95rem; }

/* Vision band */
.vision { padding: 4rem 1.5rem; }
.vision-inner {
  max-width: 56rem; margin: 0 auto; text-align: center;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 3rem 2rem;
  will-change: transform, opacity;
}
.vision-inner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: .75rem 0 1rem; }
.vision-inner p { color: var(--muted-fg); font-size: 1.05rem; line-height: 1.7; max-width: 38rem; margin: 0 auto; }

/* Testimonial */
.testimonial-section { padding-bottom: 5rem; }
.testimonial {
  max-width: 52rem; margin: 1rem auto 0;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem 2rem;
  position: relative;
}
.testimonial .quote { width: 48px; height: 48px; color: var(--gold); opacity: .8; margin-bottom: .5rem; }
.testimonial blockquote p { color: var(--muted-fg); line-height: 1.75; margin-bottom: 1rem; font-size: 1.02rem; }
.testimonial blockquote p strong { color: var(--gold); font-weight: 600; }
.testimonial figcaption {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .25rem;
}
.testimonial .name { font-family: "Space Grotesk"; font-weight: 600; color: var(--foreground); }
.testimonial .role { font-size: .85rem; color: var(--muted-fg); }

/* Packages */
.packages { max-width: 72rem; margin: 0 auto; padding: 1rem 1.5rem 4rem; }
.pkg-group { margin-bottom: 2.5rem; }
.pkg-group > header { display:flex; align-items:center; gap:1rem; margin-bottom: 1.25rem; }
.pkg-group > header h2 { font-size: 1.5rem; letter-spacing: .08em; text-transform: uppercase; }
.pkg-group > header span { flex:1; height:1px; background: var(--border); }
.pkg-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1rem; }
.pkg-card {
  display:flex; gap: 1rem; align-items:center;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  /* transform excluded — GSAP owns hover */
  transition: border-color 0.3s ease;
  will-change: transform;
}
.pkg-card:hover { border-color: color-mix(in oklab, var(--gold) 35%, var(--border)); }
.pkg-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: color-mix(in oklab, var(--gold) 15%, transparent);
  color: var(--gold); flex-shrink: 0;
}
.pkg-icon svg { width: 26px; height: 26px; }
.pkg-sessions { font-family: "Space Grotesk"; font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; }
.pkg-sessions span { color: var(--muted-fg); font-weight: 400; text-transform: none; letter-spacing: 0; }
.pkg-price {
  font-family: "Space Grotesk"; font-weight: 700; font-size: 2rem;
  background-image: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-top: .15rem;
}
.pkg-note { text-align:center; color: var(--muted-fg); font-size:.9rem; margin-top: 1rem; }
.cta-row { display:flex; justify-content:center; margin-top:2rem; }
.price-inline { font-family: "Space Grotesk"; font-weight: 700; font-size: 1.5rem; color: var(--gold); margin-top:.5rem; }
.price-inline small { color: var(--muted-fg); font-weight: 400; font-size: .8rem; }

/* GSAP — all animated elements get will-change pre-declared */
[data-anim] { will-change: transform, opacity; }
/* ============ Light theme ============ */
[data-theme="light"] {
  --background: oklch(0.97 0.002 250);
  --foreground: oklch(0.12 0.005 250);
  --card: oklch(1 0 0);
  --muted-fg: oklch(0.45 0.01 250);
  --secondary: oklch(0.91 0.004 250);
  --border: oklch(0.84 0.006 250);
  --gold: oklch(0.58 0.13 75);
  --accent-fg: oklch(1 0 0);
  --gradient-gold: linear-gradient(135deg, oklch(0.65 0.13 80), oklch(0.52 0.14 68));
  --gradient-card: linear-gradient(180deg, oklch(0.99 0.002 250 / 0.9), oklch(0.95 0.003 250 / 0.95));
  --shadow-elegant: 0 30px 80px -20px oklch(0 0 0 / 0.12);
  --shadow-gold: 0 10px 40px -10px oklch(0.58 0.13 75 / 0.25);
}

[data-theme="light"] .site-header {
  background: color-mix(in oklab, var(--background) 85%, transparent);
  border-bottom-color: var(--border);
}
[data-theme="light"] .site-header.header-scrolled {
  background: color-mix(in oklab, var(--background) 96%, transparent);
  box-shadow: 0 4px 30px oklch(0 0 0 / 0.08);
}
[data-theme="light"] .hero-bg { opacity: 0.18; }
[data-theme="light"] .hero-overlay-1 {
  background: linear-gradient(to right, var(--background), color-mix(in oklab, var(--background) 90%, transparent), color-mix(in oklab, var(--background) 50%, transparent));
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: .5rem 0 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .75rem 1.5rem;
  font-size: .95rem;
  color: var(--muted-fg);
  transition: color .2s, background-color .2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--foreground); background: color-mix(in oklab, var(--secondary) 60%, transparent); }

/* Theme + hamburger buttons in header */
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: .5rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--secondary) 40%, transparent);
  color: var(--gold);
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
  flex-shrink: 0;
}
.btn-icon:hover { background: var(--secondary); }
.btn-icon svg { pointer-events: none; }

/* Show hamburger only on mobile */
.btn-hamburger { display: inline-flex; }
@media (min-width: 768px) { .btn-hamburger { display: none; } }