/* ═══════════════════════════════════════════════════════════════
   ANNA LASH & BEAUTY ATELIER — „Die Rille"
   porcelain ground · rosé fluting · brass hairline
   ═══════════════════════════════════════════════════════════════ */

:root {
  --porcelain: #FBF9F6;
  --blush: #FBEBEF;  /* secondary band — light pink, hue-aligned to --rose (345°) */
  --oak: #D8C3A4;
  --ink: #16130F;
  --body: #3B362E;
  --muted: #6B6255;
  --brass: #A98B5C;      /* kept: the rule inside her own logo measures #B2924A */
  --brass-deep: #8A6F42;
  /* rosé line system (2026-08-22) — the brass hairlines read as leftovers on a pink
     page. --rose-line matches the old brass's relative luminance (.269 vs .277), so
     every rule keeps its exact visual weight and only the hue moves. */
  --rose-line: #C5778B;
  --rose-soft: #F6CFD9;
  /* rosé — sampled from Annas eigenem Pflegehinweis-Flyer and the velvet
     channel-tufted chairs in her waiting corner. Porcelain on --rose = 6.9:1,
     on --rose-band = 9.2:1, both well past WCAG AA. */
  --rose: #C4365F;
  --rose-deep: #A32747;
  --rose-band: #7C2340;
  --hairline: rgba(92, 32, 52, .13);
  --hairline-strong: rgba(92, 32, 52, .30);
  --display: "Libre Caslon Display", "Times New Roman", serif;
  --display-em: "Libre Caslon Text", "Times New Roman", serif;
  --sans: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);   /* hover & UI feedback: quick settle */
  --ease-rise: cubic-bezier(.33, .06, .2, 1); /* entrances: unhurried, still moving at 500ms */
  --dur-1: .5s;
  --dur-2: .9s;
  --dur-3: 1.05s;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, blockquote, address, figure, dl, p, ul, table { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; padding: 0; }

.shell {
  width: min(1180px, 100% - clamp(40px, 8vw, 96px));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--rose); color: var(--porcelain);
  padding: 10px 18px; border-radius: 999px; font-size: 14px;
  text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; }

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

.nb { white-space: nowrap; }

::selection { background: var(--rose-soft); color: var(--ink); }

/* ── die Rille — the fluted furniture texture ─────────────────── */
.fluted {
  background-color: var(--rose-band);
  /* rib and groove sit ±0.013 luminance around the base — the same absolute
     step the ink version used. Rosé is a far lighter ground, so matching the
     old hex *ratios* would have turned a sheen into candy stripes. */
  background-image: repeating-linear-gradient(90deg,
    #7C2340 0px, #7C2340 12px,
    #892A49 12px, #892A49 13.5px,
    #701E39 13.5px, #701E39 16px);
}

/* ── type roles ───────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(92, 32, 52, .72);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose-line);
  flex: none;
}
.eyebrow-light { color: rgba(251, 249, 246, .68); } /* .68 keeps AA on --rose-band */

h1, h2 { font-family: var(--display); font-weight: 400; color: var(--ink); }
h1 em, h2 em, .pull em, .student-quote em, .about-quote em {
  font-family: var(--display-em);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}

h2 {
  font-size: clamp(33px, 4.4vw, 54px);
  line-height: 1.1;
  letter-spacing: .002em;
}

.section-sub {
  max-width: 54ch;
  margin-top: 18px;
  font-size: 16.5px;
  color: var(--muted);
}

.star { color: var(--rose); }

/* ── buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform var(--dur-1) var(--ease-soft), background-color .3s,
              border-color .3s, color .3s, box-shadow var(--dur-1) var(--ease-soft);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .12s; }
.btn-ink { background: var(--rose); color: var(--porcelain); }
.btn-ink:hover { background: var(--rose-deep); box-shadow: 0 16px 26px -18px rgba(124, 35, 64, .85); }
.btn-ghost { border-color: var(--hairline-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); }
.btn-porcelain { background: var(--porcelain); color: var(--ink); }
.btn-porcelain:hover { background: #fff; box-shadow: 0 16px 26px -18px rgba(0, 0, 0, .55); }
.btn-sm { padding: 9px 20px; font-size: 13.5px; }

/* ── header ───────────────────────────────────────────────────── */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 246, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-head.is-scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 12px 30px -24px rgba(22, 19, 15, .35);
}
.head-row {
  display: flex; align-items: center; gap: 32px;
  height: 74px;
}
/* the logo is a stacked lockup (script name over a brass rule over the
   subtitle) — far too tall for a 74px bar, so the header rotates that same
   relationship onto its side: script mark, brass hairline, subtitle. */
.brand {
  flex: none;
  display: flex; align-items: center; gap: 13px;
  text-decoration: none;
}
.brand img { width: auto; height: 30px; }
.brand-sub {
  padding-left: 13px;
  border-left: 1px solid var(--brass);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.main-nav {
  display: flex; gap: 30px;
  margin-left: auto;
}
.main-nav a {
  position: relative;
  font-size: 14.5px; font-weight: 500;
  text-decoration: none;
  color: var(--body);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .3s;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--rose-line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-1) var(--ease-soft);
}
.main-nav a:hover { color: var(--rose-deep); }
.main-nav a:hover::after { transform: scaleX(1); }

