/* =============================================================
   Muscle by Mila — REDESIGN PREVIEW
   Visual language modeled on Train With Mads (trainwithmads.com.au):
   dark-dominant, bold condensed headlines, glass cards, pill CTAs
   with glow, punchy stat badges. Brand COLORS are unchanged from
   the live site — only the typography, layout, and component styling
   have been overhauled. Content, copy, form fields, and i18n keys
   are untouched.
   ============================================================= */

:root {
  /* ---- Brand palette (unchanged from the live site) ---- */
  --cream:  #F7F1E4;
  --onyx:   #211D1C;
  --greige: #ECE6D9;
  --silver: #9AA0A6;
  --pink:   #FB3F97;
  --blush:  #F2A0C4;

  --pink-gradient: linear-gradient(135deg, var(--pink) 0%, var(--blush) 100%);
  --pink-glow: rgba(251, 63, 151, .45);

  --paper: #FFFFFF;

  --muted:   rgba(33, 29, 28, .66);
  --muted-2: rgba(33, 29, 28, .46);
  --line:      rgba(154, 160, 166, .35);
  --line-warm: rgba(154, 160, 166, .65);
  --cream-muted:   rgba(247, 241, 228, .74);
  --cream-muted-2: rgba(247, 241, 228, .52);

  /* ---- New for this redesign: elevated dark "glass" surfaces, derived
     from Onyx so the palette still resolves to the same brand colours —
     just lighter steps of the same dark tone, for card layering on a
     dark-dominant page. ---- */
  --onyx-2: #2B2521;
  --onyx-3: #362F2A;
  --card-line: rgba(247, 241, 228, .10);
  --card-line-hover: rgba(251, 63, 151, .55);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  /* ---- Typography: bold condensed Oswald for high-impact headings
     (replacing Cinzel for this preview), Montserrat unchanged for body/UI. ---- */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--onyx);
  color: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--pink); color: var(--onyx); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(64px, 10vw, 128px); position: relative; isolation: isolate; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }

/* Ambient glow accent — a soft, blurred pink orb tucked into the corner of
   every plain dark section, for a little atmospheric depth beyond a flat
   fill. Kept off band-depth/band-panel (they already carry their own
   background treatment) and off hero/page-hero/site-footer entirely, so
   the icon watermarks there stay exactly as they are. isolation:isolate on
   .section (above) plus z-index:-1 here keeps this fully self-contained —
   it can't bleed into or affect any other element's stacking. */
.section:not(.band-depth):not(.band-panel)::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8%;
  right: -6%;
  width: min(38vw, 460px);
  height: min(38vw, 460px);
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  opacity: .1;
  filter: blur(70px);
  pointer-events: none;
}

/* Dark is now the default page tone (Onyx). band-panel is the one
   "light neutral" contrast band used for alternating rhythm, per the
   Train With Mads pattern of deep-dark sections punctuated by lighter
   breaks. band-depth is kept as a synonym so existing markup needs no
   class changes — both now just mean "a dark section," varied only by
   a subtle background treatment. */
.band-depth {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(251, 63, 151, .08), transparent 60%),
    var(--onyx);
  border-block: 1px solid var(--card-line);
}
.band-depth .eyebrow { color: var(--blush); }
.band-depth h1.display, .band-depth h2.display { color: var(--cream); }
.band-depth .head p, .band-depth .serif-lead { color: var(--cream-muted); }
.band-depth .contact__aside > p { color: var(--cream-muted); }
.band-depth .contact__points li { color: var(--cream); }
.band-depth .closing-line { color: var(--cream); }

.band-panel {
  background:
    radial-gradient(rgba(33, 29, 28, .07) 1px, transparent 1.6px) 0 0 / 20px 20px,
    var(--greige);
  color: var(--onyx);
  border-block: 1px solid var(--line);
}
.band-panel .eyebrow { color: var(--onyx); }
.band-panel h2.display { color: var(--onyx); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blush);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--pink-gradient);
  border-radius: 2px;
  display: inline-block;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--cream);
}
h1.display { font-size: clamp(3.1rem, 10vw, 6.6rem); font-weight: 700; }
h2.display { font-size: clamp(2.1rem, 5.6vw, 3.7rem); }
h3.display { font-size: clamp(1.25rem, 2.2vw, 1.55rem); letter-spacing: .01em; line-height: 1.15; font-weight: 600; }

