/* ============================================================
   FortyTwo.club — Stylesheet
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --black:   #0C0C0C;
  --light:   #E1E1DD;
  --orange:  #E8390E;
  --pink:    #FF7AAC;
  --grey:    #484846;
  --tan:     #A68B69;
  --white:   #FFFFFF;

  --font-ui:      'Familjen Grotesk', sans-serif;
  --font-body:    'Libre Baskerville', serif;
  --font-display: 'Iceberg', sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);

  --px-mob: max(1.5rem, calc((100vw - 1560px) / 2));
  --px-dsk: max(3rem,   calc((100vw - 1560px) / 2));
}

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

html { scroll-behavior: smooth; background: var(--black); }

body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Landing wrapper -------------------------------------- */
#landing { transition: opacity 0.4s ease; }
#landing.is-hidden { opacity: 0; pointer-events: none; }

/* --- Shared helpers --------------------------------------- */
.col-label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey);
  margin-bottom: 1.25rem;
  display: block;
}
.col-label--right  { text-align: right; }
.col-label--spaced { margin-top: 3rem; }
.col-label--dark   { color: var(--grey); }

/* --- CTA Button (universal) ------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  height: 40px;
  padding: 0 0 0 1rem;
  border-radius: 0;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta:hover { opacity: 0.85; }

/* Arrow sits in its own full-height square, flush to the right edge */
.btn-cta .btn-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
/* Journey submit button is 48px tall — keep its arrow square flush right */
.journey__btn { justify-content: flex-start; padding-right: 0; }
.journey__btn .btn-icon { width: 48px; height: 48px; margin-left: auto; }

/* Full-width CTAs (journey + teams): pin arrow square to the right edge */
.journey__btn, .teams__cta { justify-content: flex-start; }
.journey__btn .btn-icon, .teams__cta .btn-icon { margin-left: auto; }

.btn-cta--orange {
  background: var(--orange);
  color: var(--white);
}

.btn-cta--pink {
  background: var(--pink);
  color: var(--black);
}

.btn-cta--light {
  background: var(--light);
  color: var(--black);
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.btn-icon--dark {
  filter: brightness(0);
}

/* ============================================================
   SITE NAV — fixed, transparent overlay
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--px-mob);
}

.site-nav__logo {
  font-family: var(--font-ui);
  font-size: 2.5rem; /* 40px */
  font-weight: 500;
  color: var(--light);
  line-height: 1;
  transition: color 0.3s ease;
}

/* Dark nav state — when scrolled over a light section */
.site-nav.nav--dark .site-nav__logo {
  color: var(--black);
}

