/* ==========================================================================
   MARC LÜLOH — style.css
   Shared stylesheet for all pages. Tokens → reset → type → layout →
   components → page-specific blocks → responsive.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:      #100D0A;
  --ink-soft: #1A1613;
  --bone:     #E9E2D6;
  --bone-dim: #ADA396;
  --ochre:    #A8502C;
  --ochre-dark: #8E4325;
  --olive:    #55583F;
  --sand:     #C4AE90;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;

  --gap-section-desktop: 160px;
  --gap-section-mobile: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: 300; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ochre); color: var(--bone); }

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1.display, .h1 { font-size: clamp(44px, 7vw, 92px); }
h2.display, .h2 { font-size: clamp(34px, 5vw, 56px); }
h3.display, .h3 { font-size: clamp(24px, 3vw, 32px); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--sand);
  display: block;
  margin-bottom: 20px;
}

.lede {
  font-weight: 300;
  font-size: 17px;
  color: var(--bone-dim);
  max-width: 46ch;
  line-height: 1.75;
}

p.body-text, .prose p {
  max-width: 62ch;
  text-align: left;
  color: var(--bone);
  font-weight: 300;
}

.prose p + p { margin-top: 1.4em; }

.text-dim { color: var(--bone-dim); }
.text-center { text-align: center; }
.text-sand { color: var(--sand); }
.text-ochre { color: var(--ochre); }

.pull-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.3;
  color: var(--bone);
  border-left: 1px solid var(--ochre);
  padding-left: 28px;
  margin: 48px 0;
}

section[data-light] .pull-quote { color: var(--ink); border-left-color: var(--ochre); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

.section {
  padding: var(--gap-section-mobile) 0;
}

@media (min-width: 900px) {
  .section { padding: var(--gap-section-desktop) 0; }
}

.section--tight { padding: 64px 0; }

section[data-light] {
  background: var(--bone);
  color: var(--ink);
}

section[data-light] .bone-dim,
section[data-light] .text-dim { color: #6B6255; }

section[data-light] .eyebrow { color: var(--ochre); }

/* Shared components default to dark-background colours; light sections
   need the readable counterpart so text never matches its background. */
section[data-light] .pillar__desc { color: #6B6255; }
section[data-light] .detail-list li { color: var(--ink); }
section[data-light] .bordered-block { border-color: rgba(85, 88, 63, 0.35); }
section[data-light] .bordered-block li { color: #6B6255; }
section[data-light] .card__desc { color: #6B6255; }
section[data-light] .lede { color: #6B6255; }

.section-head {
  margin-bottom: 64px;
  max-width: 640px;
}

.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-soft), transform 900ms var(--ease-soft);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  border-radius: 0;
  transition: background 400ms var(--ease-soft), letter-spacing 400ms var(--ease-soft), border-color 400ms var(--ease-soft), color 400ms var(--ease-soft);
}

.btn--primary {
  background: var(--ochre);
  color: var(--bone);
  border: 1px solid var(--ochre);
}
.btn--primary:hover { background: var(--ochre-dark); letter-spacing: 0.16em; }

.btn--secondary {
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(196, 174, 144, 0.4);
}
.btn--secondary:hover { border-color: var(--sand); letter-spacing: 0.16em; }

section[data-light] .btn--secondary {
  color: var(--olive);
  border-color: rgba(85, 88, 63, 0.4);
}
section[data-light] .btn--secondary:hover { border-color: var(--olive); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--sand);
  position: relative;
}
.link-arrow svg { transition: transform 400ms var(--ease-soft); width: 14px; height: 10px; }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- The Aperture ---------- */
.aperture {
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
  position: relative;
}
.aperture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft);
}
.aperture:hover img { transform: scale(1.03); }

.aperture-divider {
  width: 100%;
  max-width: 280px;
  height: 400px;
  margin: 0 auto;
  border: 1px solid var(--sand);
  opacity: 0.08;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  border-bottom: none;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 400ms var(--ease-soft), backdrop-filter 400ms var(--ease-soft);
}
.header.is-scrolled {
  background: rgba(16, 13, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
@media (min-width: 768px) { .header__inner { padding: 28px 48px; } }

.wordmark {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--bone);
}

.nav { display: none; align-items: center; gap: 36px; }
@media (min-width: 900px) { .nav { display: flex; } }

.nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--bone);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--sand);
  transition: width 400ms var(--ease-soft);
}
.nav__link:hover::after { width: 100%; }