.serif-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  color: var(--cream-muted);
  line-height: 1.7;
}

.maroon-text { color: var(--pink); }
.cream-text  { color: var(--cream); }

.quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: .005em;
}

/* Outlined display title — punchier stroke offset to match the bolder type */
.title-outline {
  position: relative;
  display: inline-block;
}
.title-outline::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-text-stroke: 2px rgba(251, 63, 151, .3);
  color: transparent;
  transform: translate(6px, 6px);
  z-index: -1;
  pointer-events: none;
}

/* ---------- Buttons — pill-shaped, high-contrast, glow + scale on hover ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .65em;
  padding: 1.1em 2.1em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .3s var(--ease-pop), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--solid {
  background: var(--pink-gradient);
  color: var(--onyx);
  box-shadow: 0 12px 32px -10px var(--pink-glow);
}
.btn--solid:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 44px -12px var(--pink-glow), 0 0 0 4px rgba(251, 63, 151, .18);
}

.btn--ghost {
  background: rgba(247, 241, 228, .04);
  color: var(--cream);
  border-color: rgba(247, 241, 228, .35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--pink);
  color: var(--cream);
  background: rgba(251, 63, 151, .12);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 4px rgba(251, 63, 151, .12);
}
.band-panel .btn--ghost { color: var(--onyx); border-color: var(--line-warm); background: rgba(33, 29, 28, .03); }
.band-panel .btn--ghost:hover { color: var(--onyx); border-color: var(--pink); background: rgba(251, 63, 151, .08); }

.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / nav — permanent dark glass bar ---------- */
/* The glass background + blur live on a ::before pseudo-element rather
   than on .site-header itself. This is the actual fix for the mobile-menu
   bug: iOS Safari treats an element with backdrop-filter as a containing
   block for its position:fixed descendants (not just spec'd for
   transform/filter, but WebKit applies it to backdrop-filter too). Since
   .nav__links becomes position:fixed on mobile, having backdrop-filter
   directly on its ancestor .site-header confined the "full-screen" drawer
   to just the header's own ~80px height on iPhone — which is exactly why
   only one nav link (whichever landed in that sliver) was visible.
   Moving the blur to a ::before (a sibling in the box tree, not an
   ancestor of .nav__links) keeps the identical visual effect while
   breaking that containing-block chain, so the drawer positions itself
   against the real viewport again. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid rgba(247, 241, 228, .08);
  transition: border-color .35s var(--ease), padding .35s var(--ease);
  padding-block: 18px;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(33, 29, 28, .55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background .35s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(247, 241, 228, .14);
  padding-block: 12px;
  box-shadow: 0 16px 40px -24px rgba(0, 0, 0, .6);
}
.site-header.is-scrolled::before { background: rgba(33, 29, 28, .88); }
.site-header .wrap { max-width: 1900px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__icon { height: 30px; width: auto; display: block; flex: none; transition: height .3s var(--ease); }
.footer__brand .brand__icon { height: 34px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
}
.brand__name .brand__sub {
  display: block;
  font-family: var(--font-body);
  color: var(--cream-muted-2);
  font-weight: 600;
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* The header brand mark is the very first thing anyone sees, so it runs
   noticeably bigger than the footer's quiet echo of the same lockup. */
.site-header .brand__icon { height: 44px; }
.site-header.is-scrolled .brand__icon { height: 36px; }
.site-header .brand__name { font-size: 1.45rem; letter-spacing: .03em; }
.site-header .brand__name .brand__sub { font-size: .64rem; margin-top: 6px; }

/* ---------- Brand entrance animation (header only — footer stays static) ---------- */
/* Runs once on load: "Muscle by Mila" fades up into focus — opacity,
   transform and filter only, so it runs on the compositor and stays
   silky at any frame rate (no layout recalculation the way a width wipe
   needs, which is what made the old typing effect feel choppy). No
   overflow/white-space/width tricks, so no breakpoint gate is needed —
   this reads the same on phones and desktop alike. */
.brand__type { display: inline-block; }