/* Mobile SVG logo — hidden on desktop, shown on mobile */
.site-nav__logo-mobile {
  display: none;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1); /* white on dark bg */
  transition: filter 0.3s ease;
}
.site-nav.nav--dark .site-nav__logo-mobile {
  filter: brightness(0); /* black on light bg */
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

/* Proximity canvas — sits above bg, below text + 42-hero */
.hero__proximity {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Center content: run-global.svg + text, pinned slightly above middle of hero */
.hero__center {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 0 var(--px-mob);
  z-index: 2;
}

.hero__logo-graphic {
  height: 40px;
  width: auto;
  margin: 0 auto 40px;
}

.hero__desc {
  font-family: var(--font-ui);
  font-size: 1.5rem; /* 24px */
  font-weight: 400;
  line-height: 1.5;
  color: var(--light);
  max-width: 560px;
  margin: 0 auto;
}

/* Stef signature — 24px below hero desc */
.hero__signature {
  display: block;
  margin: 24px auto 0;
  height: 52px;
  width: auto;
}

/* Bottom image — anchored to bottom of hero section, max-width constrained; z-index 1 keeps it below center text */
.hero__bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1620px;
  height: auto;
  z-index: 1;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(225, 225, 221, 0.08);
  border-bottom: 1px solid rgba(225, 225, 221, 0.08);
  line-height: 1;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 20rem);
  color: var(--light);
  flex-shrink: 0;
  padding: 0.05em 0;
  line-height: 0.9;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee--journey {
  background: var(--black);
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee--journey .marquee__item {
  font-size: 16.5rem; /* 264px */
  padding: 0.1em 0;
}
.marquee__track--slow { animation-duration: 40s; }

/* ============================================================
   ONE TO ONE SECTION
   ============================================================ */
.oto {
  background: var(--black);
  padding: 2.5rem var(--px-mob) 4rem; /* 40px top so product-label sits flush */
}

/* --- Product label: "For you | 01/03" ---------------------- */
.product-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2.5rem; /* 40px gap before USP header */
}

.product-label__name,
.product-label__index {
  font-family: var(--font-ui);
  font-size: 2.5rem; /* 40px mobile */
  font-weight: 500;
  color: var(--light);
  line-height: 1;
}

.product-label__num { font-style: normal; }
.product-label__num--gold   { color: var(--tan); }
.product-label__num--orange { color: #FE2F00; }

/* Capacity label in brand red */
.col-label--capacity { color: #FE2F00; }

/* ---- USP Panel ------------------------------------------- */
.oto__usp-panel { margin-bottom: 5rem; }

.oto__usp-header {
  display: grid;
  grid-template-columns: 6fr 4fr 2fr;
  margin-bottom: 1.5rem;
  align-items: end;
}
.oto__usp-header .col-label {
  margin-bottom: 0;
  color: var(--light);
  font-size: 1rem;
  font-weight: 500;
}

.oto__usp-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

/* --- USP List --------------------------------------------- */
.usp-list { margin-bottom: 0; }

.usp-item {
  font-family: var(--font-ui);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  line-height: 1.15;
  padding: 0.2em 0;
  display: block;
  transition: color 0.3s ease;
  user-select: none;
}

.usp-item.is-active,
.usp-item:hover { color: var(--light); }

/* --- USP Detail (description + image) --------------------- */
.usp-detail {
  position: relative;
  min-height: 260px;
}

.usp-detail__desc {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 55%;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--light);
  transition: top 0.45s var(--ease-spring);
}

.usp-detail__img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 46%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.usp-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

/* ---- Reviews Panel --------------------------------------- */
.oto__reviews-panel { margin-top: 4rem; }

.oto__reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.oto__reviews-header .col-label { margin-bottom: 0; }

.reviews-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.reviews-more-btn:hover { opacity: 0.65; }
.reviews-more-btn .btn-icon { width: 16px; height: 16px; }

.reviews-viewport { overflow: hidden; }

.reviews-track {
  display: flex;
  transition: transform 0.55s var(--ease-spring);
  will-change: transform;
}

.review-card {
  flex: 0 0 50%;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.review-card blockquote {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tan);
}
.review-card cite span { font-weight: 400; color: var(--grey); }

/* ---- FAQ Panel ------------------------------------------- */
.oto__faq-panel {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 4rem;
  align-items: start;
}

.oto__faq-coach {
  position: sticky;
  top: 2rem;
}

.coach-stef-img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

.coach-sticky__label {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

/* --- FAQ -------------------------------------------------- */
.faq { border-top: 1px solid rgba(225, 225, 221, 0.12); }

.faq-item {
  border-bottom: 1px solid rgba(225, 225, 221, 0.12);
  transition: background 0.25s ease;
}
.faq-item.is-open { background: var(--tan); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: var(--light);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.25s ease;
}
.faq-item.is-open .faq-item__q { color: var(--black); font-weight: 500; }

.faq-item__arrow {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__arrow { transform: rotate(90deg); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.is-open .faq-item__body { max-height: 400px; }

.faq-item__body p {
  padding: 0 1.25rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--black);
  font-weight: 400;
}

/* Standalone coach block — mobile only */
.oto__coach-standalone { display: none; }

/* ============================================================
   SERVICE BOXES
   ============================================================ */
.service-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 var(--px-mob);
  background: var(--black);
  margin-top: 4rem; /* 64px */
}

.service-box {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 480px;
}

.service-box--coach {
  background: #FE2F00;
  color: var(--black);
}

.service-box--journey {
  background: var(--light);
  color: var(--black);
}

.service-box__title {
  font-family: var(--font-ui);
  font-size: 2.5rem; /* 40px mobile; 64px desktop via media query */
  font-weight: 500;
  line-height: 1.05;
}

.service-box__desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(12, 12, 12, 0.75);
  max-width: 480px;
}

.service-box__capacity-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-box__capacity-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.service-box__capacity-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.service-box__capacity-value {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
}

.service-box__bar-track {
  height: 8px;
  background: #626C76;
  position: relative;
  overflow: hidden;
}

.service-box__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-box--coach .service-box__bar-fill { background: var(--light); }
.service-box--journey .service-box__bar-fill { background: var(--tan); }

/* Journey box: tan track + tan CTA (instead of grey / orange) */
.service-box--journey .service-box__bar-track { background: var(--tan); }
.service-box--journey .btn-cta { background: var(--tan); color: var(--white); }

.service-box__capacity-note {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(12, 12, 12, 0.55);
}

.service-box__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.service-box__details {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.service-box__details:hover { opacity: 0.6; }

/* ============================================================
   JOURNEY / CTA
   ============================================================ */
.journey {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey__hero-area {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.journey__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journey__hero-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.55);
  pointer-events: none;
  z-index: 1;
}

.journey__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px-mob);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.journey__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--light);
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.journey__heading-highlight { color: var(--tan); }

.journey__desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--light);
  text-align: center;
  max-width: 640px;
  margin-bottom: 0;
}

