/* ============================================================
   RACHEL STONE — Fitness coaching site
   Faithful responsive recreation of the Figma "1920w light" frame.
   Tokens map 1:1 to the reference; dark theme only remaps
   surface/text tokens (accent + gold are identical in both).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* brand constants (identical in both themes) */
  --accent: #f9652f;          /* rgb(249,101,47)  */
  --accent-ink: #121212;      /* icon chip inside accent button */
  --gold: #f5b614;            /* rgb(245,182,20) rating stars */

  /* fixed "dark island" surfaces (services / footer / hero overlays) */
  --island: #121212;          /* rgb(18,18,18) */
  --island-card: #1c1c1c;     /* rgb(28,28,28) */
  --island-card-2: #2b2b2b;   /* rgb(43,43,43) */
  --on-island: #ffffff;
  --on-island-muted: rgba(255,255,255,.7);
  --island-border: #2a2a2a;

  /* radii */
  --r-pill: 999px;
  --r-card: 24px;
  --r-img: 40px;
  --r-btn: 8px;

  /* layout */
  --container: 1200px;
  --gutter: 40px;
  --section-y: 96px;

  --shadow-card: 4px 10px 10.77px -3.75px rgba(0,0,0,.05), .9px 2.3px 2.5px -2.5px rgba(0,0,0,.07);
  --shadow-float: 0 10px 26px -4.5px rgba(0,0,0,.06), 0 2.3px 6px -3px rgba(0,0,0,.14), 0 .6px 1.6px -1.5px rgba(0,0,0,.17);

  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-optical-sizing: auto;
}

/* Light theme = the reference */
:root, [data-theme="light"] {
  --bg: #ffffff;
  --surface: #f8f8f8;         /* rgb(248,248,248) card fills */
  --text: #000000;
  --text-muted: #767676;      /* rgb(118,118,118) */
  --text-soft: #a8a8a8;       /* rgb(168,168,168) */
  --border: #e5e5e5;          /* rgb(229,229,229) */
  --hairline: rgba(0,0,0,.08);
  --btn-outline-bg: #ffffff;
  --btn-outline-border: #000000;
  --btn-outline-chip: #1c1c1c;
}

/* Dark theme — same hues, remapped surfaces only */
[data-theme="dark"] {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --text: #f3f3f1;
  --text-muted: #a0a0a0;
  --text-soft: #777777;
  --border: #262626;
  --hairline: rgba(255,255,255,.10);
  --island: #161616;
  --island-card: #1f1f1f;
  --btn-outline-bg: transparent;
  --btn-outline-border: rgba(255,255,255,.45);
  --btn-outline-chip: #f9652f;
  --shadow-card: 0 10px 30px -10px rgba(0,0,0,.6);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .35s ease, color .35s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea { font: inherit; }
h1, h2, h3, h4, h5, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; background: var(--bg); }
.section--island { background: var(--island); color: var(--on-island); }

.eyebrow { font-size: 16px; font-weight: 500; letter-spacing: -.16px; color: var(--text-muted); }
.island .eyebrow, .section--island .eyebrow { color: var(--on-island); }

.h-display { font-size: clamp(34px, 4.6vw, 47px); font-weight: 500; line-height: 1.06; letter-spacing: -1.44px; }
.lead { font-size: 15.3px; line-height: 1.67; letter-spacing: -.16px; }

