/* ============================================================
   BELLS' DICTION HUB — Premium Design System
   Typography: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy-deep:    #0A1628;
  --navy-mid:     #122240;
  --navy-soft:    #1E3A5F;
  --navy-light:   #2E5494;
  --emerald-deep: #064E3B;
  --emerald-mid:  #059669;
  --emerald-bright:#10B981;
  --emerald-glow: #34D399;
  --white:        #FFFFFF;
  --off-white:    #F8F9FC;
  --cream:        #F3F1EE;
  --glass:        rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --text-primary: #0A1628;
  --text-secondary:#4A5568;
  --text-muted:   #718096;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-soft: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-mid:  0 8px 48px rgba(10,22,40,0.12);
  --shadow-deep: 0 20px 80px rgba(10,22,40,0.20);
  --shadow-glow: 0 0 40px rgba(16,185,129,0.25);

  --transition-fast: 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-mid:  0.4s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-mid);
}
.body-lg { font-size: 1.2rem; line-height: 1.7; font-weight: 300; }
.body-md { font-size: 1rem;   line-height: 1.7; }
.body-sm { font-size: 0.9rem; line-height: 1.6; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,22,40,0.25);
}
.btn-primary:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,22,40,0.32);
}
.btn-emerald {
  background: var(--emerald-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(5,150,105,0.30);
}
.btn-emerald:hover {
  background: var(--emerald-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5,150,105,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-deep);
  border: 1.5px solid rgba(10,22,40,0.20);
}
.btn-ghost:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.40);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.55);
}
.btn-lg {
  padding: 1.05rem 2.5rem;
  font-size: 1.05rem;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── LAYOUT HELPERS ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: var(--space-3xl) 0;
}
.section-sm {
  padding: var(--space-2xl) 0;
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all var(--transition-mid);
}
.nav.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  opacity: 0.65;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--emerald-bright);
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.88rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all var(--transition-mid);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-weight: 500;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}
.mobile-nav a:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(46,84,148,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(6,78,59,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(18,34,64,0.8) 0%, transparent 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(16,185,129,0.12);
  top: -150px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(46,84,148,0.25);
  bottom: -50px; left: 5%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 7rem 0 5rem;
}
.hero-text { }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--emerald-bright);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--emerald-bright);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--emerald-bright);
}
.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.6s forwards;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.8s forwards;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeSlideUp 0.8s 1s forwards;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-stat-number span { color: var(--emerald-bright); }
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* Hero Illustration */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeSlideUp 1s 0.5s forwards;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-card-main {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  z-index: 3;
}
.hero-card-behind-1 {
  position: absolute;
  top: -16px; left: 16px; right: -16px;
  bottom: 16px;
  background: rgba(46,84,148,0.25);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  z-index: 2;
}
.hero-card-behind-2 {
  position: absolute;
  top: -28px; left: 28px; right: -28px;
  bottom: 28px;
  background: rgba(46,84,148,0.12);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.hero-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald-deep));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(5,150,105,0.4);
}
.hero-card-icon svg { color: white; }
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-card-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
.hero-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-pill {
  padding: 0.35rem 0.9rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--emerald-bright);
}
.hero-card-progress {
  margin-bottom: 0.6rem;
}
.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.hero-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-mid), var(--emerald-bright));
  border-radius: 100px;
  width: 0;
  transition: width 1.5s ease 1.2s;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  z-index: 10;
  white-space: nowrap;
}
.hero-badge-emoji { font-size: 1.2rem; }
.hero-badge-1 {
  top: -20px; right: -10px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge-2 {
  bottom: -15px; left: -20px;
  animation: badgeFloat 5s ease-in-out infinite 1s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: var(--off-white);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-left { }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(16,185,129,0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(46,84,148,0.2) 0%, transparent 60%);
}
.about-illustration {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.about-illustration-letter {
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-image-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-deep);
  min-width: 180px;
}
.about-float-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.about-float-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1;
}
.about-float-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}
.about-image-float-2 {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--emerald-mid);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 30px rgba(5,150,105,0.4);
  color: white;
}
.about-float-2-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.about-float-2-label {
  font-size: 0.72rem;
  opacity: 0.8;
}
.about-float-2-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.about-right { }
.about-eyebrow { margin-bottom: 1.2rem; }
.about-headline {
  margin-bottom: 1.5rem;
  color: var(--navy-deep);
}
.about-headline em {
  font-style: italic;
  color: var(--emerald-mid);
}
.about-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-value-icon {
  width: 36px; height: 36px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--emerald-mid);
}
.about-value-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 0.15rem;
}
.about-value-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   FOCUS SECTION
══════════════════════════════════════════════════════════════ */
.focus {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.focus-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(6,78,59,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(30,58,95,0.4) 0%, transparent 70%);
}
.focus-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.focus-header .section-eyebrow { color: var(--emerald-bright); margin-bottom: 1rem; display: block; }
.focus-headline { color: var(--white); margin-bottom: 1rem; }
.focus-headline em { font-style: italic; color: var(--emerald-glow); }
.focus-subtext { color: rgba(255,255,255,0.55); font-size: 1.1rem; font-weight: 300; max-width: 560px; margin: 0 auto; }
.focus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.focus-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-mid);
  cursor: default;
}
.focus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(16,185,129,0.05));
  opacity: 0;
  transition: opacity var(--transition-mid);
}
.focus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-glow);
}
.focus-card:hover::before { opacity: 1; }
.focus-card-number {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.focus-card-icon {
  width: 80px; height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-mid));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-mid);
}
.focus-card:hover .focus-card-icon {
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald-deep));
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(5,150,105,0.5);
}
.focus-card-icon svg { color: rgba(255,255,255,0.7); width: 36px; height: 36px; transition: color var(--transition-fast); }
.focus-card:hover .focus-card-icon svg { color: white; }
.focus-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.focus-card-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   LEARNING METHODS
══════════════════════════════════════════════════════════════ */
.methods {
  background: var(--off-white);
}
.methods-header {
  text-align: center;
  margin-bottom: 4rem;
}
.methods-header .section-eyebrow { margin-bottom: 1rem; display: block; }
.methods-headline { color: var(--navy-deep); margin-bottom: 0.75rem; }
.methods-headline em { font-style: italic; color: var(--emerald-mid); }
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.method-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(10,22,40,0.06);
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}
.method-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-soft), var(--emerald-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-mid);
}
.method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}
.method-card:hover::after { transform: scaleX(1); }
.method-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--navy-soft);
  transition: all var(--transition-fast);
}
.method-card:hover .method-icon {
  background: var(--navy-deep);
  color: white;
}
.method-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-mid);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.method-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}
.method-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.method-tag {
  padding: 0.25rem 0.75rem;
  background: var(--off-white);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border: 1px solid rgba(10,22,40,0.08);
}