.site-header .brand__type {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
  animation: brandFlow 1s cubic-bezier(.22, .61, .36, 1) .2s forwards;
}
@keyframes brandFlow {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.nav__links {
  display: flex;
  align-items: center;
  margin-left: clamp(8px, 1vw, 10px);
  gap: clamp(4px, 0.6vw, 6px);
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color .2s var(--ease);
  position: relative;
  padding-block: 4px;
}
.nav__links a:not(.nav__cta) {
  padding: 6px 10px;
  border-radius: 999px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--cream); }
.nav__links a:not(.nav__cta):hover { background: rgba(247, 241, 228, .1); }
.nav__links a:not(.nav__cta)[aria-current="page"] { background: var(--pink); color: var(--onyx); }
.nav__cta { margin-left: 6px; font-size: .68rem; letter-spacing: .05em; padding: .7em 1.1em; }

.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  color: var(--cream);
}
.nav__toggle svg { width: 26px; height: 26px; }

/* ---------- Chevron motif ---------- */
.chevrons {
  display: inline-flex;
  gap: 4px;
  color: var(--pink);
}
.chevrons--down { flex-direction: column; align-items: center; gap: 0; }
.chevrons svg { display: block; }
.chevrons--muted { color: var(--silver); }

.scroll-cue {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--cream-muted-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
}
.scroll-cue .chevrons { animation: nudge 2.2s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Framed portrait ---------- */
.frame { position: relative; isolation: isolate; }
.frame img, .frame video { position: relative; z-index: 1; border-radius: 10px; }
.frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 20px -20px -20px 20px;
  background: transparent;
  border: 2px solid var(--pink);
  border-radius: 10px;
}

/* ---------- HERO — full-bleed video, bold overlay type ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(118px, 16vw, 168px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
  background: var(--onyx);
}
/* Faint icon watermark — brand texture behind the hero without competing
   with the video or the headline. Purely decorative. */
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 4%;
  right: -12%;
  width: min(60vw, 780px);
  height: min(60vw, 780px);
  background: url("../images/icon.svg") no-repeat center / contain;
  opacity: .06;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(15, 12, 12, .92) 0%, rgba(15, 12, 12, .68) 40%, rgba(33, 29, 28, .32) 66%, rgba(15, 12, 12, .6) 100%),
    linear-gradient(0deg, rgba(15, 12, 12, .55) 0%, transparent 32%);
}
.hero__text { max-width: 640px; }
.hero__name { margin: .3em 0 .45em; color: var(--cream); text-shadow: 0 8px 40px rgba(0, 0, 0, .35); }
.hero__name .ln2 { display: block; -webkit-text-stroke: 1px var(--pink); }
.hero__role {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blush);
}
.hero__meta {
  font-family: var(--font-body);
  color: var(--cream-muted);
  margin-top: 8px;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: 1rem;
}
.hero__meta b { color: var(--cream); font-weight: 700; }
.hero__free {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  color: var(--pink);
}
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__cue { margin-top: 44px; }
.hero .eyebrow { color: var(--blush); }
.hero .serif-lead { color: var(--cream-muted); }
.hero .title-outline::after { -webkit-text-stroke-color: rgba(251, 63, 151, .3); }

/* ---------- Trust strip → bold stat badges ---------- */
/* Restyled as an elevated row of glass "stat cards" that bridges the hero
   into the page, mirroring Train With Mads' bold stat-badge pattern —
   content unchanged, just presented as punchy chips instead of a plain
   3-column strip. */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  max-width: var(--maxw);
  margin: clamp(-56px, -5vw, -40px) auto 0;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 3;
}
.trust__item {
  background: rgba(43, 37, 33, .82);
  border: 1px solid var(--card-line);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 24px var(--gutter);
  text-align: center;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, .55);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.trust__item:hover { transform: translateY(-4px); border-color: var(--card-line-hover); }
.trust__item .k {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.2rem;
  color: var(--cream);
}
.trust__item .v { display: block; color: var(--cream-muted); font-size: .92rem; margin-top: 6px; }

/* ---------- Section heading block ---------- */
.head { max-width: 760px; }
.head--center { margin-inline: auto; text-align: center; }
.head .eyebrow { margin-bottom: 18px; }
.head p { color: var(--cream-muted); margin-top: 18px; font-size: 1.1rem; }
.band-panel .head p { color: var(--muted); }

