/* ============================================================================
   BURNOUT WORKSHOP — page-specific styles
   Mobile-first. Layered on top of colors_and_type.css + components.css.
   ============================================================================ */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--fg-default);
  background: var(--bg-default);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }

/* ---------- container ---------- */
.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .container { max-width: 760px; padding: 0 32px; }
}
@media (min-width: 1100px) {
  .container { max-width: 880px; }
}

/* ---------- vertical rhythm ---------- */
.section {
  padding: 72px 0;
  position: relative;
}
@media (min-width: 900px) {
  .section { padding: 112px 0; }
}
.section--tight { padding: 56px 0; }
.section--bone { background: var(--thc-bone); }
.section--sage { background: var(--thc-sage-20); }
.section--white { background: var(--thc-white); }
.section--teal { background: var(--thc-teal); color: var(--fg-inverse); }

.section--teal .eyebrow { color: rgba(250,245,231,0.6); }
.section--teal h1, .section--teal h2, .section--teal h3, .section--teal h4 { color: var(--thc-bone); }
.section--teal p { color: rgba(250,245,231,0.85); }

/* ---------- eyebrows ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--thc-teal-80);
  margin: 0 0 20px;
  display: block;
}
@media (min-width: 900px) {
  .eyebrow { font-size: 12px; letter-spacing: 0.3em; }
}

/* ---------- type scale (mobile-first) ---------- */
h1, h2, h3, h4, p { margin: 0; text-wrap: pretty; }

.h-display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--fg-default);
}
@media (min-width: 600px) { .h-display { font-size: 52px; } }
@media (min-width: 900px) { .h-display { font-size: 72px; line-height: 1.02; } }

.h-section {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--fg-default);
}
@media (min-width: 900px) { .h-section { font-size: 44px; } }

.h-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--fg-default);
}
@media (min-width: 900px) { .h-sub { font-size: 28px; } }

.lede {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--thc-teal-80);
}
@media (min-width: 900px) { .lede { font-size: 19px; } }

.body-copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-default);
}
.body-copy--muted { color: var(--thc-teal-80); }
.body-copy + .body-copy { margin-top: 16px; }

.small {
  font-size: 13px;
  line-height: 1.55;
  color: var(--thc-teal-60);
  letter-spacing: 0.01em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-standard) var(--ease-calm),
              color var(--dur-standard) var(--ease-calm),
              border-color var(--dur-standard) var(--ease-calm);
}
.btn--primary { background: var(--thc-teal); color: var(--thc-bone); }
.btn--primary:hover { background: #163030; }
.btn--primary:active { background: #0c1c1c; }
.btn--inverse { background: var(--thc-bone); color: var(--thc-teal); }
.btn--inverse:hover { background: #fffcf3; }
.btn--ghost {
  background: transparent;
  color: var(--thc-teal);
  border: 1px solid rgba(30,63,63,0.4);
}
.btn--ghost:hover { background: rgba(30,63,63,0.04); border-color: var(--thc-teal); }
.btn--full { width: 100%; }
.btn .arrow { font-style: italic; font-family: var(--font-display); font-size: 18px; letter-spacing: 0; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 245, 231, 0.92);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid rgba(30,63,63,0.08);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px; margin: 0 auto;
}
.site-header__logo img { height: 28px; width: auto; }
.site-header__link {
  display: none;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--thc-magenta);
  text-decoration: none;
  font-weight: 500;
}
.site-header__link:hover { color: #d4148c; }
@media (min-width: 700px) {
  .site-header__inner { padding: 18px 32px; }
  .site-header__logo img { height: 32px; }
  .site-header__link { display: inline-flex; align-items: center; gap: 8px; }
}

/* ============================================================
   HERO  —  image at top, title overlaid above her head,
   content box overlapping the LOWER section of the image.
   ============================================================ */
.hero {
  background: var(--thc-bone);
  position: relative;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  background: var(--thc-sage-20);
  line-height: 0;
  overflow: visible;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  /* natural aspect — show her in full */
}

/* hero swap mechanism */
body.hero-bold .hero-image--credibility { display: none; }
body.hero-credibility .hero-image--bold { display: none; }

/* === Title — positioned over the upper portion of the image === */
.hero__heading {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  max-width: 13ch;
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--thc-teal);
  text-wrap: balance;
}
.hero__title .accent { color: var(--thc-magenta); }
.hero__subtitle {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--thc-teal-80);
}