.head-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 6px;
  width: 40px; height: 40px; padding: 8px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease-soft), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ── hero ─────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  padding-top: clamp(48px, 8vh, 104px);
  padding-bottom: clamp(64px, 9vw, 116px);
  position: relative; z-index: 1;
}

.hero h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -.005em;
  max-width: 15ch;
  text-wrap: balance;
}

.hero-sub {
  max-width: 46ch;
  margin-top: 26px;
  font-size: 17px;
  color: var(--muted);
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  margin-top: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, .62);
}

.hero-figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(92, 32, 52, .10);
  box-shadow: 0 40px 70px -34px rgba(92, 32, 52, .45);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}


/* ── values band ──────────────────────────────────────────────── */
.values { background: var(--blush); }
.values .shell { padding-block: clamp(72px, 10vw, 120px); }

.pull { text-align: center; }
.pull p {
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.18;
  color: var(--ink);
  max-width: 19ch;
  margin-inline: auto;
}
.pull cite {
  display: block;
  margin-top: 20px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(56px, 7vw, 88px);
}
.value h3 {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--rose-deep);
  padding-top: 16px;
  border-top: 1px solid var(--rose-line);
}
.value p { margin-top: 12px; font-size: 15.5px; color: var(--body); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(56px, 7vw, 84px);
  padding-top: 40px;
  border-top: 1px solid rgba(22, 19, 15, .14);
}
.stats dt {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ink);
}
.stats dt span { font-size: .55em; color: var(--muted); }
.stats dd {
  margin: 6px 0 0;
  font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}

/* ── prices ───────────────────────────────────────────────────── */
.prices .shell { padding-block: clamp(80px, 11vw, 140px); }

.tabs {
  display: flex; gap: 6px;
  margin-top: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--hairline);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs [role="tab"] {
  flex: none;
  padding: 12px 18px 14px;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(22, 19, 15, .62);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.tabs [role="tab"]:hover { color: var(--ink); }
.tabs [role="tab"][aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--rose-line);
}

.panel { padding-top: clamp(32px, 4vw, 48px); }
.panel[hidden] { display: none; }

/* die Preismatrix */
.matrix-wrap { overflow-x: auto; }
.matrix {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.matrix thead th {
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(22, 19, 15, .62);
  text-align: right;
  white-space: nowrap;
  padding: 0 18px 14px;
  border-bottom: 1px solid var(--hairline-strong);
}
.matrix thead th:first-child { text-align: left; padding-left: 0; }
.matrix thead th:last-child { padding-right: 0; }
.matrix tbody th {
  font-size: 15.5px; font-weight: 500;
  color: var(--ink);
  text-align: left;
  padding: 15px 18px 15px 0;
  white-space: nowrap;
}
.matrix tbody td {
  font-size: 15.5px;
  text-align: right;
  padding: 15px 18px;
  color: var(--body);
  white-space: nowrap;
}
.matrix tbody td:last-child { padding-right: 0; }
.matrix tbody td:nth-child(2) { color: var(--ink); font-weight: 500; }
.matrix tbody th, .matrix tbody td { border-bottom: 1px solid var(--hairline); }
.matrix tbody tr:hover td { background: rgba(197, 119, 139, .12); }
.matrix tbody tr:hover th { background: #F7DCE3; }
.matrix .col-hi { background: rgba(197, 119, 139, .08); }
.matrix thead th:first-child,
.matrix tbody th {
  position: sticky; left: 0;
  background: var(--porcelain);
}

.matrix-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ledger lists */
.ledger { max-width: 720px; }
.panel > .ledger:not(:first-child),
.matrix-note + .ledger { margin-top: 34px; }
.matrix-note + .ledger {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 56px);
}
.ledger li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15.5px;
}
.ledger li > span:first-child { color: var(--ink); font-weight: 500; }
.ledger li small {
  font-size: 13px; font-weight: 400;
  color: var(--muted);
  margin-left: 8px;
}
.ledger .dur {
  margin-left: auto;
  font-size: 13.5px;
  color: var(--muted);
  white-space: nowrap;
}
.ledger li > span:first-child:has(+ .price) { margin-right: auto; }
.ledger .price {
  min-width: 58px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ledger .dur + .price { margin-left: 0; }
.ledger li:has(.dur) > span:first-child { margin-right: auto; }

.ledger-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 6vw, 80px);
  max-width: 900px;
}
.ledger-cols .ledger { max-width: none; }

.price-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  justify-content: space-between;
  margin-top: clamp(44px, 6vw, 64px);
  padding-top: 32px;
  border-top: 1px solid var(--hairline-strong);
}
.price-foot p { font-size: 14px; color: var(--muted); }

