/* ============================================================
   THE FREEDOM METHOD — Landing
   Editorial luxe. Warm cream + charcoal, warm clay accent.
   Atmosphere · grain · 3D tilt · gradients · motion.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #efeee7;   /* brand cream */
  --bg-tint:   #e8e5da;
  --bg-ink:    #23242a;   /* charcoal */
  --ink:       #2b2c30;
  --ink-90:    rgba(43, 44, 48, 0.90);
  --ink-64:    rgba(43, 44, 48, 0.64);
  --ink-46:    rgba(43, 44, 48, 0.46);
  --ink-16:    rgba(43, 44, 48, 0.16);
  --ink-10:    rgba(43, 44, 48, 0.10);
  --cream-72:  rgba(239, 238, 231, 0.72);
  --cream-40:  rgba(239, 238, 231, 0.40);
  --cream-14:  rgba(239, 238, 231, 0.14);

  /* warm accent family */
  --clay:      #b0895e;
  --clay-2:    #caa070;
  --clay-deep: #8a6a43;
  --sand:      #ded2ba;
  --taupe:     #c7b9a0;

  --grad-warm: linear-gradient(102deg, var(--clay-2), var(--clay-deep));

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 11vh, 9.5rem);
  --card-shadow: 0 34px 70px -34px rgba(35, 36, 42, 0.55);

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

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  /* warm layered base so it never reads as flat white */
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 820px at 12% -8%, rgba(202, 160, 112, 0.30), transparent 60%),
    radial-gradient(1050px 900px at 104% 12%, rgba(176, 137, 94, 0.18), transparent 55%),
    radial-gradient(1000px 1000px at 50% 116%, rgba(35, 36, 42, 0.12), transparent 60%);
  background-attachment: fixed;
}

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

/* ---------- Atmosphere: drifting warm blobs ---------- */
.bg-field { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(64px); opacity: 0.55; will-change: transform; }
.blob--1 { width: 46vw; height: 46vw; left: -12vw; top: -8vw;
  background: radial-gradient(circle, rgba(202,160,112,0.55), transparent 66%); animation: drift1 26s var(--ease) infinite; }
.blob--2 { width: 40vw; height: 40vw; right: -10vw; top: 26vh;
  background: radial-gradient(circle, rgba(199,185,160,0.55), transparent 66%); animation: drift2 32s var(--ease) infinite; }
.blob--3 { width: 44vw; height: 44vw; left: 22vw; bottom: -16vw;
  background: radial-gradient(circle, rgba(176,137,94,0.30), transparent 68%); animation: drift3 30s var(--ease) infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(6vw,4vh)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-5vw,-3vh)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-4vw,5vh)} }
@media (prefers-reduced-motion: reduce) { .blob { animation: none !important; } }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.section { padding-block: var(--section-y); position: relative; background: transparent; }