/* === Content box — semi-transparent bone panel, overlaps lower edge of image === */
.hero__content {
  background: rgba(250, 245, 231, 0.86);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  position: relative;
  z-index: 2;
  margin: -56px 16px 0;
  padding: 32px 24px 40px;
  max-width: 640px;
  box-shadow: 0 -8px 32px rgba(30, 63, 63, 0.06);
}

/* Reset eyebrow spacing now that it leads the content box */
.hero__content .hero__date { margin-bottom: 20px; }

@media (min-width: 600px) {
  .hero__heading {
    top: 40px;
    left: 40px;
    right: 40px;
    max-width: 15ch;
  }
  .hero__title {
    font-size: 56px;
  }
  .hero__subtitle {
    font-size: 24px;
    margin-top: 12px;
  }
  .hero__content {
    margin: -88px 32px 0;
    padding: 44px 40px 52px;
  }
}

@media (min-width: 900px) {
  .hero {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
    position: relative;
    padding: 80px 64px 96px;
    min-height: auto;
    background-color: var(--thc-bone);
    background-image: url('https://res.cloudinary.com/thehollandclinic/image/upload/q_auto,f_auto,w_1800/v1777340040/Illustration1_tfghjw.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-image-wrapper {
    order: 2;
    flex: 0 0 auto;
    width: 50%;
    max-width: 640px;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .hero__heading {
    position: absolute;
    top: 36px;
    left: 28px;
    right: 28px;
    width: auto;
    max-width: none;
    z-index: 3;
  }
  .hero__title {
    font-size: 56px;
    line-height: 1.0;
    letter-spacing: -0.018em;
  }
  .hero__subtitle {
    font-size: 26px;
    margin-top: 14px;
  }
  .hero__content {
    order: 1;
    flex: 1 1 600px;
    max-width: 620px;
    align-self: stretch;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(250, 245, 231, 0.86);
    backdrop-filter: saturate(1.1) blur(10px);
    -webkit-backdrop-filter: saturate(1.1) blur(10px);
    padding: 56px 56px 56px;
    z-index: 4;
    box-shadow: 0 16px 48px rgba(30, 63, 63, 0.1), 0 32px 80px rgba(30, 63, 63, 0.08);
  }
}

@media (min-width: 1200px) {
  .hero {
    gap: 56px;
    padding: 96px 96px 112px;
  }
  .hero-image-wrapper {
    width: 50%;
    max-width: 720px;
    margin: 0;
  }
  .hero__heading {
    top: 44px;
    left: 36px;
    right: 36px;
  }
  .hero__title {
    font-size: 68px;
  }
  .hero__subtitle {
    font-size: 29px;
  }
  .hero__content {
    max-width: 680px;
    padding: 72px 64px 72px;
  }
}
.hero__date {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--thc-teal-80);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero__date .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--thc-teal-40);
  display: inline-block;
}

.hero__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: var(--thc-teal);
  margin: 4px 0 28px;
  max-width: 34ch;
  text-wrap: pretty;
}
@media (min-width: 900px) {
  .hero__lead { font-size: 22px; margin: 6px 0 34px; max-width: 28ch; }
}

.hero__subhead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--thc-teal);
  margin-bottom: 20px;
  max-width: 36ch;
}
@media (min-width: 900px) { .hero__subhead { font-size: 20px; max-width: 42ch; } }