/* ---------- Cards (services / benefits) — dark glass ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(36px, 5vw, 56px);
}
.card {
  position: relative;
  background: var(--onyx-2);
  border: 1px solid var(--card-line);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 24px 54px -38px rgba(0, 0, 0, .6);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--card-line-hover);
  background: var(--onyx-3);
  box-shadow: 0 32px 64px -30px var(--pink-glow);
}
.card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--pink);
}
.card__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  color: var(--pink);
  background: rgba(251, 63, 151, .12);
  border: 1.5px solid rgba(251, 63, 151, .35);
  border-radius: 12px;
  margin: 18px 0 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--cream-muted); font-size: 1rem; }
.page-hero .card__icon,
.band-panel .card__icon { background: rgba(251, 63, 151, .1); border-color: rgba(251, 63, 151, .35); color: var(--pink); }

/* Corner-bracket accent — a small viewfinder-style mark on every card,
   testimonial, and guide, echoing the numbered/precision framing already
   used on the service cards. Subtle at rest, brightens on hover to match
   the existing lift + glow interaction. */
.card::after,
.tcard::after,
.guide::after,
.team-card::after {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
  opacity: .35;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.card:hover::after,
.tcard:hover::after,
.guide:hover::after,
.team-card:hover::after { opacity: .85; transform: translate(2px, -2px); }

/* ---------- Split (story / image rows) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__media { max-width: 440px; }
.split__text .serif-lead { color: var(--cream-muted); }
.band-panel .split__text .serif-lead,
.band-panel .split__text p { color: var(--muted); }
.band-panel .split__text h2.display { color: var(--onyx); }

.media-stack { display: grid; gap: clamp(20px, 3vw, 32px); }

/* ---------- Quote band — bold pull-quote ---------- */
.quote-band { text-align: center; }
.quote-band .chevrons { margin-bottom: 26px; }
.quote-band .quote { max-width: 900px; margin-inline: auto; }
.quote-band cite {
  display: block;
  margin-top: 26px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
}
.quote-band,
.ribbon {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(251, 63, 151, .14), transparent 70%),
    var(--onyx);
  border-color: rgba(247, 241, 228, .1);
}
.quote-band .chevrons,
.ribbon .chevrons { color: var(--pink); }
.quote-band .quote,
.ribbon .quote { color: var(--cream); }

/* Oversized translucent quotation mark — a soft editorial focal point
   behind every pull-quote / ribbon section. z-index:-1 plus isolation:
   isolate (above) keeps it fully contained to this section, so it can't
   affect stacking anywhere else on the page. */
.quote-band::before,
.ribbon::before {
  content: "\201C";
  position: absolute;
  z-index: -1;
  top: -.16em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(9rem, 22vw, 17rem);
  line-height: 1;
  color: var(--pink);
  opacity: .08;
  pointer-events: none;
  user-select: none;
}

/* ---------- Testimonials — dark glass cards ---------- */
.tcards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(36px, 5vw, 56px);
}
.tcard {
  position: relative;
  background: var(--onyx-2);
  border: 1px solid var(--card-line);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 38px);
  display: flex; flex-direction: column;
  box-shadow: 0 24px 54px -38px rgba(0, 0, 0, .6);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.tcard:hover { transform: translateY(-6px); border-color: var(--card-line-hover); background: var(--onyx-3); box-shadow: 0 32px 64px -30px var(--pink-glow); }
.tcard__mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 3rem; line-height: .6; color: var(--pink);
  margin-bottom: 18px;
}
.tcard__quote {
  font-family: var(--font-body); font-style: normal; font-weight: 500;
  color: var(--cream); font-size: 1.05rem; line-height: 1.62;
  margin-bottom: 22px;
}
.tcard__who { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--card-line); }
.tcard__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--cream);
}
.tcard__meta { color: var(--cream-muted-2); font-size: .85rem; margin-top: 5px; }