/* ── services — no price column until Anna confirms her Preisliste ── */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3.6vw, 48px);
  margin-top: clamp(44px, 6vw, 68px);
}
.service {
  padding-top: 24px;
  border-top: 1px solid rgba(197, 119, 139, .55);
}
.service h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 2.3vw, 27px);
  color: var(--ink);
  line-height: 1.2;
}
.service p { margin-top: 14px; font-size: 15.5px; color: var(--body); }

/* ── Pflegehinweise — retyped from her own flyer; lives under the
   services because it is the same chapter: what I do, and how you keep it ── */
.care {
  margin-top: clamp(52px, 6.5vw, 78px);
  padding-top: clamp(34px, 4vw, 46px);
  border-top: 1px solid var(--hairline-strong);
}
.care h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 2.3vw, 27px);
  color: var(--ink);
  line-height: 1.2;
}
.care ul {
  margin-top: clamp(26px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px) clamp(28px, 4vw, 56px);
}
.care h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose-deep);
}
.care li p { margin-top: 9px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.care-note { margin-top: clamp(26px, 3vw, 34px); font-size: 12.5px; color: var(--muted); }

/* ── results strip ────────────────────────────────────────────── */
.results { background: var(--blush); }
.results > .shell { padding-top: clamp(80px, 11vw, 140px); }

.strip-wrap { padding-block: clamp(40px, 5vw, 60px) clamp(80px, 11vw, 140px); }
.strip {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  padding-inline: max(calc((100vw - 1180px) / 2), clamp(20px, 4vw, 48px));
  scroll-padding-inline: max(calc((100vw - 1180px) / 2), clamp(20px, 4vw, 48px));
}
.strip figure {
  flex: none;
  scroll-snap-align: start;
  height: clamp(240px, 30vw, 360px);
  overflow: hidden;
}
.strip img {
  height: 100%; width: auto;
  object-fit: cover;
  transition: transform var(--dur-3) var(--ease-soft);
}
.strip figure:hover img { transform: scale(1.045); }

/* ── über mich band — rosé, her velvet corner ─────────────────── */
.about { color: rgba(251, 249, 246, .8); }
.about .shell { padding-block: clamp(84px, 11vw, 150px); }
.about h2 { color: var(--porcelain); }

.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 4.5vw, 68px);
  align-items: start;
  margin-top: clamp(44px, 6vw, 68px);
}

.about-photo {
  border: 1px solid rgba(251, 249, 246, .2);
  overflow: hidden;
}
.about-photo img { width: 100%; }

.about-text p {
  font-size: 15.8px;
  line-height: 1.72;
  color: rgba(251, 249, 246, .82);
}
.about-text p + p { margin-top: 18px; }
.about-text .about-invite {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(251, 249, 246, .2);
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.35;
  color: var(--porcelain);
}

.about-quote {
  max-width: 42ch;
  margin: clamp(56px, 8vw, 92px) auto 0;
  text-align: center;
}
.about-quote p {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.32;
  color: var(--porcelain);
}
.about-quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(251, 249, 246, .68);
}

.about-cta {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
}
.about-cta p { margin-top: 16px; font-size: 14px; color: rgba(251, 249, 246, .72); }
.about-cta p a { color: var(--porcelain); text-underline-offset: 3px; }

/* ── voices ───────────────────────────────────────────────────── */
.voices .shell { padding-block: clamp(80px, 11vw, 140px); }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(44px, 6vw, 64px);
}
.voice {
  border: 1px solid var(--hairline);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  background: #fff;
  transition: transform var(--dur-1) var(--ease-soft),
              border-color var(--dur-1) linear, box-shadow var(--dur-1) var(--ease-soft);
}
.voice:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 119, 139, .45);
  box-shadow: 0 26px 44px -34px rgba(92, 32, 52, .55);
}
.voice blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  flex: 1;
}
.voice blockquote::before { content: "„"; }
.voice blockquote::after { content: "“"; }
.voice figcaption {
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  min-height: 56px;
}

/* ── contact ──────────────────────────────────────────────────── */
.contact { background: var(--blush); }
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: stretch;
  padding-block: clamp(80px, 11vw, 140px);
}
.contact-photo {
  box-shadow: 0 26px 50px -32px rgba(92, 32, 52, .28);
  border: 1px solid rgba(92, 32, 52, .10);
  overflow: hidden;
}
.contact-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 40%; /* a portrait now — keep the face when the frame crops */
}

.contact-info address {
  font-style: normal;
  margin-top: 30px;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
}
.contact-info address a {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--body);
  text-underline-offset: 4px;
  text-decoration-color: var(--rose-line);
}

.hours {
  margin-top: 28px;
  border-collapse: collapse;
  min-width: min(320px, 100%);
  font-variant-numeric: tabular-nums;
}
.hours th {
  text-align: left;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--muted);
  padding: 8px 40px 8px 0;
}
.hours td { font-size: 14.5px; color: var(--ink); padding: 8px 0; text-align: right; }
.hours tr { border-bottom: 1px solid rgba(92, 32, 52, .11); }
.hours tr:last-child { border-bottom: 0; }

