/* ================================
   Beej Nicole - Editorial soft luxe
   ================================ */

:root {
  --navy: #000036;
  --navy-soft: #1a1a4a;
  --sage: #618875;
  --sage-dark: #44635c;
  --sage-light: #a8c0b0;
  --sage-mist: #e1ebe4;
  --sage-tint: #eef3ef;
  --cream: #f5f0e8;
  --cream-deep: #ebe3d5;
  --grey-light: #eaeaea;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --white: #ffffff;

  --ff-serif: 'Fraunces', Georgia, serif;
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(4rem, 10vw, 8rem);

  --radius-sm: 6px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 4px 16px rgba(0, 0, 54, 0.06);
  --shadow: 0 12px 40px rgba(0, 0, 54, 0.1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 54, 0.14);
  --shadow-sage: 0 20px 60px rgba(97, 136, 117, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============ Type ============ */

.serif { font-family: var(--ff-serif); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sage);
}

.section-title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section-title .serif.italic { color: var(--sage-dark); }

.section-lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 1.5rem;
}

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

.big-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--navy);
  text-align: center;
  max-width: 22ch;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  position: relative;
}
.big-quote::before, .big-quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--sage);
  margin: 1.5rem auto;
  opacity: 0.6;
}

/* ============ Buttons ============ */

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--ff-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  will-change: transform;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: var(--shadow-sage);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--sage);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(97, 136, 117, 0.35);
}
.btn-ghost:hover {
  border-color: var(--sage);
  background: rgba(97, 136, 117, 0.08);
}

/* ============ Nav ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(97, 136, 117, 0.15);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-mark {
  color: var(--sage);
  flex: none;
  transition: transform 0.6s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(45deg); }

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9375rem;
  color: var(--ink);
}
.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 0.65rem 1.25rem; font-size: 0.875rem; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ Reveal animations ============ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-image {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.reveal-image.is-visible { opacity: 1; }
.reveal-image .image-frame img { clip-path: inset(100% 0 0 0); transition: clip-path 1.4s var(--ease); }
.reveal-image.is-visible .image-frame img { clip-path: inset(0 0 0 0); }

/* hero title word reveal */
.hero-title .line {
  display: block;
  overflow: hidden;
  line-height: 1.2;
  padding-bottom: 0.14em;
  text-wrap: balance;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
  margin-right: 0.16em;
}
.hero-title.is-revealed .word { transform: translateY(0); }
.hero-title .line:nth-child(1) .word { transition-delay: calc(var(--i, 0) * 60ms); }
.hero-title .line:nth-child(2) .word { transition-delay: calc(300ms + var(--i, 0) * 60ms); }

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: calc(var(--sec-y) + 4rem) 0 var(--sec-y);
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #f7f3ec 60%, var(--sage-tint) 100%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-shape-1 {
  top: -10%; right: -10%;
  width: 60vw; max-width: 800px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 60%);
  opacity: 0.5;
  animation: drift 20s ease-in-out infinite;
}
.hero-shape-2 {
  bottom: -15%; left: -10%;
  width: 50vw; max-width: 600px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--sage) 0%, transparent 65%);
  opacity: 0.25;
  animation: drift 25s ease-in-out infinite reverse;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-dust span {
  position: absolute;
  border-radius: 50%;
  background: var(--sage);
  animation: floatDust 14s ease-in-out infinite;
}
.hero-dust span:nth-child(1) { top: 18%; left: 8%; width: 5px; height: 5px; opacity: 0.4; animation-delay: -2s; animation-duration: 16s; }
.hero-dust span:nth-child(2) { top: 35%; right: 14%; width: 8px; height: 8px; opacity: 0.25; animation-delay: -5s; animation-duration: 22s; }
.hero-dust span:nth-child(3) { bottom: 30%; left: 22%; width: 6px; height: 6px; opacity: 0.35; animation-delay: -8s; animation-duration: 18s; }
.hero-dust span:nth-child(4) { top: 55%; right: 30%; width: 4px; height: 4px; opacity: 0.5; animation-delay: -3s; animation-duration: 20s; }
.hero-dust span:nth-child(5) { bottom: 15%; right: 8%; width: 7px; height: 7px; opacity: 0.3; animation-delay: -7s; animation-duration: 24s; }
.hero-dust span:nth-child(6) { top: 70%; left: 14%; width: 5px; height: 5px; opacity: 0.35; animation-delay: -4s; animation-duration: 19s; }
.hero-dust span:nth-child(7) { top: 25%; left: 45%; width: 3px; height: 3px; opacity: 0.5; animation-delay: -10s; animation-duration: 21s; }

