/* =========================================================
   OUTNABOUT — Brand stylesheet
   Display: Belleza  ·  Body: IBM Plex Sans
   Palette: warm espresso ink + desert sand + sunset gradient
   ========================================================= */

:root {
  --ink:      #15110C;
  --ink-2:    #1B150F;
  --ink-3:    #241C13;
  --panel:    #211a12;
  --sand:     #F4ECDB;
  --sand-2:   #E8DDC6;
  --muted:    #B2A488;
  --muted-2:  #897C64;
  --gold:     #C9A24B;
  --amber:    #E5973F;
  --terra:    #C0512B;
  --rose:     #DFA197;
  --sky:      #8FB0BE;
  --line:     rgba(244, 236, 219, .14);
  --line-2:   rgba(244, 236, 219, .08);

  --sunset:   linear-gradient(105deg, #F0A94B 0%, #D9692F 55%, #C0492a 100%);
  --sunset-soft: linear-gradient(105deg, rgba(240,169,75,.16), rgba(192,73,42,.16));

  --font-display: 'Belleza', 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --wrap: 1220px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 30px 80px -30px rgba(0,0,0,.7);
  --shadow-soft: 0 18px 50px -24px rgba(0,0,0,.55);
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--sand);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--amber); color: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
:where(section, article)[id] { scroll-margin-top: 86px; }

.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;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--sand); color: var(--ink); padding: 10px 18px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: .005em;
}
.eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--rose); }

.brand__mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .42em;
  color: var(--sand);
  padding-left: .42em;            /* optical balance for tracking */
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 500; font-size: .92rem;
  letter-spacing: .02em; padding: .95em 1.6em; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  white-space: nowrap; line-height: 1;
}
.btn--solid {
  background: var(--sunset); color: #1a1108;
  box-shadow: 0 10px 30px -10px rgba(217,105,47,.6);
  font-weight: 600;
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(217,105,47,.75); filter: saturate(1.08) brightness(1.04); }
.btn--ghost {
  background: transparent; color: var(--sand);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--sand); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.15em 1.6em; font-size: 1rem; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(18,14,9,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.nav a {
  font-size: .9rem; color: var(--sand-2); letter-spacing: .04em; position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--amber);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--sand); } .nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__cta .btn--ghost { padding: .8em 1.2em; }
.header__cta .btn--solid { padding: .8em 1.35em; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--sand); transition: transform .3s var(--ease), opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px clamp(20px,5vw,56px) 26px;
  background: rgba(18,14,9,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line-2); color: var(--sand-2); }
.mobile-nav .btn { margin-top: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: clamp(104px, 13vh, 150px); padding-bottom: clamp(60px, 9vh, 90px); overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06); transition: opacity 1.1s var(--ease), transform 8s linear;
}
.hero__img.is-active { opacity: 1; transform: scale(1.12); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,14,9,.55) 0%, rgba(18,14,9,.18) 26%, rgba(18,14,9,.55) 62%, var(--ink) 100%),
    linear-gradient(90deg, rgba(18,14,9,.78) 0%, rgba(18,14,9,.30) 48%, rgba(18,14,9,0) 78%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero__inner {
  width: 100%; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 4.5vw, 72px); align-items: center; position: relative; z-index: 1;
}
.hero__content { max-width: 640px; }

.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.1rem, 1.1rem + 3.1vw, 3.9rem);
  line-height: 1.02; letter-spacing: .005em; color: var(--sand);
  margin-bottom: 1.1rem; text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
}
.hero__sub {
  font-size: clamp(.98rem, .94rem + .35vw, 1.14rem); max-width: 540px; color: var(--sand-2);
  font-weight: 300; margin-bottom: 1.7rem;
}

/* Inline lead form */
.lead {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch;
  background: rgba(20,15,10,.55); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 100px; padding: 8px;
  max-width: 640px; box-shadow: var(--shadow-soft);
}
.lead__field { flex: 1 1 160px; display: flex; }
.lead__field input {
  width: 100%; background: transparent; border: none; color: var(--sand);
  font-family: var(--font-body); font-size: 1rem; padding: .85em 1.2em; border-radius: 100px;
}
.lead__field input::placeholder { color: var(--muted); }
.lead__field input:focus { outline: none; background: rgba(244,236,219,.06); }
.lead__field + .lead__field { border-left: 1px solid var(--line-2); }
.lead__btn { flex: 0 0 auto; }
.lead__micro { margin-top: 14px; font-size: .82rem; color: var(--muted); max-width: 560px; }

.lead--center { margin-inline: auto; }