.nav__apply {
  padding: 10px 22px;
  border: 1px solid var(--ochre);
  color: var(--ochre);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: background 400ms var(--ease-soft), color 400ms var(--ease-soft);
}
.nav__apply:hover { background: var(--ochre); color: var(--bone); }

/* Pages that open directly on a light section (no dark hero image behind
   the header) need dark wordmark/nav text until the header picks up its
   own solid dark background on scroll — otherwise bone-on-bone vanishes. */
body.header-on-light .header:not(.is-scrolled) .wordmark,
body.header-on-light .header:not(.is-scrolled) .nav__link { color: var(--ink); }
body.header-on-light .header:not(.is-scrolled) .nav__link::after { background: var(--olive); }
body.header-on-light .header:not(.is-scrolled) .menu-toggle span { background: var(--ink); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 210;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--bone);
  transition: transform 300ms var(--ease-soft), opacity 300ms var(--ease-soft);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 24px 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease-soft), visibility 400ms;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav__link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--bone);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-soft), transform 600ms var(--ease-soft);
}
.mobile-nav.is-open .mobile-nav__link { opacity: 1; transform: translateY(0); }
.mobile-nav__link:nth-child(1) { transition-delay: 60ms; }
.mobile-nav__link:nth-child(2) { transition-delay: 120ms; }
.mobile-nav__link:nth-child(3) { transition-delay: 180ms; }
.mobile-nav__link:nth-child(4) { transition-delay: 240ms; }
.mobile-nav__link:nth-child(5) { transition-delay: 300ms; }
.mobile-nav__link:nth-child(6) { transition-delay: 360ms; }
.mobile-nav__link:nth-child(7) { transition-delay: 420ms; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,13,10,0.25) 0%, rgba(16,13,10,0.85) 100%);
}
.hero__content { max-width: 720px; }
.hero__content.text-center { max-width: 780px; margin: 0 auto; text-align: center; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  width: 1px;
  height: 0;
  background: var(--sand);
  animation: growLine 1.4s var(--ease-soft) 600ms forwards;
}
@keyframes growLine { to { height: 60px; } }
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line { height: 60px; animation: none; }
}
.hero__scroll .eyebrow { margin: 0; }

/* ---------- Aperture overlay (darkening for hero-placed images) ---------- */
.aperture { position: relative; }
.aperture__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,13,10,0.15) 0%, rgba(16,13,10,0.78) 100%);
  pointer-events: none;
}

/* ---------- Generic page hero (aperture image + heading) ---------- */
.page-hero {
  padding-top: 160px;
  padding-bottom: 72px;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 64px; }
  .page-hero__grid.reverse .page-hero__media { order: 2; }
}
.page-hero__media .aperture { aspect-ratio: 3 / 4; }

/* ---------- Cards / grids ---------- */
.card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card__image {
  aspect-ratio: 4 / 5;
}
.card__title { font-size: 28px; }
.card__desc { color: var(--bone-dim); font-size: 15px; max-width: 34ch; }
.card__price { color: var(--sand); font-size: 13px; letter-spacing: 0.04em; }

.journeys-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .journeys-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }
  .journeys-grid > .card:nth-child(1),
  .journeys-grid > .card:nth-child(2) { grid-column: span 1; }
}
@media (min-width: 1100px) {
  .journeys-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .journeys-grid > .card:nth-child(1) { grid-column: span 3; }
  .journeys-grid > .card:nth-child(2) { grid-column: span 3; }
  .journeys-grid > .card:nth-child(3),
  .journeys-grid > .card:nth-child(4),
  .journeys-grid > .card:nth-child(5) { grid-column: span 2; }
}