@keyframes floatDust {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -25px); }
  50% { transform: translate(-15px, -50px); }
  75% { transform: translate(-30px, -25px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content { max-width: 640px; }

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.125rem, 6vw, 4.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 2rem;
  text-wrap: balance;
}
.hero-title .serif.italic { color: var(--sage-dark); }

.hero-lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(97, 136, 117, 0.25);
}
.hero-trust > div:not(.divider) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust strong {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.3vw, 1.875rem);
  font-weight: 500;
  color: var(--sage-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-trust strong .prefix {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.hero-trust strong .suffix {
  font-size: 0.65em;
  font-weight: 400;
  color: var(--sage);
}
.hero-trust span:not(.prefix):not(.suffix) {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.hero-trust .divider {
  width: 1px;
  height: 32px;
  background: rgba(97, 136, 117, 0.3);
}

/* Hero image */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  background: var(--sage-tint);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-image-deco {
  position: absolute;
  top: -8%; left: -8%;
  width: 60%;
  aspect-ratio: 1;
  z-index: 1;
  opacity: 0.18;
  animation: spinSlow 40s linear infinite;
}
.hero-image-deco svg { width: 100%; height: 100%; }
.hero-image-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px; height: 120px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow);
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: rgba(97, 136, 117, 0.3);
  overflow: hidden;
  z-index: 2;
}
.hero-scroll-hint span {
  position: absolute;
  top: -56px; left: 0;
  width: 1px;
  height: 56px;
  background: var(--sage-dark);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { top: -56px; }
  50% { top: 0; }
  100% { top: 56px; }
}

/* ============ Recognition ============ */

.recognition {
  background: var(--white);
  padding: var(--sec-y) 0;
  position: relative;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.5s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.card:hover {
  background: var(--white);
  border-color: var(--sage-mist);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card:hover::before { transform: scaleX(1); }
.card p {
  font-family: var(--ff-serif);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--navy);
}

/* ============ About ============ */

.about {
  background: var(--sage-tint);
  padding: var(--sec-y) 0;
  position: relative;
  overflow: hidden;
}
.about-bg-shape {
  position: absolute;
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 60%);
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
}
.about-image .image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-image .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-image .image-deco {
  position: absolute;
  bottom: -8%; right: -8%;
  width: 70%;
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: var(--radius-xl);
  z-index: 1;
  opacity: 0.5;
}
.about-image .image-caption {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  z-index: 3;
  font-weight: 500;
}

.about-content p {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}
.about-content .section-title { margin-top: 1.25rem; }

.about-pull {
  margin-top: 2.5rem !important;
  padding: 1.75rem 0 1.75rem 1.75rem;
  border-left: 3px solid var(--sage);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem) !important;
  line-height: 1.5 !important;
  color: var(--navy) !important;
  position: relative;
}

/* ============ Course ============ */

.course {
  background: var(--white);
  padding: var(--sec-y) 0;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 4rem);
}

.course-block {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.course-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.course-block h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.course-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.course-block li {
  padding-left: 2rem;
  position: relative;
  line-height: 1.5;
  color: var(--ink-soft);
}
.course-block li::before {
  position: absolute;
  left: 0; top: 0.1rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.course-block-yes {
  background: linear-gradient(135deg, var(--sage-tint) 0%, var(--sage-mist) 100%);
  border: 1px solid var(--sage-mist);
}
.course-block-yes li::before {
  content: '✓';
  background: var(--sage);
  color: var(--white);
}

.course-block-no {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
}
.course-block-no li::before {
  content: '×';
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ============ Packages ============ */

.packages {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-tint) 100%);
  padding: var(--sec-y) 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 4rem);
  align-items: stretch;
}

.package {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.package:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--sage-mist);
}

.package.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 60%, var(--sage-dark) 100%);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.package.featured:hover { transform: scale(1.03) translateY(-6px); }
.package.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 80% 0%, var(--sage) 0%, transparent 50%);
  opacity: 0.3;
  pointer-events: none;
}
.package.featured h3,
.package.featured .price { color: var(--white); position: relative; }
.package.featured .package-list li { color: rgba(255,255,255,0.85); }
.package.featured .package-list li::before { background: var(--sage); color: var(--white); }
.package.featured .price-sub { color: rgba(255,255,255,0.6); }
.package.featured .currency { color: var(--sage-light); }
.package.featured > * { position: relative; z-index: 1; }

.badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(97, 136, 117, 0.3);
}

