/* ── Design Tokens ─────────────────────────────────── */

:root {
  --ink:          #0E0E0C;
  --bone:         #F1EDE4;
  --bone-2:       #E8E3D7;
  --muted:        rgba(14,14,12,0.6);
  --yellow:       #C8E000;
  --yellow-muted: #EEF2C9;
  --clay:         #C65D3B;
  --serif:        'Instrument Serif', serif;
  --sans:         'Inter Tight', sans-serif;
  --mono:         'JetBrains Mono', monospace;
}

/* ── Reset & Base ─────────────────────────────────── */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--bone);
  line-height: 1.6;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ── Typography ───────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

.mono-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

/* ── Buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border-radius: 100px;
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  padding: 18px 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.85;
}

.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.btn--dark {
  background-color: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.btn--outline {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost {
  background-color: transparent;
  color: var(--bone);
  border-color: var(--bone);
}

/* ── Header ───────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--bone);
  color: var(--ink);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__nav a {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-header__nav a:hover {
  opacity: 0.7;
}

.site-header__nav a.is-active,
.site-header__nav .current-menu-item > a,
.site-header__nav .current_page_item > a {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}

.site-header__nav a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-header__account {
  color: var(--ink);
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.site-header__account svg {
  width: 22px;
  height: 22px;
}

.site-header__account-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-left: 8px;
  text-decoration: none;
}

@media (max-width: 960px) {
  .site-header__account-name { display: none; }
}

.site-header__cta {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 10px 24px;
}

/* ── Hamburger ────────────────────────────────────── */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

.hamburger svg {
  width: 28px;
  height: 28px;
}

.hamburger:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

/* ── Mobile Nav Overlay ───────────────────────────── */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--bone);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 100px clamp(28px, 6vw, 60px) 40px;
  gap: 0;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14,14,12,0.1);
  width: 100%;
  display: block;
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--muted);
}

.mobile-nav a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.mobile-nav a.btn {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 32px;
  padding: 22px 40px;
  border-bottom: none;
  width: 100%;
  /* Colour comes from the variant class (btn--primary etc.), not from
     this layout rule — the previous hard-set ink/bone here outranked
     the variant and forced every mobile-nav button to look ink-dark. */
}

.mobile-nav__close {
  position: absolute;
  top: 22px;
  right: clamp(20px, 4vw, 60px);
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
}

.mobile-nav__close svg {
  width: 28px;
  height: 28px;
}

.mobile-nav__close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

/* ── TFL Roundel Icon ─────────────────────────────── */

.tfl-roundel {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Ticker ───────────────────────────────────────── */

.ticker {
  width: 100%;
  background-color: var(--bone);
  overflow: hidden;
  padding: 10px 0;
  margin-top: 72px;
  border-top: 1px solid rgba(14,14,12,0.2);
  border-bottom: 1px solid rgba(14,14,12,0.2);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__content {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker__content span {
  padding: 0 24px;
}

/* First-timer intro pill — same typography as the rest of the ticker
   but underlined to read as a CTA. The wrapping <span> keeps the
   surrounding 24px padding + dot separator from .ticker__content > span. */
.ticker__cta {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ticker__cta:hover { opacity: 0.7; }

.ticker__content span::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--ink);
  margin-left: 24px;
  vertical-align: middle;
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Footer ───────────────────────────────────────── */

.site-footer {
  background-color: var(--ink);
  color: var(--bone);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 60px) 0;
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 5vw, 80px);
}

.site-footer__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 20px;
}

.site-footer__subline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--bone);
  opacity: 0.6;
  max-width: 340px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.site-footer__col-title {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  margin-bottom: 20px;
  color: var(--bone);
  opacity: 0.5;
}

.site-footer__col ul li {
  margin-bottom: 10px;
}

.site-footer__col a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bone);
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__col a:hover {
  color: var(--yellow);
  opacity: 1;
}

.site-footer__col a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

/* Footer subscribe */

/* ── Footer mailing-list band (£10 credit hook) ───── */

.footer-mailinglist {
  display: grid;
  grid-template-columns: 1.4fr 2.2fr;
  gap: 48px;
  align-items: center;
  padding: 12px 0 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-mailinglist__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0;
}

.footer-mailinglist__headline-em {
  font-style: italic;
  color: var(--yellow);
}

.footer-mailinglist__form-wrap {
  position: relative;
}

.footer-mailinglist__form {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.footer-mailinglist__input {
  flex: 1;
  min-width: 0;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--bone);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(241, 237, 228, 0.35);
  padding: 4px 0 8px;
}

.footer-mailinglist__input::placeholder {
  color: rgba(241, 237, 228, 0.35);
  font-style: italic;
}

.footer-mailinglist__input:focus-visible {
  outline: none;
  border-bottom-color: var(--yellow);
}

.footer-mailinglist__submit {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--yellow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-mailinglist__arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}

.footer-mailinglist__submit:hover .footer-mailinglist__arrow,
.footer-mailinglist__submit:focus-visible .footer-mailinglist__arrow {
  transform: translateX(4px);
}

.footer-mailinglist__submit:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.footer-mailinglist__terms {
  margin: 12px 0 0;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.45;
}

.footer-mailinglist__terms--error {
  color: var(--clay);
  opacity: 1;
}

.footer-mailinglist__confirm {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--bone);
}

@media (max-width: 720px) {
  .footer-mailinglist {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 0 28px;
    margin-bottom: 28px;
  }
  .footer-mailinglist__form {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-mailinglist__input {
    flex: 1 1 100%;
  }
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(241, 237, 228, 0.2);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--bone);
  opacity: 0.4;
}

.site-footer__bar a {
  color: var(--bone);
  opacity: 1;
  text-decoration: none;
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero__video-wrap.is-loaded,
.hero__video-portrait.is-loaded {
  opacity: 1;
}

.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: calc(100vh * 16 / 9);
  min-height: calc(100vw * 9 / 16);
  transform: translate(-50%, -50%);
  border: 0;
}

.hero__video-portrait {
  display: none;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14,14,12,0.4);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  /* Bottom padding inflated so the tagline + CTA row anchors well
   * above the fold, sitting closer to the headline than to the
   * viewport bottom (without crowding the "Un.learn tension."
   * mark). Desktop only — mobile uses .sl-hero markup. */
  padding: clamp(20px, 4vw, 48px) clamp(20px, 4vw, 60px) clamp(220px, 24vw, 340px);
}

.hero__top {
  padding-top: clamp(16px, 3vw, 40px);
}

.hero__eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--bone);
  opacity: 0.75;
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 16vw, 260px);
  line-height: 0.9;
}

.hero__headline-bone {
  display: block;
  color: var(--bone);
}

.hero__headline-yellow {
  display: block;
  color: var(--yellow);
  font-style: italic;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero__body {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  /* +50% on desktop (was clamp(15px, 1.3vw, 18px)). Min keeps the
   * tagline readable on narrow desktop viewports; max stops it
   * dominating on ultra-wide. Mobile uses .sl-hero (own rule), so
   * this bump is desktop only. */
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.5;
  color: var(--bone);
  max-width: 620px;
  opacity: 0.85;
}

.hero__ctas {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

/* ── Stats Bar ────────────────────────────────────── */

.stats {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  margin: 0 auto;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(12px, 2vw, 32px);
  border-right: 1px solid rgba(14,14,12,0.2);
}

.stats__item:first-child {
  padding-left: 0;
}

.stats__item:last-child {
  border-right: none;
  padding-right: 0;
}

.stats__figure {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}

.stats__label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
}

/* ── Editorial Split ──────────────────────────────── */

.editorial {
  background-color: var(--bone);
  border-top: 1px solid rgba(14,14,12,0.2);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.editorial__inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.editorial__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
}

.editorial__aside {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px;
}

.editorial__prose {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.3;
  color: var(--ink);
}

.editorial__emphasis {
  font-style: italic;
  color: var(--yellow);
}

/* ── Outcomes Grid ────────────────────────────────── */

.outcomes {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.outcomes__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.outcomes__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.outcomes__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.15;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.outcomes__headline-bone {
  display: block;
  color: var(--ink);
}

.outcomes__headline-yellow {
  display: block;
  font-style: italic;
  color: var(--yellow);
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.outcomes__card {
  padding: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(14,14,12,0.2);
  border-right: 1px solid rgba(14,14,12,0.2);
}

.outcomes__card:nth-child(3n) {
  border-right: none;
}

.outcomes__card:nth-child(n+4) {
  /* second row already has top border from card above */
}

.outcomes__index {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.outcomes__card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.outcomes__card-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.7;
  color: var(--muted);
}

/* ── Method (02) ──────────────────────────────────── */

.method {
  background-color: var(--ink);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.method__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.method__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.method__marker,
.method__link {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--bone);
  opacity: 0.5;
  text-decoration: none;
}

.method__link:hover {
  opacity: 0.8;
}

.method__link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.method__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}

.method__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1.1;
}

.method__headline-bone {
  display: block;
  color: var(--bone);
}

.method__headline-yellow {
  font-style: italic;
  color: var(--yellow);
}

.method__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--bone);
  opacity: 0.7;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.method__steps {
  display: flex;
  flex-direction: column;
}