/* ---------- Before / After — bolder tags + glow border ---------- */
.ba-frame { position: relative; isolation: isolate; max-width: 440px; }
.ba-frame::before {
  content: ""; position: absolute; z-index: 0;
  inset: 14px -14px -14px 14px;
  background: transparent; border: 2px solid var(--pink); border-radius: 12px;
  opacity: .7;
}
.ba-frame::after {
  content: ""; position: absolute; z-index: -1;
  inset: 28px -28px -28px 28px;
  background: transparent; border: 1px solid rgba(251, 63, 151, .3); border-radius: 12px;
  pointer-events: none;
}
.beforeafter {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.ba-item { position: relative; margin: 0; }
.ba-item img { width: 100%; border-radius: 10px; }
.ba-item__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-body); font-weight: 800;
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream); background: rgba(15, 12, 12, .72);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: .55em .85em; border-radius: 999px;
}
.ba-item--after .ba-item__tag { background: var(--pink); color: var(--onyx); }
.ba-caption {
  position: relative; z-index: 1;
  margin-top: 30px; max-width: 42ch;
  font-family: var(--font-body); font-style: normal;
  color: var(--cream-muted); font-size: .98rem; line-height: 1.6;
}
.ba-caption b { color: var(--cream); font-style: normal; font-weight: 700; }
.band-panel .ba-caption { color: var(--muted); }
.band-panel .ba-caption b { color: var(--onyx); }

/* ---------- Results / transformations ---------- */
.result { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.result + .result { margin-top: clamp(48px, 7vw, 88px); padding-top: clamp(48px, 7vw, 88px); border-top: 1px solid var(--card-line); }
.result__stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin: 10px 0 18px; }
.result__stat .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5.2vw, 3.8rem); color: var(--pink); line-height: 1; }
.result__stat .lbl { font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); }
.result__quote { font-family: var(--font-body); font-style: normal; font-weight: 500; color: var(--cream); font-size: clamp(1.12rem, 1.8vw, 1.32rem); line-height: 1.55; margin: 20px 0 14px; padding-left: 20px; border-left: 3px solid var(--pink); }
.result__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .03em; text-transform: uppercase; color: var(--cream); margin-top: 10px; }
.result__meta { color: var(--cream-muted-2); font-size: .9rem; margin-top: 4px; }
.result__story p { color: var(--cream-muted); margin-bottom: 1em; }
.result__story p:last-child { margin-bottom: 0; }
.band-panel .result__stat .lbl,
.band-panel .result__name { color: var(--onyx); }
.band-panel .result__quote { color: var(--onyx); }
.band-panel .result__meta,
.band-panel .result__story p { color: var(--muted); }

/* ---------- Free guides — dark glass ---------- */
.guides { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 30px); margin-top: clamp(36px, 5vw, 56px); }
.guide {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--onyx-2); border: 1px solid var(--card-line);
  border-radius: 18px; padding: clamp(28px, 3vw, 42px);
  box-shadow: 0 24px 54px -38px rgba(0, 0, 0, .6);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.guide:hover { transform: translateY(-6px); border-color: var(--card-line-hover); background: var(--onyx-3); box-shadow: 0 32px 64px -30px var(--pink-glow); }
.guide__ico { width: 54px; height: 54px; display: grid; place-items: center; color: var(--pink); background: rgba(251, 63, 151, .12); border: 1.5px solid rgba(251, 63, 151, .35); border-radius: 14px; margin-bottom: 20px; }
.guide__ico svg { width: 26px; height: 26px; }
.guide__kicker { font-family: var(--font-body); font-weight: 800; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blush); margin-bottom: 10px; }
.guide h3 { margin-bottom: 12px; }
.guide p { color: var(--cream-muted); font-size: 1rem; margin-bottom: 22px; }
.guide__foot { margin-top: auto; }
.guide__meta { font-family: var(--font-body); font-style: normal; color: var(--cream-muted-2); font-size: .85rem; margin-top: 12px; }

/* ---------- Team — founder profile cards (About page) ---------- */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}
.team-card {
  position: relative;
  background: var(--onyx-2);
  border: 1px solid var(--card-line);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 36px);
  box-shadow: 0 24px 54px -38px rgba(0, 0, 0, .6);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.team-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  border: 1.5px solid rgba(251, 63, 151, .35);
  margin-bottom: 22px;
}
.team-card__name { margin-bottom: 4px; }
.team-card__role {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.team-card p { color: var(--cream-muted); font-size: 1rem; margin-bottom: 14px; }
.team-card p:last-child { margin-bottom: 0; }

/* ---------- Story block — centered narrative copy, colour-neutral so it
   reads correctly whether it lands on a dark section or a band-panel. ---------- */
.story-block { max-width: 780px; margin-inline: auto; text-align: center; }
.story-block p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  margin-bottom: 1.3em;
}
.story-block p:last-child { margin-bottom: 0; }