/* Wide card variant */
.method-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

/* ══════════════════════════════════════════════════════════════
   DOMAINS (PROGRAM CARDS)
══════════════════════════════════════════════════════════════ */
.domains {
  background: var(--white);
  position: relative;
}
.domains-header {
  text-align: center;
  margin-bottom: 5rem;
}
.domains-header .section-eyebrow { margin-bottom: 1rem; display: block; }
.domains-headline { color: var(--navy-deep); }
.domains-headline em { font-style: italic; color: var(--emerald-mid); }
.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.domain-card {
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all var(--transition-mid);
  border: 1px solid rgba(10,22,40,0.08);
}
.domain-card-navy {
  background: var(--navy-deep);
  color: var(--white);
  border-color: transparent;
}
.domain-card-emerald {
  background: var(--off-white);
}
.domain-card-light {
  background: var(--white);
}
.domain-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-deep);
}
.domain-card-navy:hover { box-shadow: 0 24px 80px rgba(10,22,40,0.4); }
.domain-card-emerald:hover { box-shadow: 0 24px 80px rgba(5,150,105,0.2); }

.domain-bg-text {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.domain-card-emerald .domain-bg-text { color: rgba(10,22,40,0.04); }
.domain-card-light .domain-bg-text { color: rgba(10,22,40,0.04); }

.domain-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--emerald-bright);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.domain-card-emerald .domain-number,
.domain-card-light .domain-number { color: var(--emerald-mid); }
.domain-number::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
}
.domain-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.domain-card-navy .domain-icon {
  background: rgba(255,255,255,0.08);
  color: var(--emerald-bright);
}
.domain-card-emerald .domain-icon {
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald-deep));
  color: white;
  box-shadow: 0 8px 24px rgba(5,150,105,0.4);
}
.domain-card-light .domain-icon {
  background: var(--navy-deep);
  color: white;
}
.domain-icon svg { width: 28px; height: 28px; }
.domain-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.domain-card-navy .domain-title { color: var(--white); }
.domain-card-emerald .domain-title,
.domain-card-light .domain-title { color: var(--navy-deep); }
.domain-text {
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.domain-card-navy .domain-text { color: rgba(255,255,255,0.6); }
.domain-card-emerald .domain-text,
.domain-card-light .domain-text { color: var(--text-secondary); }
.domain-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.domain-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.domain-card-navy .domain-feature { color: rgba(255,255,255,0.7); }
.domain-card-emerald .domain-feature,
.domain-card-light .domain-feature { color: var(--text-secondary); }
.domain-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.domain-card-navy .domain-feature-dot { background: var(--emerald-bright); }
.domain-card-emerald .domain-feature-dot { background: var(--emerald-mid); }
.domain-card-light .domain-feature-dot { background: var(--navy-soft); }

.domains-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   STORYBOOKS
══════════════════════════════════════════════════════════════ */
.books {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.books::before {
  content: '"';
  position: absolute;
  top: -60px; left: -20px;
  font-family: var(--font-display);
  font-size: 30rem;
  color: rgba(10,22,40,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.books-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.books-left { }
.books-eyebrow { margin-bottom: 1.2rem; }
.books-headline { color: var(--navy-deep); margin-bottom: 1rem; }
.books-headline em { font-style: italic; color: var(--emerald-mid); }
.books-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
.books-retail {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-soft);
}
.books-retail-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.books-retail-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.books-retail-location {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-deep);
}
.books-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.books-right { }
.books-showcase {
  position: relative;
  padding: 2rem 0;
}
.book-stack {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
}
.book-item {
  border-radius: 12px;
  position: relative;
  cursor: default;
  transition: all var(--transition-mid);
  flex-shrink: 0;
}
.book-item:hover { transform: translateY(-12px) rotate(-1deg); }
.book-cover {
  border-radius: 10px;
  box-shadow: 8px 8px 24px rgba(10,22,40,0.2), -2px -2px 8px rgba(255,255,255,0.5);
  overflow: hidden;
  position: relative;
}
.book-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 10px 0 0 10px;
}
.book-inner {
  padding: 2rem 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.book-1 .book-inner { background: linear-gradient(135deg, #1E3A5F, #0A1628); color: white; }
.book-2 .book-inner { background: linear-gradient(135deg, #064E3B, #059669); color: white; }
.book-3 .book-inner { background: linear-gradient(135deg, #7C3AED, #4C1D95); color: white; }
.book-1 { width: 150px; }
.book-2 { width: 130px; }
.book-3 { width: 140px; }
.book-title-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}
.book-author {
  font-size: 0.72rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
}
.book-brand {
  font-size: 0.65rem;
  opacity: 0.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.book-pattern {
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  opacity: 0.15;
}

/* ══════════════════════════════════════════════════════════════
   FOUNDER
══════════════════════════════════════════════════════════════ */
.founder {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.founder-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(46,84,148,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(6,78,59,0.25) 0%, transparent 60%);
}
.founder-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.founder-image-wrap {
  position: relative;
}
.founder-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-mid));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.founder-placeholder-text {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  position: absolute;
}
.founder-badge-wrap {
  position: absolute;
  bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald-deep));
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(5,150,105,0.4);
}
.founder-badge-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.founder-badge-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.founder-right { }
.founder-eyebrow { color: var(--emerald-bright); margin-bottom: 1.2rem; display: block; }
.founder-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.founder-headline em { font-style: italic; color: var(--emerald-glow); }
.founder-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.founder-quote {
  border-left: 3px solid var(--emerald-mid);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.founder-quote-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.founder-quote-attr {
  font-size: 0.8rem;
  color: var(--emerald-bright);
  margin-top: 0.75rem;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════
   LOCATIONS & CONTACT
══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--off-white);
}
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-header .section-eyebrow { margin-bottom: 1rem; display: block; }
.contact-headline { color: var(--navy-deep); }
.contact-headline em { font-style: italic; color: var(--emerald-mid); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-mid);
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}
.location-map {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.location-map-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.location-map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}
.location-map-pin svg {
  color: var(--emerald-bright);
  filter: drop-shadow(0 4px 12px rgba(16,185,129,0.6));
}
.location-map-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}
.location-body {
  padding: 2rem;
}
.location-type {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-mid);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.location-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}
.location-address {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.location-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.location-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.location-meta-icon {
  color: var(--emerald-mid);
  flex-shrink: 0;
}

.contact-bottom {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.contact-bottom-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-bottom-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.contact-bottom-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--emerald-bright);
  white-space: nowrap;
}
.contact-bottom-phone-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL STRIP
══════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--white);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-header .section-eyebrow { margin-bottom: 0.75rem; display: block; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  min-width: 320px;
  border: 1px solid rgba(10,22,40,0.06);
  flex-shrink: 0;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy-deep);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-deep);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.4), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}