.hours-note {
  margin-top: 26px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
  max-width: 46ch;
}

.contact-links { margin-top: 24px; display: grid; gap: 10px; }
.contact-links a {
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  text-underline-offset: 4px;
  text-decoration-color: var(--rose-line);
}
.contact-links a:hover { text-decoration-thickness: 2px; }

.contact-cta { margin-top: 30px; }

.fineprint {
  margin-top: 26px;
  font-size: 13px;
  color: var(--muted);
  max-width: 46ch;
}
.fineprint a { text-underline-offset: 3px; }

/* ── footer ───────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--brass); }
.foot-row {
  padding-block: clamp(56px, 8vw, 84px);
  text-align: center;
  color: rgba(251, 249, 246, .68);
}
.foot-row p + p { margin-top: 6px; }
.foot-logo {
  width: clamp(148px, 17vw, 196px);
  margin: 0 auto 28px;
}
.foot-row p { font-size: 14px; }
.foot-row a { color: rgba(251, 249, 246, .82); text-underline-offset: 3px; }
.foot-small { margin-top: 16px; font-size: 12.5px; color: rgba(251, 249, 246, .68); }

/* ── motion: load sequence (hidden states only when JS runs) ──── */
.js .load-1, .js .load-2, .js .load-3, .js .load-4, .js .load-5, .js .load-6 {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-2) var(--ease-rise), transform var(--dur-2) var(--ease-rise);
}
.js .load-img {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transition: opacity .2s linear, clip-path 1.2s var(--ease-rise);
}
body.is-loaded .load-1, body.is-loaded .load-2, body.is-loaded .load-3,
body.is-loaded .load-4, body.is-loaded .load-5, body.is-loaded .load-6 {
  opacity: 1; transform: none;
}
body.is-loaded .load-img { opacity: 1; clip-path: inset(0 0 0 0); }
body.is-loaded .load-2 { transition-delay: .08s; }
body.is-loaded .load-3 { transition-delay: .16s; }
body.is-loaded .load-4 { transition-delay: .26s; }
body.is-loaded .load-5 { transition-delay: .34s; }
body.is-loaded .load-6 { transition-delay: .42s; }
body.is-loaded .load-img { transition-delay: .2s; }

/* ── motion: scroll reveals (hidden states only when JS runs) ─── */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-2) var(--ease-rise), transform var(--dur-2) var(--ease-rise);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* the `.js` prefix has to be repeated: the rules being undone are `.js .load-*`
     and `.js .reveal` (0,2,0) and a media query adds no specificity of its own.
     !important is what beats the 0,2,1 `body.is-loaded .load-N` transition delays. */
  .js .load-1, .js .load-2, .js .load-3, .js .load-4, .js .load-5, .js .load-6,
  .js .reveal {
    transform: none !important;
    transition: opacity .3s linear !important;
  }
  /* the settled value rather than `none`: inset(0) clips the hero figure's drop
     shadow, so `none` here would make that shadow snap away once .is-loaded lands */
  .js .load-img {
    clip-path: inset(0 0 0 0) !important;
    transition: opacity .3s linear !important;
  }
  .strip img, .btn { transition: none; }
}

/* ═══════════════ responsive ═══════════════ */
@media (max-width: 1020px) {
  .voice-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; }
}

@media (max-width: 860px) {
  .main-nav {
    /* height (not bottom:0) because .site-head's backdrop-filter makes it the
       containing block for this fixed element — bottom:0 would resolve against
       the 74px header box, not the viewport, collapsing the menu to zero height */
    position: fixed;
    top: 74px; left: 0; right: 0;
    height: calc(100vh - 74px);
    background: var(--porcelain);
    flex-direction: column;
    gap: 0;
    padding: 0;
    display: flex;
    overflow-y: auto;
    /* visibility rather than display, so the panel can animate — it still keeps
       the closed menu out of the tab order and the accessibility tree.
       These are the CLOSED-state declarations, so this timing is the EXIT
       timing: shorter than the entrance, with visibility held back until the
       fade has finished. */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .26s var(--ease-soft),
                transform .26s var(--ease-soft),
                visibility 0s linear .26s;
  }
  .site-head.nav-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .34s var(--ease-rise),
                transform .5s var(--ease-rise),
                visibility 0s;
  }
  .main-nav a {
    padding: 13px clamp(20px, 4vw, 48px);
    border-bottom: 1px solid var(--hairline);
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .26s var(--ease-soft), transform .26s var(--ease-soft), color .3s;
  }
  .main-nav a::after { display: none; } /* the desktop hover underline */
  /* the links arrive one after another on open; on close they leave together,
     because these delays live only on the open state */
  .site-head.nav-open .main-nav a {
    opacity: 1;
    transform: none;
    transition: opacity .42s var(--ease-rise), transform .42s var(--ease-rise), color .3s;
  }
  .site-head.nav-open .main-nav a:nth-child(1) { transition-delay: .10s; }
  .site-head.nav-open .main-nav a:nth-child(2) { transition-delay: .16s; }
  .site-head.nav-open .main-nav a:nth-child(3) { transition-delay: .22s; }
  .site-head.nav-open .main-nav a:nth-child(4) { transition-delay: .28s; }
  .site-head.nav-open .main-nav a:nth-child(5) { transition-delay: .34s; }
  .site-head.nav-open .main-nav a:nth-child(6) { transition-delay: .40s; }
  .main-nav a:first-child { border-top: 1px solid var(--hairline); }
  .head-actions { margin-left: auto; }
  .nav-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-figure {
    order: 2;
    max-width: 440px;
  }

  .values-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; }

  .ledger-cols { grid-template-columns: 1fr; gap: 0; }
  .matrix-note + .ledger { grid-template-columns: 1fr; }

  .services { grid-template-columns: 1fr; gap: 28px; }
  .care ul { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-photo { max-width: 480px; }
  .contact-photo img { height: auto; object-fit: contain; }
}