/* ---------- Contact / form — dark inputs, glow focus ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact__aside .eyebrow { margin-bottom: 18px; }
.contact__aside h2 { margin-bottom: 18px; }
.contact__aside p { color: var(--cream-muted); margin-bottom: 26px; max-width: 42ch; }
.contact__points { display: grid; gap: 14px; margin-top: 28px; }
.contact__points li { display: flex; gap: 14px; align-items: center; color: var(--cream); font-size: 1rem; }
.contact__points .ico { color: var(--pink); flex: none; }
.contact__points .ico svg { width: 20px; height: 20px; }

.form-card {
  background: var(--onyx-2);
  border: 1px solid var(--card-line);
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 46px);
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, .7);
}
.field { margin-bottom: 20px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}
.field .req { color: var(--pink); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(15, 12, 12, .5);
  border: 1.5px solid var(--card-line);
  border-radius: 10px;
  padding: .85em 1em;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7F1E4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }
.field input::placeholder, .field textarea::placeholder { color: var(--cream-muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(15, 12, 12, .75);
  box-shadow: 0 0 0 4px rgba(251, 63, 151, .18);
}
.form-note { font-family: var(--font-body); font-size: .85rem; color: var(--cream-muted-2); margin-top: 16px; line-height: 1.55; }
.form-note a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.form-intro {
  background: rgba(251, 63, 151, .08); border: 1px solid rgba(251, 63, 151, .3);
  border-left: 3px solid var(--pink); border-radius: 10px;
  padding: 20px 22px; margin-bottom: 34px;
}
.form-intro p { color: var(--cream); font-size: .98rem; margin: 0; }
.band-panel .form-intro p { color: var(--onyx); }

/* ---------- Page hero (interior pages) ---------- */
/* Every page reached from the nav gets the same branded treatment behind
   its title: the dark gradient wash plus a large, faint icon watermark,
   so "the page you land on" always reads as unmistakably Muscle by Mila. */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(130px, 18vw, 200px);
  padding-bottom: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(80% 70% at 90% 0%, rgba(251, 63, 151, .2), transparent 60%),
    radial-gradient(60% 60% at 8% 100%, rgba(242, 160, 196, .12), transparent 70%),
    var(--onyx);
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -8%;
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  transform: translateY(-50%);
  background: url("../images/icon.svg") no-repeat center / contain;
  opacity: .07;
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 20px; color: var(--blush); }
.page-hero .serif-lead { color: var(--cream-muted); }
.page-hero .title-outline::after { -webkit-text-stroke-color: rgba(251, 63, 151, .3); }

/* Title entrance — every page you land on from the nav fades its title up
   into focus, the same compositor-only technique (and matching beat) as
   the header brand mark: opacity + transform + filter only, so the motion
   stays smooth regardless of device — no layout recalculation the way the
   old width-wipe needed, which is what made it read as choppy rather than
   eased. No overflow/white-space/width tricks means no breakpoint gate is
   needed either — it works at any title length, in either language, on
   any screen. */
.page-hero h1 {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: var(--cream);
  opacity: 0;
  transform: translateY(24px);
  filter: blur(10px);
  animation: titleFlow 1.3s cubic-bezier(.22, .61, .36, 1) .35s forwards;
}
@keyframes titleFlow {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal .updated { color: var(--cream-muted-2); font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--cream);
  margin: 46px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--card-line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; letter-spacing: .02em; color: var(--cream); margin: 26px 0 10px; }
.legal p, .legal li { color: var(--cream-muted); font-size: 1.02rem; margin-bottom: 14px; }
.legal ul { list-style: none; padding-left: 0; }
.legal ul li { position: relative; padding-left: 24px; }
.legal ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; background: var(--pink); border-radius: 50%; }
.legal a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--cream); }
.legal .callout {
  background: var(--onyx-2);
  border: 1px solid var(--card-line);
  border-left: 3px solid var(--pink);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 26px 0;
}
.legal .callout p { color: var(--cream); margin-bottom: 0; font-size: .98rem; }