.hero__value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: var(--thc-teal-80);
  margin-bottom: 32px;
  max-width: 36ch;
}
@media (min-width: 900px) { .hero__value { font-size: 22px; max-width: 40ch; } }

.hero__cta-row { margin-bottom: 16px; }
.hero__member {
  font-size: 13px;
  line-height: 1.5;
  color: var(--thc-teal-60);
  max-width: 38ch;
}
.hero__member em {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--thc-teal-80);
}

/* === Desktop: larger, more present content inside the full-height card === */
@media (min-width: 900px) {
  .hero__content .hero__date {
    font-size: 12px;
    letter-spacing: 0.24em;
    margin-bottom: 30px;
  }
  .hero__subhead {
    font-size: 24px;
    line-height: 1.5;
    max-width: 30ch;
    margin-bottom: 24px;
  }
  .hero__value {
    font-size: 27px;
    line-height: 1.38;
    max-width: 26ch;
    margin-bottom: 40px;
  }
  .hero__cta-row { margin-bottom: 22px; }
  .hero .btn--primary {
    font-size: 14px;
    letter-spacing: 0.2em;
    padding: 20px 40px;
    min-height: 62px;
  }
  .hero .btn .arrow { font-size: 20px; }
  .hero__member { font-size: 14.5px; max-width: 40ch; }
  .hero__member em { font-size: 17px; }
}

@media (min-width: 1200px) {
  .hero__content .hero__date { margin-bottom: 36px; }
  .hero__subhead { font-size: 26px; margin-bottom: 26px; }
  .hero__value { font-size: 30px; margin-bottom: 44px; }
}

/* ============================================================
   RECOGNITION — tappable statements
   ============================================================ */
.recognition__intro {
  text-align: left;
  margin-bottom: 40px;
}
.recognition__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border-soft);
}
.rec-item {
  border-bottom: 1px solid var(--border-soft);
}
.rec-item__btn {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--thc-teal);
  transition: color var(--dur-quick) var(--ease-calm);
}
@media (min-width: 900px) {
  .rec-item__btn { font-size: 26px; padding: 26px 0; }
}
.rec-item__btn:hover { color: var(--thc-teal-80); }
.rec-item__chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--thc-teal-60);
  transition: transform var(--dur-standard) var(--ease-calm);
}
.rec-item[aria-expanded="true"] .rec-item__chevron { transform: rotate(180deg); }
.rec-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-calm);
}
.rec-item__body-inner {
  padding: 0 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--thc-teal-80);
  max-width: 56ch;
}
.rec-item[aria-expanded="true"] .rec-item__body {
  max-height: 400px;
}

/* ============================================================
   THE REFRAME — the typographic moment
   ============================================================ */
.reframe {
  padding: 88px 0;
  text-align: left;
  position: relative;
}
@media (min-width: 900px) { .reframe { padding: 140px 0; } }
.reframe__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--thc-teal);
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--thc-magenta);
}
@media (min-width: 600px) { .reframe__quote { font-size: 40px; padding-left: 24px; } }
@media (min-width: 900px) { .reframe__quote { font-size: 56px; line-height: 1.08; padding-left: 32px; } }
.reframe__quote p { margin: 0 0 4px; }
.reframe__attr {
  margin-top: 32px;
  padding-left: 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--thc-teal-80);
}
.reframe__attr em {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.02em;
  font-size: 13px;
  text-transform: none;
  color: var(--thc-teal);
}
@media (min-width: 900px) { .reframe__attr { padding-left: 34px; } }

/* ============================================================
   COMPARISON TABLES — always two columns
   ============================================================ */