.method__step {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(16px, 2vw, 24px) 0;
  border-top: 1px solid rgba(241,237,228,0.2);
}

.method__step:last-child {
  border-bottom: 1px solid rgba(241,237,228,0.2);
}

.method__step-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  flex-shrink: 0;
}

.method__step-text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--bone);
}

/* ── Studio (04) ──────────────────────────────────── */

.studio {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.studio__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.studio__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.studio__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.studio__headline-ink {
  display: block;
}

.studio__headline-yellow {
  font-style: italic;
  color: var(--yellow);
}

.studio__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
}

.studio__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.studio__img {
  background-color: var(--bone-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.studio__img--tall {
  grid-row: 1 / 3;
  min-height: 360px;
}

.studio__img--top,
.studio__img--bottom {
  min-height: 170px;
}

/* ── Press Strip ──────────────────────────────────── */

.press {
  background-color: var(--bone);
  padding: clamp(32px, 4vw, 48px) clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(14,14,12,0.2);
}

.press__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
}

.press__label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.press__marquee {
  overflow: hidden;
  flex: 1;
}

.press__track {
  display: flex;
  width: max-content;
  animation: press-scroll 35s linear infinite;
}

.press__marquee:hover .press__track {
  animation-play-state: paused;
}

.press__names {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.press__names span {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
  padding: 0 20px;
}

.press__names span::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--ink);
  margin-left: 20px;
  vertical-align: middle;
  opacity: 0.3;
}

@keyframes press-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Testimonials (06) ────────────────────────────── */

.testimonials {
  background-color: var(--ink);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.testimonials__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.testimonials__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.testimonials__marker,
.testimonials__counter {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--bone);
  opacity: 0.5;
}

.testimonials__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Stack slides in a single grid cell so the container grows with the
   tallest quote. The previous min-height + position:absolute approach
   let long quotes overflow into the controls/rating row on mobile. */
.testimonials__slides {
  display: grid;
  grid-template-areas: "slide";
  margin-bottom: clamp(32px, 4vw, 48px);
}

.testimonials__slide {
  grid-area: slide;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.testimonials__radio:nth-of-type(1):checked ~ .testimonials__slides .testimonials__slide:nth-child(1),
.testimonials__radio:nth-of-type(2):checked ~ .testimonials__slides .testimonials__slide:nth-child(2),
.testimonials__radio:nth-of-type(3):checked ~ .testimonials__slides .testimonials__slide:nth-child(3),
.testimonials__radio:nth-of-type(4):checked ~ .testimonials__slides .testimonials__slide:nth-child(4),
.testimonials__radio:nth-of-type(5):checked ~ .testimonials__slides .testimonials__slide:nth-child(5),
.testimonials__radio:nth-of-type(6):checked ~ .testimonials__slides .testimonials__slide:nth-child(6) {
  opacity: 1;
  pointer-events: auto;
}

.testimonials__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.35;
  color: var(--bone);
}

.testimonials__attribution {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--bone);
  opacity: 0.6;
  margin-top: clamp(20px, 2.4vw, 32px);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.testimonials__dots {
  display: flex;
  gap: 10px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bone);
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.testimonials__radio:nth-of-type(1):checked ~ .testimonials__controls .testimonials__dot:nth-child(1),
.testimonials__radio:nth-of-type(2):checked ~ .testimonials__controls .testimonials__dot:nth-child(2),
.testimonials__radio:nth-of-type(3):checked ~ .testimonials__controls .testimonials__dot:nth-child(3),
.testimonials__radio:nth-of-type(4):checked ~ .testimonials__controls .testimonials__dot:nth-child(4),
.testimonials__radio:nth-of-type(5):checked ~ .testimonials__controls .testimonials__dot:nth-child(5),
.testimonials__radio:nth-of-type(6):checked ~ .testimonials__controls .testimonials__dot:nth-child(6) {
  background-color: var(--yellow);
  opacity: 1;
}

.testimonials__arrows {
  display: flex;
  gap: 12px;
}

.testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bone);
  color: var(--bone);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.testimonials__arrow:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.testimonials__arrow:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.testimonials__rating {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.testimonials__score {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3vw, 48px);
  color: var(--yellow);
}

.testimonials__stars {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--yellow);
  letter-spacing: 0.05em;
}

.testimonials__meta {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--bone);
  opacity: 0.5;
}

/* ── CTA Band (New Here) ─────────────────────────── */

.cta-band {
  background-color: var(--yellow);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.cta-band__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.1;
  color: var(--ink);
}

.cta-band__headline-ink {
  display: block;
}

.cta-band__headline-em {
  display: block;
  font-style: italic;
}

.cta-band__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 28px;
}

.cta-band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-band__btn-outline {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.cta-band__links {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.6;
}

.cta-band__links a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta-band__links a:hover {
  opacity: 0.8;
}

.cta-band__links a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

/* ── WTE: Hero ────────────────────────────────────── */

.wte-hero {
  background-color: var(--bone);
  padding: 120px clamp(20px, 4vw, 60px) 40px;
}

.wte-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.wte-hero__eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.wte-hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.95;
  color: var(--ink);
}

.wte-hero__em {
  font-style: italic;
  color: var(--yellow);
}

/* ── WTE: Intro ───────────────────────────────────── */

.wte-intro {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.wte-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.wte-intro__text p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 520px;
}

.wte-intro__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

/* ── WTE: Steps ───────────────────────────────────── */

.wte-steps {
  background-color: var(--bone);
  padding: 0 clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(14,14,12,0.2);
  /* Offset for the fixed header (72px) + ticker (~24px) when arriving via
     the homepage "How It Works" CTA → /what-to-expect/#steps. Without this
     the anchor lands behind the header. */
  scroll-margin-top: 110px;
}

/* The four steps are now individual <article>s, each containing the
   image and its card stacked vertically. The outer .wte-steps__list is
   the responsive column grid (4 → 2 → 1 across breakpoints), and each
   .wte-steps__step is a flex column so the photo always sits above its
   number/title/body. This replaces the older twin-grid layout (separate
   .wte-steps__images + .wte-steps__grid) which broke the photo↔card
   pairing once it collapsed on narrow screens. */
.wte-steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 0;
}

.wte-steps__step {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 28px);
}

.wte-steps__img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.wte-steps__card {
  padding: 0;
}

/* Mobile overlay markup is rendered for every card but hidden by default
   so desktop keeps the existing below-image caption. The ≤720px block
   later in this file flips it on. */
.wte-steps__scrim,
.wte-steps__overlay {
  display: none;
}

.wte-steps__card-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.wte-steps__num-big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1;
  color: var(--ink);
}

.wte-steps__num-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
}

.wte-steps__card-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.wte-steps__card-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  color: var(--muted);
}

/* ── WTE: Method ──────────────────────────────────── */

.wte-method {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(14,14,12,0.2);
}

.wte-method__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.wte-method__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.wte-method__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  color: var(--ink);
}

.wte-method__em {
  font-style: italic;
  color: var(--yellow);
}

.wte-method__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.wte-method__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.wte-method__card {
  padding: clamp(20px, 2vw, 28px) 0;
  border-top: 1px solid rgba(14,14,12,0.2);
}

.wte-method__card:nth-child(2n) {
  padding-left: clamp(20px, 2vw, 32px);
}

.wte-method__card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}

.wte-method__card-desc {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── WTE: FAQ ─────────────────────────────────────── */

.wte-faq {
  background-color: var(--ink);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.wte-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.wte-faq__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--bone);
  opacity: 0.5;
  margin-bottom: 24px;
}

.wte-faq__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--bone);
}

.wte-faq__em {
  font-style: italic;
  color: var(--yellow);
}

.wte-faq__item {
  border-bottom: 1px solid rgba(241,237,228,0.2);
}

.wte-faq__question {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  color: var(--bone);
  padding: clamp(20px, 2.5vw, 32px) 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wte-faq__question::-webkit-details-marker {
  display: none;
}

.wte-faq__question::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 24px;
  color: var(--bone);
  opacity: 0.5;
  flex-shrink: 0;
}

.wte-faq__item[open] .wte-faq__question::after {
  content: '\2013';
}

.wte-faq__answer {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--bone);
  opacity: 0.7;
  padding-bottom: clamp(20px, 2.5vw, 32px);
  max-width: 640px;
}

/* ── WTE: CTA Bar ─────────────────────────────────── */

.wte-cta {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(14,14,12,0.2);
}

.wte-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.wte-cta__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--ink);
}

.wte-cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Studios: Hero ─────────────────────────────────── */

.stu-hero {
  background-color: var(--bone);
  padding: 120px clamp(20px, 4vw, 60px) 40px;
}