.journey__form-wrap {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.journey__form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.journey__input {
  flex: 1;
  min-width: 200px;
  height: 48px;
  min-height: 48px;
  padding: 0 1.25rem;
  background: var(--grey);
  border: none;
  border-radius: 0;
  color: var(--light);
  font-family: var(--font-ui);
  font-size: 1rem; /* 16px prevents iOS zoom */
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.journey__input::placeholder { color: rgba(225, 225, 221, 0.45); }
.journey__input:focus { background: #5a5a58; }

.journey__btn {
  flex-shrink: 0;
  height: 48px;
}
.journey__btn:disabled { opacity: 0.7; cursor: default; }
.journey__btn.is-submitted { background: var(--tan); }

.journey__sub {
  font-family: var(--font-ui);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: var(--light);
  text-align: center;
}

/* ============================================================
   TEAMS
   ============================================================ */
.teams {
  display: grid;
  grid-template-columns: 1fr;
}

.teams__text-panel {
  background: var(--light);
  color: var(--black);
}
.teams__text-panel .col-label { color: var(--grey); }

.teams__text-inner {
  padding: 4rem var(--px-mob) 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.teams__heading {
  font-family: var(--font-ui);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

/* Sticky 03/03 that tracks alongside teams__text-inner — desktop only */
.teams__product-index-sticky {
  display: none; /* hidden on mobile; enabled on desktop */
}

.teams__product-index {
  font-family: var(--font-ui);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.05;
}

.teams__num { color: var(--light); font-style: normal; }

.teams__body {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(12, 12, 12, 0.65);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.teams__text-inner .btn-cta {
  align-self: flex-start;
}

/* Teams USP grid — 2 cols × 3 rows, icon left + text right */
.teams__usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.teams__usp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.teams__usp-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.teams__usp-item span {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  padding-top: 0.2rem;
}

.teams__cta {
  margin-top: 40px;
  align-self: flex-start;
}

.teams__visual-panel {
  position: relative;
  min-height: 420px;
  background: var(--pink);
  /* no overflow:hidden — allows sticky child to work */
}

/* Image clipped inside its own wrapper so visual-panel can have sticky children */
.teams__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.teams__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: grayscale(1);
}

/* ============================================================
   FOOTER BRIDGE
   ============================================================ */
.footer-bridge {
  background: var(--black);
  line-height: 0;
  padding-bottom: 7.75rem; /* 124px below image */
}

.footer-bridge img {
  display: block;
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 0 var(--px-mob) 2.5rem;
  border-top: none;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(225, 225, 221, 0.08);
}

.footer__col-label {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  display: block;
}

/* Navigation links — large editorial style */
.footer__nav-list li { margin-bottom: 0.25rem; }

.footer__nav-list a {
  font-family: var(--font-ui);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--light);
  display: block;
  transition: color 0.2s;
  line-height: 1.3;
}
.footer__nav-list a:hover { color: var(--orange); }

.footer__detail {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer__email {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--light);
  transition: color 0.2s;
}
.footer__email:hover { color: var(--orange); }

/* Social list */
.footer__social-list li { margin-bottom: 0.4rem; }

.footer__social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--light);
  transition: color 0.2s;
}
.footer__social-list a:hover { color: var(--orange); }
.footer__social-list img { width: 16px; height: 16px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__loc,
.footer__copy {
  font-size: 0.75rem;
  color: var(--grey);
  line-height: 1.5;
}

.footer__top-link {
  font-size: 0.75rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer__top-link:hover { color: var(--light); }

/* ============================================================
   BIB SCREENS (future use)
   ============================================================ */
.ft-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  color: var(--light);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem);
  transition: opacity 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
}
.ft-screen.is-active { opacity: 1; pointer-events: all; transform: translateY(0); }

.screen-nav {
  padding: 1.25rem var(--px-mob);
  border-bottom: 1px solid rgba(225, 225, 221, 0.08);
}
.screen-logo-text { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; }

.screen-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--px-mob);
}
.screen-footer { padding: 1.5rem var(--px-mob); border-top: 1px solid rgba(225, 225, 221, 0.08); }
.screen-logomark { height: 28px; }