/* ---------- CTA ribbon ---------- */
.ribbon { text-align: center; }
.ribbon h2 { margin-bottom: 20px; }
.ribbon p { color: var(--cream-muted); max-width: 60ch; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #17140F;
  border-top: 1px solid var(--card-line);
  padding-block: clamp(48px, 6vw, 72px) 28px;
}
.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -18%;
  left: -6%;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  background: url("../images/icon.svg") no-repeat center / contain;
  opacity: .05;
  pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 1; }
.site-footer .brand__name { color: var(--cream); }
.site-footer .brand__name .brand__sub { color: var(--cream-muted-2); }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--card-line);
}
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { color: var(--cream-muted); font-size: .98rem; max-width: 38ch; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col span { color: var(--cream-muted); font-size: .98rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--pink); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
}
.footer__legal-left { display: flex; flex-direction: column; gap: 9px; }
.footer__llc { color: var(--cream-muted-2); font-size: .8rem; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.footer__legal-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--pink);
  transition: color .2s var(--ease);
}
.footer__legal-links a:hover { color: var(--pink); }
.footer__legal-links .sep { color: var(--cream-muted-2); text-decoration: none; }
.footer__copy { color: var(--cream-muted-2); font-size: .85rem; }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { 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; }

/* ---------- FAQ (native details/summary) ---------- */
.faq { max-width: 840px; }
.faq__item { border-bottom: 1px solid var(--card-line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-body); font-weight: 700; font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--cream); transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--pink); }
.faq__item summary .ico { flex: none; width: 24px; height: 24px; color: var(--pink); transition: transform .3s var(--ease); }
.faq__item[open] summary .ico { transform: rotate(45deg); }
.faq__a { padding: 0 4px 26px; color: var(--cream-muted); font-size: 1.02rem; line-height: 1.72; max-width: 72ch; }
.faq__a p + p { margin-top: 12px; }
.faq__a a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.faq__a strong { color: var(--cream); }

/* ---------- Who I help checklist ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 40px;
  margin-top: clamp(28px, 4vw, 44px);
}
.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--cream);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--card-line);
}
.checklist .tick {
  flex: none;
  margin-top: 4px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--onyx);
  background: var(--pink-gradient);
  border-radius: 50%;
}
.checklist .tick svg { width: 14px; height: 14px; }

.closing-line {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  color: var(--cream);
  margin-top: clamp(40px, 6vw, 64px);
  max-width: 800px;
}
.closing-line .maroon-text { font-style: normal; }

/* ---------- Packages ---------- */
.pkgs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(36px, 5vw, 56px);
}
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: var(--onyx-2); border: 1px solid var(--card-line);
  border-radius: 18px; padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 24px 54px -38px rgba(0, 0, 0, .6);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg:hover { transform: translateY(-6px); border-color: var(--card-line-hover); box-shadow: 0 32px 64px -30px var(--pink-glow); }
.pkg--featured { border-color: var(--pink); box-shadow: 0 30px 80px -50px var(--pink-glow); }
.pkg__badge {
  position: absolute; top: 0; right: 24px; transform: translateY(-50%);
  background: var(--pink-gradient); color: var(--onyx);
  font-family: var(--font-body); font-weight: 800;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .6em 1em; border-radius: 999px;
}
.pkg__name {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--cream); line-height: 1.1;
}
.pkg__tag {
  font-family: var(--font-body); font-weight: 700;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blush); margin-top: 10px;
}
.pkg__list { display: grid; gap: 12px; margin: 22px 0 26px; }
.pkg__list li { position: relative; padding-left: 26px; color: var(--cream-muted); font-size: 1rem; line-height: 1.5; }
.pkg__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--pink); border-radius: 50%; }
.pkg__note { font-family: var(--font-body); font-style: normal; color: var(--cream-muted-2); font-size: .9rem; margin: 0 0 18px; }
.pkg__cta { margin-top: auto; }

/* ---------- Intake form (sections + choice inputs) ---------- */
.form-section + .form-section { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--card-line); }
.form-section__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
.form-section__num { font-family: var(--font-display); font-weight: 700; color: var(--pink); font-size: .9rem; letter-spacing: .06em; }
.form-section__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: 1.1rem; color: var(--cream); }