.stu-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.stu-hero__eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.stu-hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 28px;
}

.stu-hero__em {
  font-style: italic;
  color: var(--yellow);
}

.stu-hero__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 580px;
}

/* ── Studios: Split Panel ─────────────────────────── */

.stu-panel {
  background-color: var(--bone);
  padding: 0 clamp(20px, 4vw, 60px) clamp(48px, 6vw, 80px);
}

.stu-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid rgba(14,14,12,0.2);
}

.stu-panel__list {
  padding-right: clamp(24px, 3vw, 48px);
  padding-top: clamp(32px, 4vw, 48px);
}

.stu-panel__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.stu-panel__items {
  display: flex;
  flex-direction: column;
}

.stu-panel__item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(16px, 2vw, 24px) 0;
  border: none;
  border-bottom: 1px solid rgba(14,14,12,0.15);
  border-left: 3px solid transparent;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.2s ease;
  padding-left: 16px;
}

.stu-panel__item.is-active {
  border-left-color: var(--yellow);
}

.stu-panel__item:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.stu-panel__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex-shrink: 0;
  width: 24px;
}

.stu-panel__item-info {
  flex: 1;
  min-width: 0;
}

.stu-panel__item-name {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
}

.stu-panel__item-meta {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}

.stu-panel__arrow {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── Studios: Detail Panel ────────────────────────── */

.stu-panel__detail {
  border-left: 1px solid rgba(14,14,12,0.15);
  padding-left: clamp(24px, 3vw, 48px);
  padding-top: clamp(32px, 4vw, 48px);
}

.stu-panel__map {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.stu-panel__map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 4px;
  overflow: hidden;
}

.stu-panel__map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stu-panel__map-overlay {
  position: absolute;
  inset: 0;
  padding: clamp(12px, 1.5vw, 20px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  z-index: 1;
}

.stu-panel__map-overlay > * {
  pointer-events: auto;
}

.stu-panel__map-pills {
  display: flex;
  gap: 8px;
  z-index: 1;
}

.stu-panel__map-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  background-color: var(--ink);
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 1;
}

.stu-panel__map-post {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  padding: 6px 12px;
  background-color: rgba(14,14,12,0.7);
  border-radius: 4px;
}

.stu-panel__map-directions {
  position: absolute;
  top: clamp(12px, 1.5vw, 20px);
  right: clamp(12px, 1.5vw, 20px);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--ink);
  background-color: var(--yellow);
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  z-index: 1;
}

.stu-panel__map-directions:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}


/* ── Studios: Info ────────────────────────────────── */

.stu-panel__info-type {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.stu-panel__info-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}

.stu-panel__info-address {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.stu-panel__info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 32px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.stu-panel__info-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
}

.stu-panel__info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  line-height: 2;
}

.stu-panel__info-phone,
.stu-panel__info-email {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.8;
}

.stu-panel__info-tube {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.stu-panel__info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(14,14,12,0.15);
}

.stu-panel__btn {
  font-size: 11px;
  padding: 14px 24px;
}

/* ── About: Hero ─────────────────────────────────── */

.abt-hero {
  background-color: var(--bone);
  padding: 120px clamp(20px, 4vw, 60px) 40px;
}

.abt-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.abt-hero__eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.abt-hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  color: var(--ink);
}

.abt-hero__em {
  font-style: italic;
  color: var(--yellow);
}

/* ── About: Intro + Stats ────────────────────────── */

.abt-intro {
  background-color: var(--bone);
  padding: 0 clamp(20px, 4vw, 60px) clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(14,14,12,0.2);
}

.abt-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

/* Replaces the old .abt-intro__text paragraph. Sits in row 1 of the
   intro grid (left column, alongside the photo in the right column).
   Cards laid out as a tight 3-column micro-grid so all three beliefs
   sit inside the photo's vertical span — saves the full-width dark
   band that the standalone "What We Believe" section used to occupy. */
.abt-intro__beliefs {
  grid-row: 1;
  grid-column: 1;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.abt-intro__beliefs-marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.abt-intro__beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.abt-intro__beliefs-num {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 12px;
}

.abt-intro__beliefs-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}

.abt-intro__beliefs-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(13px, 0.9vw, 14px);
  line-height: 1.55;
  color: var(--muted);
}

.abt-intro__stats {
  grid-row: 2;
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(14,14,12,0.2);
  border-bottom: 1px solid rgba(14,14,12,0.2);
  padding: clamp(24px, 3vw, 40px) 0;
}

.abt-intro__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-intro__stat-fig {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--ink);
}

.abt-intro__stat-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
}

.abt-intro__image {
  grid-row: 1 / 3;
  grid-column: 2;
}

.abt-intro__placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

/* ── About: What We Believe ──────────────────────── */

.abt-beliefs {
  background-color: var(--ink);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.abt-beliefs__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.abt-beliefs__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--yellow);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.abt-beliefs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.abt-beliefs__card {
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) 0;
  border-top: 1px solid rgba(241,237,228,0.2);
  border-bottom: 1px solid rgba(241,237,228,0.2);
  border-right: 1px solid rgba(241,237,228,0.12);
}

.abt-beliefs__card:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: clamp(24px, 3vw, 40px);
}

.abt-beliefs__card:nth-child(2) {
  padding-left: clamp(24px, 3vw, 40px);
}

.abt-beliefs__num {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.abt-beliefs__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 16px;
}

.abt-beliefs__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.7;
  color: var(--bone);
  opacity: 0.7;
}

/* ── About: Team ─────────────────────────────────── */

.abt-team {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.abt-team__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.abt-team__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.abt-team__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
}

.abt-team__tag {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
}

.abt-team__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(14,14,12,0.2);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.abt-team__em {
  font-style: italic;
  color: var(--yellow);
}

.abt-team__filters {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.abt-team__filter-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
}

.abt-team__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Count badge inside each pill (e.g. "Fitzrovia · 5"). Visually
   tertiary so the studio name still leads the read. */
.abt-team__pill-count {
  margin-left: 8px;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}

.abt-team__pill.is-active .abt-team__pill-count {
  opacity: 0.75;
}

/* Fade-in keyframe for stagger animation on filter change. */
@keyframes abt-team-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.abt-team__pill {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(14,14,12,0.25);
  background: none;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.abt-team__pill:hover {
  border-color: var(--ink);
}

.abt-team__pill:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.abt-team__pill.is-active {
  background-color: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

/* ── Alphabet Slider ──────────────────────────────── */

/* Default: full A-Z alphabet visible, mobile range buttons hidden.
   The `.abt-team__alpha.abt-team__alpha--mobile` double-class lifts
   specificity above the base `.abt-team__alpha { display: flex }`
   below — earlier this was a single-class selector and the later
   base rule outranked it by source order, leaking the mobile range
   buttons onto desktop. */
.abt-team__alpha.abt-team__alpha--mobile {
  display: none;
}

.abt-team__alpha {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
}
.abt-team__alpha::-webkit-scrollbar { display: none; }

.abt-team__alpha-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: none;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  display: grid;
  place-items: center;
}
.abt-team__alpha-btn:first-child {
  width: auto;
  padding: 0 14px;
  border-radius: 100px;
  letter-spacing: 0.14em;
}
.abt-team__alpha-btn:hover {
  border-color: rgba(14,14,12,0.25);
}
.abt-team__alpha-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.abt-team__alpha-btn.is-active {
  background-color: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.abt-team__alpha-btn.is-empty {
  opacity: 0.25;
  cursor: not-allowed;
}
.abt-team__alpha-btn.is-empty:hover {
  border-color: transparent;
}

/* ── Team Grid ───────────────────────────────────── */

.abt-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.abt-team__card {
  display: flex;
  flex-direction: column;
}

.abt-team__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--bone-2);
  border-radius: 4px;
  overflow: hidden;
}
.abt-team__card.has-detail .abt-team__photo { cursor: pointer; }
.abt-team__photo:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

/* ── Scrim gradient over photo for name legibility ── */

.abt-team__scrim {
  position: absolute;
  inset: auto 0 0 0;
  height: 65%;
  background: linear-gradient(
    180deg,
    rgba(14,14,12,0)    0%,
    rgba(14,14,12,0.25) 30%,
    rgba(14,14,12,0.7)  60%,
    rgba(14,14,12,0.92) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.25s ease;
}

/* ── Caption (studio kicker + name) ── */

.abt-team__caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.abt-team__caption-studio {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.abt-team__caption-name {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--bone);
}

/* ── Bio overlay — hover to reveal (desktop / mouse only) ──
   Scoped to (hover: hover) so touch devices never get a sticky-hover
   overlay. Touch uses the .abt-modal pattern instead, which the
   click handler opens via matchMedia('(hover: none)'). */
.abt-team__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 12, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(12px, 2vw, 20px);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 4;
  pointer-events: none;
}