.footer-social-link:hover {
  background: var(--emerald-mid);
  border-color: transparent;
  color: white;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy span { color: var(--emerald-bright); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 4rem; padding-bottom: 6rem; }
  .hero-visual { display: none; }
  .hero-text { max-width: 600px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about::before { display: none; }
  .about-image-wrap { max-width: 420px; }
  .focus-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .methods-grid { grid-template-columns: 1fr 1fr; }
  .method-card-wide { grid-column: span 2; grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: 1fr; }
  .books-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-image-frame { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-bottom { grid-template-columns: 1fr; text-align: center; }
  .contact-bottom-phone { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 6rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .methods-grid { grid-template-columns: 1fr; }
  .method-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .focus-cards { grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
  .contact-bottom { padding: 2rem; }
  .contact-bottom-title { font-size: 1.5rem; }
  .contact-bottom-phone { font-size: 1.5rem; }
  .book-stack { gap: 1rem; }
  .book-1 { width: 120px; }
  .book-2 { width: 105px; }
  .book-3 { width: 110px; }
}
@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 1.25rem; }
  .section { padding: var(--space-2xl) 0; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-eyebrow { font-size: 0.7rem; }
}

/* ── MISC ──────────────────────────────────────────────────── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--emerald-mid), var(--navy-soft));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── SCROLL TO TOP ─────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  z-index: 50;
  box-shadow: var(--shadow-mid);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--emerald-mid);
  transform: translateY(-3px);
}