.compare {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--thc-teal-40);
  border-bottom: 1px solid var(--thc-teal-40);
  margin: 0;
}
.compare__head {
  display: contents;
}
.compare__head > div {
  padding: 14px 10px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--thc-teal-80);
  border-bottom: 1px solid var(--thc-teal-40);
}
.compare__head > div:first-child {
  background: var(--thc-sage-40);
  color: var(--thc-teal-80);
}
.compare__head > div:last-child {
  background: var(--thc-white);
  color: var(--thc-teal);
}
.compare__row { display: contents; }
.compare__cell {
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  word-wrap: break-word;
}
.compare__cell--muted {
  background: var(--thc-sage-40);
  color: rgba(30,63,63,0.62);
}
.compare__cell--strong {
  background: var(--thc-white);
  color: var(--thc-teal);
  font-weight: 500;
}
.compare__row:not(:last-child) .compare__cell {
  border-bottom: 1px solid rgba(30,63,63,0.1);
}
.compare__cell .anchor {
  display: block;
  font-weight: 600;
  color: var(--thc-teal);
  margin-bottom: 2px;
  font-size: 13.5px;
}
.compare__cell--muted .anchor { color: var(--thc-teal-80); }

@media (min-width: 700px) {
  .compare__cell { padding: 18px 16px; font-size: 15.5px; }
  .compare__head > div { padding: 16px 16px; font-size: 11.5px; }
  .compare__cell .anchor { font-size: 14.5px; }
}

/* ============================================================
   MEET YOUR GUIDE
   ============================================================ */
.guide__layout { display: grid; gap: 32px; }
.guide__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.guide__name { margin-top: 4px; margin-bottom: 16px; }
.guide__credentials {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--thc-teal);
  margin-bottom: 28px;
}
@media (min-width: 900px) { .guide__credentials { font-size: 26px; } }
.guide__credentials span { display: block; }
.guide__credentials span + span { margin-top: 2px; }
.guide__book-row {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-hairline);
}
.guide__expand {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 0; padding: 14px 0 0;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--thc-teal);
  cursor: pointer;
}
.guide__expand .arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  transition: transform var(--dur-standard) var(--ease-calm);
}
.guide__expand[aria-expanded="true"] .arrow { transform: rotate(90deg); }
.guide__extended {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-calm);
}
.guide__extended.is-open { max-height: 600px; }
.guide__extended p {
  padding-top: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--thc-teal-80);
}
@media (min-width: 900px) {
  .guide__layout { grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
  .guide__photo-col { order: 2; }
}

/* ============================================================
   WHAT YOU'LL LEARN — carousel + accordion
   ============================================================ */
.learn__head { margin-bottom: 40px; }
.learn__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--thc-teal-80);
  margin-top: 16px;
  max-width: 30ch;
}
@media (min-width: 900px) { .learn__intro { font-size: 22px; } }

.carousel {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}
.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.layer-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--thc-white);
  border: 1px solid var(--border-hairline);
  border-radius: 2px;
  padding: 28px 24px 24px;
  min-height: 280px;
  display: flex; flex-direction: column;
  cursor: pointer;
}
@media (min-width: 700px) { .layer-card { flex-basis: 44%; } }
@media (min-width: 1100px) { .layer-card { flex-basis: 23%; } }
.layer-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--thc-magenta);
  line-height: 1;
  margin-bottom: 24px;
}
.layer-card:nth-child(n+2) .layer-card__num { color: var(--thc-teal-60); }
.layer-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--thc-teal);
  margin-bottom: 14px;
}
.layer-card__summary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  color: var(--thc-teal);
  margin-bottom: 16px;
}
.layer-card__expanded {
  display: none;
  font-size: 14px;
  line-height: 1.6;
  color: var(--thc-teal-80);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-hairline);
}
.layer-card.is-open .layer-card__expanded { display: block; }
.layer-card__toggle {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--thc-teal-80);
  font-weight: 500;
}

.carousel__dots {
  display: flex; gap: 8px;
  margin-top: 20px;
  justify-content: center;
}
.carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--thc-teal-40);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background var(--dur-standard) var(--ease-calm);
}
.carousel__dot.is-active { background: var(--thc-teal); }