@media (hover: hover) {
  .abt-team__photo:hover .abt-team__caption,
  .abt-team__photo:hover .abt-team__scrim {
    opacity: 0;
  }
  .abt-team__photo:hover .abt-team__overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (hover: none) {
  .abt-team__overlay { display: none; }
}

.abt-team__overlay-studio {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 8px;
}

.abt-team__overlay-bio {
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.55;
  color: var(--bone);
  overflow: hidden;
  display: -webkit-box;
  /* 16-line clamp fits roughly 600-750 chars depending on viewport
   * width (cards are narrower on laptops, wider on large monitors).
   * Touch devices use the .abt-modal overlay below, which renders
   * the full bio with no clamp. */
  -webkit-line-clamp: 16;
  -webkit-box-orient: vertical;
}

.abt-team__book-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.abt-team__book-btn:hover { opacity: 0.85; }
.abt-team__book-btn:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

/* ── Bio modal (touch only) ───────────────────────────────────────
   A portrait-photo-shaped panel with the bio overlay rendered on
   top — the same visual treatment as the desktop hover state, just
   blown up to fill the viewport. A yellow X in the corner closes it. */
.abt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
}
.abt-modal.is-open { display: flex; }

.abt-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 12, 0.7);
}

.abt-modal__panel {
  position: relative;
  width: min(92vw, calc((100vh - 64px) * 3 / 4));
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
}

.abt-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.abt-modal__close:hover { opacity: 0.85; }
.abt-modal__close:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

.abt-modal__photo {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--bone-2);
  background-size: cover;
  background-position: center top;
}

.abt-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 12, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 5vw, 32px);
  gap: 8px;
  overflow-y: auto;
}

.abt-modal__studio {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}
.abt-modal__studio:empty { display: none; }

.abt-modal__name {
  font-family: var(--serif);
  font-size: clamp(24px, 5vw, 32px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--bone);
  margin: 0;
}

.abt-modal__bio {
  font-family: var(--sans);
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.55;
  color: var(--bone);
  margin: 4px 0 0;
}
.abt-modal__bio:empty { display: none; }

.abt-modal__book {
  align-self: flex-start;
  margin-top: 12px;
  padding: 12px 22px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  border-radius: 100px;
  text-decoration: none;
}
.abt-modal__book:hover { opacity: 0.85; }
.abt-modal__book:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}
.abt-modal__book[hidden] { display: none; }

body.abt-modal-open { overflow: hidden; }

.abt-team__photo-label {
  position: absolute;
  top: clamp(10px, 1.5vw, 16px);
  left: clamp(10px, 1.5vw, 16px);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--ink);
  opacity: 0.5;
  background-color: var(--bone);
  padding: 4px 10px;
  border-radius: 2px;
}

.abt-team__photo-alt {
  position: absolute;
  bottom: clamp(10px, 1.5vw, 16px);
  left: clamp(10px, 1.5vw, 16px);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: var(--ink);
  opacity: 0.35;
}

.abt-team__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-team__meta-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.abt-team__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  color: var(--ink);
}

.abt-team__yrs {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--muted);
  flex-shrink: 0;
}

.abt-team__role {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.abt-team__spec {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  margin-top: 4px;
}

/* ── About: Careers CTA ──────────────────────────── */

.abt-careers {
  background-color: var(--yellow);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.abt-careers__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.abt-careers__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 16px;
}

.abt-careers__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.abt-careers__em {
  font-style: italic;
}

.abt-careers__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.8;
  max-width: 560px;
}

.abt-careers__right {
  text-align: right;
  flex-shrink: 0;
  padding-top: 8px;
}

.abt-careers__enquiry-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 8px;
}

.abt-careers__email {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.abt-careers__email:hover {
  opacity: 0.7;
}

.abt-careers__email:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

/* ── About: Open Roles ───────────────────────────── */

.abt-roles {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.abt-roles__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.abt-roles__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.abt-roles__items {
  display: flex;
  flex-direction: column;
}

.abt-roles__item {
  border-bottom: 1px solid rgba(14,14,12,0.15);
}

.abt-roles__item:first-child {
  border-top: 1px solid rgba(14,14,12,0.15);
}

.abt-roles__item-header {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(16px, 2vw, 24px) 0;
  cursor: pointer;
}

.abt-roles__item-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex-shrink: 0;
}

.abt-roles__item-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  flex: 1;
}

.abt-roles__item-toggle {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}

.abt-roles__item-detail {
  display: none;
  padding-bottom: clamp(16px, 2vw, 24px);
  padding-left: calc(clamp(12px, 2vw, 20px) + 32px);
}

.abt-roles__item.is-selected .abt-roles__item-detail {
  display: block;
}

.abt-roles__item-meta {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 16px;
}

.abt-roles__item-desc {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 520px;
}

.abt-roles__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-roles__tag {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--ink);
  padding: 6px 14px;
  border: 1px solid rgba(14,14,12,0.25);
  border-radius: 100px;
}

/* ── About: Application Form Card ────────────────── */

.abt-roles__form-card {
  background-color: var(--ink);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 40px);
  position: sticky;
  top: 96px;
}

.abt-roles__form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(20px, 2vw, 28px);
  border-bottom: 1px solid rgba(241,237,228,0.15);
}

.abt-roles__form-applying {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.5;
  margin-bottom: 8px;
}

.abt-roles__form-role {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 6px;
}

.abt-roles__form-role-meta {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.5;
}

.abt-roles__form-header-right {
  text-align: right;
  flex-shrink: 0;
}

.abt-roles__form-step {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.4;
  margin-bottom: 4px;
}

.abt-roles__form-time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--bone);
  opacity: 0.3;
}

.abt-roles__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.abt-roles__form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.abt-roles__field {
  margin-bottom: 20px;
}

.abt-roles__field-label {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.5;
  margin-bottom: 10px;
}

.abt-roles__input,
.abt-roles__textarea {
  display: block;
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(241,237,228,0.2);
  background: transparent;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s ease;
}

.abt-roles__input:focus-visible,
.abt-roles__textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--yellow);
}

.abt-roles__input::placeholder,
.abt-roles__textarea::placeholder {
  color: var(--bone);
  opacity: 0.3;
}

.abt-roles__textarea {
  resize: vertical;
  min-height: 60px;
}

/* File input — match the underline aesthetic of the rest of the form.
   The "Choose file" pill is bone on dark cards and yellow on bone cards;
   add `.abt-roles__input--file-on-bone` to switch into the bone-card variant. */
.abt-roles__input--file {
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bone);
  cursor: pointer;
}

.abt-roles__input--file::-webkit-file-upload-button,
.abt-roles__input--file::file-selector-button {
  background: var(--bone);
  border: 1px solid var(--bone);
  border-radius: 100px;
  color: var(--ink);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 600;
  padding: 8px 16px;
  margin-right: 12px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.abt-roles__input--file:hover::-webkit-file-upload-button,
.abt-roles__input--file:hover::file-selector-button {
  opacity: 0.85;
}

/* Bone-card variant: yellow pill on light background */
.abt-roles__input--file-on-bone {
  color: var(--ink);
}

.abt-roles__input--file-on-bone::-webkit-file-upload-button,
.abt-roles__input--file-on-bone::file-selector-button {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.abt-roles__field-hint {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.4;
  margin: 8px 0 0;
}

.abt-roles__form-fine {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.4;
  margin-bottom: 20px;
  line-height: 1.6;
}

.abt-roles__submit {
  width: 100%;
  margin-bottom: 16px;
}

.abt-roles__form-msg {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  line-height: 1.6;
  min-height: 1.6em;
}

.abt-roles__form-msg.is-success {
  color: var(--yellow);
}

.abt-roles__form-msg.is-error {
  color: var(--yellow);
}

/* Per-field error span. Reveals next to the offending input when the
   /sl/v1/apply endpoint returns a validation failure. Mono uppercase to
   match the rest of the form chrome — clay underline on the input
   itself flags the field at a glance. */
.abt-roles__field-error {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  line-height: 1.4;
  color: var(--yellow);
}
.abt-roles__field.has-error .abt-roles__input,
.abt-roles__field.has-error .abt-roles__textarea {
  border-bottom-color: var(--clay);
}

/* ── Prices: Hero ────────────────────────────────── */

.prc-hero {
  background-color: var(--bone);
  padding: 120px clamp(20px, 4vw, 60px) 40px;
}

.prc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: end;
}

.prc-hero__eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.prc-hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  color: var(--ink);
}

.prc-hero__em {
  font-style: italic;
  color: var(--yellow);
}

.prc-hero__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 520px;
}

/* ── Prices: Quick Match ─────────────────────────── */

.prc-match {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(14,14,12,0.2);
}

.prc-match__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.prc-match__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.prc-match__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--ink);
}

.prc-match__right {
  display: flex;
  align-items: start;
  gap: clamp(24px, 3vw, 40px);
}

.prc-match__slider-wrap {
  flex: 1;
}

.prc-match__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bone-2);
  border-radius: 6px;
  outline: none;
  margin-bottom: 16px;
}

