/* =========================================================
   GLOW — healing platform
   Faithful recreation of the Solene (solene.framer.ai) layout
   restyled with Glow's brand identity (glownow.ai):
   palette, fonts and photo style.
   ========================================================= */

:root {
  /* Brand colors (glownow.ai) */
  --navy:        #202131;
  --navy-deep:   #16161f;
  --navy-soft:   #2a2b3d;
  --cream:       #fff0d3;
  --cream-bg:    #fffaf0;   /* dominant light background (echoes Solene cream) */
  --cream-2:     #fff4df;
  --amber:       #ffbc3f;
  --amber-deep:  #ef9f12;
  --ink:         #202131;
  --ink-soft:    #6b6c78;
  --line-light:  rgba(32,33,49,.12);
  --line-dark:   rgba(255,240,211,.16);

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

  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px; --r-pill: 999px;
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 60px);
  --section-y: clamp(80px, 12vw, 160px);
  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fffdf8 0%, #fdf5e4 100%) fixed;
  color: var(--ink);
  font-size: 16px; line-height: 1.5; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---- Type ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.02; letter-spacing: -.015em; }
.d1 { font-size: clamp(2.9rem, 7.4vw, 6rem); }
.d2 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); }
.d3 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); line-height: 1.55; }
.amber { color: var(--amber-deep); }
.eyebrow { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--amber-deep); display: inline-flex; gap: 8px; align-items: center; }
.section-dark .eyebrow { color: var(--amber); }
.section-dark .lead { color: rgba(255,240,211,.72); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 28px; border-radius: var(--r-pill); font-size: 15px; font-weight: 600; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s; }
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(32,33,49,.26); }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--ink); border: 1px solid var(--line-light); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.section-dark .btn-ghost { background: transparent; color: var(--cream); border-color: var(--line-dark); }
.section-dark .btn-ghost:hover { background: rgba(255,240,211,.08); }
.btn-dark { background: var(--navy); color: var(--cream); }
.btn-dark:hover { background: var(--amber); color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; padding-block: 18px; }

/* =========================================================
   NAV
   ========================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; justify-content: center; padding: 18px var(--pad); transition: padding .4s var(--ease); }
.nav__inner { width: 100%; max-width: var(--maxw); display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; color: var(--ink); line-height: 0; }
.nav .brand { color: #FFBC3F; }
.logo { display: block; width: 122px; height: 43px; color: inherit; }
.logo--lg { width: 142px; height: 50px; }
.nav__links { display: flex; gap: 4px; background: rgba(255,250,240,.7); border: 1px solid var(--line-light); padding: 6px; border-radius: var(--r-pill); backdrop-filter: blur(10px); transition: background .4s; }
.nav.scrolled .nav__links { background: rgba(255,250,240,.92); box-shadow: 0 6px 22px rgba(32,33,49,.1); }
.nav__links a { font-size: 13px; font-weight: 600; letter-spacing: .03em; padding: 9px 17px; border-radius: var(--r-pill); color: var(--ink-soft); transition: background .25s, color .25s; }
.nav__links a:hover { background: var(--cream); color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav.scrolled .brand, .nav.scrolled .nav__cta { } /* keep */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* =========================================================
   HERO (centered, à la Solene)
   ========================================================= */
/* Hero = one big rounded panel (border + inset margin) with the image as its
   background and the copy/CTA overlaid on top — matching Solene's structure. */