/* RV design showcase */
.showcase { position: relative; }
.showcase__label {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}
.showcase__cards { display: flex; flex-direction: column; gap: 12px; }
.coachcard {
  position: relative; display: grid; grid-template-columns: 108px 1fr; align-items: center; gap: 18px;
  text-align: left; border-radius: var(--radius);
  background: rgba(28,21,14,.5); backdrop-filter: blur(8px);
  border: 1px solid var(--line); padding: 13px 18px;
  transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s;
  overflow: hidden;
}
.coachcard::before {
  content: ""; position: absolute; inset: 0; background: var(--sunset-soft); opacity: 0; transition: opacity .3s;
}
.coachcard img {
  width: 108px; height: 66px; object-fit: contain; object-position: center;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.45)); margin: 0;
  transition: transform .4s var(--ease); position: relative;
  grid-column: 1; grid-row: 1 / span 2; align-self: center;
}
.coachcard__name { grid-column: 2; position: relative; display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--sand); letter-spacing: .03em; line-height: 1.1; }
.coachcard__tag { grid-column: 2; position: relative; display: block; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.coachcard:hover { transform: translateY(-4px); border-color: rgba(244,236,219,.3); }
.coachcard:hover img { transform: scale(1.05) translateY(-2px); }
.coachcard.is-active { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber), 0 20px 50px -24px rgba(229,151,63,.6); }
.coachcard.is-active::before { opacity: 1; }
.coachcard.is-active .coachcard__tag { color: var(--rose); }
.coachcard:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Scroll cue */
.hero__scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 20px; display: grid; place-items: start center;
}
.hero__scroll span { width: 3px; height: 8px; background: var(--amber); border-radius: 2px; margin-top: 7px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0; transform: translateY(0);} 30%{opacity:1;} 70%{opacity:1; transform: translateY(12px);} 100%{opacity:0; transform: translateY(16px);} }

/* =========================================================
   TRUST MARQUEE
   ========================================================= */
.trust { background: var(--ink-3); border-block: 1px solid var(--line-2); overflow: hidden; padding: 18px 0; }
.trust__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: marquee 38s linear infinite; will-change: transform; }
.trust__track span { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sand-2); }
.trust__track i { color: var(--terra); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust:hover .trust__track { animation-play-state: paused; }

/* =========================================================
   INTRO
   ========================================================= */
.intro { padding: clamp(72px, 11vw, 140px) 0; background: var(--ink); }
.intro__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.intro__lead .h2 { max-width: 12ch; }
.intro__body p { font-size: clamp(1.02rem, .98rem + .35vw, 1.22rem); color: var(--sand-2); font-weight: 300; }
.intro__body p + p { margin-top: 1.2rem; }

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head__sub { color: var(--muted); font-size: 1.05rem; margin-top: 16px; }

/* =========================================================
   FLEET
   ========================================================= */
.fleet { padding: clamp(72px, 11vw, 140px) 0; background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.coach {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4.5vw, 72px);
  align-items: center; max-width: var(--wrap); margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}
.coach + .coach { margin-top: clamp(72px, 10vw, 130px); }
.coach--reverse .coach__media { order: 2; }
.coach__media { position: relative; }
.coach__hero {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.coach__badge {
  position: absolute; top: 16px; left: 16px; background: rgba(18,14,9,.7); backdrop-filter: blur(6px);
  color: var(--rose); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; border: 1px solid var(--line);
}
.coach__name { font-family: var(--font-display); font-size: clamp(2.2rem, 1.4rem + 3vw, 3.4rem); line-height: 1; margin-bottom: 1rem; }
.coach__desc { color: var(--sand-2); font-weight: 300; margin-bottom: 1.6rem; }

.specs { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; margin-bottom: 1.4rem; }
.specs li { background: var(--ink); padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; }
.specs span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.specs strong { font-weight: 500; font-size: .92rem; color: var(--sand); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.6rem; }
.chips span {
  font-size: .8rem; color: var(--sand-2); padding: 6px 13px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(244,236,219,.03);
}
.coach__gallery { margin-bottom: 1.6rem; }
.coach__gallery > img { width: 100%; border-radius: 14px; box-shadow: var(--shadow-soft); }
.coach__gallery--grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gthumb {
  position: relative; padding: 0; border: 0; background: none; display: block;
  aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-soft);
}
.gthumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gthumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,14,9,0) 55%, rgba(18,14,9,.42)); opacity: 0; transition: opacity .3s; }
.gthumb::after {
  content: ""; position: absolute; top: 9px; right: 9px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(18,14,9,.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23F4ECDB' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 1H1v4M9 13h4V9'/%3E%3C/svg%3E") center/14px no-repeat;
  opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; backdrop-filter: blur(4px);
}
.gthumb:hover img { transform: scale(1.07); }
.gthumb:hover::before { opacity: 1; }
.gthumb:hover::after { opacity: 1; transform: scale(1); }
.gthumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* =========================================================
   WHAT'S INCLUDED
   ========================================================= */
.included { padding: clamp(72px, 11vw, 140px) 0; background: var(--ink-2); }
.inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.inc {
  position: relative; padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  overflow: hidden;
}
.inc::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--sunset); transition: width .4s var(--ease); }
.inc:hover { transform: translateY(-5px); border-color: rgba(244,236,219,.24); }
.inc:hover::after { width: 100%; }
.inc__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--terra); letter-spacing: .1em; }
.inc h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin: .5rem 0 .7rem; color: var(--sand); }
.inc p { color: var(--muted); font-size: .96rem; font-weight: 300; }
.inc em { color: var(--sand-2); font-style: italic; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { padding: clamp(72px, 11vw, 140px) 0; background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 34px); }
.step { position: relative; padding-top: 26px; }
.step__no {
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px var(--gold); display: block; margin-bottom: 14px; opacity: .85;
}
.step h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; margin-bottom: .5rem; color: var(--sand); }
.step p { color: var(--muted); font-size: .95rem; font-weight: 300; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 2px; background: var(--sunset); }