.prc-match__slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 6px;
}

.prc-match__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  margin-top: -8px;
}

.prc-match__slider::-moz-range-track {
  height: 6px;
  border-radius: 6px;
  background: var(--bone-2);
}

.prc-match__slider::-moz-range-progress {
  height: 6px;
  border-radius: 6px;
  background: var(--yellow);
}

.prc-match__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: none;
  cursor: pointer;
}

.prc-match__slider:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.prc-match__labels {
  display: flex;
  justify-content: space-between;
}

.prc-match__labels span {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.prc-match__labels span.is-active {
  color: var(--ink);
  font-weight: 500;
}

.prc-match__rec {
  flex-shrink: 0;
  background-color: var(--ink);
  border-radius: 12px;
  padding: clamp(20px, 2vw, 28px);
  min-width: 240px;
}

.prc-match__rec-tag {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--yellow);
  margin-bottom: 8px;
}

.prc-match__rec-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 8px;
}

.prc-match__rec-detail {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.6;
  line-height: 1.6;
}
.prc-match__rec-cta {
  margin-top: 16px;
}

/* ── Prices: Tab Bar ─────────────────────────────── */

/* ── Prices: Browser-Style Tabs ────────────────── */

.prc-tabs-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.prc-tabs__browse {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 12px;
  padding-top: clamp(32px, 4vw, 48px);
}

.prc-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  border-bottom: 1px solid var(--ink);
  position: relative;
}

.prc-tabs__tab {
  flex: 1;
  min-width: 0;
  padding: 14px 24px 13px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(14,14,12,0.12);
  border-right: 1px solid rgba(14,14,12,0.12);
  cursor: pointer;
  text-align: left;
  opacity: 0.72;
  transition: padding 180ms ease, opacity 150ms ease;
}

.prc-tabs__tab:first-of-type {
  border-left: none;
}

.prc-tabs__tab:hover {
  opacity: 1;
}

.prc-tabs__tab.is-active {
  padding: 18px 24px 17px;
  background: var(--bone-2);
  border: 1px solid var(--ink);
  border-bottom: 1px solid var(--bone-2);
  margin-bottom: -1px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  opacity: 1;
  cursor: default;
}

/* Hide hairline dividers adjacent to active tab */
.prc-tabs__tab.is-active + .prc-tabs__tab {
  border-left-color: transparent;
}

.prc-tabs__tab:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.prc-tabs__tab-name {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
}

.prc-tabs__tab-sub {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
}

.prc-tabs__see-all {
  display: none;
}

/* ── Prices: Content Panel ────────────────────── */

.prc-panel {
  background: var(--bone-2);
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.prc-tab-panel {
  display: none;
}

.prc-tab-panel.is-active {
  display: block;
}

/* ── Prices: Tab Responsive ───────────────────── */

@media (max-width: 1023px) {
  .prc-tabs { flex-wrap: wrap; }
  .prc-tabs__tab { min-width: 140px; }
}

@media (max-width: 720px) {
  .prc-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .prc-tabs::-webkit-scrollbar { display: none; }
  .prc-tabs__tab { min-width: 160px; flex-shrink: 0; }
  .prc-tabs__see-all { display: none; }
}

/* ── Prices: Memberships ─────────────────────────── */

.prc-memberships {
  background-color: transparent;
  padding: 36px;
}

.prc-memberships__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.prc-memberships__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.prc-memberships__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
}

.prc-memberships__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.prc-memberships__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.prc-memberships__card {
  position: relative;
  border-radius: 12px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}

.prc-memberships__card--bone {
  background-color: var(--bone-2);
  color: var(--ink);
  border: 1px solid rgba(14,14,12,0.15);
}

.prc-memberships__card--ink {
  background-color: var(--ink);
  color: var(--bone);
}

.prc-memberships__card--yellow {
  background-color: var(--yellow);
  color: var(--ink);
}

.prc-memberships__badge {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--yellow);
}

.prc-memberships__card-label {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  opacity: 0.6;
  margin-bottom: 8px;
}

.prc-memberships__card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.prc-memberships__card--ink .prc-memberships__card-name {
  font-style: italic;
}

.prc-memberships__card--yellow .prc-memberships__card-name {
  font-style: italic;
}

.prc-memberships__card-tagline {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.prc-memberships__card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.prc-memberships__price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}

.prc-memberships__period {
  font-family: var(--sans);
  font-size: 15px;
  opacity: 0.6;
}

.prc-memberships__card-rate {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  opacity: 0.6;
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(128,128,128,0.2);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.prc-memberships__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(24px, 3vw, 36px);
  flex: 1;
}

.prc-memberships__features li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.prc-memberships__features li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.prc-memberships__cta {
  width: 100%;
  /* Push the CTA + fine print group to the bottom of the flex column
   * so all three cards' CTAs share a bottom rail regardless of how
   * many perks each tier lists. The cards already stretch to the
   * tallest sibling via the grid's default align-items: stretch,
   * which gives every card the same height; this margin keeps the
   * action button anchored to that shared bottom while features
   * stay anchored to the top. */
  margin-top: auto;
  margin-bottom: 16px;
}

/* Mobile-only "What's included" expand toggle — hidden on desktop, the
   @960px breakpoint flips it back to display:flex so it appears once the
   feature list collapses. */
.prc-memberships__expand {
  display: none;
}

/* Plus card sits on ink, so the CTA flips to filled bone with ink text.
   Yellow is reserved for the primary CTA on bone cards (Essential). */
.prc-memberships__card--ink .prc-memberships__cta {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}

.prc-memberships__fine {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  opacity: 0.4;
  line-height: 1.6;
}

/* ── Prices: Credits & Packs ─────────────────────── */

.prc-credits {
  background-color: transparent;
  padding: 36px;
}

.prc-credits__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.prc-credits__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.prc-credits__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.prc-credits__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.prc-credits__card {
  position: relative;
  background-color: var(--yellow);
  padding: clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.prc-credits__best {
  position: absolute;
  top: clamp(16px, 1.5vw, 20px);
  right: clamp(16px, 1.5vw, 20px);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  background-color: var(--ink);
  color: var(--bone);
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}

.prc-credits__label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.75;
  margin: 0 0 14px;
}

.prc-credits__card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 auto;
  padding-bottom: clamp(40px, 5vw, 64px);
}

.prc-credits__card-price {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}

.prc-credits__card-rate {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.7;
  margin: 0 0 16px;
}

.prc-credits__card-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 18px;
}

.prc-credits__rule {
  border: 0;
  border-top: 1px solid rgba(14, 14, 12, 0.25);
  margin: 0 0 16px;
  width: 100%;
}

.prc-credits__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.prc-credits__validity {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--ink);
  opacity: 0.7;
  margin: 0;
}

.prc-credits__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.prc-credits__cta:hover { opacity: 0.85; }

.prc-credits__cta:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.prc-credits__note {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}

/* ── Prices: Physiotherapy ───────────────────────── */

.prc-physio {
  background-color: transparent;
  padding: 36px;
}

.prc-physio__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.prc-physio__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.prc-physio__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.prc-physio__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--ink);
}

.prc-physio__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--muted);
}

.prc-physio__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.prc-physio__card {
  position: relative;
  background-color: var(--yellow);
  padding: clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.prc-physio__best {
  position: absolute;
  top: clamp(16px, 1.5vw, 20px);
  right: clamp(16px, 1.5vw, 20px);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  background-color: var(--ink);
  color: var(--bone);
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}

.prc-physio__label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.75;
  margin: 0 0 14px;
}

.prc-physio__card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}

.prc-physio__card-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 auto;
  padding-bottom: clamp(20px, 2.5vw, 32px);
}

.prc-physio__card-price {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}

.prc-physio__rule {
  border: 0;
  border-top: 1px solid rgba(14, 14, 12, 0.25);
  margin: 0 0 16px;
  width: 100%;
}

.prc-physio__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
  width: 100%;
}

.prc-physio__cta:hover { opacity: 0.85; }

.prc-physio__cta:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.prc-physio__cta-arrow {
  font-size: 14px;
  letter-spacing: 0;
}

/* ── Prices: Promotions ──────────────────────────── */

.prc-promos {
  background-color: transparent;
  padding: 36px;
}

.prc-promos__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.prc-promos__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}

.prc-promos__card {
  border-radius: 12px;
  padding: clamp(32px, 3.5vw, 48px);
}

.prc-promos__card--bone {
  background-color: var(--bone-2);
  color: var(--ink);
}

.prc-promos__card--ink {
  background-color: var(--ink);
  color: var(--bone);
}

.prc-promos__label {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  opacity: 0.6;
  margin-bottom: 16px;
}

.prc-promos__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.prc-promos__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.prc-promos__pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.prc-promos__price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}

.prc-promos__was {
  font-family: var(--sans);
  font-size: 16px;
  opacity: 0.5;
  text-decoration: line-through;
}