.hero { background: transparent; padding: clamp(84px, 11vh, 104px) clamp(12px, 1.5vw, 22px) clamp(12px, 1.5vw, 22px); }
.hero__panel { position: relative; min-height: min(96vh, 1040px); border: none; border-radius: var(--r-xl); overflow: hidden; background: var(--cream); display: flex; justify-content: center; }
.hero__bg { position: absolute; left: 0; top: -4%; width: 100%; height: 108%; object-fit: cover; object-position: center 38%; z-index: 0; will-change: transform; }
.hero__panel::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, var(--cream) 3%, rgba(255,240,211,.55) 30%, rgba(255,240,211,0) 62%); }
.hero__copy { position: relative; z-index: 3; text-align: center; max-width: 820px; padding: clamp(50px, 9vh, 110px) var(--pad) 0; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 520px; margin: 0 auto 28px; color: #6B6C78; text-shadow: none; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .star { z-index: 2; }
/* badge below the model's chin */
.hero__badge { position: absolute; left: 50%; bottom: clamp(48px, 7vh, 84px); transform: translateX(-50%); z-index: 4; display: inline-flex; align-items: center; gap: 14px; background: rgba(22,22,31,.42); backdrop-filter: blur(10px); border: 1px solid rgba(255,240,211,.16); border-radius: var(--r-pill); padding: 11px 22px 11px 18px; color: var(--cream); white-space: nowrap; }
.hero__badge .r { font-family: var(--font-display); color: var(--amber); font-size: 21px; line-height: 1; }
.hero__badge b { font-weight: 600; font-size: 14px; display: block; }
.hero__badge span { font-size: 12px; opacity: .72; display: block; }
@media (max-width: 680px) { .hero__panel { min-height: 84vh; } .hero__bg { object-position: center 50%; } .hero__badge span { font-size: 11px; } }

/* =========================================================
   HORIZONTAL STORY (one pinned section, full-screen panels)
   text -> image -> text -> cards, all scrolled sideways
   ========================================================= */
.hsection { position: relative; background: transparent; }
.hsection__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.hintro { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; padding: clamp(86px, 12vh, 120px) clamp(16px, 4vw, 70px); pointer-events: none; will-change: opacity; }
.hsection__track { display: flex; height: 100vh; position: relative; z-index: 2; will-change: transform; }
.hpanel--spacer { background: transparent; }
.hpanel { position: relative; flex: 0 0 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; padding: clamp(86px, 12vh, 120px) clamp(16px, 4vw, 70px) clamp(34px, 6vh, 64px); }
.hpanel--closing .hclose { position: relative; z-index: 2; text-align: center; }
.hpanel--closing .hclose .lead { margin-top: 16px; }

/* text panels with word-by-word fill */
.htext { max-width: 1040px; text-align: center; font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 4rem); line-height: 1.12; letter-spacing: -.01em; }
.htext .w { color: rgba(32,33,49,.16); transition: color .15s linear; }
.htext .w.on { color: var(--ink); }
.htext .w.hl.on { color: var(--amber-deep); }

/* image module: full image with heading + 3 benefits overlaid on the bottom */
.himod { width: 100%; height: 100%; }
.himg { position: relative; width: 100%; height: 100%; border: 1px solid var(--line-light); border-radius: var(--r-xl); overflow: hidden; color: var(--cream); }
.himg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.himg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,31,0) 42%, rgba(22,22,31,.74)); }
.himg__inner { position: absolute; inset: auto 0 0 0; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: clamp(24px, 3vw, 64px); padding: clamp(26px, 3.4vw, 56px); }
.himg__cap { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1.04; flex: 0 0 auto; }
.hbens { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 40px); flex: 1 1 auto; max-width: 60%; }
.hben__ic { display: inline-flex; margin-bottom: 12px; color: var(--amber); font-size: 22px; }
.hben h5 { font-family: var(--font-body); font-weight: 600; font-size: clamp(1rem, 1.15vw, 1.18rem); margin-bottom: 6px; color: var(--cream); }
.hben p { color: rgba(255,240,211,.78); font-size: 13.5px; line-height: 1.45; }

/* statement panel (refined, with subtle stars), ~70% wide */
.hpanel--statement::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 48% 36% at 50% 50%, rgba(230,165,39,.42) 0%, rgba(230,165,39,.16) 36%, rgba(230,165,39,0) 68%); }
.hpanel--statement .hstatement { position: relative; z-index: 2; text-align: center; max-width: 72%; }
.hpanel--statement .hstatement .lead { margin-top: 16px; }

/* =========================================================
   STICKY "Small habits" with floating shapes
   ========================================================= */