@media (max-width: 640px) {
  .voice-grid { grid-template-columns: 1fr; }
  .voice figcaption { min-height: 0; }
  .btn:not(.btn-sm) { padding: 12px 24px; font-size: 14.5px; }
  .hero h1 { font-size: clamp(29px, 8vw, 36px); }
  .brand img { height: 26px; }
  /* the subtitle would shove the CTA and the burger off-screen; the script
     mark carries the header alone and the full lockup still closes the page */
  .brand-sub { display: none; }
  .strip figure { height: 220px; }
  .care ul { grid-template-columns: 1fr; }
  .ac-ticker { letter-spacing: .14em; }
  .tabs {
    mask-image: linear-gradient(90deg, #000 calc(100% - 36px), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 36px), transparent);
  }
  .matrix-wrap {
    mask-image: linear-gradient(90deg, #000 calc(100% - 44px), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 44px), transparent);
  }
  .matrix thead th, .matrix tbody td { padding-inline: 12px; }
  .matrix tbody th { padding-right: 14px; }
  .matrix thead th:last-child, .matrix tbody td:last-child { padding-right: 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   ACADEMY LANDING PAGE (academy.html) — .ac- prefix
   ═══════════════════════════════════════════════════════════════ */

html { scroll-padding-top: 92px; }

.eyebrow-center { justify-content: center; }
.eyebrow-center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--rose-line);
  flex: none;
}

.btn-ghost-light { border-color: rgba(251, 249, 246, .38); color: var(--porcelain); }
.btn-ghost-light:hover { border-color: var(--porcelain); }

.fluted :focus-visible { outline-color: var(--rose-soft); }

.academy-cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── transparent header over the hero band ────────────────────── */
.head-clear { transition: background-color .35s, border-color .3s, box-shadow .3s; }
.head-clear:not(.is-scrolled):not(.nav-open) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.brand { position: relative; }
.brand img { transition: opacity .35s; }
.brand .brand-light { position: absolute; left: 0; top: 0; opacity: 0; }
.head-clear:not(.is-scrolled):not(.nav-open) .brand-light { opacity: 1; }
.head-clear:not(.is-scrolled):not(.nav-open) .brand-ink { opacity: 0; }
.head-clear:not(.is-scrolled):not(.nav-open) .main-nav a { color: rgba(251, 249, 246, .75); }
.head-clear:not(.is-scrolled):not(.nav-open) .main-nav a:hover { color: var(--porcelain); border-bottom-color: var(--rose-line); }
.head-clear:not(.is-scrolled):not(.nav-open) .nav-toggle span { background: var(--porcelain); }
.head-clear:not(.is-scrolled):not(.nav-open) .btn-ink { background: var(--porcelain); color: var(--ink); }
.head-clear:not(.is-scrolled):not(.nav-open) .btn-ink:hover { background: #fff; }
.head-clear:not(.is-scrolled):not(.nav-open) :focus-visible { outline-color: var(--oak); }

/* ── hero: the flyer as a band ────────────────────────────────── */
.ac-hero {
  position: relative;
  color: rgba(251, 249, 246, .75);
  text-align: center;
  border-bottom: 1px solid transparent;
  margin-top: -74px;
}
.ac-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--rose-line);
}
.ac-hero .shell { padding-block: calc(74px + clamp(84px, 12vw, 148px)) 0; }
.ac-hero h1 {
  color: var(--porcelain);
  font-size: clamp(42px, 6.6vw, 84px);
  line-height: 1.06;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.ac-hero-sub {
  max-width: 54ch;
  margin: 26px auto 0;
  font-size: 17.5px;
  color: rgba(251, 249, 246, .68);
}
.ac-hero-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 38px;
}
.ac-hero-proof {
  margin-top: 30px;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(251, 249, 246, .58);
}
.ac-ticker-band {
  position: relative;
  margin-top: clamp(44px, 6vw, 68px);
  padding-block: 26px clamp(30px, 4vw, 44px);
  border-top: 1px solid rgba(251, 249, 246, .14);
}
.ac-ticker {
  display: flex;
  overflow: hidden;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(251, 249, 246, .62);
  user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ac-ticker-track {
  flex: none;
  display: flex;
  align-items: center;
  min-width: max-content;
  animation: ac-ticker 48s linear infinite;
}
.ac-ticker li { display: flex; align-items: center; white-space: nowrap; }
.ac-ticker li::after {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rose-line);
  margin-inline: clamp(20px, 3vw, 32px);
}
/* :not(.is-resumed) — the pointer necessarily rests on the band after a click,
   so without it the "fortsetzen" state would look dead */
.ac-ticker-band.is-paused .ac-ticker-track,
.ac-ticker-band:not(.is-resumed):hover .ac-ticker-track { animation-play-state: paused; }

.ac-ticker-toggle {
  position: relative;
  display: block;
  margin: 20px auto 0;
  padding: 6px 2px;
  font: inherit;
  font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(251, 249, 246, .5);
  transition: color var(--dur-1) var(--ease-soft);
}
.ac-ticker-toggle:hover,
.ac-ticker-toggle:focus-visible { color: rgba(251, 249, 246, .85); }
.ac-ticker-toggle::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rose-line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-1) var(--ease-soft);
}
.ac-ticker-toggle:hover::after,
.ac-ticker-toggle:focus-visible::after { transform: scaleX(1); }
.ac-ticker-toggle:focus-visible { outline: 2px solid var(--oak); outline-offset: 4px; }