.prc-promos__save {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  background-color: var(--yellow);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 4px;
}

.prc-promos__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prc-promos__cta {
  flex-shrink: 0;
}

.prc-promos__expiry {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  opacity: 0.5;
}

/* ── Prices: Gift Cards ──────────────────────────── */

.prc-gift {
  background-color: transparent;
  padding: 36px;
}

.prc-gift__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.prc-gift__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.prc-gift__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.prc-gift__em {
  display: block;
  font-style: italic;
  color: var(--yellow);
}
.prc-gift__stop {
  color: var(--ink);
}

.prc-gift__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.prc-gift__choose-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 12px;
}

.prc-gift__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.prc-gift__amt {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  padding: 12px 20px;
  border: 1px solid rgba(14,14,12,0.2);
  border-radius: 4px;
  background-color: var(--bone-2);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.prc-gift__amt:hover {
  border-color: var(--ink);
}

.prc-gift__amt:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.prc-gift__amt.is-active {
  background-color: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

/* Custom denomination — visually distinct from the fixed amounts.
   Transparent fill + dashed border telegraphs "pick your own". The
   .is-active state still flips to ink-fill so updateGift() reads
   consistently across all buttons. */
.prc-gift__amt--custom {
  background-color: transparent;
  border-style: dashed;
  border-color: rgba(14, 14, 12, 0.4);
}

.prc-gift__amt--custom:hover {
  border-color: var(--ink);
}

.prc-gift__amt--custom.is-active {
  background-color: var(--ink);
  border-color: var(--ink);
  border-style: solid;
}

.prc-gift__buy {
  width: 100%;
  max-width: 360px;
}

/* Gift card recipient form */

.prc-gift__form {
  margin-top: 20px;
  max-width: 440px;
}

.prc-gift__form-title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  margin-bottom: 16px;
}

.prc-gift__form-row {
  margin-bottom: 12px;
}

.prc-gift__form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.prc-gift__form-label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.prc-gift__form-input {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(14,14,12,0.2);
  border-radius: 0;
  padding: 10px 12px;
}

.prc-gift__form-input:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-color: var(--ink);
}

.prc-gift__form-input::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.prc-gift__form-textarea {
  resize: vertical;
  min-height: 48px;
}

.prc-gift__form-fine {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0;
}

.prc-gift__form-submit {
  width: 100%;
}

.prc-gift__form-msg {
  font-family: var(--sans);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

.prc-gift__form-msg--ok {
  color: var(--ink);
  background: var(--yellow);
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 500;
}

.prc-gift__form-msg--err {
  color: #c65d3b;
}

.prc-gift__card {
  background-color: var(--ink);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 40px);
  aspect-ratio: 1.6 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prc-gift__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prc-gift__card-brand,
.prc-gift__card-no {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 6px;
}
.prc-gift__card-logo {
  height: 48px;
  width: auto;
  filter: brightness(1.15);
}
.prc-gift__card-brand-text {
  opacity: 0.4;
}

.prc-gift__card-no {
  opacity: 0.4;
}

.prc-gift__card-amount {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  color: var(--bone);
  text-align: center;
}

.prc-gift__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.prc-gift__card-valid {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.5;
}

.prc-gift__card-motto {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--bone);
  opacity: 0.7;
}

.prc-gift__footnote {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: clamp(32px, 4vw, 48px) 0 0;
}

/* ── Prices: Comparison Table ────────────────────── */

.prc-compare {
  background-color: var(--ink);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.prc-compare__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.prc-compare__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.prc-compare__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--yellow);
}

.prc-compare__note {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.4;
}

.prc-compare__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.prc-compare__table {
  width: 100%;
}

.prc-compare__header,
.prc-compare__row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 0;
}

.prc-compare__header {
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(241,237,228,0.12);
}

.prc-compare__header .prc-compare__col {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--bone);
}

.prc-compare__col--plus {
  color: var(--yellow) !important;
}

.prc-compare__row {
  padding: clamp(14px, 1.5vw, 20px) 0;
  border-bottom: 1px solid rgba(241,237,228,0.12);
}

.prc-compare__row:nth-child(odd) {
  background-color: rgba(241,237,228,0.03);
}

.prc-compare__row:nth-child(even) {
  background-color: rgba(241,237,228,0.06);
}

.prc-compare__row .prc-compare__label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--bone);
  opacity: 0.5;
  align-self: center;
}

.prc-compare__val {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bone);
  align-self: center;
}

/* ── Prices: FAQ ─────────────────────────────────── */

.prc-faq {
  background-color: var(--bone);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
}

.prc-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1440px;
  margin: 0 auto;
}

.prc-faq__marker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.prc-faq__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--ink);
}

.prc-faq__em {
  font-style: italic;
  color: var(--yellow);
}

.prc-faq__item {
  border-bottom: 1px solid rgba(14,14,12,0.15);
}

.prc-faq__question {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  padding: clamp(20px, 2.5vw, 32px) 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.prc-faq__question::-webkit-details-marker {
  display: none;
}

.prc-faq__question::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink);
  opacity: 0.5;
  flex-shrink: 0;
}

.prc-faq__item[open] .prc-faq__question::after {
  content: '\2013';
}

.prc-faq__answer {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: clamp(20px, 2.5vw, 32px);
  max-width: 640px;
}

/* ── Legal Pages ──────────────────────────────────── */

.leg {
  background-color: var(--bone);
  padding: clamp(100px, 10vw, 140px) clamp(20px, 4vw, 60px) clamp(80px, 8vw, 120px);
}

.leg__inner {
  max-width: 760px;
  margin: 0 auto;
}

.leg__header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.leg__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}

.leg__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
}

.leg__effective {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.leg__body h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  color: var(--ink);
  margin-top: clamp(40px, 4vw, 56px);
  margin-bottom: 16px;
}

.leg__body h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.leg__body p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}

.leg__body ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.leg__body ul li {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.leg__body ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.leg__body strong {
  font-weight: 600;
}

.leg__body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.leg__body a:hover {
  opacity: 0.7;
}

.leg__body a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* ── Contact Page ─────────────────────────────────── */

.con-hero {
  background-color: var(--bone);
  padding: 120px clamp(20px, 4vw, 60px) 40px;
}

.con-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.con-hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}

.con-hero__headline {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.con-hero__em {
  color: var(--yellow);
  font-style: italic;
}

.con-hero__lead {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

/* -- Main: Form + Channels two-column -- */

.con-main {
  background-color: var(--bone);
  padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 60px) clamp(80px, 8vw, 120px);
}

.con-main__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}

/* -- Direct Channels -- */

.con-channels {
  order: 1;
}

.con-channels__block {
  border-top: 1px solid rgba(14,14,12,0.2);
  padding-top: 20px;
  margin-bottom: 28px;
}

.con-channels__block--disabled {
  opacity: 0.55;
  pointer-events: none;
}

.con-channels__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 14px;
}

.con-channels__list {
  list-style: none;
}

.con-channels__list li {
  margin-bottom: 16px;
}

.con-channels__link {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.con-channels__link:hover {
  border-bottom-color: var(--ink);
}

.con-channels__link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.con-channels__desc {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.5;
}

.con-channels__note {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 16px;
}

.con-channels__note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.con-channels__note a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.con-channels__wa {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
}

.con-channels__wa-sub {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 20px;
}

/* -- Routed Form Panel -- */

.con-form {
  order: 2;
  background-color: var(--bone-2);
  border: 1px solid var(--ink);
  padding: 44px;
}

.con-form__field {
  margin-bottom: 24px;
}

.con-form__fieldset {
  border: none;
  padding: 0;
}

.con-form__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 8px;
}

.con-form__req {
  color: var(--muted);
}

.con-form__input,
.con-form__textarea,
.con-form__select {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background-color: transparent;
  border: 1px solid rgba(14,14,12,0.3);
  padding: 14px 16px;
  transition: border-color 0.2s ease;
}

.con-form__input:focus,
.con-form__textarea:focus,
.con-form__select:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-color: var(--ink);
}

.con-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.con-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230E0E0C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

/* Topic pills */

.con-form__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.con-form__pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  border: 1px solid rgba(14,14,12,0.3);
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.con-form__pill:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.con-form__pill.is-active {
  background-color: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.con-form__pill-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.con-form__pill:focus-within {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Studio hint */

.con-form__studio-hint {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* GDPR consent */

.con-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.con-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.con-form__check-label span {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.con-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--ink);
  background-color: transparent;
  cursor: pointer;
  margin-top: 1px;
  position: relative;
  flex-shrink: 0;
}

.con-form__checkbox:checked {
  background-color: var(--ink);
}

.con-form__checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--bone);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.con-form__checkbox:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Consent note (below submit) */

.con-form__consent-note {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-top: 12px;
}

/* Per-field errors */

.con-form__field-error {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: #b91c1c;
  margin-top: 6px;
}

.con-form__field.has-error .con-form__input,
.con-form__field.has-error .con-form__textarea,
.con-form__field.has-error .con-form__select {
  border-color: #b91c1c;
}

/* Form-level error */

.con-form__error {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: #b91c1c;
  background-color: rgba(185,28,28,0.06);
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* Submit button */

.con-form__submit {
  width: 100%;
}

/* Success card */

.con-form__success {
  padding: 20px 0;
}

.con-form__success:focus {
  outline: none;
}

.con-form__success-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}

.con-form__success-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.con-form__success-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

.con-form__success-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* -- Studios Directory -- */

.con-studios {
  background-color: var(--bone);
  padding: 120px clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(14,14,12,0.2);
}

.con-studios__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.con-studios__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 4vw, 60px);
}