.habits { position: relative; height: 200vh; background: var(--cream-2); }
.habits__sticky { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.habits__copy { position: relative; z-index: 3; }
.habits__copy .lead { margin-top: 16px; }
/* ---- Sparkle star motif (echoes the star in Glow's logo) ---- */
.star { position: absolute; pointer-events: none; background: center/contain no-repeat; will-change: transform; z-index: 1; }
.star--out   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23202131' stroke-width='1.1' stroke-linejoin='round'%3E%3Cpath d='M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z'/%3E%3C/svg%3E"); }
.star--amber { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23ffe1a0'/%3E%3Cstop offset='1' stop-color='%23ef9f12'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z'/%3E%3C/svg%3E"); }
.star--cream { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffeccb' stroke-width='1.1' stroke-linejoin='round'%3E%3Cpath d='M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z'/%3E%3C/svg%3E"); }
.star--amberfill-cream { } /* reserved */

/* =========================================================
   THREE-UP over image (Intelligent care)
   ========================================================= */
.careband { position: relative; min-height: 86vh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.careband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.careband::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,31,.15), rgba(22,22,31,.72)); }
.careband__inner { position: relative; z-index: 2; width: 100%; }
.careband__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(20px, 3vw, 48px); align-items: end; padding-bottom: clamp(40px, 6vw, 80px); }
.careband__grid h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.cfeat .ic { color: var(--amber); font-size: 22px; margin-bottom: 14px; }
.cfeat h5 { font-family: var(--font-body); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.cfeat p { color: rgba(255,240,211,.72); font-size: 15px; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-band { background: #704A00; }
.marquee { overflow: hidden; padding-block: clamp(18px, 2.6vw, 30px); white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 46px; will-change: transform; animation: mq 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.6rem); display: inline-flex; gap: 46px; align-items: center; color: var(--cream); }
.marquee__track span::after { content: "✦"; color: var(--amber); font-size: .55em; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-50%); } }

/* =========================================================
   BENTO
   ========================================================= */
.section { padding-block: var(--section-y); }
.section-dark { background: var(--navy); color: var(--cream); }
.section-cream { background: transparent; }
.section-cream-2 { background: transparent; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .d2 { margin-bottom: 18px; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* Bento — light theme, on a subtle white -> orange gradient */
.bento-sec { background: linear-gradient(180deg, #fffdf8 0%, #fdeccb 58%, #f3c272 100%); color: var(--ink); }
.bento-sec .section-head { max-width: 720px; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bcard { position: relative; border-radius: var(--r-lg); overflow: hidden; padding: clamp(24px, 2.4vw, 36px); min-height: 340px; will-change: transform; }
.bcard__top { position: relative; z-index: 2; }
.bcard h4 { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.02rem, 1.25vw, 1.26rem); line-height: 1.28; margin-bottom: 10px; color: var(--ink); }
.bcard p { font-size: 14.5px; color: var(--ink-soft); max-width: 44ch; line-height: 1.5; }

.bcard--a { grid-column: span 3; background: #E6A527; }
.bcard--a h4 { color: var(--cream); }
.bcard--a p { color: rgba(255, 240, 211, 0.85); }
.bcard--a .bcard__deco { position: absolute; right: -30px; bottom: -36px; z-index: 1; }

.bcard--img { grid-column: span 3; color: var(--cream); }
.bcard--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bcard--img::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(22,22,31,.55) 0%, rgba(22,22,31,.12) 48%, rgba(22,22,31,.04) 100%); }
.bcard--img h4 { color: var(--cream); }
.bcard--img p { color: rgba(255,240,211,.85); max-width: 52ch; }

/* row-2 cards: solid light colours (cut-out objects added later) */
.bcard--photo { grid-column: span 2; min-height: 380px; }
.bcard--c { background: #FCD381; }
.bcard--d { background: #DCC8A1; }
.bcard--e { background: #FFF8EB; }

/* inline sparkle icon (currentColor, not absolute) */
.ico { display: inline-block; width: 1.05em; height: 1.05em; flex: none; vertical-align: -0.16em; background-color: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* Stats row */
.bstats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(16px, 2vw, 28px); }
.bstat { padding: clamp(28px, 3vw, 42px) clamp(22px, 2.6vw, 40px) 0; border-left: 1px solid var(--line-light); }
.bstat:first-child { border-left: none; padding-left: 0; }
.bstat .num { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 1; color: var(--ink); }
.bstat .lab { display: flex; align-items: center; gap: 9px; margin: 16px 0 10px; font-weight: 600; font-size: 15px; }
.bstat p { color: var(--ink-soft); font-size: 14.5px; max-width: 34ch; }

/* =========================================================
   FORMULA / GLOW METHOD (horizontal cards)
   ========================================================= */
.method { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 56px); align-items: stretch; }
.method__visual { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 460px; }
.method__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.method__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,31,.1), rgba(22,22,31,.7)); }
.method__tag { position: absolute; top: 22px; left: 22px; z-index: 2; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.method__big { position: absolute; left: 24px; bottom: 22px; right: 24px; z-index: 2; }
.method__big .d3 { color: var(--cream); margin-bottom: 14px; }
.method__panel { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.method__stat { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5rem); color: var(--cream); line-height: .95; }
.method__stat sup { color: var(--amber); font-size: .38em; vertical-align: super; }
.method__note { color: rgba(255,240,211,.5); font-size: 14px; }
.pill-item { border: 1px solid var(--line-dark); border-radius: var(--r-md); padding: 18px 20px; transition: background .3s, border-color .3s; }
.pill-item:hover { background: rgba(255,240,211,.05); border-color: rgba(255,188,63,.35); }
.pill-item h6 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.pill-item p { color: rgba(255,240,211,.72); font-size: 15px; }

/* =========================================================
   MODALITIES (ingredients list, hover thumb)
   ========================================================= */
.rows { }
.row { display: flex; align-items: center; gap: 22px; padding: clamp(18px, 2.6vw, 30px) 0; transition: padding-left .35s var(--ease); }
.row .num { font-family: var(--font-body); font-size: 13px; letter-spacing: .1em; color: var(--ink-soft); width: 36px; }
.row h3 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--ink); transition: color .3s; flex: 1; }
.row .thumb { width: 0; height: 84px; border-radius: var(--r-md); overflow: hidden; transition: width .4s var(--ease); }
.row .thumb img { width: 130px; height: 100%; object-fit: cover; }
.row:hover { padding-left: 18px; }
.row:hover h3 { color: var(--amber-deep); }
.row:hover .thumb { width: 130px; }

/* For Practitioners cards */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(28px, 4vw, 48px); }
.pcard { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: clamp(360px, 38vw, 460px); display: flex; align-items: flex-end; color: var(--cream); }
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,31,0) 42%, rgba(22,22,31,.72)); }
.pcard:hover img { transform: scale(1.05); }
.pcard__body { position: relative; z-index: 2; padding: clamp(24px, 3vw, 44px); }
.pcard__body .plabel { font-size: 13px; opacity: .8; }
.pcard__body h4 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 2.2vw, 2.1rem); line-height: 1.08; margin-top: 8px; }
@media (max-width: 760px) { .pgrid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS (horizontal scroll)
   ========================================================= */
.tst__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.tst__head--top { align-items: flex-start; }
.tst__scroller { display: flex; gap: 18px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; touch-action: pan-x; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
  padding-top: 4px; padding-bottom: 16px;
  padding-inline-start: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
  padding-inline-end: var(--pad);
  scroll-padding-inline-start: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad))); }