fieldset { border: 0; padding: 0; margin: 0 0 20px; }
fieldset:last-of-type { margin-bottom: 0; }
.q-label { display: block; font-family: var(--font-body); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); margin-bottom: 10px; }
.q-hint { font-family: var(--font-body); font-style: normal; color: var(--cream-muted-2); font-size: .85rem; margin: -4px 0 10px; }

.choices { display: grid; gap: 10px; }
.choices--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; }
.choices--scale { grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 6px; }
.choice {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-body); color: var(--cream); font-size: 1rem;
  background: rgba(15, 12, 12, .5); border: 1.5px solid var(--card-line);
  border-radius: 10px; padding: .7em .9em; cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.choice:hover { border-color: var(--pink); }
.choice input[type="checkbox"],
.choice input[type="radio"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; flex: none;
  margin: 0; padding: 0; border: 0; background: none;
  accent-color: var(--pink); cursor: pointer;
}
.choice--scale { flex-direction: column; gap: 7px; justify-content: center; text-align: center; padding: .6em .2em; font-family: var(--font-body); font-weight: 700; font-size: .92rem; }
.scale-ends { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--font-body); font-style: normal; color: var(--cream-muted-2); font-size: .82rem; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--onyx-2); border: 1px solid var(--card-line); border-radius: 20px; padding: clamp(28px, 4vw, 48px); text-align: center; max-width: 720px; margin-inline: auto; }
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { color: var(--cream-muted); margin-bottom: 24px; max-width: 52ch; margin-inline: auto; }
.newsletter__row { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter__row input { flex: 1; font-family: var(--font-body); font-size: 1rem; color: var(--cream); background: rgba(15, 12, 12, .5); border: 1.5px solid var(--card-line); border-radius: 10px; padding: .85em 1em; }
.newsletter__row input::placeholder { color: var(--cream-muted-2); }
.newsletter__row input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(251, 63, 151, .18); }

/* ---------- Responsive ---------- */
@media (max-width: 1400px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(330px, 86vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    background: rgba(20, 17, 15, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 40px var(--gutter);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-left: 1px solid var(--card-line);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; letter-spacing: .04em; color: var(--cream-muted); }
  .nav__links a:not(.nav__cta) { padding: 10px 14px; }
  .nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--cream); }
  .nav__links a:not(.nav__cta):hover { background: rgba(247, 241, 228, .08); }
  .nav__links a:not(.nav__cta)[aria-current="page"] { background: var(--pink); color: var(--onyx); }
  .nav__cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    font-size: .75rem;
    letter-spacing: .04em;
    padding: 1em 1.4em;
  }
  .nav__toggle { display: grid; place-items: center; z-index: 110; }
}

@media (max-width: 960px) {
  .hero__bg video { object-position: 50% 40%; }
  .frame::before { inset: 14px -14px -14px 14px; }
  .cards { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .pkgs { grid-template-columns: 1fr; }
  .guides { grid-template-columns: 1fr; }
  .result { grid-template-columns: 1fr; }
  .result .ba-frame { margin-inline: auto; }
  .result__text { order: 1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { margin-inline: auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .trust { grid-template-columns: 1fr; margin-top: -32px; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .checklist { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .choices--cols { grid-template-columns: 1fr; }
  .choices--scale { grid-template-columns: repeat(5, 1fr); }
  .newsletter__row { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
  .brand__name,
  .site-header .brand__name { font-size: .78rem; letter-spacing: .05em; }
  .site-header .brand__icon { height: 32px; }
  .title-outline::after { transform: translate(3px, 3px); }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
}

/* ===================== Language toggle (EN / ES) ===================== */
html.i18n-pending body { visibility: hidden; }

.site-header .brand { margin-right: auto; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 241, 228, .3);
  border-radius: 999px;
  padding: 3px;
  background: rgba(247, 241, 228, .06);
  flex: none;
}
.lang-toggle__btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .64rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream-muted);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 5px 6px;
  border-radius: 999px;
  line-height: 1;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.lang-toggle__btn:hover { color: var(--cream); }
.lang-toggle__btn.is-active { background: var(--pink); color: var(--onyx); }
.lang-toggle__btn:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

@media (max-width: 1400px) {
  .lang-toggle { margin-right: 4px; }
}