.text-muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  border-radius: var(--r-btn); padding: 5px 5px 5px 24px;
  font-size: 15.8px; font-weight: 500; letter-spacing: -.16px;
  line-height: 40px; white-space: nowrap;
  transition: transform .18s ease, filter .18s ease, background-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn__chip {
  width: 40px; height: 40px; flex: none; border-radius: var(--r-btn);
  display: grid; place-items: center;
}
.btn__chip svg { width: 18px; height: 18px; }
.btn--accent { background: var(--accent); color: #000; }
.btn--accent .btn__chip { background: var(--island); color: #fff; }
.btn--accent:hover { filter: brightness(1.04); }
.btn--outline { background: var(--btn-outline-bg); color: var(--text); box-shadow: inset 0 0 0 1px var(--btn-outline-border); }
.btn--outline .btn__chip { background: var(--btn-outline-chip); color: #fff; }

/* arrow glyph */
.arrow { display:inline-block; width:18px; height:18px; }

/* ============================================================
   NAVBAR
   ============================================================ */
/* pill that smoothly morphs into a full menu panel (matches the Figma nav) */
.nav {
  position: fixed; top: 24px; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: center; padding: 0 var(--gutter);
  pointer-events: none;
}
.nav__shell {
  pointer-events: auto;
  width: 100%; max-width: 1120px;
  display: flex; justify-content: flex-start;
}
/* the morphing element */
.nav__panel {
  width: 216px; padding: 8px 8px 8px 8px;
  border-radius: 28px;
  background: rgba(22,24,24,.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.09);
  color: #fff; overflow: hidden;
  transition: width .55s cubic-bezier(.22,1,.36,1),
              padding .55s cubic-bezier(.22,1,.36,1),
              background .4s ease;
}
.nav__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 40px; padding-left: 14px;
  transition: padding .55s cubic-bezier(.22,1,.36,1);
}
.nav__logo { color: #fff; display: flex; }
.nav__logo .logo-svg { height: 22px; width: auto; }
.logo-text { font-size: 21px; font-weight: 800; letter-spacing: 2px; line-height: 1; }
.nav__toggle {
  position: relative; width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.08); transition: background .2s;
}
.nav__toggle:hover { background: rgba(255,255,255,.16); }
.nav__toggle svg { width: 20px; height: 20px; }
.nav__toggle .ico-menu, .nav__toggle .ico-x { display: grid; place-items: center; transition: opacity .3s ease; }
.nav__toggle .ico-x { position: absolute; opacity: 0; }
.nav__shell.open .nav__toggle .ico-menu { opacity: 0; }
.nav__shell.open .nav__toggle .ico-x { opacity: 1; }

/* collapsed-by-default sections that reveal on open */
.nav__links {
  display: flex; flex-direction: column; align-items: flex-start;
  max-height: 0; opacity: 0; overflow: hidden; padding: 0 14px;
  transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .4s ease, margin-top .55s ease;
}
.nav__links a {
  font-size: clamp(30px, 3.4vw, 40px); font-weight: 500; letter-spacing: -1.3px;
  line-height: 1.34; color: rgba(255,255,255,.9); transition: color .2s, padding-left .25s;
}
.nav__links a:hover { color: #fff; padding-left: 6px; }
.nav__socials {
  display: flex; gap: 10px; padding: 0 14px;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .4s ease, margin-top .55s ease;
}
.nav__socials a {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.07); transition: background .2s;
}
.nav__socials a:hover { background: var(--accent); color: #000; }
.nav__socials svg { width: 19px; height: 19px; }

/* OPEN state — pill expands into the panel */
.nav__shell.open .nav__panel {
  width: min(360px, 78vw); padding: 20px; border-radius: 28px;
  background: rgba(18,20,20,.82);
}
.nav__shell.open .nav__bar { padding-left: 8px; }
.nav__shell.open .nav__links { max-height: 60vh; opacity: 1; margin-top: 30px; }
.nav__shell.open .nav__socials { max-height: 80px; opacity: 1; margin-top: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; overflow: hidden; display: flex; align-items: flex-end; z-index: 0; }
.hero__bg { position: absolute; inset: 0; background: #121212 center / auto 100% no-repeat; will-change: transform; }
.hero::after { content:""; position:absolute; inset:0; z-index:1; pointer-events:none; background: linear-gradient(rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 70%, #000 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: 56px; }
.hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; color: #fff; }
.hero__left { max-width: 860px; display: flex; flex-direction: column; gap: 24px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 400; line-height: 1.04; letter-spacing: -2.2px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  height: 40px; padding: 0 16px; border-radius: 24px;
  background: rgba(18,18,18,.75); backdrop-filter: blur(5px);
  font-size: 13.3px; font-weight: 500;
}
.badge svg { width: 18px; height: 18px; }
.trust { display: flex; align-items: center; gap: 14px; }
.trust__avatars { display: flex; align-items: center; height: 44px; padding: 2px; border-radius: 22px; background: rgba(18,18,18,.75); backdrop-filter: blur(5px); }
.trust__avatars img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.trust__avatars img + img { margin-left: 6px; }
.trust__meta { font-size: 15px; font-weight: 500; letter-spacing: -.16px; line-height: 1.45; }
.trust__stars { display: inline-flex; gap: 4px; vertical-align: -3px; margin-right: 7px; }
.trust__stars svg { width: 16px; height: 16px; }
.hero__card {
  width: 278px; flex: none; align-self: flex-end;
}
.hero__card .booking {
  position: relative; border-radius: 16px; background: var(--accent); padding: 16px;
  box-shadow: var(--shadow-float); cursor: pointer;
  transition: background .25s ease;
}
.booking__dots { display: flex; gap: 4px; margin-bottom: 28px; }
.booking__dots i { width: 5px; height: 5px; border-radius: 50%; background: #000; opacity: .85; transition: background .25s ease; }
.booking__label { font-size: 13.3px; font-weight: 500; color: #000; transition: color .25s ease; }
.booking__title { font-size: 15.1px; font-weight: 500; letter-spacing: -.16px; color: #000; transition: color .25s ease; }
.booking__chip { position: absolute; right: 16px; bottom: 16px; width: 40px; height: 40px; border-radius: 8px; background: var(--island); display: grid; place-items: center; transition: background .25s ease; }
.booking__chip svg { width: 18px; height: 18px; color: #fff; transition: color .25s ease; }
/* hover: card turns black, arrow chip turns orange */
.hero__card .booking:hover { background: var(--island); }
.hero__card .booking:hover .booking__label,
.hero__card .booking:hover .booking__title { color: #fff; }
.hero__card .booking:hover .booking__dots i { background: #fff; }
.hero__card .booking:hover .booking__chip { background: var(--accent); }
.hero__card .booking:hover .booking__chip svg { color: #000; }
.hero__note { margin-top: 10px; font-size: 13.3px; color: rgba(255,255,255,.8); }
.section--over-hero { position: relative; z-index: 1; background: var(--bg); }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat__value { font-size: clamp(44px, 4.4vw, 62px); font-weight: 500; line-height: 1; letter-spacing: -1.9px; }
.stat__label { margin-top: 16px; font-size: 19.5px; font-weight: 500; letter-spacing: -.4px; }
.stat__desc { margin-top: 4px; font-size: 15.6px; font-weight: 500; line-height: 1.64; letter-spacing: -.16px; color: var(--text-muted); }

/* ============================================================
   CUSTOMER QUOTE
   ============================================================ */
.quote { text-align: left; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.quote__stars { display: flex; gap: 2px; }
.quote__stars svg { width: 20px; height: 20px; }
.quote blockquote { margin: 0; font-size: clamp(26px, 3.4vw, 47px); font-weight: 500; line-height: 1.13; letter-spacing: -1.4px; text-wrap: balance; }
.quote__person { display: flex; align-items: center; gap: 16px; }
.quote__person img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.quote__name { font-size: 19.4px; font-weight: 500; letter-spacing: -.4px; text-align: left; }
.quote__role { font-size: 15px; font-weight: 500; color: var(--text-muted); text-align: left; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 600px 1fr; gap: 80px; align-items: stretch; }
.about__photo { position: relative; border-radius: var(--r-img); overflow: hidden; height: 100%; min-height: 560px; background: var(--surface); }
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__body { max-width: 480px; }
.about__title { font-size: clamp(34px, 3.5vw, 47px); font-weight: 500; line-height: 1.08; letter-spacing: -1.44px; margin: 6px 0 22px; }
.about__body p { font-size: 15.3px; font-weight: 500; line-height: 1.67; letter-spacing: -.16px; margin-bottom: 18px; }
.about__sign { font-family: 'Covered By Your Grace', cursive; font-size: 32px; letter-spacing: -.6px; transform: rotate(-3deg); display: inline-block; white-space: nowrap; transform-origin: left center; margin: 2px 0 30px; }
.about__phil-title { font-size: 19px; font-weight: 500; letter-spacing: -.4px; margin-bottom: 16px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { background: var(--surface); border-radius: var(--r-card); padding: 16px; min-height: 152px; display: flex; flex-direction: column; justify-content: space-between; }
.value-card .vc-icon { width: 32px; height: 32px; color: var(--text); }
.value-card .vc-icon svg { width: 100%; height: 100%; }
.value-card p { font-size: 13.6px; font-weight: 500; line-height: 1.5; }

/* logos ticker */
.logos { padding: 30px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logos__track { display: flex; width: max-content; opacity: .22; animation: ticker 32s linear infinite; }
.logos__track span { font-size: 26px; font-weight: 800; letter-spacing: 1px; color: var(--text); white-space: nowrap; margin-right: 64px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES (dark)
   ============================================================ */
.services__grid { display: grid; grid-template-columns: 1fr 540px; gap: 64px; align-items: center; }
.services__title { font-size: clamp(34px, 3.6vw, 47px); font-weight: 500; line-height: 1.08; letter-spacing: -1.44px; margin: 8px 0 18px; }
.services__desc { font-size: 17.3px; font-weight: 500; line-height: 1.66; letter-spacing: -.18px; color: #fff; max-width: 430px; margin-bottom: 28px; }
.bento { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 248px 248px 248px; gap: 16px; }
.svc-card { position: relative; border-radius: var(--r-card); background: var(--island-card); border: 1px solid var(--island-border); padding: 28px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.svc-card h4 { font-size: 18.9px; font-weight: 500; letter-spacing: -.4px; color: #fff; }
.svc-card p { font-size: 13.3px; font-weight: 500; line-height: 1.5; color: rgba(255,255,255,.7); margin-top: 4px; }
.svc-card .svc-icon { width: 24px; height: 24px; color: #fff; flex: none; }
.svc-card .svc-icon svg { width: 24px; height: 24px; }
.svc-card--feature { grid-row: span 2; }
.svc-card--feature .nyc { font-size: 62px; font-weight: 400; letter-spacing: -2.6px; color: #fff; line-height: 1; }
.svc-card--photo { padding: 0; }
.svc-card--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how__grid { display: grid; grid-template-columns: 1fr 540px; gap: 64px; align-items: stretch; }
.how__intro { display: flex; flex-direction: column; }
.how__intro .btn { align-self: flex-start; margin-top: 8px; }
.how__title { font-size: clamp(32px, 3.4vw, 45px); font-weight: 500; line-height: 1.08; letter-spacing: -1.44px; margin: 8px 0 18px; }
.how__photo { position: relative; border-radius: var(--r-img); overflow: hidden; flex: 1; min-height: 320px; background: var(--surface); margin-top: 28px; }
.how__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--border); }
.step:first-child { border-top: 0; }
.step__num { font-size: 19px; font-weight: 500; color: var(--text-muted); }
.step__title { font-size: 20px; font-weight: 500; letter-spacing: -.4px; }
.step__desc { font-size: 14px; font-weight: 500; line-height: 1.55; color: var(--text-muted); margin-top: 6px; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs__head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.programs__head .h-display { margin: 8px 0 14px; }
.programs__head p { font-size: 15.4px; font-weight: 500; line-height: 1.66; letter-spacing: -.16px; }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch; }
.plans--two { max-width: 760px; margin: 0 auto; }
.plan { position: relative; border-radius: var(--r-card); background: var(--surface); padding: 20px; display: flex; flex-direction: column; }
.plan--focus { background: var(--accent); color: #000; }
.plan__icon { width: 40px; height: 40px; border-radius: 8px; background: var(--bg); display: grid; place-items: center; color: var(--text); }
.plan--focus .plan__icon { background: var(--island); color: #fff; }
.plan__icon svg { width: 22px; height: 22px; }
.plan__tag { position: absolute; top: 20px; right: 20px; height: 37px; padding: 0 12px; border-radius: 8px; background: var(--island); color: #fff; font-size: 13.9px; font-weight: 500; display: inline-flex; align-items: center; }
.plan__name { font-size: 19px; font-weight: 500; letter-spacing: -.4px; margin-top: 20px; }
.plan--focus .plan__name { color: #000; }
.plan__price { display: flex; align-items: flex-end; gap: 2px; margin-top: 6px; }
.plan__price b { font-size: 37.5px; font-weight: 700; letter-spacing: -.4px; line-height: 1; }
.plan__price span { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.plan__sub { font-size: 13.3px; font-weight: 500; line-height: 1.55; margin-top: 10px; min-height: 42px; }
.plan__incl { font-size: 15.5px; font-weight: 500; letter-spacing: -.16px; opacity: .85; margin: 26px 0 14px; }
.feat { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.feat li { display: flex; align-items: center; gap: 10px; font-size: 15.2px; font-weight: 500; letter-spacing: -.16px; }
.feat li .check { width: 22px; height: 22px; flex: none; color: currentColor; }
.plan__btn {
  margin-top: 26px; display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); color: var(--text); border-radius: 8px; padding: 5px 5px 5px 24px;
  box-shadow: inset 0 0 0 1px var(--btn-outline-border); font-size: 15.8px; font-weight: 500; line-height: 40px;
  transition: transform .18s ease;
}
.plan__btn:hover { transform: translateY(-2px); }
.plan--focus .plan__btn { box-shadow: inset 0 0 0 1px #000; }
.plan__btn .btn__chip { background: var(--island-card); color: #fff; }

/* ============================================================
   RESULTS
   ============================================================ */
.results__grid { display: grid; grid-template-columns: 544px 1fr; gap: 32px; align-items: center; }
.results__title { font-size: clamp(32px, 3.4vw, 46px); font-weight: 500; line-height: 1.1; letter-spacing: -1.44px; margin: 8px 0 18px; }
.results__desc { font-size: 15.5px; font-weight: 500; line-height: 1.65; letter-spacing: -.16px; margin-bottom: 40px; }
.testimonial img.t-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.testimonial .t-name { font-size: 17.6px; font-weight: 700; letter-spacing: -.18px; margin-top: 8px; }
.testimonial .t-role { font-size: 13.3px; font-weight: 500; color: var(--text-muted); }
.testimonial .t-stars { display: flex; gap: 2px; margin: 15px 0; }
.testimonial .t-stars svg { width: 18px; height: 18px; }
.testimonial blockquote { font-size: 16px; font-weight: 500; line-height: 1.62; letter-spacing: -.16px; }

/* before/after slider */
.ba { position: relative; border-radius: var(--r-img); overflow: hidden; aspect-ratio: 528 / 744; background: var(--surface); user-select: none; max-width: 528px; margin-left: auto; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__tag { position: absolute; bottom: 16px; z-index: 4; font-size: 13px; font-weight: 600; color: #fff; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); padding: 6px 14px; border-radius: var(--r-pill); }
.ba__tag--before { left: 16px; }
.ba__tag--after { right: 16px; }
.ba__divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 5; transform: translateX(-1px); }
.ba__handle { position: absolute; top: 50%; left: 50%; z-index: 6; width: 44px; height: 44px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); display: grid; place-items: center; cursor: ew-resize; box-shadow: 0 4px 16px rgba(0,0,0,.3); color: #111; }
.ba__handle svg { width: 22px; height: 22px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: 536px 1fr; gap: 64px; align-items: start; }
.faq__title { font-size: clamp(32px, 3.4vw, 46px); font-weight: 500; line-height: 1.1; letter-spacing: -1.44px; margin: 8px 0 18px; }
.faq__desc { font-size: 15.1px; font-weight: 500; line-height: 1.67; letter-spacing: -.16px; margin-bottom: 26px; }
.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 24px 0; font-size: 18px; font-weight: 500; letter-spacing: -.3px; }
.faq__q .pm { width: 22px; height: 22px; flex: none; position: relative; transition: transform .3s; }
.faq__q .pm::before, .faq__q .pm::after { content:""; position: absolute; background: var(--text); border-radius: 2px; }
.faq__q .pm::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq__q .pm::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: transform .3s; }
.faq__item.open .pm::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 0 24px; font-size: 15px; font-weight: 500; line-height: 1.6; color: var(--text-muted); max-width: 95%; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__head { max-width: 560px; margin-bottom: 40px; }
.contact__head .h-display { margin: 8px 0 16px; }
.contact__head p { font-size: 15.3px; font-weight: 500; line-height: 1.67; letter-spacing: -.16px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.contact__methods { display: flex; flex-direction: column; gap: 16px; }
.method { position: relative; flex: 1; background: var(--surface); border-radius: var(--r-card); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; }
.method .m-icon { width: 32px; height: 32px; color: var(--text); }
.method .m-icon svg { width: 32px; height: 32px; }
.method h4 { font-size: 20px; font-weight: 500; letter-spacing: -.4px; }
.method p { font-size: 15.4px; font-weight: 500; letter-spacing: -.16px; color: var(--text-muted); margin-top: 4px; }
.method .m-chip { position: absolute; right: 24px; bottom: 24px; width: 40px; height: 40px; border-radius: 8px; background: var(--island); display: grid; place-items: center; color: #fff; }
.method .m-chip svg { width: 18px; height: 18px; }
.form { display: flex; flex-direction: column; }
.form h3 { font-size: 30.6px; font-weight: 500; letter-spacing: -.96px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.field label { font-size: 13.5px; font-weight: 500; color: var(--text-muted); }
.field input, .field textarea { background: none; border: 0; color: var(--text); font-size: 16px; font-weight: 500; padding: 4px 0; outline: none; resize: none; width: 100%; }
.field textarea { min-height: 70px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-soft); }
.form .btn--accent { margin-top: 24px; justify-content: space-between; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); padding: 24px; }
.footer__inner { max-width: 1200px; margin: 0 auto; background: var(--island-card); border-radius: var(--r-card); padding: 40px; color: #fff; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
.footer__logo { color: #fff; display: flex; }
.footer__logo .logo-svg { height: 24px; width: auto; }
.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer__links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 32px; height: 32px; border-radius: 50%; background: #000; display: grid; place-items: center; color: #fff; transition: background .2s; }
.footer__social a:hover { background: var(--accent); }
.footer__social svg { width: 15px; height: 15px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom p, .footer__credit { font-size: 13.2px; font-weight: 500; color: rgba(255,255,255,.85); }
.footer__credit { display: flex; align-items: center; gap: 8px; }
.footer__credit b { font-weight: 700; }
.footer__theme { display: flex; justify-content: center; margin-top: 24px; }
.theme-toggle { display: inline-flex; align-items: center; gap: 12px; background: none; border: 0; cursor: pointer; padding: 6px; color: rgba(255,255,255,.85); font-size: 13.2px; font-weight: 500; }
.theme-toggle__track { position: relative; width: 58px; height: 30px; border-radius: 20px; background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); transition: background .25s; }
.theme-toggle__icon { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: opacity .25s; }
.theme-toggle__icon svg { width: 15px; height: 15px; }
.theme-toggle__icon--sun { left: 7px; opacity: 1; }
.theme-toggle__icon--moon { right: 7px; opacity: .45; }
.theme-toggle__knob { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.35); transition: transform .25s; }
[data-theme="dark"] .theme-toggle__track { background: var(--accent); box-shadow: none; }
[data-theme="dark"] .theme-toggle__knob { transform: translateX(28px); }
[data-theme="dark"] .theme-toggle__icon--sun { opacity: .45; }
[data-theme="dark"] .theme-toggle__icon--moon { opacity: 1; color: #000; }

/* reveal on scroll — fail-safe: visible unless JS is present, never permanently hidden */
.reveal { opacity: 1; transform: none; }
html.has-js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
html.has-js .reveal.in { opacity: 1; transform: none; }

/* soft staggered cascade for repeated children inside a revealed grid/list */
html.has-js .stats.reveal, html.has-js .plans.reveal, html.has-js .steps.reveal,
html.has-js .bento.reveal, html.has-js .faq__list.reveal { opacity: 1; transform: none; }
html.has-js .stats.reveal > .stat,
html.has-js .plans.reveal > .plan,
html.has-js .steps.reveal > .step,
html.has-js .bento.reveal > .svc-card,
html.has-js .faq__list.reveal > .faq__item {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
html.has-js .stats.reveal.in > .stat,
html.has-js .plans.reveal.in > .plan,
html.has-js .steps.reveal.in > .step,
html.has-js .bento.reveal.in > .svc-card,
html.has-js .faq__list.reveal.in > .faq__item { opacity: 1; transform: none; }
html.has-js .reveal.in > *:nth-child(1) { transition-delay: .06s; }
html.has-js .reveal.in > *:nth-child(2) { transition-delay: .14s; }
html.has-js .reveal.in > *:nth-child(3) { transition-delay: .22s; }
html.has-js .reveal.in > *:nth-child(4) { transition-delay: .30s; }
html.has-js .reveal.in > *:nth-child(5) { transition-delay: .38s; }
html.has-js .reveal.in > *:nth-child(6) { transition-delay: .46s; }

@media (prefers-reduced-motion: reduce) {
  html.has-js .reveal, html.has-js .reveal > * { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1080px) {
  :root { --section-y: 76px; --gutter: 32px; }
  .hero__bg { background-position: center center; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { max-width: 560px; aspect-ratio: 16/12; height: auto; min-height: 0; }
  .about__body { max-width: none; }
  .services__grid, .how__grid, .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .how__photo { max-width: 100%; aspect-ratio: 16/11; order: -1; margin-top: 0; flex: none; min-height: 0; }
  .results__grid { grid-template-columns: 1fr; gap: 40px; }
  .ba { margin: 0 auto; max-width: 460px; }
  .contact__grid { grid-template-columns: 1fr; }
  .bento { grid-template-rows: 230px 230px 230px; }
  .plans { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-y: 60px; --gutter: 20px; --r-card: 20px; --r-img: 28px; }
  .nav { top: 14px; padding: 0 14px; }

  /* full-bleed image hero with content + full-width CTA bar at the bottom */
  .hero { height: auto; min-height: 100svh; padding-top: 0; max-height: none; }
  .hero__bg { inset: 0; height: 100%; background-position: 70% center; }
  .hero::after { background: linear-gradient(rgba(0,0,0,0) 38%, rgba(0,0,0,.5) 66%, rgba(0,0,0,.86) 100%); }
  .hero__inner { padding-bottom: 22px; }
  .hero__row { flex-direction: column; align-items: stretch; gap: 18px; }
  .hero__left { gap: 16px; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); letter-spacing: -1.4px; }
  .trust { flex-wrap: wrap; }
  .hero__card { width: 100%; }
  /* booking card becomes a single full-width bar */
  .hero__card .booking { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; padding: 12px 12px 12px 22px; border-radius: 14px; }
  .booking__dots, .booking__label { display: none; }
  .booking__title { font-size: 19px; }
  .booking__chip { position: static; flex: none; }

  .stats { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .stat__value { font-size: 44px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .quote blockquote { font-size: 27px; letter-spacing: -.8px; }
  .quote .br-lg { display: none; }
  .quote__person { flex-direction: row; }

  .values { grid-template-columns: 1fr; }
  .value-card { min-height: 0; flex-direction: row; align-items: center; gap: 16px; }
  .value-card p { margin: 0; }

  .bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .svc-card { min-height: 150px; }
  .svc-card--feature { grid-row: auto; min-height: 240px; }
  .svc-card--photo { min-height: 200px; }

  .step { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }

  .footer { padding: 14px; }
  .footer__inner { padding: 28px 22px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__right { align-items: flex-start; }
  .footer__links { justify-content: flex-start; gap: 16px 20px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}