@keyframes ac-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ── für wen ──────────────────────────────────────────────────── */
.ac-who-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
  padding-block: clamp(80px, 11vw, 140px);
}
.ac-side { position: sticky; top: 104px; }
.ac-who-list li { border-top: 1px solid var(--hairline); padding: 28px 0; }
.ac-who-list li:last-child { border-bottom: 1px solid var(--hairline); }
.ac-who-list h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.25;
  color: var(--ink);
}
.ac-who-list p { margin-top: 10px; font-size: 15.5px; color: var(--muted); max-width: 52ch; }

/* ── die zwei Tage ────────────────────────────────────────────── */
.ac-course { background: var(--blush); }
.ac-course .shell { padding-block: clamp(80px, 11vw, 140px); }

.ac-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  margin-top: clamp(44px, 6vw, 68px);
}
.ac-day h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
}
.ac-day h3 span {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(22, 19, 15, .62);
  margin-bottom: 12px;
}
.ac-day h3 span::before { content: ""; width: 26px; height: 1px; background: var(--rose-line); }
.ac-day ul { margin-top: 18px; }
.ac-day li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(22, 19, 15, .12);
  font-size: 15.5px; font-weight: 500;
  color: var(--ink);
}
.ac-day li::before {
  content: "";
  flex: none;
  width: 14px; height: 1px;
  background: var(--rose-line);
  margin-top: .72em;
}
.ac-day-note { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 44ch; }

.ac-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px clamp(40px, 6vw, 88px);
  align-items: center;
  margin-top: clamp(52px, 7vw, 84px);
  padding: clamp(28px, 4vw, 44px);
  background: var(--porcelain);
  border: 1px solid rgba(22, 19, 15, .1);
  border-top: 2px solid var(--rose-line);
  box-shadow: 0 30px 60px -40px rgba(92, 32, 52, .35);
}
.ac-offer h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--ink);
}
.ac-offer-meta {
  margin-top: 8px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(22, 19, 15, .62);
}
.ac-offer .incl { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; }
.ac-offer .incl li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--body); }
.ac-offer .incl li::before { content: ""; width: 14px; height: 1px; background: var(--rose-line); }
.ac-offer-price { text-align: right; }
.ac-offer-price strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1;
  color: var(--ink);
}
.ac-offer-price p { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.ac-offer-price .btn { margin-top: 18px; }

.ac-more { margin-top: clamp(56px, 8vw, 88px); max-width: 720px; }
.ac-more h3 {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1px solid var(--rose-line);
  margin-bottom: 10px;
}
.ac-more-note { margin-top: 18px; font-size: 14px; color: var(--muted); }
.ac-more-note a { text-underline-offset: 3px; text-decoration-color: var(--rose-line); }

/* ── trainerin ────────────────────────────────────────────────── */
.ac-trainer-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  padding-block: clamp(80px, 11vw, 140px);
}
.ac-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--blush);
  border: 1px solid rgba(92, 32, 52, .10);
  box-shadow: 0 26px 50px -32px rgba(92, 32, 52, .3);
  display: grid; place-items: center;
}
.ac-portrait::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid var(--rose-line);
  pointer-events: none;
}
.ac-portrait-a {
  display: block;
  font-family: var(--display);
  font-size: clamp(96px, 12vw, 160px);
  line-height: 1;
  color: var(--oak);
  text-align: center;
}
.ac-portrait-cap {
  display: block;
  margin-top: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.ac-trainer-p { margin-top: 22px; font-size: 16.5px; max-width: 54ch; }
.ac-trainer-p + .ac-trainer-p { margin-top: 16px; }
.ac-trainer .stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  margin-top: clamp(36px, 5vw, 52px);
  padding-top: 34px;
}
.stats dt .star { color: var(--rose); font-size: .8em; }