.package header { margin-bottom: 2rem; }
.package h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.package .price {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}
.package .currency {
  font-size: 0.55em;
  font-weight: 400;
  color: var(--sage-dark);
}
.package .price-sub {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.package-list li {
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.package-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.15rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

.package .btn-primary,
.package .btn-secondary {
  width: 100%;
  margin-top: auto;
}

.packages-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}
.packages-foot a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.packages-foot a:hover { color: var(--navy); }

/* ============ Reviews ============ */

.reviews {
  background: var(--white);
  padding: var(--sec-y) 0;
  overflow: hidden;
}
.reviews-marquee {
  margin-top: clamp(3rem, 5vw, 4rem);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  width: clamp(280px, 26vw, 380px);
  flex: none;
  border: 1px solid transparent;
  transition: border-color 0.4s, transform 0.4s;
}
.review:hover { border-color: var(--sage-mist); transform: translateY(-4px); }
.review::before {
  content: '"';
  position: absolute;
  top: -10px; left: 1.25rem;
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.35;
}
.review-body {
  font-family: var(--ff-serif);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
}
.review-author {
  font-size: 0.875rem;
  color: var(--sage-dark);
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* ============ FAQ ============ */

.faq {
  background: var(--sage-tint);
  padding: var(--sec-y) 0;
}
.faq-intro {
  max-width: 56ch;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid rgba(97, 136, 117, 0.25);
  padding: 1.5rem 0;
  transition: opacity 0.4s var(--ease);
}
.faq details[open] summary { color: var(--sage-dark); }
.faq summary {
  font-family: var(--ff-serif);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-right: 0;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--ff-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sage);
  transition: transform 0.4s var(--ease);
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 2px;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--sage); color: var(--white); }
.faq details p {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 60ch;
}

/* ============ Contact ============ */

.contact {
  background: var(--white);
  padding: var(--sec-y) 0;
}
.contact-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 50%, var(--sage-dark) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-deco::before, .contact-deco::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}
.contact-deco::before {
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 60%);
  opacity: 0.4;
  animation: drift 18s ease-in-out infinite;
}
.contact-deco::after {
  bottom: -20%; left: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 60%);
  opacity: 0.25;
  animation: drift 22s ease-in-out infinite reverse;
}
.contact-card > * { position: relative; }
.contact-card .eyebrow { color: var(--sage-light); justify-content: center; display: inline-flex; }
.contact-card .eyebrow .eyebrow-line { background: var(--sage-light); opacity: 0.6; }
.contact-card .section-title { color: var(--white); }
.contact-card .section-title .serif.italic { color: var(--sage-light); }
.contact-card .section-lead {
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
}
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.contact-card .btn-primary {
  background: var(--white);
  color: var(--navy);
}
.contact-card .btn-primary:hover { background: var(--cream); color: var(--navy); }
.contact-card .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.contact-card .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ============ Footer ============ */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage) 50%, transparent);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  font-family: var(--ff-serif);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a { transition: color 0.2s; }
.footer-nav a:hover { color: var(--sage-light); }
.footer-small {
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ============ Floating CTA (mobile) ============ */

.floating-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--navy);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(0, 0, 54, 0.3);
  transition: transform 0.5s var(--ease);
  display: none;
}
.floating-cta.is-visible { transform: translateX(-50%) translateY(0); }

/* ============ Responsive ============ */

@media (max-width: 980px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .hero-content { display: contents; }
  .hero-content > .eyebrow { order: 1; }
  .hero-title { order: 2; }
  .hero-lead { order: 3; margin-bottom: 0.5rem; }
  .hero-image { order: 4; max-width: 360px; margin: 0.5rem auto; }
  .hero-trust { order: 5; padding-top: 1.5rem; margin-top: 0; }
  .hero-cta { order: 6; margin-bottom: 0; margin-top: 0.5rem; }

  .hero-image-badge { width: 96px; height: 96px; bottom: -18px; right: -18px; }
  .hero-image-badge svg { transform: scale(0.82); }

  .hero-trust { gap: 1rem; }
  .hero-trust strong { font-size: 1.375rem; }
  .hero-trust span:not(.prefix):not(.suffix) { font-size: 0.75rem; }
  .hero-trust .divider { display: none; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem var(--pad-x) 2rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image { max-width: 380px; margin: 0 auto; width: 100%; }

  .hero-trust { gap: 1.25rem; }
  .hero-trust .divider { display: none; }

  .package.featured { transform: none; }
  .package.featured:hover { transform: translateY(-6px); }

  .footer-inner { justify-content: flex-start; flex-direction: column; align-items: flex-start; text-align: left; }

  .floating-cta { display: block; }
}

@media (max-width: 520px) {
  .hero { padding-top: 7rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost { width: 100%; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact-cta { flex-direction: column; }
  .contact-cta .btn-primary,
  .contact-cta .btn-ghost { width: 100%; }
  .hero-scroll-hint { display: none; }
}

/* ============ Process ============ */

.process {
  background: var(--white);
  padding: var(--sec-y) 0;
  position: relative;
}
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  counter-reset: step;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage) 20%, var(--sage) 80%, transparent);
  opacity: 0.5;
  z-index: 0;
}
.process-step {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.process-step:nth-child(1) {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.process-step:nth-child(2) {
  background: linear-gradient(160deg, var(--sage-tint) 0%, var(--sage-mist) 100%);
}
.process-step:nth-child(3) {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 60%, var(--sage-dark) 100%);
  color: var(--white);
}
.process-step:nth-child(3) h3 { color: var(--white); }
.process-step:nth-child(3) p { color: rgba(255, 255, 255, 0.78); }
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--sage-mist);
}
.process-step:nth-child(3):hover { border-color: var(--sage); box-shadow: var(--shadow-lg); }

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(97, 136, 117, 0.18);
  animation: numPulse 3.6s var(--ease) infinite;
}
.process-step:nth-child(2) .process-num { animation-delay: -1.2s; }
.process-step:nth-child(3) .process-num {
  background: var(--sage);
  animation-delay: -2.4s;
}
.process-num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  opacity: 0.45;
  animation: ringPulse 3.6s var(--ease) infinite;
}
.process-step:nth-child(2) .process-num::before { animation-delay: -1.2s; }
.process-step:nth-child(3) .process-num::before {
  border-color: rgba(255, 255, 255, 0.5);
  animation-delay: -2.4s;
}
.process-num span {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sage-dark);
  font-style: italic;
}
.process-step:nth-child(3) .process-num span { color: var(--white); }