.tst__scroller::-webkit-scrollbar { display: none; }
.tcard { flex: 0 0 340px; scroll-snap-align: start; background: var(--navy-soft); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; gap: 16px; min-height: 250px; }
.tcard.photo { padding: 0; overflow: hidden; flex-basis: 270px; }
.tcard.photo img { width: 100%; height: 100%; object-fit: cover; }
.tcard .r { font-family: var(--font-display); color: var(--amber); font-size: 21px; }
.tcard .q { font-size: 17px; line-height: 1.45; color: var(--cream); flex: 1; }
.tcard .p { display: flex; align-items: center; gap: 12px; }
.tcard .p .av { width: 42px; height: 42px; border-radius: 50%; background: var(--amber); color: var(--navy); display: grid; place-items: center; font-weight: 700; }
.tcard .p b { font-weight: 600; font-size: 14px; }
.tcard .p span { display: block; font-size: 12px; color: rgba(255,240,211,.5); }

/* =========================================================
   OFFER
   ========================================================= */
.offer { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: stretch; }
.offer__media { border-radius: var(--r-xl); overflow: hidden; position: relative; min-height: clamp(460px, 56vw, 640px); }
.offer__media img { width: 100%; height: 100%; object-fit: cover; }
.offer__price { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 14px; }
.offer__price .pr { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); }
.offer__price .per { color: var(--ink-soft); font-size: 15px; }
.offer__opts { display: flex; gap: 10px; margin: 22px 0; }
.opt { flex: 1; border: 1px solid var(--line-light); border-radius: var(--r-md); padding: 14px; text-align: center; font-weight: 600; font-size: 14px; transition: .25s; }
.opt.active, .opt:hover { border-color: var(--navy); background: var(--navy); color: var(--cream); }
.offer__desc { color: var(--ink-soft); margin-bottom: 16px; }
.offer__guarantee { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 14px; }