.con-studios__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
}

.con-studios__headline {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--ink);
}

.con-studios__meta {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.con-studios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.con-studios__card {
  background-color: var(--bone-2);
  border: 1px solid rgba(14,14,12,0.2);
  padding: 28px;
}

.con-studios__name {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 6px;
}

.con-studios__tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
}

.con-studios__address {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 6px;
}

.con-studios__tube {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
}

.con-studios__divider {
  height: 1px;
  background-color: rgba(14,14,12,0.15);
  margin-bottom: 16px;
}

.con-studios__contact-rows {
  margin-bottom: 16px;
}

.con-studios__contact-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.con-studios__contact-row:last-child {
  margin-bottom: 0;
}

.con-studios__contact-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  min-width: 48px;
  flex-shrink: 0;
}

.con-studios__contact-value {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.con-studios__contact-value:hover {
  border-bottom-color: var(--ink);
}

.con-studios__contact-value:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.con-studios__actions {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(14,14,12,0.15);
}

.con-studios__action-link {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.con-studios__action-link:hover {
  opacity: 0.7;
}

.con-studios__action-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* -- FAQ Strip -- */

.con-faq {
  background-color: var(--ink);
  color: var(--bone);
  padding: 120px clamp(20px, 4vw, 60px);
}

.con-faq__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.con-faq__header {
  margin-bottom: clamp(40px, 4vw, 60px);
}

.con-faq__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 12px;
}

.con-faq__headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--bone);
}

.con-faq__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.con-faq__col {
  padding: 0 clamp(20px, 3vw, 40px);
  border-left: 1px solid rgba(241,237,228,0.15);
}

.con-faq__col:first-child {
  padding-left: 0;
  border-left: none;
}

.con-faq__col:last-child {
  padding-right: 0;
}

.con-faq__question {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 12px;
}

.con-faq__answer {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(241,237,228,0.7);
}

.con-faq__answer a {
  color: var(--bone);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.con-faq__answer a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* ── Reduced Motion ───────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .hero__video-wrap {
    display: none;
  }

  .hero__fallback {
    display: block;
  }
}

/* ── Responsive ───────────────────────────────────── */

/* Medium-narrow widths (≤1280px): nav drops to its own row beneath
 * logo + actions instead of cramming everything on one line.
 * Avoids both the desktop-cramp (items pressing into each other at
 * narrow desktop) and the early hamburger swap. Logo+account+CTA
 * stay on row 1; nav fills row 2, items centred and slightly
 * tighter gap. At narrow widths (≤600px) the hamburger block below
 * sets .site-header__nav to display:none, making this dormant. */
@media (max-width: 1280px) {
  .site-header__inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    row-gap: 8px;
  }
  .site-header__nav {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    gap: clamp(16px, 2.5vw, 28px);
  }
}

/* Hamburger threshold dropped from 960px to 600px so the full
 * six-item nav stays visible on tablets and small laptops. The
 * two-row layout above (max-width:1280px) keeps the nav on its
 * own row, which fits comfortably down to ~600px before items
 * start crowding. Below 600px (phone portrait / very narrow)
 * the nav collapses to the burger overlay. */