/* ── stimmen aus der schulung ─────────────────────────────────── */
.ac-voices { color: rgba(251, 249, 246, .8); }
.ac-voices .shell { padding-block: clamp(84px, 11vw, 150px); }
.ac-voices h2 { color: var(--porcelain); }
.ac-voices .section-sub { color: rgba(251, 249, 246, .65); }

.ac-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(48px, 6vw, 76px);
}
.ac-quote:first-child { padding-right: clamp(36px, 5vw, 72px); }
.ac-quote:last-child {
  padding-left: clamp(36px, 5vw, 72px);
  border-left: 1px solid rgba(251, 249, 246, .14);
}
.ac-quote-tag {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose-line);
  margin-bottom: 20px;
}
.ac-quote-tag::before { content: ""; width: 26px; height: 1px; background: var(--rose-line); }
.ac-quote p {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.38;
  color: var(--porcelain);
}
.ac-quote em {
  font-family: var(--display-em);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}
.ac-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(251, 249, 246, .58);
}

/* ── faq ──────────────────────────────────────────────────────── */
.ac-faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
  padding-block: clamp(80px, 11vw, 140px);
}
.ac-faq .section-sub a {
  color: var(--ink);
  font-weight: 500;
  text-underline-offset: 3px;
  text-decoration-color: var(--rose-line);
}
.ac-faq-list details { border-top: 1px solid var(--hairline); }
.ac-faq-list details:last-child { border-bottom: 1px solid var(--hairline); }
.ac-faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 21px 0;
  font-size: 17px; font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.ac-faq-list summary::-webkit-details-marker { display: none; }
.ac-faq-list summary:hover { color: var(--rose-deep); }
.faq-mark { position: relative; flex: none; width: 12px; height: 12px; }
.faq-mark::before, .faq-mark::after {
  content: "";
  position: absolute; left: 0; top: 5.25px;
  width: 12px; height: 1.5px;
  background: var(--rose-deep);
  transition: transform .35s var(--ease);
}
.faq-mark::after { transform: rotate(90deg); }
details[open] .faq-mark::after { transform: rotate(0deg); }
.ac-faq-list .faq-body {
  padding: 0 36px 26px 0;
  max-width: 58ch;
  font-size: 15.5px;
  color: var(--body);
}

/* ── closer: für die unsicheren ───────────────────────────────── */
.ac-closer { background: var(--blush); text-align: center; }
.ac-closer .shell { padding-block: clamp(84px, 11vw, 150px); }
.ac-closer h2 { max-width: 17ch; margin-inline: auto; }
.ac-closer-p { max-width: 54ch; margin: 22px auto 0; font-size: 16.5px; color: var(--body); }
.ac-closer-p + .ac-closer-p { margin-top: 14px; }
.ac-closer-cta { margin-top: 36px; }
.ac-closer-cta p { margin-top: 14px; font-size: 14px; color: var(--muted); }
.ac-closer-cta p a { color: var(--ink); text-underline-offset: 3px; text-decoration-color: var(--rose-line); }
.ac-closer-small { margin-top: 30px; font-size: 13px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .faq-mark::before, .faq-mark::after { transition: none; }
  .ac-faq-list summary { transition: none; }
  .ac-ticker { mask-image: none; -webkit-mask-image: none; }
  .ac-ticker-track {
    animation: none;
    flex-wrap: wrap; justify-content: center;
    row-gap: 12px;
    min-width: 100%;
  }
  .ac-ticker-track[aria-hidden="true"] { display: none; }
  .ac-ticker-toggle { display: none; } /* nothing left to pause */
}

@media (max-width: 1020px) {
  .ac-who-grid, .ac-faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .ac-side { position: static; }
}