/* Tint sections read as a soft warm panel */
.section--tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(222,210,186,0.20)),
    linear-gradient(180deg, rgba(43,44,48,0.03), rgba(43,44,48,0.05));
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid var(--ink-10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Dark sections: rich charcoal with warm glow */
.section--ink {
  color: var(--cream-72);
  background:
    radial-gradient(90% 70% at 50% -10%, rgba(176,137,94,0.22), transparent 60%),
    radial-gradient(80% 90% at 100% 100%, rgba(202,160,112,0.10), transparent 55%),
    linear-gradient(180deg, #2b2c31, #1f2025);
}
.section--ink .headline, .section--ink .eyebrow { color: var(--bg); }

.rule { height: 1px; background: var(--ink-16); border: 0; margin: 0; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-46); margin: 0;
}
.headline { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.headline em { font-style: italic; }
.h-xl { font-size: clamp(2rem, 1.3rem + 3vw, 3.6rem); line-height: 1.2; }
.h-lg { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem); }
.h-md { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); }
.lead { font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem); line-height: 1.6; color: var(--ink-64); max-width: 46ch; margin: 0; }
.section--ink .lead { color: var(--cream-40); }
.muted { color: var(--ink-64); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* warm gold accent words — plain solid fill, no background-clip/gradient
   (that masking trick was making thin italic strokes vanish at some sizes) */
.grad-text {
  color: var(--clay-deep);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 70;
  background: rgba(43, 44, 48, 0.07);
}
.scroll-progress span {
  display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--clay-2), var(--clay-deep));
  box-shadow: 0 0 12px rgba(202, 160, 112, 0.6);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 1.05rem;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: var(--btn-pad-y) 2.1rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--ink); border-radius: 999px;
  transition: background .5s var(--ease), color .5s var(--ease),
              transform .35s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  will-change: transform;
}
/* sheen sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 130%; }

.btn--primary {
  background: linear-gradient(180deg, #34353c, #23242a); color: var(--bg); border-color: transparent;
  box-shadow: 0 14px 30px -14px rgba(35,36,42,0.7);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(138,106,67,0.55); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--clay); color: var(--clay-deep); box-shadow: 0 18px 34px -20px rgba(43,44,48,0.5); }

.section--ink .btn--primary { background: linear-gradient(180deg, #f4f3ec, #e4e1d5); color: var(--ink); }
.section--ink .btn--primary:hover { box-shadow: 0 22px 44px -16px rgba(202,160,112,0.55); }
.section--ink .btn--ghost { color: var(--bg); border-color: var(--cream-40); }
.section--ink .btn--ghost:hover { border-color: var(--clay-2); color: var(--clay-2); }
.btn--wide { width: 100%; max-width: 420px; }

/* ============================================================ NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(239, 238, 231, 0.82);
  -webkit-backdrop-filter: blur(12px) saturate(1.2); backdrop-filter: blur(12px) saturate(1.2);
  padding-block: 0.8rem; box-shadow: 0 1px 0 var(--ink-10), 0 14px 30px -26px rgba(35,36,42,0.6);
}
.nav__mark { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo { width: auto; height: 34px; }
.nav__word { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--ink-46); display: none; }
.nav__link {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; border: 1px solid var(--ink); border-radius: 999px;
  transition: background .4s var(--ease), color .4s var(--ease), transform .3s var(--ease);
}
.nav__link:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
@media (min-width: 720px) { .nav__word { display: inline; } }

/* ============================================================ HERO */
.hero { position: relative; padding-top: clamp(7.5rem, 16vh, 12rem); padding-bottom: clamp(3rem, 7vh, 5rem); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow { margin-bottom: 1.6rem; display: flex; align-items: center; gap: 0.9rem; }
.hero__eyebrow::before { content: "01"; font-family: var(--serif); font-style: italic; color: var(--clay); }
.hero__eyebrow span { display: inline-block; width: 34px; height: 1px; background: var(--ink-16); }
.hero h1 { margin-bottom: 1.6rem; }
.hero__sub { margin-bottom: 1.9rem; max-width: 40ch; }
.hero__cue {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-46);
  transition: color .3s;
}
.hero__cue:hover { color: var(--clay-deep); }
.hero__cue .arrow {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px;
  border: 1px solid var(--ink-16); animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (prefers-reduced-motion: reduce) { .hero__cue .arrow { animation: none; } }

.hero__media { position: relative; justify-self: center; width: 100%; max-width: 380px; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%;
  border-radius: 4px; filter: grayscale(0.10) contrast(1.03);
  box-shadow: var(--card-shadow);
}
.hero__media::after {
  content: ""; position: absolute; inset: 12px -12px -12px 12px;
  border: 1px solid var(--clay); opacity: 0.5; border-radius: 4px; z-index: -1;
}
.hero__badge {
  position: absolute; left: -6%; bottom: 8%; z-index: 2;
  background: rgba(239,238,231,0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--ink-16); border-radius: 999px; padding: 0.6rem 1.1rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-64);
  box-shadow: 0 18px 34px -22px rgba(35,36,42,0.6); display: flex; align-items: center; gap: 0.5rem;
}
.hero__badge b { font-family: var(--serif); font-weight: 600; font-style: italic; color: var(--clay-deep); text-transform: none; letter-spacing: 0; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
  .hero__media { justify-self: end; max-width: 430px; }
}

/* ============================================================ VSL */
.vsl__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.vsl__head .eyebrow { margin-bottom: 0.9rem; }