.access-form-wrap { width: 100%; max-width: 460px; }
.access-title { font-family: var(--font-ui); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; margin-bottom: 2rem; }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-label { font-size: 0.875rem; color: var(--grey); }

.form-input {
  padding: 0.85rem 1.25rem;
  background: #1C1C1C;
  border: 1px solid rgba(225, 225, 221, 0.12);
  border-radius: 0;
  color: var(--light);
  font-family: var(--font-ui);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(225, 225, 221, 0.5); }
.form-error { font-size: 0.875rem; color: var(--orange); margin-bottom: 0.5rem; }

.form-btn {
  width: 100%;
  height: 40px;
  padding: 0 1.5rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}
.form-btn:hover:not(:disabled) { opacity: 0.85; }
.form-btn:disabled { opacity: 0.6; cursor: default; }

.screen-body--confirmed { flex-direction: column; gap: 2rem; }

.bib-card { position: relative; width: min(320px, 80vw); }
.bib-bg { width: 100%; height: auto; }
.bib-digits-row {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 0.15em;
}
.bib-digit {
  font-family: var(--font-ui); font-size: clamp(2rem, 10vw, 4rem); font-weight: 700; color: var(--black);
}
.bib-digit.settled { color: var(--orange); }
.confirmed-text {
  max-width: 420px; text-align: center; font-family: var(--font-body);
  font-style: italic; font-size: 1rem; color: var(--grey); line-height: 1.65;
}

/* ============================================================
   DESKTOP (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {

  .site-nav { padding: 1.25rem var(--px-dsk); }

  /* OTO desktop layout */
  .oto { padding: 4.5rem var(--px-dsk) 6rem; }

  /* USP body: left 6/12 list, right 6/12 detail */
  .oto__usp-body {
    grid-template-columns: 6fr 6fr;
    gap: 3rem;
  }

  /* Larger detail container on desktop */
  .usp-detail { min-height: 380px; }

  /* Reviews: 4 visible on desktop */
  .review-card { flex: 0 0 25%; }

  /* Service boxes — 64px title, wider padding on desktop */
  .service-box__title { font-size: 4rem; }
  .service-box { padding: 4rem; min-height: 560px; }
  .service-boxes { padding: 0 var(--px-dsk); }

  /* Journey — desktop: wider padding, desc slightly larger */
  .journey__content { padding: 0 var(--px-dsk); }
  .journey__desc { font-size: 1.125rem; max-width: 720px; }

  /* Teams */
  .teams {
    grid-template-columns: 1fr 1fr;
    min-height: 65vh;
  }

  .teams__text-inner { padding: 4rem 2.5rem 3.5rem var(--px-dsk); }
  .teams__heading { margin-bottom: 1.25rem; }

  /* Footer */
  .footer { padding: 0 var(--px-dsk) 2.5rem; }

  .footer__cols { gap: 4rem; padding: 3rem 0; }
}