/* =========================================================
   CLOSING CTA
   ========================================================= */
.closing { position: relative; padding: clamp(90px, 13vw, 170px) 0; isolation: isolate; text-align: center; }
.closing__bg { position: absolute; inset: 0; z-index: -2; }
.closing__bg img { width: 100%; height: 100%; object-fit: cover; }
.closing__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(18,14,9,.72) 40%, rgba(18,14,9,.82) 100%); }
.closing__inner { max-width: 760px; margin-inline: auto; }
.closing__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 1.2rem + 4.4vw, 4.4rem); line-height: 1.02; margin-bottom: 1.1rem; color: var(--sand); text-wrap: balance; }
.closing__sub { color: var(--sand-2); font-size: 1.1rem; font-weight: 300; max-width: 560px; margin: 0 auto 2rem; }
.closing__email { margin-top: 22px; color: var(--muted); font-size: .95rem; }
.closing__email a { color: var(--amber); border-bottom: 1px solid rgba(229,151,63,.4); padding-bottom: 1px; }
.closing__email a:hover { color: var(--rose); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); border-top: 1px solid var(--line-2); padding: clamp(50px, 7vw, 80px) 0 36px; }
.footer__inner { display: flex; justify-content: space-between; gap: 36px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--line-2); }
.footer__brand .brand__mark { font-size: 1.3rem; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 280px; font-size: .95rem; font-weight: 300; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 12px 26px; align-content: start; }
.footer__nav a { color: var(--sand-2); font-size: .92rem; transition: color .2s; }
.footer__nav a:hover { color: var(--amber); }
.footer__base { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 26px; color: var(--muted-2); font-size: .82rem; letter-spacing: .03em; }