/* ---------- Video placeholders ---------- */
.video-ph {
  position: relative; overflow: hidden; border-radius: 6px;
  background: linear-gradient(160deg, #34353c, #1c1d22);
  border: 1px solid var(--ink-16); display: grid; place-items: center;
  color: var(--cream-72); isolation: isolate; box-shadow: var(--card-shadow);
}
.video-ph::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(202,160,112,0.22), transparent 58%),
    repeating-linear-gradient(135deg, rgba(239,238,231,0.035) 0 2px, transparent 2px 10px);
}
.video-ph__play {
  position: relative; width: clamp(56px, 8vw, 78px); aspect-ratio: 1; border-radius: 999px;
  border: 1px solid var(--cream-40); display: grid; place-items: center;
  transition: transform .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.video-ph__play::before {
  content: ""; position: absolute; inset: -14px; border-radius: 999px;
  background: radial-gradient(circle, rgba(202,160,112,0.5), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease); z-index: -1;
}
.video-ph__play svg { width: 34%; margin-left: 12%; fill: var(--cream-72); transition: fill .5s var(--ease); }
.video-ph:hover .video-ph__play { transform: scale(1.1); background: var(--bg); box-shadow: 0 12px 30px -8px rgba(202,160,112,0.6); }
.video-ph:hover .video-ph__play::before { opacity: 1; }
.video-ph:hover .video-ph__play svg { fill: var(--ink); }
.video-ph__label {
  position: absolute; left: 0; bottom: 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-72);
}
.video-ph__label .tag { font-family: var(--serif); font-style: italic; letter-spacing: 0.02em; text-transform: none; color: var(--clay-2); font-size: 0.85rem; font-weight: 400; }

.vsl-frame { aspect-ratio: 16 / 9; max-width: 920px; margin-inline: auto; }
.ph-9x16 { aspect-ratio: 9 / 16; }

/* ---------- Real videos: thumbnail → lightbox ---------- */
.wrap--wide { max-width: 1400px; }

.vid-card { display: flex; flex-direction: column; gap: 0.9rem; margin: 0; }
.vid-card__name {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--ink); text-align: center;
}
.section--ink .vid-card__name { color: var(--bg); }

.vid-thumb {
  position: relative; display: block; width: 100%; padding: 0; overflow: hidden;
  aspect-ratio: 9 / 16; border-radius: 8px; border: 1px solid var(--ink-16);
  background: #1c1d22; cursor: pointer; box-shadow: var(--card-shadow);
  transform-style: preserve-3d;
}
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s var(--ease); }
.vid-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,21,25,0.55), transparent 42%);
  opacity: 0.85; transition: opacity .5s var(--ease); pointer-events: none;
}
.vid-thumb:not(.vsl-frame):hover img { transform: scale(1.06); }
.vid-thumb:hover::after { opacity: 0.5; }

