/* ============================================================
   The London School of Floristry — Landing Page
   Design system + layout
   ============================================================ */

:root {
  /* Brand */
  --coral:        #F26B43;   /* logo coral */
  --coral-bar:    #FE8D7B;   /* lighter salmon — matches client header bar */
  --coral-deep:   #D8542F;
  --coral-tint:   #FBE7DE;   /* soft coral wash */
  --coral-tint-2: #F7D9CC;

  /* Greens (eucalyptus / sage) */
  --green-deep:   #515E45;
  --green:        #6E7B5C;
  --green-soft:   #97A285;
  --green-wash:   #ECEEE3;

  /* Neutrals — warm */
  --ivory:        #FBF7F1;   /* page background */
  --cream:        #F4ECE1;   /* alt section */
  --cream-deep:   #EFE5D7;
  --ink:          #2C2722;   /* headings/body */
  --ink-soft:     #6C6258;   /* muted text */
  --line:         #E6DBCC;   /* hairlines */
  --white:        #FFFFFF;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 72px);
  --section-y: clamp(72px, 11vw, 150px);
  --radius: 4px;

  --shadow-sm: 0 2px 14px rgba(44, 39, 34, 0.06);
  --shadow-md: 0 18px 50px -18px rgba(44, 39, 34, 0.22);
  --shadow-lg: 0 40px 90px -30px rgba(44, 39, 34, 0.32);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

::selection { background: var(--coral); color: #fff; }

/* ---------- Shared helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.wrap-wide { max-width: 1340px; }
.wrap-narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--coral);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--coral);
  display: inline-block;
}

.h-display { font-size: clamp(40px, 7vw, 86px); }
.h-1 { font-size: clamp(34px, 5.2vw, 62px); }
.h-2 { font-size: clamp(28px, 3.6vw, 44px); }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-soft); line-height: 1.65; }

.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-deep); color: #fff; }
.section--ink { background: var(--ink); color: #fff; }

.center { text-align: center; }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--coral-bar);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s;
  box-shadow: 0 10px 26px -12px rgba(216, 84, 47, 0.7);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); background: var(--coral); border-color: var(--coral); box-shadow: 0 18px 36px -12px rgba(216, 84, 47, 0.6); }
.btn:active { transform: translateY(-1px); }
.btn .price-pill {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 13px;
  margin-left: 2px;
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--outline:hover { background: var(--ink); color: #fff; box-shadow: none; }
.btn--on-dark { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.btn--on-dark:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.btn--ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55); box-shadow: none;
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn--lg { padding: 20px 42px; font-size: 15px; }

.text-link {
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral); display: inline-flex; gap: 8px; align-items: center;
  border-bottom: 1px solid transparent; padding-bottom: 2px; transition: gap .3s var(--ease);
}
.text-link:hover { gap: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: var(--coral-bar);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}
.nav.scrolled {
  background: var(--coral-bar);
  box-shadow: 0 6px 24px -12px rgba(44, 39, 34, 0.45);
  padding-block: 12px;
}
.nav__logo { display: inline-flex; transition: none; }
.nav__logo:hover, .nav__logo:focus { opacity: 1; }
.nav__logo img { height: 88px; width: auto; transition: height .45s var(--ease); }
.nav.scrolled .nav__logo img { height: 70px; }
.nav__logo .logo-white { display: block; }
.nav__logo .logo-coral { display: none; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a.nav-item {
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  color: #fff; position: relative; padding: 4px 0; transition: color .3s, opacity .3s; white-space: nowrap;
}
.nav.scrolled .nav__links a.nav-item { color: #fff; }
.nav__links a.nav-item::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: #fff; transition: width .35s var(--ease);
}
.nav__links a.nav-item:hover { opacity: .8; }
.nav__links a.nav-item:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav .btn {
  padding: 13px 26px; font-size: 13px;
  background: #fff; color: var(--coral-deep); border-color: #fff;
  box-shadow: 0 8px 22px -12px rgba(44,39,34,.5);
}
.nav .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.nav__burger {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; position: relative; z-index: 90;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #fff;
  transition: transform .4s var(--ease), opacity .3s, background .3s;
}
.nav.scrolled .nav__burger span { background: #fff; }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
body.menu-open .nav__burger span { background: #fff; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 85; background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--pad);
  transform: translateY(-100%); transition: transform .55s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(30px, 8vw, 46px); color: var(--ink);
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: stretch; }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; width: 100%;
}
.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px var(--pad) 80px;
  background: var(--ivory);
  position: relative;
}
.hero__text-inner { max-width: 560px; }
.hero__eyebrow {
  font-weight: 700; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 26px; display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content:""; width: 30px; height:1px; background: var(--coral); }
.hero h1 { font-size: clamp(38px, 4.3vw, 60px); margin-bottom: 30px; line-height: 1.08; }
.hero h1 em { font-style: italic; color: var(--coral); }
.hero__sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); max-width: 480px; margin-bottom: 18px; }
.hero__course {
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--green-deep);
  margin-bottom: 36px; padding-left: 16px; border-left: 2px solid var(--coral);
}
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__price { display: flex; flex-direction: column; }
.hero__price .num { font-family: var(--serif); font-size: 38px; color: var(--ink); line-height: 1; }
.hero__price .lbl { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .02em; line-height: 1.4; margin-top: 4px; }

.hero__media { position: relative; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(251,247,241,0.55) 0%, rgba(251,247,241,0) 26%);
}
.hero__badge {
  position: absolute; right: 28px; bottom: 32px; z-index: 3;
  background: var(--white); border-radius: 999px; padding: 14px 24px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-wash); }
.hero__badge b { font-family: var(--serif); font-size: 17px; font-weight: 600; line-height: 1.15; }
.hero__badge span { font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; }

.hero__scroll {
  position: absolute; left: var(--pad); bottom: 26px; z-index: 4;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.hero__scroll .bar { width: 1px; height: 34px; background: var(--ink-soft); position: relative; overflow: hidden; }
.hero__scroll .bar::after { content:""; position:absolute; top:-34px; left:0; width:1px; height:34px; background: var(--coral); animation: scrolldown 2.4s var(--ease) infinite; }
@keyframes scrolldown { to { top: 34px; } }

/* Full-bleed hero variant (tweak) */
body[data-hero="full"] .hero__grid { grid-template-columns: 1fr; }
body[data-hero="full"] .hero__media { position: absolute; inset: 0; z-index: 0; }
body[data-hero="full"] .hero__media::after {
  background: linear-gradient(90deg, rgba(28,24,20,0.72) 0%, rgba(28,24,20,0.32) 50%, rgba(28,24,20,0.08) 100%);
}
body[data-hero="full"] .hero__text { background: transparent; position: relative; z-index: 2; }
body[data-hero="full"] .hero__text-inner { max-width: 600px; }
body[data-hero="full"] .hero h1,
body[data-hero="full"] .hero__course { color: #fff; }
body[data-hero="full"] .hero__sub { color: rgba(255,255,255,0.86); }
body[data-hero="full"] .hero__course { color: #fff; }
body[data-hero="full"] .hero__price .num { color:#fff; }
body[data-hero="full"] .hero__price .lbl { color: rgba(255,255,255,0.8); }
body[data-hero="full"] .hero__badge { right: var(--pad); }
body[data-hero="full"] .hero__scroll { color: rgba(255,255,255,0.8); }
body[data-hero="full"] .hero__scroll .bar { background: rgba(255,255,255,0.6); }

/* ============================================================
   MARQUEE / trust strip
   ============================================================ */
.trust { background: var(--green-deep); color: #fff; padding-block: 26px; overflow: hidden; }
.trust__track { display: flex; gap: 64px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.trust__track span {
  font-family: var(--serif); font-style: italic; font-size: 23px; color: rgba(255,255,255,0.92);
  display: inline-flex; align-items: center; gap: 64px;
}
.trust__track span::after { content: "✿"; font-style: normal; color: var(--coral); font-size: 15px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   PROBLEM / ASPIRATION
   ============================================================ */
.aspiration { text-align: center; }
.aspiration .statement {
  font-family: var(--serif); font-size: clamp(28px, 3.8vw, 50px); line-height: 1.22;
  color: var(--ink); max-width: 17ch; margin: 0 auto;
}
.aspiration .statement em { font-style: italic; color: var(--coral); }
.aspiration .support { max-width: 620px; margin: 38px auto 0; }

.aspiration__row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,4vw,60px);
  margin-top: 72px; text-align: left;
}
.aspiration__item { padding-top: 26px; border-top: 1px solid var(--line); }
.aspiration__item .n { font-family: var(--serif); font-size: 22px; color: var(--coral); display:block; margin-bottom: 10px; }
.aspiration__item h4 { font-size: 24px; margin-bottom: 8px; }
.aspiration__item p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits__head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.benefits__head p { margin: 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit {
  background: var(--ivory); padding: 40px 34px; transition: background .4s var(--ease);
  position: relative;
}
.section--cream .benefit { background: var(--cream); }
.benefit:hover { background: var(--white); }
.section--cream .benefit:hover { background: var(--white); }
.benefit__ico {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--coral);
  color: var(--coral); display: grid; place-items: center; margin-bottom: 24px;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.benefit:hover .benefit__ico { background: var(--coral); color: #fff; transform: rotate(-8deg); }
.benefit__ico svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 25px; margin-bottom: 10px; }
.benefit p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   MODULES
   ============================================================ */
.modules__head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.modules__head p { margin: 30px auto 0; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.module {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px 36px; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.module::before {
  content:""; position:absolute; left:0; top:0; height: 3px; width: 100%;
  background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.module:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.module:hover::before { transform: scaleX(1); }
.module__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.module__num {
  font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: .04em;
  color: var(--coral); border: 1px solid var(--coral-tint-2); border-radius: 999px;
  padding: 5px 14px;
}
.module__tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.module h3 { font-size: 30px; margin-bottom: 14px; }
.module p { font-size: 15.5px; color: var(--ink-soft); margin: 0 0 24px; }
.module__skills { display: flex; flex-wrap: wrap; gap: 8px; }
.module__skills span {
  font-size: 12.5px; color: var(--ink-soft); background: var(--cream);
  border-radius: 999px; padding: 5px 13px; border: 1px solid var(--line); white-space: nowrap;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 60px; }
.aud {
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius);
  padding: 34px 24px; transition: background .4s var(--ease), transform .4s var(--ease);
  background: rgba(255,255,255,0.03);
}
.aud:hover { background: rgba(255,255,255,0.09); transform: translateY(-6px); }
.aud__n { color: var(--coral); display: inline-flex; margin-bottom: 16px; }
.aud__n svg { width: 30px; height: 30px; }
.aud h4 { color: #fff; font-size: 23px; margin-bottom: 8px; }
.aud p { color: rgba(255,255,255,0.66); font-size: 14px; margin: 0; line-height: 1.55; }
.section--green .eyebrow { color: var(--coral-tint); }
.section--green .eyebrow::before, .section--green .eyebrow::after { background: var(--coral-tint); }
.section--green h2 { color: #fff; }

/* ============================================================
   INCLUDED  (split: list + price card)
   ============================================================ */
.included__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.include-list { list-style: none; margin: 38px 0 0; padding: 0; }
.include-list li {
  display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line);
}
.include-list li:first-child { padding-top: 0; }
.include-list .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--coral-tint);
  color: var(--coral-deep); display: grid; place-items: center; margin-top: 2px;
}
.include-list .tick svg { width: 15px; height: 15px; }
.include-list h4 { font-size: 21px; margin-bottom: 3px; font-family: var(--serif); font-weight: 600; }
.include-list p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.price-card {
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow-lg);
  padding: 44px 40px; position: relative; overflow: hidden;
}
.price-card::before {
  content:""; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px;
  background: radial-gradient(circle, var(--coral-tint) 0%, transparent 70%); border-radius: 50%;
}
.price-card__label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.price-card__name { font-size: 28px; margin: 14px 0 20px; line-height: 1.12; }
.price-card__amt { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-card__amt .cur { font-family: var(--serif); font-size: 30px; color: var(--ink); }
.price-card__amt .val { font-family: var(--serif); font-size: 72px; line-height: 1; color: var(--ink); }
.price-card__note { font-size: 14px; color: var(--ink-soft); margin-bottom: 28px; }
.price-card .btn { width: 100%; }
.price-card__meta { display: flex; gap: 20px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.price-card__meta span { font-size: 13px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; }
.price-card__meta svg { width: 15px; height: 15px; color: var(--green); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.about__media { position: relative; }
.about__media .frame { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.about__media .frame img { width:100%; height:100%; object-fit: cover; }
.about__media .stamp {
  position: absolute; right: -28px; bottom: -28px; width: 132px; height: 132px;
  background: var(--coral); color: #fff; border-radius: 50%; display: grid; place-items: center;
  text-align: center; font-family: var(--serif); line-height: 1.1; box-shadow: var(--shadow-md);
  padding: 16px;
}
.about__media .stamp b { font-size: 34px; display: block; }
.about__media .stamp span { font-size: 12px; letter-spacing: .04em; }
.about__body h2 { margin-bottom: 28px; }
.about__body p { color: var(--ink-soft); margin-bottom: 18px; }
.about__body .sig { font-family: var(--serif); font-style: italic; font-size: 27px; color: var(--coral); margin-top: 26px; }
.about__stats { display: flex; gap: 44px; margin-top: 36px; flex-wrap: wrap; }
.about__stats .stat b { font-family: var(--serif); font-size: 40px; color: var(--ink); display: block; line-height: 1; }
.about__stats .stat span { font-size: 13px; color: var(--ink-soft); letter-spacing: .02em; }

/* ============================================================
   GALLERY + VIDEO
   ============================================================ */
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px;
}
.gallery__cell { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery__cell img { width:100%; height:100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__cell:hover img { transform: scale(1.06); }
.gallery__cell.tall { grid-row: span 2; }
.gallery__cell.wide { grid-column: span 2; }

.video-cell {
  grid-column: span 2; grid-row: span 2; position: relative; border-radius: var(--radius);
  overflow: hidden; background: var(--green-deep); display: grid; place-items: center;
  cursor: pointer;
}
.video-cell img { position: absolute; inset: 0; width:100%; height:100%; object-fit: cover; opacity: .55; }
.video-cell__inner { position: relative; z-index: 2; text-align: center; color: #fff; }
.video-cell__play {
  width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.6); backdrop-filter: blur(4px);
  display: grid; place-items: center; margin: 0 auto 18px; transition: transform .4s var(--ease), background .4s;
}
.video-cell:hover .video-cell__play { transform: scale(1.08); background: var(--coral); border-color: var(--coral); }
.video-cell__play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-cell h4 { color:#fff; font-size: 24px; }
.video-cell p { color: rgba(255,255,255,0.8); font-size: 13px; margin: 6px 0 0; letter-spacing: .04em; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst__head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tst {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 38px 34px;
  display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tst:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tst__stars { display: flex; gap: 3px; color: var(--coral); margin-bottom: 20px; }
.tst__stars svg { width: 17px; height: 17px; }
.tst__quote { 
  font-family: var(--serif); font-size: 22px; line-height: 1.4; color: var(--ink); margin: 0 0 16px;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.tst__quote.expanded { -webkit-line-clamp: unset; }
.tst__read-more {
  background: none; border: none; color: var(--coral); font-family: var(--sans); font-size: 14px; font-weight: 700;
  cursor: pointer; padding: 0; margin-bottom: 26px; align-self: flex-start;
  text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.3s;
}
.tst__read-more:hover { text-decoration-color: var(--coral); }
.tst__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tst__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--coral-tint); color: var(--coral-deep); display: grid; place-items: center; font-family: var(--serif); font-size: 19px; font-weight: 600; }
.tst__who b { display: block; font-family: var(--sans); font-size: 15px; font-weight: 700; }
.tst__who span { font-size: 13px; color: var(--ink-soft); }
.tst__placeholder-note {
  text-align: center; margin-top: 40px; font-size: 13.5px; color: var(--ink-soft);
  background: var(--coral-tint); display: inline-flex; gap: 8px; padding: 10px 20px; border-radius: 999px;
}
.tst__note-wrap { text-align: center; }

/* ============================================================
   REVIEW MODAL
   ============================================================ */
.tst-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: var(--pad); visibility: hidden;
}
.tst-modal.open { visibility: visible; }
.tst-modal__overlay {
  position: absolute; inset: 0; background: rgba(28,24,20,0.6);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .4s var(--ease);
}
.tst-modal.open .tst-modal__overlay { opacity: 1; }
.tst-modal__window {
  position: relative; z-index: 2; width: 100%; max-width: 680px;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 56px 48px 48px; opacity: 0; transform: translateY(20px) scale(0.96);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.tst-modal.open .tst-modal__window { opacity: 1; transform: translateY(0) scale(1); }
.tst-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); border: none; cursor: pointer;
  display: grid; place-items: center; color: var(--ink-soft);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.tst-modal__close:hover { background: var(--coral-tint); color: var(--coral); transform: rotate(90deg); }
.tst-modal__close svg { width: 22px; height: 22px; }
.tst-modal__stars { display: flex; gap: 3px; color: var(--coral); margin-bottom: 24px; }
.tst-modal__stars svg { width: 20px; height: 20px; }
.tst-modal__quote { font-family: var(--serif); font-size: 26px; line-height: 1.45; color: var(--ink); margin: 0 0 36px; }
.tst-modal__who { display: flex; align-items: center; gap: 18px; }
.tst-modal__who .tst__avatar { width: 56px; height: 56px; font-size: 22px; }
.tst-modal__who b { font-family: var(--sans); font-size: 17px; font-weight: 700; color: var(--ink); display: block; }
.tst-modal__who span { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro p { color: var(--ink-soft); margin-top: 22px; }
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0; font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); color: var(--ink);
  transition: color .3s;
}
.faq-item__q:hover { color: var(--coral); }
.faq-item__icon { flex: none; width: 30px; height: 30px; position: relative; }
.faq-item__icon::before, .faq-item__icon::after {
  content:""; position: absolute; background: var(--coral); transition: transform .4s var(--ease);
}
.faq-item__icon::before { left: 0; top: 14px; width: 30px; height: 2px; }
.faq-item__icon::after { left: 14px; top: 0; width: 2px; height: 30px; }
.faq-item.open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.faq-item__a-inner { padding: 0 54px 30px 0; color: var(--ink-soft); font-size: 16px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--cream); }
.final-cta__panel {
  display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: stretch;
  background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.final-cta__media { position: relative; min-height: 420px; }
.final-cta__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta__body { padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.final-cta__body h2 { margin-bottom: 22px; }
.final-cta__body > p { color: var(--ink-soft); font-size: 18px; margin-bottom: 34px; max-width: 46ch; }
.final-cta__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.final-cta__price { font-size: 13.5px; color: var(--ink-soft); letter-spacing: .02em; margin: 0; max-width: 200px; line-height: 1.5; }
.final-cta__price b { font-family: var(--serif); font-size: 18px; color: var(--ink); }
@media (max-width: 900px) {
  .final-cta__panel { grid-template-columns: 1fr; }
  .final-cta__media { min-height: 300px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-block: 70px 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand img { height: 60px; margin-bottom: 22px; }
.footer__brand p { max-width: 320px; font-size: 14.5px; color: rgba(255,255,255,0.6); }
.footer__col h5 { color: #fff; font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px; }
.footer__col a { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,0.68); transition: color .3s; }
.footer__col a:hover { color: var(--coral); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }
.footer__bottom a:hover { color: var(--coral); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
body.reveal-all .reveal { opacity: 1 !important; transform: none !important; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .trust__track, .hero__scroll .bar::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { min-height: 56vh; order: -1; }
  .hero { min-height: auto; }
  .hero__text { padding-top: 110px; }
  .hero__badge { left: auto; right: 20px; bottom: 20px; }
  body[data-hero="full"] .hero__media { position: relative; }
  .included__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin: 0 auto; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .aspiration__row { grid-template-columns: 1fr; gap: 0; }
  .aspiration__item { padding-block: 26px; }
  .benefits__head { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .video-cell { grid-column: span 1; }
  .gallery__cell.wide { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions { gap: 18px; }
  .about__stats { gap: 28px; }
}