/* ============================================================
   MOBILE (≤1023px) — all overrides; desktop untouched above
   ============================================================ */
@media (max-width: 1023px) {

  /* --- Nav ------------------------------------------------- */
  .site-nav__logo          { display: none; }
  .site-nav__logo-mobile   { display: block; }

  /* --- Hero ------------------------------------------------ */
  .hero__center { top: 120px; }

  .hero__logo-graphic { height: 32px; margin-bottom: 24px; }

  .hero__desc { font-size: 1rem; /* 16px */ }

  /* Hide proximity canvas on touch (no hover anyway) */
  .hero__proximity { display: none; }

  /* --- USP panel ------------------------------------------- */

  /* Hide middle "Description" label */
  .oto__usp-header {
    grid-template-columns: 1fr 1fr;
  }
  .oto__usp-header .col-label:nth-child(2) { display: none; }

  /* Single-column stack */
  .oto__usp-body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* 40px, white; inactive = grey */
  .usp-item {
    font-size: 2.5rem; /* 40px */
    color: var(--grey);
  }
  .usp-item.is-active,
  .usp-item:hover { color: var(--light); }

  /* Description: static flow, full width, 20px */
  .usp-detail {
    position: static;
    min-height: auto;
    padding-top: 1.5rem;
  }
  .usp-detail__desc {
    position: static;
    width: 100%;
    font-size: 1.25rem; /* 20px */
    top: auto !important; /* neutralise JS inline style */
  }
  .usp-detail__img-wrap { display: none; }

  /* --- Standalone coach block (between reviews + FAQ) ------ */
  .oto__coach-standalone {
    display: block;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(225, 225, 221, 0.12);
  }

  .coach-stef-img--standalone {
    width: 66.67%;
    max-width: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
  }

  /* Hide the coach column inside FAQ panel on mobile */
  .oto__faq-coach { display: none; }

  /* --- FAQ panel ------------------------------------------- */
  .oto__faq-panel {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
  }

  .faq-item__q { font-size: 1rem; /* 16px */ }
  .faq-item__body p { font-size: 1.25rem; /* 20px */ }

  /* --- Reviews carousel ------------------------------------ */
  /* 1 card (90%) + 10% peek of next */
  .review-card { flex: 0 0 90%; }

  /* --- Service boxes — stack on mobile */
  .service-boxes { grid-template-columns: 1fr; padding: 0 var(--px-mob); }
  .service-box { min-height: auto; padding: 2.5rem; }

  /* --- Journey section ------------------------------------- */
  .journey__form { flex-direction: column; }
  .journey__input { min-width: 0; width: 100%; height: 48px; }
  .journey__btn { width: 100%; height: 48px; justify-content: center; }

  /* --- Teams / Side by side -------------------------------- */
  .teams { grid-template-columns: 1fr; }

  /* Image panel first */
  .teams__visual-panel {
    order: -1;
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .teams__heading { margin-bottom: 1.25rem; }

  /* Remove sticky from text panel */
  .teams__text-inner { position: static; }

  /* 6 items stacked single column, 8px gap */
  .teams__usps {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .teams__usp-item span { font-size: 1rem; /* 16px */ }

  /* Full-width CTA */
  .teams__cta {
    align-self: stretch;
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
  }

  /* --- Footer ---------------------------------------------- */
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
