/* ═══════════════════════════════════════════════════════════════
   ANN LASHES BEAUTY & ACADEMY — „Die Rille"
   porcelain ground · ink fluting · brass hairline
   ═══════════════════════════════════════════════════════════════ */

:root {
  --porcelain: #FBF9F6;
  --sand: #F2ECE2;
  --oak: #D8C3A4;
  --ink: #16130F;
  --body: #3B362E;
  --muted: #6B6255;
  --brass: #A98B5C;
  --brass-deep: #8A6F42;
  --hairline: rgba(22, 19, 15, .10);
  --hairline-strong: rgba(22, 19, 15, .24);
  --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(--ink); 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(--brass-deep); outline-offset: 3px; }

.nb { white-space: nowrap; }

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

/* ── die Rille — the fluted furniture texture ─────────────────── */
.fluted {
  background-color: var(--ink);
  background-image: repeating-linear-gradient(90deg,
    #17130e 0px, #17130e 12px,
    #2b2317 12px, #2b2317 13.5px,
    #0c0a07 13.5px, #0c0a07 16px);
}

/* ── type roles ───────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, .62);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  flex: none;
}
.eyebrow-light { color: rgba(251, 249, 246, .62); }

h1, h2 { font-family: var(--display); font-weight: 400; color: var(--ink); }
h1 em, h2 em, .pull em, .student-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(--brass); }

/* ── 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(--ink); color: var(--porcelain); }
.btn-ink:hover { background: #2e2820; box-shadow: 0 16px 26px -18px rgba(22, 19, 15, .7); }
.btn-ghost { border-color: var(--hairline-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.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;
}
.brand { flex: none; display: block; }
.brand img { width: auto; height: 24px; }

.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(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-1) var(--ease-soft);
}
.main-nav a:hover { color: var(--ink); }
.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(22, 19, 15, .08);
  box-shadow: 0 40px 70px -34px rgba(50, 38, 20, .45);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}


/* ── values band ──────────────────────────────────────────────── */
.values { background: var(--sand); }
.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(--ink);
  padding-top: 16px;
  border-top: 1px solid var(--brass);
}
.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(--brass);
}

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

/* die Preismatrix */
.matrix-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.matrix-wrap::-webkit-scrollbar { display: none; }
.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(216, 195, 164, .14); }
.matrix tbody tr:hover th { background: #F1E9DC; }
.matrix .col-hi { background: rgba(169, 139, 92, .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); }

/* ── results strip ────────────────────────────────────────────── */
.results { background: var(--sand); }
.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));
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.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); }

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

.academy-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  align-items: start;
  margin-top: clamp(44px, 6vw, 68px);
}

.course {
  background: #1d1812;
  border: 1px solid rgba(251, 249, 246, .13);
  padding: clamp(24px, 3vw, 36px);
  transition: transform var(--dur-1) var(--ease-soft), border-color var(--dur-1) linear;
}
.course-side .course:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 139, 92, .55);
}
.course h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--porcelain);
  line-height: 1.2;
}
.course-meta {
  margin-top: 8px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(251, 249, 246, .58);
}
.course-price {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--brass);
}
.course-main { border-top: 2px solid var(--brass); }
.course-main header { position: relative; }
.course-main .course-price {
  position: absolute; top: 0; right: 0; margin-top: 0;
}
.course-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(251, 249, 246, .12);
}
.course-days h4 {
  font-size: 14.5px; font-weight: 600;
  color: var(--porcelain);
  letter-spacing: .02em;
}
.course-days h4 span {
  display: block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.course-days p { margin-top: 10px; font-size: 14.5px; line-height: 1.6; color: rgba(251, 249, 246, .7); }

.course-incl {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 249, 246, .12);
}
.course-incl li {
  font-size: 13.5px;
  color: rgba(251, 249, 246, .68);
  display: flex; align-items: center; gap: 10px;
}
.course-incl li::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--brass);
}

.course-side { display: grid; gap: 22px; align-content: start; }

.student-quote {
  max-width: 40ch;
  margin: clamp(56px, 8vw, 92px) auto 0;
  text-align: center;
}
.student-quote p {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.32;
  color: var(--porcelain);
}
.student-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, .58);
}

.academy-cta {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
}
.academy-cta p { margin-top: 16px; font-size: 14px; color: rgba(251, 249, 246, .65); }
.academy-cta p a { color: rgba(251, 249, 246, .85); 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(169, 139, 92, .45);
  box-shadow: 0 26px 44px -34px rgba(50, 38, 20, .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(--sand); }
.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(50, 38, 20, .3);
  border: 1px solid rgba(22, 19, 15, .08);
  overflow: hidden;
}
.contact-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 24% 50%;
}

.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(--brass);
}

.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(22, 19, 15, .09); }
.hours tr:last-child { border-bottom: 0; }

.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(--brass);
}
.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(220px, 28vw, 300px);
  margin: 0 auto 26px;
}
.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, .55); }

/* ── 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; }
  .academy-grid { grid-template-columns: 1fr; }
  .course-side { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@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; }

  .course-side { grid-template-columns: 1fr; }
  .course-days { grid-template-columns: 1fr; }
  .course-main .course-price { position: static; margin-top: 14px; }

  .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: 20px; }
  .strip {
    --strip-card-w: clamp(240px, 78vw, 320px);
    scroll-padding-inline: 50%;
    padding-inline: calc(50% - (var(--strip-card-w) / 2));
  }
  .strip figure {
    width: var(--strip-card-w);
    height: auto;
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
    opacity: .42;
    transform: scale(.92);
    transition: opacity var(--dur-1) var(--ease-soft), transform var(--dur-1) var(--ease-soft);
  }
  .strip figure.is-active { opacity: 1; transform: scale(1); }
  .strip img { width: 100%; height: 100%; }
  .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(--brass);
  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(--oak); }

.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(--brass); }
.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(--brass);
}
.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(--brass);
  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(--brass);
  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(--sand); }
.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(--brass); }
.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(--brass);
  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(--brass);
  box-shadow: 0 30px 60px -40px rgba(50, 38, 20, .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(--brass); }
.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(--brass);
  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(--brass); }

/* ── 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(--sand);
  border: 1px solid rgba(22, 19, 15, .08);
  box-shadow: 0 26px 50px -32px rgba(50, 38, 20, .3);
  display: grid; place-items: center;
}
.ac-portrait::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid var(--brass);
  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(--brass); 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(--brass);
  margin-bottom: 20px;
}
.ac-quote-tag::before { content: ""; width: 26px; height: 1px; background: var(--brass); }
.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(--brass);
}
.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(--brass-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(--brass-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(--sand); 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(--brass); }
.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(--brass);
}

/* ── 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(50, 38, 20, .5); }
.ac-who-list li h3 { transition: color var(--dur-1) var(--ease-soft); }
.ac-who-list li:hover h3 { color: var(--brass-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; }
  /* must live AFTER the @media (max-width: 640px) block that sets this
     transition (site.css ~888) — equal specificity (0,1,1) means source
     order decides the tie, and a media query earlier in the file loses
     even when its selector matches. Same trap, different mechanism, as
     the nav-menu note below. */
  .strip figure { 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; }
}