.vid-thumb__play {
  /* NOTE: centring lives in `transform` only — never mix the `translate` property
     with `transform` here, they compound and the button jumps on hover. */
  position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  width: clamp(54px, 5vw, 68px); aspect-ratio: 1; border-radius: 999px;
  border: 1px solid var(--cream-40); background: rgba(20,21,25,0.42);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: grid; place-items: center;
  transition: transform .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.vid-thumb__play svg { width: 34%; fill: var(--bg); transition: fill .5s var(--ease); }
.vid-thumb:hover .vid-thumb__play {
  transform: translate(-50%, -50%) scale(1.12); background: var(--bg);
  box-shadow: 0 14px 36px -8px rgba(202,160,112,0.7);
}
.vid-thumb:hover .vid-thumb__play svg { fill: var(--ink); }

.vid-thumb__zoom {
  position: absolute; bottom: 0.9rem; left: 50%; translate: -50% 0; z-index: 2;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bg); opacity: 0; transform: translateY(6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.vid-thumb:hover .vid-thumb__zoom { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 0;
  background: rgba(14, 15, 18, 0.96);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__inner {
  position: relative; display: flex; align-items: center; justify-content: center;
  transform: scale(0.96); transition: transform .5s var(--ease);
}
.lightbox.is-open .lightbox__inner { transform: scale(1); }

/* Practically full-screen: the 9:16 video fills the viewport height
   (or the full width on narrow screens), whichever hits the edge first. */
.lightbox__video {
  width: min(calc(100vh * 9 / 16), 100vw);
  width: min(calc(100dvh * 9 / 16), 100vw);
  aspect-ratio: 9 / 16; height: auto;
  border-radius: 0; background: #000;
  box-shadow: 0 0 120px rgba(0, 0, 0, 0.8);
}
/* Landscape videos (e.g. the VSL) get the inverse treatment: fill by width, not height. */
.lightbox__video.is-wide {
  width: min(calc(100vh * 16 / 9), 94vw);
  width: min(calc(100dvh * 16 / 9), 94vw);
  aspect-ratio: 16 / 9;
}
.lightbox__title {
  position: absolute; top: 1.1rem; left: 50%; translate: -50% 0; z-index: 3;
  margin: 0; font-family: var(--serif); font-style: italic; font-size: 1rem;
  color: var(--bg); text-align: center; white-space: nowrap;
  padding: 0.45rem 1.1rem; border-radius: 999px;
  background: rgba(20, 21, 25, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  pointer-events: none;
}
.lightbox__close {
  position: fixed; top: clamp(0.8rem, 2vw, 1.6rem); right: clamp(0.8rem, 2vw, 1.6rem);
  z-index: 210; width: 46px; height: 46px; border-radius: 999px;
  border: 1px solid var(--cream-40); color: var(--bg);
  /* solid dark pill so the × stays visible over any frame of the video */
  background: rgba(20, 21, 25, 0.72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 1.7rem; line-height: 1; display: grid; place-items: center;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.lightbox__close:hover { background: var(--bg); color: var(--ink); transform: rotate(90deg); }
body.no-scroll { overflow: hidden; }

/* ============================================================ CTA BLOCK */
.cta { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; max-width: 640px; margin-inline: auto; }
.cta__line { margin: 0; }
.cta__divider {
  display: flex; align-items: center; gap: 1rem; width: 100%; max-width: 340px;
  color: var(--ink-46); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; margin-block: 0.4rem;
}
.cta__divider::before, .cta__divider::after { content: ""; flex: 1; height: 1px; background: var(--ink-16); }
.section--ink .cta__divider { color: var(--cream-40); }
.section--ink .cta__divider::before, .section--ink .cta__divider::after { background: var(--cream-14); }
.cta__note { font-size: 0.98rem; max-width: 48ch; }

/* ---------- Typeform application embed ---------- */
.typeform-embed {
  display: block; width: 100%; max-width: 640px; margin: 0 auto;
  height: clamp(420px, 60vw, 620px);
  border: 0; border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 50px -34px rgba(35,36,42,0.4);
}

/* ============================================================ SECTION HEADERS */
.sec-head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.sec-head.center { align-items: center; text-align: center; }

.testi-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  color: var(--clay-deep); text-align: center; max-width: 52ch;
  margin: 0 auto clamp(1.6rem, 3vw, 2.4rem);
}

/* ============================================================ TESTIMONIAL GRID */
.vgrid { display: grid; gap: clamp(0.9rem, 2vw, 1.4rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .vgrid { grid-template-columns: repeat(4, 1fr); } }

.vid-thumb.vsl-frame { aspect-ratio: 16 / 9; }
.vsl-frame img { animation: vsl-slow-zoom 22s ease-in-out infinite alternate; }
@keyframes vsl-slow-zoom { from { transform: scale(1); } to { transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce) { .vsl-frame img { animation: none; } }

/* ============================================================ TRANSFORMATIONS */
.tgrid { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem); grid-template-columns: 1fr; }
@media (min-width: 620px) { .tgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .tgrid { grid-template-columns: repeat(3, 1fr); } }

.tcard { display: flex; flex-direction: column; }
.tcard__img {
  /* photos are square before|after composites */
  position: relative; aspect-ratio: 1 / 1; border: 1px solid var(--ink-16); border-radius: 6px;
  background: var(--bg-tint); overflow: hidden; box-shadow: 0 20px 44px -30px rgba(35,36,42,0.5);
}
.tcard__img img { width: 100%; height: 100%; object-fit: cover; }
.tcard__img .ba {
  position: absolute; top: 0.7rem; z-index: 2;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); padding: 0.28rem 0.6rem; border-radius: 999px;
  background: rgba(20, 21, 25, 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.tcard__img .ba.before { left: 0.7rem; }
.tcard__img .ba.after { right: 0.7rem; }

.tcard__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin: 1.1rem 0 0.2rem; }
.tcard__lead { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 0.9rem; }
.tcard__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.tcard__list li { position: relative; padding-left: 1.6rem; font-size: 0.97rem; color: var(--ink-64); }
.tcard__list li::after { content: "✓"; position: absolute; left: 0; top: 0; color: var(--clay); font-size: 0.9rem; font-weight: 700; }

/* ============================================================ OBJECTION LIBRARY */
.ogrid { display: grid; gap: clamp(0.9rem, 2vw, 1.3rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .ogrid { grid-template-columns: repeat(2, 1fr); } }

.ocard {
  position: relative; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden;
  background: linear-gradient(160deg, #303138, #191a1f); border: 1px solid var(--cream-14);
  cursor: pointer; display: block; width: 100%; text-align: left; color: var(--cream-72);
  box-shadow: var(--card-shadow);
}
.ocard img {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.ocard:hover img { transform: scale(1.06); }
.ocard::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 8%, rgba(202,160,112,0.20), transparent 55%),
    linear-gradient(rgba(20,21,25,0.35), rgba(20,21,25,0.35)),
    repeating-linear-gradient(135deg, rgba(239,238,231,0.035) 0 2px, transparent 2px 10px);
}
.ocard__play {
  position: absolute; top: 46%; left: 50%; z-index: 2;
  transform: translate(-50%, -50%);   /* centring in `transform` only — see note above */
  width: 52px; aspect-ratio: 1; border-radius: 999px; border: 1px solid var(--cream-40);
  background: rgba(20,21,25,0.42); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.ocard__play svg { width: 34%; fill: var(--cream-72); }
.ocard__title {
  position: absolute; left: 0; bottom: 0; width: 100%; z-index: 2; padding: 1.15rem 1.15rem 1.25rem;
  font-family: var(--serif); font-size: 1.02rem; line-height: 1.3; font-weight: 500; color: var(--bg);
  background: linear-gradient(to top, rgba(20,21,25,0.95), rgba(20,21,25,0.55) 55%, transparent);
  transform: translateY(6px); transition: transform .5s var(--ease);
}
.ocard:hover .ocard__play, .ocard.is-open .ocard__play { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
.ocard:hover .ocard__title, .ocard.is-open .ocard__title { transform: translateY(0); }

/* ============================================================ WHY I BUILT THIS */
.why__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.why__media { position: relative; max-width: 400px; width: 100%; justify-self: center; }
.why__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 4px; filter: grayscale(0.12) contrast(1.03); box-shadow: var(--card-shadow); }
.why__media::after { content: ""; position: absolute; inset: -12px 12px 12px -12px; border: 1px solid var(--clay); opacity: 0.5; border-radius: 4px; z-index: -1; }
.why__body p { margin: 0 0 1.1rem; color: var(--ink-64); }
.why__body p.lead-in { color: var(--ink); font-size: 1.15rem; }
.why__body p.lead-in em { font-style: italic; }
.why__sig { font-family: var(--serif); font-style: italic; font-size: 1.45rem; margin-top: 1.4rem; }
.draft-tag { display: inline-block; font-family: var(--sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay-deep); border: 1px dashed var(--clay); border-radius: 3px; padding: 0.25rem 0.55rem; margin-bottom: 1.2rem; }
@media (min-width: 860px) { .why__grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; } .why__media { justify-self: start; } }

/* ============================================================ TRUST */
.trust__row { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: 1fr; }
@media (min-width: 860px) { .trust__row { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.trustpilot-ph {
  border: 1px solid var(--ink-16); border-radius: 6px; padding: 1.6rem 1.4rem; text-align: center;
  display: grid; place-items: center; gap: 0.6rem; min-height: 190px;
  background: linear-gradient(165deg, rgba(255,255,255,0.55), rgba(222,210,186,0.3)); box-shadow: 0 24px 50px -34px rgba(35,36,42,0.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.trustpilot-ph:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -30px rgba(35,36,42,0.6); }
.trustpilot-ph .stars { font-size: 1.5rem; letter-spacing: 0.15em; color: var(--clay); }
.trustpilot-ph .score { font-family: var(--serif); font-size: 2.3rem; margin: 0.6rem 0 0.2rem; }
.trustpilot-ph .cap { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-46); }
/* ---------- Client messages — infinite right-to-left marquee ---------- */
.marquee {
  position: relative; overflow: hidden;
  width: 100vw; margin-left: calc(50% - 50vw);   /* full bleed out of .wrap */
  padding-block: 1rem;
  /* fade both edges regardless of what's behind */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track {
  display: flex; align-items: center; width: max-content;
  animation: marquee-left 60s linear infinite;
}
.marquee--rev .marquee__track { animation-name: marquee-right; }
.marquee:active .marquee__track { animation-play-state: paused; }

/* The track holds the set twice, so shifting by exactly -50% lands on the
   identical card and the loop is invisible. NOTE: spacing must come from each
   card's margin — a `gap` on the track would make -50% land half a gap off. */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Fixed height, auto width: every screenshot is a different aspect ratio
   (long threads vs. one-liners), so matching height keeps the row visually
   even without cropping any of the message text. */
.msg-item {
  flex: 0 0 auto; align-self: center;
  height: clamp(160px, 15vw, 220px);
  margin: 0 clamp(0.9rem, 2vw, 1.3rem) 0 0;      /* spacing lives here, not in `gap` */
  border: 1px solid var(--ink-16); border-radius: 8px; overflow: hidden;
  background: #fff; box-shadow: 0 18px 40px -28px rgba(35,36,42,0.5);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.msg-item img { width: auto; height: 100%; display: block; }
.msg-item:hover { transform: translateY(-5px); box-shadow: 0 34px 66px -30px rgba(35,36,42,0.6); }

/* Very wide one-line screenshots blow up to an oversized card at a fixed
   height. Stacking two of them in one card halves that effective width. */
.msg-item--double { display: flex; flex-direction: column; gap: 4px; }
.msg-item--double img { height: calc(50% - 2px); }

/* Trustpilot footer under the messages */
.trust-foot {
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.trust-link {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-64); border-bottom: 1px solid var(--clay); padding-bottom: 3px;
  transition: color .3s var(--ease);
}
.trust-link:hover { color: var(--clay-deep); }

/* ============================================================ MORE SOCIAL PROOF */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.9rem, 2vw, 1.3rem); }
@media (min-width: 720px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================ FOOTER */
.footer {
  color: var(--cream-72); padding-block: clamp(3rem, 7vw, 5rem); text-align: center; position: relative;
  background: radial-gradient(90% 120% at 50% -20%, rgba(176,137,94,0.25), transparent 55%), linear-gradient(180deg, #26272c, #1a1b1f);
}
.footer__sig {
  font-family: "Alex Brush", cursive; font-size: clamp(2.6rem, 2rem + 3.5vw, 4.2rem);
  line-height: 1; color: var(--bg); margin: 0 0 0.3rem;
}
.footer__brand {
  font-family: var(--serif); font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg); margin: 0 0 1.6rem;
}
.footer__link { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid var(--clay-2); padding-bottom: 3px; transition: color .3s; }
.footer__link:hover { color: var(--clay-2); }
.footer__contact {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.6rem 1.6rem; font-size: 0.82rem; color: var(--cream-72);
}
.footer__contact li { display: flex; align-items: center; gap: 0.5rem; }
.footer__contact svg { fill: var(--clay-2); flex-shrink: 0; }
.footer__contact a { color: inherit; transition: color .3s; }
.footer__contact a:hover { color: var(--clay-2); }
.footer__legal { margin-top: 2rem; font-size: 0.72rem; color: var(--cream-40); letter-spacing: 0.04em; }

/* ============================================================ STICKY CTA (mobile) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(239, 238, 231, 0.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-10);
  transform: translateY(120%); transition: transform .5s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { --btn-pad-y: 0.95rem; width: 100%; }
@media (min-width: 860px) { .sticky-cta { display: none; } }

/* ============================================================ 3D TILT + GLARE */
[data-tilt] { transform-style: preserve-3d; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
[data-tilt].is-tilting { transition: box-shadow .3s var(--ease); }
[data-tilt]:hover { box-shadow: 0 42px 80px -32px rgba(35,36,42,0.6); }
.tilt-glare {
  position: absolute; inset: 0; z-index: 4; pointer-events: none; border-radius: inherit;
  opacity: 0; transition: opacity .4s var(--ease); mix-blend-mode: soft-light;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 0%), rgba(255,255,255,0.7), transparent 45%);
}
[data-tilt].is-tilting .tilt-glare { opacity: 1; }

/* ============================================================ REVEAL */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.09s; }
[data-reveal-delay="2"] { transition-delay: 0.18s; }
[data-reveal-delay="3"] { transition-delay: 0.27s; }
[data-reveal-delay="4"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-tilt] { transform: none !important; }
}

/* helpers */
.mt-1 { margin-top: 1rem; }