.lenses {
  margin-top: 48px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.lenses__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--thc-teal);
  text-align: left;
}
.lenses__toggle .arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-left: 16px;
  transition: transform var(--dur-standard) var(--ease-calm);
  color: var(--thc-teal-60);
}
.lenses[aria-expanded="true"] .lenses__toggle .arrow { transform: rotate(90deg); }
.lenses__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-calm);
}
.lenses[aria-expanded="true"] .lenses__body { max-height: 900px; }
.lenses__list { list-style: none; margin: 0; padding: 0 0 28px; }
.lenses__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px dashed var(--border-soft);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--thc-teal-80);
}
.lenses__item:first-child { border-top: 0; }
.lenses__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--thc-teal);
  padding-top: 2px;
}

/* ============================================================
   THE FORMAT — vertical timeline (teal section)
   ============================================================ */
.format__head h2 { color: var(--thc-bone); }
.format__head { margin-bottom: 48px; }
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 14px; bottom: 14px;
  width: 1px;
  background: rgba(250,245,231,0.25);
}
.timeline__step {
  position: relative;
  padding-bottom: 36px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step::before {
  content: '';
  position: absolute;
  left: -32px; top: 8px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--thc-bone);
  border: 2px solid var(--thc-teal);
  box-shadow: 0 0 0 3px var(--thc-teal);
}
.timeline__step:last-child::before {
  background: var(--thc-magenta);
  border-color: var(--thc-magenta);
  box-shadow: 0 0 0 3px var(--thc-teal);
}
.timeline__when {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--thc-magenta-40);
  margin-bottom: 8px;
}
.timeline__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.2;
  color: var(--thc-bone);
  margin-bottom: 6px;
}
@media (min-width: 900px) { .timeline__title { font-size: 30px; } }
.timeline__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250,245,231,0.78);
  max-width: 44ch;
}

/* ============================================================
   WHAT'S INCLUDED — ticks + expand
   ============================================================ */
.included__list { list-style: none; padding: 0; margin: 0; }
.included__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--thc-teal);
}
.included__item:last-child { border-bottom: 0; }
.included__tick {
  width: 18px; height: 18px;
  color: var(--thc-teal);
  margin-top: 3px;
}
.included__more {
  margin-top: 20px;
  background: transparent; border: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--thc-teal);
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 1px solid var(--thc-teal);
}
.included__extra {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-calm);
}
.included__extra.is-open { max-height: 600px; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof__hero {
  position: relative;
  padding: 16px 0 8px;
}
.proof__quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--thc-magenta);
  display: block;
  margin-bottom: 12px;
}
@media (min-width: 900px) { .proof__quote-mark { font-size: 120px; } }
.proof__hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--thc-teal);
  margin: 0 0 24px;
}
@media (min-width: 600px) { .proof__hero-quote { font-size: 80px; } }
@media (min-width: 900px) { .proof__hero-quote { font-size: 112px; } }
.proof__attr {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--thc-teal-80);
}
.proof__attr .src {
  color: var(--thc-teal-60);
  letter-spacing: 0.22em;
}
.proof__divider {
  border: 0;
  border-top: 1px solid var(--border-hairline);
  margin: 48px 0;
}
.proof__second {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
  color: var(--thc-teal);
  margin-bottom: 20px;
  max-width: 36ch;
}
@media (min-width: 900px) { .proof__second { font-size: 30px; } }

.proof__more-btn {
  margin-top: 36px;
  background: transparent; border: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--thc-teal);
  cursor: pointer;
  display: inline-flex; gap: 10px; align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--thc-teal);
}
.proof__carousel {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-calm);
}
.proof__carousel.is-open { max-height: 1200px; }
.proof__carousel-inner {
  display: grid; gap: 24px;
  margin-top: 36px;
}
.proof__card {
  border-top: 1px solid var(--border-hairline);
  padding-top: 24px;
}
.proof__card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--thc-teal);
  margin-bottom: 14px;
}
@media (min-width: 900px) {
  .proof__carousel-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   INVESTMENT + CHECKOUT
   ============================================================ */
.investment {
  text-align: left;
}
.investment__price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  color: var(--thc-teal);
  margin: 24px 0 24px;
}
@media (min-width: 900px) { .investment__price { font-size: 104px; } }
.investment__price-currency {
  font-size: 0.4em;
  vertical-align: top;
  color: var(--thc-teal-60);
  margin-right: 6px;
  font-style: normal;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}