/* ---- Accordion ---- */
.acc__item { border-bottom: 1px solid var(--line-light); }
.acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; text-align: left; font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: inherit; }
.acc__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid currentColor; position: relative; opacity: .7; transition: .3s; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; inset: 50% 8px; height: 1.5px; background: currentColor; transform: translateY(-50%); transition: .3s; }
.acc__icon::after { transform: translateY(-50%) rotate(90deg); }
.acc__item.open .acc__icon { background: var(--amber); border-color: var(--amber); color: var(--navy); opacity: 1; }
.acc__item.open .acc__icon::after { transform: translateY(-50%) rotate(0); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc__panel p { padding: 0 0 22px; color: var(--ink-soft); max-width: 62ch; font-size: 15.5px; }

/* =========================================================
   BLOG
   ========================================================= */
.blog__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.bpost { border-radius: var(--r-lg); overflow: hidden; position: relative; min-height: 360px; display: flex; align-items: flex-end; color: var(--cream); }
.bpost img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bpost::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,31,0) 30%, rgba(22,22,31,.82)); }
.bpost:hover img { transform: scale(1.05); }
.bpost__body { position: relative; z-index: 2; padding: 26px; }
.bpost__body time { font-size: 13px; opacity: .75; }
.bpost__body h3 { font-size: 1.5rem; margin-top: 6px; }

/* =========================================================
   FOOTER CTA + FOOTER
   ========================================================= */
.fcta { position: relative; overflow: hidden; text-align: center; color: var(--cream); padding-block: clamp(100px, 18vw, 220px); }
.fcta img { position: absolute; left: 0; top: -14%; width: 100%; height: 128%; object-fit: cover; will-change: transform; }
.fcta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,31,.4), rgba(22,22,31,.72)); }
.fcta__body { position: relative; z-index: 2; }
.fcta h2 { margin-bottom: clamp(36px, 5vw, 56px); }

.footer { background: var(--navy-deep); color: var(--cream); padding-top: clamp(56px, 8vw, 100px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer__brand .brand { color: rgba(255, 255, 255, 0.3); }
.footer__quote { color: rgba(255,240,211,.55); font-style: italic; max-width: 34ch; margin: 18px 0; font-size: 15px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; font-size: 12px; transition: .25s; }
.footer__social a:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.footer__col h6 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(255,240,211,.7); padding: 7px 0; font-size: 15px; transition: color .2s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 26px; flex-wrap: wrap; font-size: 13px; color: rgba(255,240,211,.5); }
.footer__word { display: flex; justify-content: center; padding: clamp(40px,6vw,72px) 0 clamp(30px,4vw,48px); user-select: none; }
.logo--giant { width: clamp(110px, 16%, 240px); height: auto; color: #ffffff; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.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; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .hero__media img { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard--a, .bcard--img { grid-column: 1 / -1; }
  .bcard--photo { grid-column: span 1; }
  .bstats { grid-template-columns: 1fr; }
  .bstat { border-left: none; border-top: 1px solid var(--line-light); padding-left: 0; }
  .bstat:first-child { border-top: none; }
  .method { grid-template-columns: 1fr; }
  .careband__grid { grid-template-columns: 1fr; gap: 24px; }
  .offer { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  /* Disable JS-driven horizontal pin on small screens: fall back to vertical scroll */
  .hsection { height: auto !important; }
  .hsection__sticky { position: static; height: auto; }
  .hsection__track { flex-direction: column; height: auto; transform: none !important; }
  .hintro { position: static; opacity: 1 !important; padding: var(--section-y) var(--pad); }
  .hpanel--spacer { display: none; }
  .hpanel { flex: none; width: 100%; height: auto; min-height: auto; padding: var(--section-y) var(--pad); }
  .himod { height: auto; }
  .himg { min-height: 78vh; }
  .himg__inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hbens { grid-template-columns: 1fr 1fr; max-width: 100%; gap: 20px; }
  .hpanel--statement .hstatement { max-width: 100%; }
  .habits { height: auto; }
  .habits__sticky { position: static; height: auto; padding-block: var(--section-y); }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links { display: flex; position: absolute; top: 72px; left: var(--pad); right: var(--pad); flex-direction: column; padding: 12px; border-radius: var(--r-lg); background: var(--cream-bg); box-shadow: 0 20px 40px rgba(32,33,49,.18); }
  .bento { grid-template-columns: 1fr; }
  .bcard--photo { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr; }
}