@keyframes numPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.18); opacity: 0; }
}

.process-step h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 32ch;
  margin: 0 auto;
}

/* ============ Modules ============ */

.modules { padding-top: clamp(2rem, 4vw, 4rem); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.module-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--sage-tint) 100%);
  border: 1px solid var(--sage-mist);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.module-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.module-card h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.module-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============ Compare table ============ */

.compare-wrap {
  margin-top: clamp(3rem, 6vw, 5rem);
}
.compare-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.compare-head h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.compare-head p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.compare-scroll {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 2rem);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}
.compare-table thead th {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  vertical-align: bottom;
}
.compare-table thead th.compare-feature-col {
  text-align: left;
  background: var(--white);
  z-index: 3;
}
.compare-table thead th.compare-featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}
.compare-table thead th.compare-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: radial-gradient(circle at 50% 0%, var(--sage) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.compare-pkg-name {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.compare-pkg-price {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
}
.compare-pkg-tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--white);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-weight: 600;
}

.compare-table tbody td {
  padding: 0.875rem 1rem;
  text-align: center;
  border-top: 1px solid var(--grey-light);
  vertical-align: middle;
  color: var(--ink-soft);
}
.compare-table tbody td.compare-feature {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9375rem;
  padding-left: 1.25rem;
}
.compare-table tbody td.compare-featured {
  background: linear-gradient(180deg, rgba(0, 0, 54, 0.04) 0%, rgba(97, 136, 117, 0.05) 100%);
  position: relative;
}
.compare-table tbody tr:last-child td.compare-featured {
  border-radius: 0 0 var(--radius) var(--radius);
}
.compare-table tbody tr.compare-row-cta td {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid var(--grey-light);
}
.compare-table tbody tr.compare-row-cta td .btn-primary,
.compare-table tbody tr.compare-row-cta td .btn-secondary {
  width: 100%;
}

.compare-table .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}
.compare-table .compare-featured .tick {
  background: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 54, 0.18);
}
.compare-table .dash {
  display: inline-block;
  color: rgba(0, 0, 54, 0.2);
  font-size: 1.125rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============ Rating summary ============ */

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
  padding: 0.625rem 1.25rem 0.625rem 0.875rem;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-mist);
}
.rating-stars {
  display: inline-flex;
  gap: 2px;
}
.rating-stars svg {
  width: 20px;
  height: 20px;
  fill: #d4a657;
}
.rating-text {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1;
  margin: 0;
}
.rating-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* ============ Process responsive ============ */

@media (max-width: 880px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  .process-grid::before { display: none; }
  .process-step {
    padding: 1.25rem 1.25rem 1.5rem;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
    align-items: center;
  }
  .process-num {
    width: 48px;
    height: 48px;
    grid-row: 1 / 3;
    margin-bottom: 0;
  }
  .process-num span { font-size: 1.125rem; }
  .process-num::before { inset: -4px; }
  .process-step h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    align-self: end;
  }
  .process-step p {
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: none;
    margin: 0;
    align-self: start;
  }
}

@media (max-width: 640px) {
  .compare-pkg-tag { font-size: 0.55rem; padding: 0.2rem 0.5rem; }
  .compare-table thead th { padding: 1rem 0.5rem; }
  .compare-table tbody td { padding: 0.75rem 0.5rem; font-size: 0.875rem; }
  .compare-table tbody td.compare-feature { font-size: 0.875rem; padding-left: 0.625rem; }
  .compare-pkg-price { font-size: 1.25rem; }
  .compare-pkg-name { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-image { opacity: 1; transform: none; }
  .reveal-image .image-frame img { clip-path: inset(0) !important; }
  .hero-title .word { transform: none !important; }
}