/* =========================================================
   MODAL
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8,6,4,.72); backdrop-filter: blur(6px); animation: fade .3s var(--ease); }
.modal__dialog {
  position: relative; width: min(560px, 100%); max-height: 92vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 46px); animation: pop .4s var(--ease);
}
.modal__close { position: absolute; top: 14px; right: 18px; font-size: 1.9rem; line-height: 1; color: var(--muted); transition: color .2s, transform .2s; }
.modal__close:hover { color: var(--sand); transform: rotate(90deg); }
.modal__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); line-height: 1.04; margin-bottom: .5rem; color: var(--sand); }
.modal__sub { color: var(--muted); font-size: .98rem; margin-bottom: 1.6rem; font-weight: 300; }
.modal__sub a { color: var(--amber); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }

/* Form */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__group { margin-bottom: 16px; }
.form__group label, .form__fieldset legend { display: block; font-size: .82rem; letter-spacing: .04em; color: var(--sand-2); margin-bottom: 7px; font-weight: 400; }
.form__group label span { color: var(--terra); }
.form input[type=text], .form input[type=email], .form select {
  width: 100%; background: rgba(244,236,219,.04); border: 1px solid var(--line);
  color: var(--sand); font-family: var(--font-body); font-size: 1rem; padding: .8em 1em; border-radius: 10px;
  transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus { outline: none; border-color: var(--amber); background: rgba(244,236,219,.07); }
.form input.is-invalid, .form select.is-invalid { border-color: var(--terra); background: rgba(192,81,43,.08); }
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23B2A488' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; padding-right: 2.6em; }
.form select option { background: var(--ink-2); color: var(--sand); }

.form__fieldset { border: none; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.check { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--sand-2); cursor: pointer; margin: 0; font-weight: 300; }
.check input { width: 18px; height: 18px; accent-color: var(--terra); flex: 0 0 auto; }
.form__other { margin-top: 14px; }
.form__fineprint { font-size: .76rem; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form__error { font-size: .85rem; color: var(--amber); margin-top: 14px; text-align: center; }
.form__error a { color: var(--amber); text-decoration: underline; }

/* Success */
.modal__success { text-align: center; }
.success__mark { font-size: 3rem; color: var(--amber); margin-bottom: 10px; animation: pop .5s var(--ease); }
.modal__success .btn { margin-top: 18px; }

/* =========================================================
   LIGHTBOX (gallery)
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 400; padding: clamp(14px, 3vw, 44px);
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(6px, 1.5vw, 18px);
  background: rgba(8, 6, 4, .93); backdrop-filter: blur(10px); animation: fade .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox__figure { grid-column: 2; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; min-width: 0; }
.lightbox__img { max-width: 100%; max-height: 80vh; border-radius: 12px; box-shadow: var(--shadow); object-fit: contain; animation: pop .35s var(--ease); }
.lightbox__cap { color: var(--sand-2); font-size: .98rem; letter-spacing: .04em; text-align: center; }
.lightbox__nav {
  width: clamp(44px, 5vw, 60px); height: clamp(44px, 5vw, 60px); border-radius: 50%;
  background: rgba(244, 236, 219, .08); color: var(--sand); font-size: 1.9rem; line-height: 1;
  display: grid; place-items: center; border: 1px solid var(--line); transition: background .2s, transform .2s;
}
.lightbox__nav--prev { grid-column: 1; } .lightbox__nav--next { grid-column: 3; }
.lightbox__nav:hover { background: rgba(244, 236, 219, .18); transform: scale(1.07); }
.lightbox__close { position: absolute; top: 16px; right: 22px; font-size: 2.3rem; line-height: 1; color: var(--sand-2); transition: color .2s, transform .2s; z-index: 2; }
.lightbox__close:hover { color: var(--sand); transform: rotate(90deg); }
.lightbox__count { position: absolute; top: 22px; left: 26px; color: var(--muted); font-size: .82rem; letter-spacing: .14em; }
.lightbox__nav:focus-visible, .lightbox__close:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (max-width: 640px) {
  .lightbox { grid-template-columns: 1fr; }
  .lightbox__figure { grid-column: 1; }
  .lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); }
  .lightbox__nav--prev { left: 10px; } .lightbox__nav--next { right: 10px; }
  .lightbox__nav:hover { transform: translateY(-50%) scale(1.07); }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img, .trust__track, .hero__scroll span { animation: none !important; transition: opacity .3s; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .hero { align-items: center; }
  .hero__inner { grid-template-columns: 1fr; gap: clamp(30px, 5vw, 44px); }
  .hero__content { max-width: 680px; }
  .showcase__cards { flex-direction: row; }
  .coachcard { flex: 1 1 0; min-width: 0; grid-template-columns: 1fr; gap: 8px; padding: 14px 14px 16px; text-align: center; }
  .coachcard img { width: 100%; height: 70px; grid-column: 1; grid-row: auto; margin-bottom: 4px; }
  .coachcard__name, .coachcard__tag { grid-column: 1; }
  .intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .coach, .coach--reverse .coach__media { grid-template-columns: 1fr; order: 0; }
  .coach__media { order: -1 !important; }
  .inc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 100px; }
  .showcase__cards { flex-direction: column; }
  .coachcard { flex: initial; grid-template-columns: 84px 1fr; align-items: center; gap: 14px; padding: 12px 16px; text-align: left; }
  .coachcard img { width: 84px; height: 52px; margin-bottom: 0; grid-column: 1; grid-row: 1 / span 2; }
  .coachcard__name, .coachcard__tag { grid-column: 2; }
  .lead { border-radius: var(--radius); flex-direction: column; padding: 12px; }
  /* Hero bar on phones: fix field height (flex-basis was being read as height) and make it ~40% smaller */
  .hero__content .lead { gap: 6px; padding: 8px; max-width: 300px; }
  .hero__content .lead__field { flex: 0 0 auto; width: 100%; }
  .hero__content .lead__field input { padding: .72em .95em; }
  .hero__content .lead__btn { width: 100%; padding: .8em 1em; }
  .lead__field + .lead__field { border-left: none; border-top: 1px solid var(--line-2); }
  .lead__field input { padding: .9em 1em; }
  .lead__btn { width: 100%; }
  .inc-grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .form__row, .checks { grid-template-columns: 1fr; }
  .coach__gallery--grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { flex-direction: column; gap: 28px; }
}