/* ---------- Method / steps ---------- */
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .steps-row { grid-template-columns: repeat(5, 1fr); gap: 28px; }
}
.step__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 16px;
}
.step__title { font-size: 19px; font-weight: 400; margin-bottom: 10px; }
.step__desc { font-size: 14px; color: #6B6255; max-width: 30ch; }

/* ---------- Two-column layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
  .split--reverse { grid-template-columns: 1.1fr 0.9fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media .aperture { aspect-ratio: 3/4; }

/* ---------- Trainings strip ---------- */
.strip {
  background: var(--ink-soft);
  padding: 40px 0;
  overflow-x: auto;
}
.strip__row {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--bone);
  padding: 0 24px;
  justify-content: center;
  min-width: max-content;
  margin: 0 auto;
}
@media (min-width: 900px) { .strip__row { padding: 0 48px; } }
.strip__fine {
  text-align: center;
  color: var(--bone-dim);
  font-size: 12px;
  margin-top: 20px;
  padding: 0 24px;
}

/* ---------- Wide image band ---------- */
.band {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.band__bg { position: absolute; inset: 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 13, 10, 0.6);
}
.band--dark .band__bg::after { background: rgba(16, 13, 10, 0.75); }

/* ---------- Forms ---------- */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-row--inline { flex-direction: row; align-items: flex-start; }
}
.field { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
}
section[data-light] .field label { color: var(--ochre); }
.field--lg label { font-family: var(--font-display); font-size: 20px; text-transform: none; letter-spacing: 0; color: var(--ink); }
.field--checkbox label { text-transform: none; font-size: 13px; letter-spacing: normal; color: inherit; }

.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(196, 174, 144, 0.4);
  padding: 14px 4px;
  color: var(--bone);
  font-size: 15px;
  transition: border-color 300ms var(--ease-soft);
}
section[data-light] .field input,
section[data-light] .field select,
section[data-light] .field textarea {
  color: var(--ink);
  border-bottom-color: rgba(85, 88, 63, 0.35);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ochre); }
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4AE90' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; }

.field-error {
  color: var(--ochre);
  font-size: 12px;
  min-height: 16px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--bone-dim);
}
section[data-light] .checkbox-row { color: #6B6255; }
.checkbox-row input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--ochre); }
.checkbox-row a { text-decoration: underline; color: inherit; }

.form-note {
  font-size: 12px;
  color: var(--bone-dim);
  margin-top: 16px;
}
section[data-light] .form-note { color: #6B6255; }

.form-success {
  font-family: var(--font-display);
  font-size: 24px;
  padding: 32px 0;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  height: 56px;
  width: 56px;
  border-radius: 28px;
  background: var(--ochre);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: width 400ms var(--ease-soft);
  white-space: nowrap;
}
.whatsapp-btn:hover { width: 200px; }
.whatsapp-btn__icon {
  min-width: 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-btn__icon svg { width: 26px; height: 26px; fill: var(--bone); }
.whatsapp-btn__label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bone);
  opacity: 0;
  transition: opacity 300ms var(--ease-soft) 100ms;
  padding-right: 18px;
}
.whatsapp-btn:hover .whatsapp-btn__label { opacity: 1; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-soft);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}
.footer__wordmark {
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  font-size: 13px;
  margin-bottom: 14px;
}
.footer__tagline { color: var(--bone-dim); font-size: 14px; max-width: 30ch; }
.footer__heading {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sand);
  margin-bottom: 18px;
}
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__list a { font-size: 14px; color: var(--bone-dim); transition: color 300ms; }
.footer__list a:hover { color: var(--bone); }
.footer__rule {
  height: 1px;
  background: var(--olive);
  opacity: 0.3;
  margin-bottom: 24px;
}
.footer__bottom {
  font-size: 11px;
  color: var(--bone-dim);
}

/* ---------- Timeline (workation) ---------- */
.timeline { display: flex; flex-direction: column; }
.timeline__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(196, 174, 144, 0.15);
}
.timeline__row:last-child { border-bottom: 1px solid rgba(196, 174, 144, 0.15); }
.timeline__time {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--sand);
  font-size: 14px;
}
.timeline__label { font-size: 15px; color: var(--bone); font-weight: 300; }