@media (max-width: 600px) {
  .site-header__nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__account {
    display: none;
  }

  .site-header__logo-img {
    height: 48px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__ctas {
    flex-wrap: wrap;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(32px, 5vw, 48px);
  }

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .editorial__inner {
    grid-template-columns: 1fr;
  }

  .outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcomes__card:nth-child(3n) {
    border-right: 1px solid rgba(14,14,12,0.2);
  }

  .outcomes__card:nth-child(2n) {
    border-right: none;
  }

  .method__columns {
    grid-template-columns: 1fr;
  }

  .studio__inner {
    grid-template-columns: 1fr;
  }

  .wte-intro__inner {
    grid-template-columns: 1fr;
  }

  .wte-steps__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .wte-method__inner {
    grid-template-columns: 1fr;
  }

  .wte-faq__inner {
    grid-template-columns: 1fr;
  }

  .wte-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stu-panel__inner {
    grid-template-columns: 1fr;
  }

  .stu-panel__item {
    padding: 12px 0;
    gap: 10px;
  }

  .stu-panel__item-name {
    font-size: 18px;
  }

  .stu-panel__num {
    font-size: 10px;
  }

  .stu-panel__arrow {
    font-size: 14px;
  }

  .stu-panel__detail {
    border-left: none;
    border-top: 1px solid rgba(14,14,12,0.15);
    padding-left: 0;
    padding-top: clamp(32px, 4vw, 48px);
  }

  .stu-panel__info-cols {
    grid-template-columns: 1fr;
  }

  .abt-intro__inner {
    grid-template-columns: 1fr;
  }

  .abt-intro__image {
    grid-row: auto;
    grid-column: auto;
  }

  .abt-intro__placeholder {
    min-height: 300px;
  }

  .abt-intro__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  /* Beliefs go single-column on tablet+mobile so each card has room
     to breathe once the intro collapses to one column. */
  .abt-intro__beliefs-grid {
    grid-template-columns: 1fr;
  }

  .abt-beliefs__grid {
    grid-template-columns: 1fr;
  }

  .abt-beliefs__card {
    border-right: none;
    padding-left: 0;
  }

  .abt-beliefs__card:last-child {
    padding-left: 0;
  }

  .abt-beliefs__card:nth-child(2) {
    padding-left: 0;
  }

  .abt-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .abt-team__alpha--mobile .abt-team__alpha-btn {
    flex: 1;
    width: auto;
    padding: 12px 0;
    border-radius: 100px;
    text-align: center;
    border: 1px solid rgba(14,14,12,0.2);
  }

  .abt-team__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .abt-careers__inner {
    flex-direction: column;
  }

  .abt-careers__right {
    text-align: left;
  }

  .abt-roles__inner {
    grid-template-columns: 1fr;
  }

  .abt-roles__form-card {
    position: static;
  }

  /* Contact — 960px */

  .con-main__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .con-form {
    order: 1;
  }

  .con-channels {
    order: 2;
  }

  .con-studios__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .con-studios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .con-faq__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .con-faq__col {
    border-left: none;
    border-top: 1px solid rgba(241,237,228,0.15);
    padding: 28px 0;
  }

  .con-faq__col:first-child {
    border-top: none;
    padding-top: 0;
  }

  .prc-hero__inner {
    grid-template-columns: 1fr;
  }

  .prc-match__inner {
    grid-template-columns: 1fr;
  }

  .prc-match__right {
    flex-direction: column;
    width: 100%;
  }

  .prc-match__slider-wrap {
    width: 100%;
  }

  .prc-match__rec {
    min-width: 0;
    width: 100%;
  }

  .prc-tabs__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .prc-tabs__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .prc-memberships__cards {
    grid-template-columns: 1fr;
  }

  .prc-memberships__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Mobile: collapse the feature list behind a "What's included" toggle so
     each card stays compact. The button starts hidden on desktop (cards sit
     side-by-side with everything visible). The features re-appear when the
     card carries `.is-expanded` (toggled via inline JS at the foot of
     page-prices.php). */
  .prc-memberships__card {
    padding: 24px;
  }

  .prc-memberships__expand {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    border-color: rgba(14, 14, 12, 0.15);
    padding: 12px 0;
    margin: 16px 0 0;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    color: inherit;
    cursor: pointer;
  }

  .prc-memberships__card--ink .prc-memberships__expand {
    border-color: rgba(241, 237, 228, 0.2);
  }

  .prc-memberships__expand-icon {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.15s ease;
  }

  .prc-memberships__card.is-expanded .prc-memberships__expand-icon {
    transform: rotate(45deg);
  }

  .prc-memberships__features {
    display: none;
    margin-top: 16px;
  }

  .prc-memberships__card.is-expanded .prc-memberships__features {
    display: block;
  }

  .prc-memberships__cta {
    margin-top: 20px;
  }

  .prc-credits__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .prc-physio__top {
    grid-template-columns: 1fr;
  }

  .prc-physio__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .prc-physio__card:nth-child(2) {
    border-right: none;
  }

  .prc-promos__cards {
    grid-template-columns: 1fr;
  }

  .prc-gift__inner {
    grid-template-columns: 1fr;
  }

  .prc-compare__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .prc-faq__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats__inner {
    grid-template-columns: 1fr;
  }

  .stats__item {
    border-right: none;
    border-bottom: 1px solid rgba(14,14,12,0.2);
    padding: 24px 0;
  }

  .stats__item:first-child {
    padding-top: 0;
  }

  .stats__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .outcomes__grid {
    grid-template-columns: 1fr;
  }

  .outcomes__card {
    border-right: none;
  }

  .press__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wte-steps__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wte-method__grid {
    grid-template-columns: 1fr;
  }

  /* Reset the right-column padding from the desktop 2x2 grid — once the
     cards stack to a single column, that offset would visibly misalign
     every even card (Personalised, Measured) against the odd ones. */
  .wte-method__card:nth-child(2n) {
    padding-left: 0;
  }

  .abt-intro__stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Keep 2-col on phones (was 1-col here) — the team grid was 4000px
     tall as a single column. The 2-col compact grid matches the spec
     and cuts the section's mobile scroll roughly in half. */
  .abt-team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .abt-roles__form-row--half {
    grid-template-columns: 1fr;
  }

  /* Contact — 600px */

  .con-form {
    padding: 28px 20px;
  }

  .con-studios__grid {
    grid-template-columns: 1fr;
  }

  .con-studios {
    padding: 80px clamp(20px, 4vw, 60px);
  }

  .con-faq {
    padding: 80px clamp(20px, 4vw, 60px);
  }

  .prc-credits__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prc-physio__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .prc-physio__card {
    border-right: none;
  }

  /* Mobile: tighten the new editorial yellow cards. Without these overrides
     each card stacks at 460px+ tall with desktop-scale padding and the price
     pushed to the bottom — the user sees a wall of yellow per card. Drop
     min-height, shrink the price, and remove the big push-down spacer
     under the card name so the cards become compact rectangles. */
  .prc-credits__card,
  .prc-physio__card {
    min-height: 0;
    padding: 20px 22px;
  }

  .prc-credits__card-name {
    font-size: 22px;
    padding-bottom: 16px;
    margin: 0 0 16px;
  }

  .prc-credits__card-price {
    font-size: 56px;
    margin: 0 0 6px;
  }

  .prc-credits__card-rate { margin: 0 0 10px; }
  .prc-credits__card-desc { margin: 0 0 14px; }
  .prc-credits__rule     { margin: 0 0 12px; }

  .prc-physio__card-name {
    font-size: 22px;
    margin: 0 0 10px;
  }

  .prc-physio__card-desc {
    margin: 0 0 16px;
    padding-bottom: 0;
  }

  .prc-physio__card-price {
    font-size: 48px;
    margin: 0 0 14px;
  }

  .prc-physio__rule { margin: 0 0 12px; }

  /* Best Value badge sits closer to the corner on tighter cards */
  .prc-credits__best,
  .prc-physio__best {
    top: 14px;
    right: 14px;
  }

  .prc-compare__header,
  .prc-compare__row {
    grid-template-columns: 1.2fr repeat(4, 1fr);
    font-size: 12px;
  }

  .prc-compare__header .prc-compare__col {
    font-size: 14px;
  }

  .prc-compare__val {
    font-size: 12px;
  }

  /* Mobile footer keeps the three nav groups in 3 columns underneath the
     "Loosen up." headline + sub-line. Tighten the gap and shrink the link
     type so three Legal-style labels don't overflow at 320px-wide. */
  .site-footer__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .site-footer__col-title {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .site-footer__col ul li {
    margin-bottom: 8px;
  }

  .site-footer__col a {
    font-size: 13px;
    line-height: 1.4;
    display: inline-block;
  }

  .site-footer__bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── Mobile Homepage Redesign (≤720px only) ──────── */

@media (max-width: 720px) {

  /* Hero: swap landscape for portrait video on mobile */
  .hero__video-landscape {
    display: none;
  }

  .hero__video-portrait {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero__video-portrait iframe {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
  }

  /* 3. Hide editorial (01 The Practice) on mobile */
  .editorial {
    display: none;
  }

  /* 4. Hide outcomes (03 What Shows Up) on mobile */
  .outcomes {
    display: none;
  }

  /* 5. Method section: keep but simplify */
  .method {
    padding: 64px 20px;
  }

  .method__columns {
    grid-template-columns: 1fr;
  }

  .method__link {
    display: none;
  }

  /* 7. Studio section: hide placeholder images, keep text */
  .studio {
    padding: 64px 20px;
  }

  .studio__inner {
    grid-template-columns: 1fr;
  }

  .studio__right {
    display: none;
  }

  /* 8. Press strip: keep but compact */
  .press {
    padding: 32px 20px;
  }

  /* 9. Testimonials: show only one quote */
  .testimonials {
    padding: 64px 20px;
  }

  .testimonials__controls {
    display: none;
  }

  .testimonials__counter {
    display: none;
  }

  /* 11. CTA band: full width, stacked */
  .cta-band {
    padding: 64px 20px;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__buttons {
    flex-direction: column;
  }

  .cta-band__buttons .btn {
    width: 100%;
    text-align: center;
  }

  .cta-band__links {
    display: none;
  }

  /* WTE Intro — drop the top photo on phones; the intro section
     becomes just the lede paragraph. Desktop keeps the 4:3 image. */
  .wte-intro__image {
    display: none;
  }

  /* WTE Steps — mobile overlay treatment.
     Caption lifts off the below-image card and sits on the bottom of
     the photo with a two-stage scrim. Cuts the section height by ~40%
     on a phone. Desktop and tablet (≥721px) keep the existing
     image-above / text-below pairing. */
  .wte-steps__img-placeholder {
    aspect-ratio: 4 / 5 !important;
  }

  .wte-steps__card {
    display: none !important;
  }

  .wte-steps__scrim {
    display: block;
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, rgba(8,8,7,0.78) 0%, rgba(8,8,7,0.55) 30%, rgba(8,8,7,0.18) 55%, rgba(8,8,7,0) 75%),
      linear-gradient(to bottom, rgba(8,8,7,0.35) 0%, rgba(8,8,7,0) 35%);
    pointer-events: none;
  }

  .wte-steps__overlay {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 20px 22px;
    color: var(--bone);
  }

  .wte-steps__overlay-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .wte-steps__overlay-num {
    font-family: var(--serif);
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--bone);
  }

  .wte-steps__overlay-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.95;
  }

  .wte-steps__overlay-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--bone);
    margin: 0;
  }

  .wte-steps__overlay-body {
    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 4px 0 0;
    color: rgba(241,237,228,0.92);
    max-width: 38ch;
  }

  /* About / Team — alpha filter swap. Above 720px the full A-Z renders
     (desktop variant); ≤720px the A-H / I-Q / R-Z range buttons take
     over. The breakpoint used to be 960px which surfaced the mobile
     range filter on tablet-landscape and narrower laptop windows.
     Double-class selectors here mirror the default hide above — both
     have to beat the base `.abt-team__alpha { display: flex }` rule. */
  .abt-team__alpha.abt-team__alpha--desktop {
    display: none;
  }

  .abt-team__alpha.abt-team__alpha--mobile {
    display: flex;
    gap: 6px;
    width: 100%;
  }

  /* Studio filter pills — sticky horizontal scroller. Wrap-on-many-pills
     would push the grid down repeatedly as the user scrolled past; sticky
     single-row keeps the filter always reachable. Top offset clears the
     fixed header (72px) + ticker. */
  .abt-team__pills {
    position: sticky;
    top: 72px;
    z-index: 5;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background: var(--bone);
    padding: 12px 0;
    margin: 0 calc(-1 * clamp(20px, 4vw, 60px));
    padding-left: clamp(20px, 4vw, 60px);
    padding-right: clamp(20px, 4vw, 60px);
    border-bottom: 1px solid rgba(14,14,12,0.08);
    scroll-padding-inline: clamp(20px, 4vw, 60px);
  }
  .abt-team__pills::-webkit-scrollbar { display: none; }

  .abt-team__pill {
    flex-shrink: 0;
    padding: 8px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ── Mindbody-redirect pre-warning (booking payment step) ──── */
.pay__redirect-warning {
  margin: 16px 0;
  padding: 14px 16px;
  border: 2px solid var(--clay);
  background: var(--bone-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  border-radius: 4px;
}
.pay__redirect-warning strong { font-weight: 700; }

/* ── Mobile-required gate (booking details step) ──────────── */
.bk__det-mobile-required {
  margin: 16px 0;
  padding: 16px;
  border: 2px solid var(--clay);
  background: var(--bone-2);
  border-radius: 4px;
}
.bk__det-mobile-required-label {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.bk__det-mobile-required-label strong { font-weight: 700; }
.bk__det-mobile-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  background: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  border-radius: 4px;
  margin-bottom: 12px;
  box-sizing: border-box;
}
.bk__det-mobile-input:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}
.bk__det-mobile-err {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
}
.bk__det-mobile-save { width: 100%; }