.investment__member {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--border-medium);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--thc-teal-80);
  max-width: 48ch;
}
.investment__member em {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--thc-teal);
}

.checkout {
  background: var(--thc-white);
}
.checkout__above {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--thc-teal-80);
  margin-bottom: 28px;
  max-width: 52ch;
}
.checkout__embed {
  background: var(--thc-sage-20);
  border: 1px dashed var(--border-medium);
  padding: 56px 24px;
  text-align: center;
  margin: 28px 0;
}
.checkout__embed .placeholder-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--thc-teal-60);
  margin-bottom: 12px;
}
.checkout__embed .placeholder-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--thc-teal);
  margin-bottom: 16px;
}
.checkout__embed .placeholder-cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--thc-teal);
  color: var(--thc-bone);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
}
.checkout__below {
  font-size: 13px;
  color: var(--thc-teal-60);
  line-height: 1.55;
  max-width: 52ch;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { border-top: 1px solid var(--border-soft); }
.faq__item { border-bottom: 1px solid var(--border-soft); }
.faq__q {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  width: 100%;
  text-align: left;
  background: transparent; border: 0;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--thc-teal);
}
@media (min-width: 900px) { .faq__q { font-size: 24px; } }
.faq__icon {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-top: 2px;
  color: var(--thc-teal-60);
  transition: transform var(--dur-standard) var(--ease-calm);
}
.faq__item[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-calm);
}
.faq__a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--thc-teal-80);
  max-width: 56ch;
}
.faq__item[aria-expanded="true"] .faq__a { max-height: 400px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: left;
  padding: 96px 0 120px;
}
@media (min-width: 900px) { .final-cta { padding: 140px 0 160px; } }
.final-cta__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: var(--thc-bone);
  margin-bottom: 24px;
  max-width: 22ch;
}
@media (min-width: 900px) { .final-cta__title { font-size: 56px; } }
.final-cta__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(250,245,231,0.75);
  margin-bottom: 40px;
  max-width: 40ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #122d2d;
  color: rgba(250,245,231,0.6);
  padding: 48px 0 32px;
  font-size: 13px;
  line-height: 1.6;
}
.site-footer__inner {
  display: grid;
  gap: 28px;
}
.site-footer__brand img { height: 28px; opacity: 0.85; }
.site-footer__brand p {
  margin-top: 16px;
  max-width: 32ch;
  color: rgba(250,245,231,0.55);
  font-size: 13px;
}
.site-footer__links {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
}
.site-footer__links a {
  color: rgba(250,245,231,0.75);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer__legal {
  border-top: 1px solid rgba(250,245,231,0.1);
  padding-top: 24px;
  font-size: 11.5px;
  color: rgba(250,245,231,0.4);
  letter-spacing: 0.05em;
}
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: end; }
  .site-footer__legal { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: var(--thc-teal);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease-calm);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--thc-bone);
  line-height: 1.3;
  font-weight: 500;
  flex: 1;
}
.sticky-cta__price {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--thc-bone);
  margin-top: 2px;
}
.sticky-cta__btn {
  background: var(--thc-magenta);
  color: #fff;
  padding: 12px 18px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ============================================================
   UTILITY
   ============================================================ */
.text-balance { text-wrap: balance; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 32px; }
.divider-orn {
  display: flex; align-items: center; gap: 16px;
  margin: 48px 0;
  color: var(--thc-teal-60);
}
.divider-orn::before, .divider-orn::after {
  content: ''; flex: 1; height: 1px; background: var(--border-hairline);
}
.divider-orn span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--thc-teal-60);
}