/* ---------- Seven-day arc (breathwork) ---------- */
.arc-day {
  padding: 40px 0;
  border-top: 1px solid rgba(85, 88, 63, 0.25);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .arc-day { grid-template-columns: 100px 1fr; gap: 32px; }
}
.arc-day:last-child { border-bottom: 1px solid rgba(85, 88, 63, 0.25); }
.arc-day__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--ochre);
  line-height: 1;
}
.arc-day__title { font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.arc-day__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ochre);
  margin-bottom: 12px;
}
.arc-day__body { max-width: 62ch; color: #4a453c; font-size: 15px; }

/* ---------- Contraindications block ---------- */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .two-col-cards { grid-template-columns: 1fr 1fr; } }
.bordered-block {
  border: 1px solid rgba(196, 174, 144, 0.3);
  padding: 32px;
}
.bordered-block--warn { border-color: var(--ochre); }
.bordered-block h3 { margin-bottom: 16px; }
.bordered-block ul { display: flex; flex-direction: column; gap: 10px; }
.bordered-block li { font-size: 14px; color: var(--bone-dim); padding-left: 18px; position: relative; }
.bordered-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ochre);
}

/* ---------- Not-a-substitute note ---------- */
.note {
  border-left: 2px solid var(--olive);
  padding-left: 24px;
  color: var(--bone-dim);
  font-size: 14px;
  max-width: 60ch;
}

/* ---------- Container list (bespoke retreat details) ---------- */
.detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .detail-list { grid-template-columns: 1fr 1fr; gap: 14px 40px; } }
.detail-list li {
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  color: var(--bone);
}
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--ochre);
  border-radius: 50%;
}
section[data-light] .detail-list li::before { background: var(--ochre); }

/* ---------- Pricing block ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  border: 1px solid rgba(85, 88, 63, 0.3);
  padding: 40px 32px;
}
.price-card--featured { border-color: var(--ochre); }
.price-card__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ochre); margin-bottom: 12px; }
.price-card__price { font-family: var(--font-display); font-size: 34px; margin-bottom: 16px; }
.price-card__desc { font-size: 14px; color: #6B6255; }

/* ---------- Pillars grid (corporate) ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: 1fr 1fr; gap: 48px 40px; } }
.pillar__icon { width: 40px; height: 40px; margin-bottom: 20px; stroke: var(--ochre); }
.pillar__title { font-size: 19px; font-weight: 400; margin-bottom: 10px; }
.pillar__desc { font-size: 14px; color: var(--bone-dim); max-width: 40ch; }

/* ---------- Manifesto (about) ---------- */
.manifesto {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.manifesto p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  max-width: 20ch;
}

/* ---------- Definition list (trainings) ---------- */
.dl-trainings dt {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bone);
  margin-top: 24px;
}
.dl-trainings dd {
  color: var(--bone-dim);
  font-size: 14px;
  margin-left: 0;
}
.dl-trainings dt:first-child { margin-top: 0; }
section[data-light] .dl-trainings dt { color: var(--ink); }
section[data-light] .dl-trainings dd { color: #6B6255; }

/* ---------- Legal ---------- */
.legal-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(85, 88, 63, 0.25);
}
.legal-nav a { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ochre); }
.legal-block { margin-bottom: 64px; }
.legal-block h2 { margin-bottom: 20px; }
.legal-block h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-block p, .legal-block li { font-size: 14px; color: #4a453c; margin-bottom: 10px; max-width: 70ch; }
.legal-block li { padding-left: 16px; position: relative; }
.legal-block li::before { content: '—'; position: absolute; left: 0; color: var(--ochre); }
mark.ph { background: rgba(168, 80, 44, 0.15); color: var(--ochre-dark); padding: 1px 4px; font-style: normal; }

/* ---------- Apply page emphasis field ---------- */
.field--hero { margin: 40px 0; }

/* ---------- Threshold statements (index B) ---------- */
.threshold-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.threshold-list p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.4;
}

/* ---------- Utility spacing ---------- */
.mt-xs { margin-top: 12px; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 48px; }
.mt-lg { margin-top: 80px; }
.mb-sm { margin-bottom: 24px; }
.mb-md { margin-bottom: 48px; }

.stack { display: flex; flex-direction: column; }
.gap-sm { gap: 16px; }
.gap-md { gap: 32px; }

/* ---------- Image credit / caption ---------- */
figcaption {
  font-size: 12px;
  color: var(--bone-dim);
  margin-top: 10px;
}

/* ---------- Application intro block ---------- */
.apply-hero { padding-top: 180px; padding-bottom: 60px; }

/* ---------- Small screen guard ---------- */
@media (max-width: 374px) {
  .container { padding: 0 18px; }
}