@media (max-width: 860px) {
  .ac-hero h1 { font-size: clamp(36px, 9.6vw, 52px); }
  .ac-days { grid-template-columns: 1fr; }
  .ac-offer { grid-template-columns: 1fr; }
  .ac-offer-price { text-align: left; }
  .ac-trainer-grid { grid-template-columns: 1fr; }
  .ac-portrait { max-width: 420px; }
  .ac-quotes { grid-template-columns: 1fr; }
  .ac-quote:first-child { padding-right: 0; }
  .ac-quote:last-child {
    padding-left: 0;
    border-left: 0;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(251, 249, 246, .14);
  }
  .ac-trainer .stats { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   MOTION — one calm system; transform & opacity only
   ═══════════════════════════════════════════════════════════════ */

/* ── signature: display headings rise line by line out of a mask ── */
.line {
  display: block;
  overflow: hidden;
  padding-bottom: .1em;
  margin-bottom: -.1em;
}
.line-i {
  display: block;
  transform: translateY(105%);
  transition: transform var(--dur-3) var(--ease-rise);
  transition-delay: var(--ld, 0s);
}
/* a split heading is inert itself — its lines carry the motion.
   .is-lit is set per heading by its own observer, so the trigger never
   depends on where the heading sits in the markup */
.js .reveal.is-split,
.js .load-2.is-split { opacity: 1; transform: none; }
.is-lit .line-i,
body.is-loaded .load-2.is-split .line-i { transform: none; }
.is-resplitting .line-i { transition: none; }

/* something revealed because it received keyboard focus appears at once —
   a focus ring on a still-transparent element is no focus ring at all */
.reveal.no-anim,
.no-anim[data-seq] > *,
.no-anim [data-seq] > *,
.no-anim .line-i { transition: none; }

/* ── brass hairlines draw themselves in ────────────────────────── */
.js .eyebrow::before,
.js .eyebrow-center::after,
.js .ac-quote-tag::before,
.js .ac-day h3 span::before,
.js .value h3::before,
.js .ac-more h3::before,
.js .ac-hero::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-3) var(--ease-rise) .12s;
}
.js .eyebrow-center::after { transform-origin: right; }

.eyebrow.is-in::before,
.is-in .eyebrow::before,
body.is-loaded .eyebrow.load-1::before,
.eyebrow-center.is-in::after,
.is-in .eyebrow-center::after,
body.is-loaded .eyebrow-center.load-1::after,
.is-in .ac-quote-tag::before,
.is-in.ac-day h3 span::before,
.is-in.value h3::before,
.is-in.ac-more h3::before { transform: none; }

/* the long rule lands last, after the page has settled */
.js .ac-hero::after { transition-duration: 1.4s; transition-delay: .5s; }
body.is-loaded .ac-hero::after { transform: none; }

/* hairline rules that live on a border keep their box, lose their colour */
.value h3 { position: relative; border-top-color: transparent; }
.ac-more h3 { position: relative; border-top-color: transparent; }
.value h3::before,
.ac-more h3::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--rose-line);
}

/* ── sequenced lists: children arrive one after another ────────── */
.js [data-seq] > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-2) var(--ease-rise), transform var(--dur-2) var(--ease-rise);
}
.js .reveal[data-seq] { opacity: 1; transform: none; }
.is-in[data-seq] > *,
.is-in [data-seq] > * { opacity: 1; transform: none; }
[data-seq] > *:nth-child(1) { transition-delay: .05s; }
[data-seq] > *:nth-child(2) { transition-delay: .12s; }
[data-seq] > *:nth-child(3) { transition-delay: .19s; }
[data-seq] > *:nth-child(4) { transition-delay: .26s; }
[data-seq] > *:nth-child(5) { transition-delay: .33s; }
[data-seq] > *:nth-child(6) { transition-delay: .40s; }
[data-seq] > *:nth-child(7) { transition-delay: .47s; }
[data-seq] > *:nth-child(8) { transition-delay: .54s; }

/* ── photographs drift slowly inside their frames (JS-driven) ──── */
.hero-figure img,
.contact-photo img,
.ac-portrait-mark { will-change: transform; }

/* ── quiet hovers ──────────────────────────────────────────────── */
.ac-offer { transition: box-shadow var(--dur-1) var(--ease-soft); }
.ac-offer:hover { box-shadow: 0 40px 72px -44px rgba(92, 32, 52, .5); }
.ac-who-list li h3 { transition: color var(--dur-1) var(--ease-soft); }
.ac-who-list li:hover h3 { color: var(--rose-deep); }

/* ── crossfade between the two pages ───────────────────────────── */
.is-leaving .site-head,
.is-leaving main,
.is-leaving .site-foot {
  opacity: 0;
  transition: opacity .26s ease;
}

@media (prefers-reduced-motion: reduce) {
  .line-i { transform: none; transition: none; }
  .js [data-seq] > * { opacity: 1; transform: none; transition: none; }
  .js .eyebrow::before,
  .js .eyebrow-center::after,
  .js .ac-quote-tag::before,
  .js .ac-day h3 span::before,
  .js .value h3::before,
  .js .ac-more h3::before,
  .js .ac-hero::after { transform: none; transition: none; }
  /* the menu still opens and closes, it just does so at once.
     The open-state selectors have to be listed too: `.site-head.nav-open
     .main-nav` is 0,3,0 and would otherwise outrank a bare `.main-nav`,
     and !important covers the 0,4,0 nth-child stagger delays. */
  .main-nav,
  .main-nav a,
  .main-nav a::after,
  .site-head.nav-open .main-nav,
  .site-head.nav-open .main-nav a,
  .nav-toggle span { transition: none !important; }
  .voice:hover,
  .course-side .course:hover { transform: none; }
  .is-leaving .site-head,
  .is-leaving main,
  .is-leaving .site-foot { opacity: 1; }
}
