/* ==========================================================================
   PURE HAIR EXTENSIONS by Betty — "Die Krone"
   Two papers: black lacquer + gold + rose  /  champagne + espresso + gold
   ========================================================================== */

:root {
  /* dark paper */
  --ink: oklch(13% 0.008 70);
  --ink-2: oklch(17% 0.01 70);
  --ink-3: oklch(21% 0.012 70);
  --cream: oklch(92% 0.015 85);
  --cream-2: oklch(76% 0.014 80);
  --gold: oklch(72% 0.12 85);
  --gold-hi: oklch(87% 0.08 92);
  --gold-lo: oklch(50% 0.075 80);
  --gold-line: oklch(50% 0.075 80 / 0.42);
  --gold-line-soft: oklch(50% 0.075 80 / 0.22);
  --rose: oklch(76% 0.085 12);
  --rose-deep: oklch(62% 0.11 12);
  /* light paper */
  --paper: oklch(94% 0.018 60);
  --paper-2: oklch(90.5% 0.022 55);
  --paper-3: oklch(86% 0.026 55);
  --espresso: oklch(24% 0.02 60);
  --espresso-2: oklch(42% 0.022 60);
  --espresso-line: oklch(42% 0.022 60 / 0.25);

  --font-display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --font-body: "Urbanist", "Avenir Next", "Futura", system-ui, sans-serif;
  --font-script: "Alex Brush", "Brush Script MT", cursive;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --sp-xs: 4px; --sp-sm: 8px; --sp-md: 16px; --sp-lg: 24px; --sp-xl: 32px; --sp-2xl: 48px; --sp-3xl: 64px; --sp-4xl: 96px;
  --section: clamp(80px, 11vw, 144px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-kerning: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.1; font-optical-sizing: auto; }
button, select, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.paper :focus-visible { outline-color: var(--espresso); }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.paper .eyebrow { color: var(--gold-lo); }
.eyebrow .rule { display: inline-block; width: 44px; height: 1px; background: var(--gold-lo); }
.h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); letter-spacing: 0; color: var(--gold-hi); text-wrap: balance; font-variation-settings: "opsz" 18; }
.h2 em { font-style: italic; color: var(--gold); }
.paper .h2 em { color: var(--gold-lo); }
.paper .h2 { color: var(--espresso); font-variation-settings: "opsz" 26; }
.h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); color: var(--cream); line-height: 1.2; font-variation-settings: "opsz" 12; }
.paper .h3 { color: var(--espresso); }
.h3-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 8px; line-height: 1.5; }
.paper .h3-sub { color: var(--gold-lo); }
.lead { max-width: 62ch; color: var(--cream-2); font-size: 1.05rem; }
.paper .lead { color: var(--espresso-2); }
.script { font-family: var(--font-script); font-weight: 400; color: var(--gold-hi); line-height: 1.05; }
.paper .script { color: var(--gold-lo); }
.fine { font-size: 0.8rem; color: var(--cream-2); line-height: 1.6; }
.paper .fine { color: var(--espresso-2); }
.text-link { border-bottom: 1px solid var(--gold-line); color: var(--gold-hi); font-size: 0.9rem; letter-spacing: 0.04em; transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out); }
.text-link:hover { border-color: var(--gold); color: var(--gold); }
.stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.85rem; }

.section-head { display: grid; gap: 18px; }
.section-head > * { max-width: 760px; }
.section-head .h2 { margin-top: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0.95em 1.7em;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hi); border-color: var(--gold-hi); }
.btn-line { border-color: var(--gold-line); color: var(--cream); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-hi); }
.paper .btn-line { border-color: var(--espresso-line); color: var(--espresso); }
.paper .btn-line:hover { border-color: var(--espresso); }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--gutter);
  background: color-mix(in oklch, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease-out), padding 300ms var(--ease-out);
}
.topbar.scrolled { border-bottom-color: var(--gold-line-soft); padding-block: 10px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-display); font-variation-settings: "opsz" 12; color: var(--gold); }
.brand-word > span { font-size: 1.08rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.brand-word > small { font-family: var(--font-body); font-weight: 500; font-size: 0.52rem; letter-spacing: 0.44em; text-transform: uppercase; color: var(--gold-lo); margin-top: 6px; padding-left: 0.05em; }
.topnav { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.topnav a { font-weight: 500; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-2); padding: 6px 0; position: relative; transition: color 200ms var(--ease-out); }
.topnav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right 260ms var(--ease-out); }
.topnav a:hover { color: var(--gold-hi); }
.topnav a:hover::after { right: 0; }
.topbar-cta { padding-block: 0.8em; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - 70px);
  display: grid; align-items: end;
  padding: 0 var(--gutter);
  background:
    radial-gradient(60% 55% at 78% 62%, oklch(30% 0.045 70 / 0.55), transparent 70%),
    var(--ink);
}
.hero::before {
  /* satin drape drawn as vector ribbons — sharp at any pixel density */
  content: ""; position: absolute; inset: 0 0 0 auto; width: 46%;
  background: url("assets/silk.svg") right top / cover no-repeat;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to left, #000 20%, transparent 100%);
  mask-image: linear-gradient(to left, #000 20%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(var(--wrap), 100%); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: end;
  gap: clamp(24px, 4vw, 64px);
  min-height: inherit;
}
.hero-copy { padding: clamp(80px, 10vh, 130px) 0 clamp(72px, 9vh, 120px); display: grid; gap: 22px; align-content: center; }
.hero-eyebrow { color: var(--gold); flex-wrap: wrap; row-gap: 6px; }
.hero-title { font-size: clamp(3rem, 7.4vw, 6.4rem); line-height: 1; color: var(--cream); letter-spacing: -0.005em; font-weight: 500; font-variation-settings: "opsz" 28; }
.hero-title em { font-style: italic; color: var(--gold); }
.ht-line { display: block; }
.hero-script { font-size: clamp(1.8rem, 2.6vw, 2.35rem); margin-top: 2px; }
.hero-lead { max-width: 54ch; color: var(--cream-2); font-size: 1.07rem; margin-top: 6px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--cream-2); margin-top: 10px; }
.hero-proof strong { color: var(--gold-hi); font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.hero-proof .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-lo); }
.hero-crown { margin: 0; align-self: end; justify-self: end; width: min(100%, 640px); position: relative; }
.hero-crown img {
  width: 100%; height: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 99%);
  filter: drop-shadow(0 30px 40px oklch(0% 0 0 / 0.5));
}

/* page-load choreography */
.hero-eyebrow, .ht-line, .hero-script, .hero-lead, .hero-cta, .hero-proof, .hero-crown {
  opacity: 0; transform: translateY(26px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.hero-crown { transform: translateY(40px) scale(0.985); transition-duration: 1300ms; }
.hero-eyebrow .rule { transform: scaleX(0); transform-origin: left; transition: transform 900ms var(--ease-out) 700ms; }
body.ready .hero-eyebrow, body.ready .ht-line, body.ready .hero-script, body.ready .hero-lead, body.ready .hero-cta, body.ready .hero-proof, body.ready .hero-crown { opacity: 1; transform: none; }
body.ready .hero-eyebrow .rule { transform: scaleX(1); }
body.ready .hero-eyebrow { transition-delay: 120ms; }
body.ready .ht-line:nth-child(1) { transition-delay: 240ms; }
body.ready .ht-line:nth-child(2) { transition-delay: 360ms; }
body.ready .hero-script { transition-delay: 520ms; }
body.ready .hero-lead { transition-delay: 640ms; }
body.ready .hero-cta { transition-delay: 760ms; }
body.ready .hero-proof { transition-delay: 880ms; }
body.ready .hero-crown { transition-delay: 200ms; }

/* ---------- trust band ---------- */
.band { border-top: 1px solid var(--gold-line-soft); border-bottom: 1px solid var(--gold-line-soft); background: var(--ink-2); }
.band-list {
  width: min(var(--wrap), 100%); margin: 0 auto; padding: 18px var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 44px;
  font-weight: 500; font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cream-2);
}
.band-list li { display: flex; align-items: center; gap: 12px; }
.band-list li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* ---------- generic section shell ---------- */
.results, .methods, .prices, .reviews, .contact { padding: var(--section) var(--gutter); }
.results > *, .methods > *, .prices > *, .reviews > *, .contact > * { width: min(var(--wrap), 100%); margin-inline: auto; }

/* ---------- results strip ---------- */
.results { padding-bottom: calc(var(--section) * 0.7); position: relative; }
.strip-nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: -44px; }
.strip-btn { width: 46px; height: 46px; border: 1px solid var(--gold-line); border-radius: 50%; color: var(--gold-hi); font-family: var(--font-body); font-size: 1rem; transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out), color 200ms var(--ease-out); }
.strip-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.strip:focus-visible { outline-offset: 6px; }
.strip {
  margin-top: 28px;
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding-bottom: 8px;
  /* let it bleed to the right edge */
  width: auto; margin-right: calc(-1 * var(--gutter)); padding-right: var(--gutter);
  margin-left: max(calc((100% - var(--wrap)) / 2), 0px);
}
.strip::-webkit-scrollbar { display: none; }
.strip figure { margin: 0; flex: 0 0 auto; width: clamp(220px, 24vw, 300px); aspect-ratio: 3 / 4.6; scroll-snap-align: start; overflow: hidden; background: var(--ink-2); position: relative; }
.strip figure:nth-child(3n) { width: clamp(280px, 30vw, 380px); aspect-ratio: 4 / 4.6; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.strip figure:hover img { transform: scale(1.03); }
.strip figure::after { content: ""; position: absolute; inset: 10px; border: 1px solid oklch(87% 0.08 92 / 0.28); pointer-events: none; }
.strip-hint { margin-top: 14px; font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lo); }

/* ---------- methods ---------- */
.methods { background: linear-gradient(to bottom, var(--ink), var(--ink-2) 40%, var(--ink)); }
.method-list { margin-top: 56px; display: grid; gap: 0; border-top: 1px solid var(--gold-line-soft); }
.method { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; padding: 44px 0; border-bottom: 1px solid var(--gold-line-soft); }
.method-art { padding-top: 6px; }
.schema { width: 100%; max-width: 200px; height: auto; display: block; }
.schema path, .schema circle, .schema rect { fill: none; stroke: var(--gold-lo); stroke-width: 1.4; stroke-linecap: round; }
.schema .s-scalp { stroke: var(--gold); stroke-width: 1.2; stroke-dasharray: 3 5; }
.schema .s-hair path { stroke: oklch(50% 0.075 80 / 0.5); }
.schema .s-ext path { stroke: var(--gold-hi); }
.schema .s-bond rect { fill: var(--gold); stroke: var(--gold); }
.schema .s-weft { stroke: var(--gold); stroke-width: 2; }
.schema .s-weft-2 { stroke: var(--gold-lo); stroke-width: 1; stroke-dasharray: 2 3; }
.schema .s-ring circle { stroke: var(--gold-hi); stroke-width: 1.6; fill: var(--ink); }
.schema .s-tape rect { fill: oklch(72% 0.12 85 / 0.5); stroke: var(--gold); }
.method-no { font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 10; font-size: 0.85rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.method-body { display: grid; gap: 14px; }
.method-body > p { max-width: 62ch; color: var(--cream-2); }
.facts { margin: 8px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 40px; }
.facts div { display: grid; gap: 4px; padding-top: 12px; border-top: 1px solid var(--gold-line-soft); }
.facts dt { font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.facts dd { margin: 0; font-size: 0.95rem; color: var(--cream); }
.method-note { margin-top: 24px; font-size: 0.85rem; color: var(--cream-2); }
.method-note span { display: block; max-width: 70ch; }

/* ---------- prices ---------- */
.prices { background: var(--ink); }
.plate {
  margin-top: 40px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--ink-2);
  border: 1px solid var(--gold-line);
  outline: 1px solid var(--gold-line-soft); outline-offset: 6px;
  position: relative;
}
.plate + .plate { margin-top: 44px; }
.plate-head { display: grid; gap: 8px; margin-bottom: 20px; }
.plate-head-2 { margin-top: 0; margin-bottom: 14px; }
.plate-head-2 .h3 { font-size: 1.32rem; }
.ledger-grid > div { display: grid; align-content: start; }
.plate-kicker { font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 10; font-size: 0.85rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); }

.ledger { width: 100%; border-collapse: collapse; }
.ledger caption { text-align: left; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; font-variation-settings: "opsz" 10; color: var(--gold-hi); padding: 0 0 10px; caption-side: top; }
.ledger caption small { display: block; font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lo); margin-top: 4px; }
.ledger th { text-align: left; font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lo); padding: 8px 12px 10px 0; border-bottom: 1px solid var(--gold-line); }
.ledger td { padding: 13px 12px 13px 0; border-bottom: 1px solid var(--gold-line-soft); vertical-align: top; color: var(--cream); }
.ledger tbody tr:last-child td { border-bottom-color: var(--gold-line); }
.ledger td[rowspan] { color: var(--gold-hi); font-family: var(--font-display); }
.ledger .num { text-align: right; padding-right: 0; white-space: nowrap; }
.ledger .unit { color: var(--cream-2); font-size: 0.85rem; white-space: nowrap; }
.ledger td small { display: block; font-size: 0.8rem; color: var(--cream-2); line-height: 1.5; }
.ledger .price { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; font-variation-settings: "opsz" 12; color: var(--rose); font-variant-numeric: tabular-nums lining-nums; }
.ledger tbody tr { transition: background-color 200ms var(--ease-out); }
.ledger tbody tr:hover { background: oklch(21% 0.012 70 / 0.6); }
.ledger-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px clamp(32px, 5vw, 72px); }
.ledger-grid-2 { gap-block: 28px; }
.ledger-compare .is-us td { color: var(--gold-hi); }
.ledger-compare .num { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }
.incl { align-self: end; display: grid; gap: 12px; padding: 22px 24px; border: 1px solid var(--gold-line-soft); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.incl li { display: flex; align-items: center; gap: 12px; }
.incl-k { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.02em; text-transform: none; color: var(--gold-hi); margin-bottom: 4px; }
.incl li::before { content: "◆"; font-size: 0.5rem; color: var(--gold-lo); }
.reco { margin-top: 36px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 32px clamp(32px, 5vw, 72px); align-items: start; }
.reco-k { font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.reco p + p, .reco div > p:not(.reco-k) { color: var(--cream-2); font-size: 0.98rem; }
.reco strong { font-weight: 500; color: var(--cream); }
.plate .fine { margin-top: 26px; }

/* calculator */
.calc {
  margin-top: 56px;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  border: 1px solid var(--gold-line);
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
}
.calc-controls { padding: clamp(24px, 4vw, 48px); display: grid; gap: 22px; align-content: start; border-right: 1px solid var(--gold-line-soft); }
.calc-controls .h3 { margin-top: -6px; }
.field { display: grid; gap: 10px; }
.field > span, .field-row { font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.field-row { display: flex; justify-content: space-between; align-items: baseline; }
.field-row output { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; letter-spacing: 0; text-transform: none; color: var(--gold-hi); }
.field select {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a45c' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--gold-line); border-radius: var(--radius);
  padding: 13px 40px 13px 14px; color: var(--cream); font-size: 0.95rem;
  transition: border-color 200ms var(--ease-out);
}
.field select:hover, .field select:focus { border-color: var(--gold); }
input[type="range"] { width: 100%; height: 26px; background: transparent; -webkit-appearance: none; appearance: none; margin: 0; }
input[type="range"]::-webkit-slider-runnable-track { height: 2px; background: linear-gradient(to right, var(--gold) var(--pct, 50%), var(--gold-line) var(--pct, 50%)); }
input[type="range"]::-moz-range-track { height: 2px; background: var(--gold-line); }
input[type="range"]::-moz-range-progress { height: 2px; background: var(--gold); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; margin-top: -8px; border-radius: 50%; background: var(--gold-hi); border: 4px solid var(--ink-2); box-shadow: 0 0 0 1px var(--gold); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--gold-hi); border: 4px solid var(--ink-2); box-shadow: 0 0 0 1px var(--gold); cursor: pointer; }
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.presets button { font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 12px; border: 1px solid var(--gold-line); color: var(--cream-2); border-radius: var(--radius); transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out), background-color 200ms var(--ease-out); }
.presets button:hover { border-color: var(--gold); color: var(--gold-hi); }
.presets button.is-on { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.calc-result { padding: clamp(24px, 4vw, 48px); display: grid; gap: 14px; align-content: start; }
.calc-total { font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 26; font-size: clamp(3.4rem, 6vw, 5rem); line-height: 1; color: var(--rose); font-variant-numeric: tabular-nums lining-nums; display: flex; align-items: baseline; gap: 10px; }
.calc-cur { font-size: 0.5em; color: var(--rose-deep); }
.calc-note { font-weight: 500; font-size: 0.85rem; letter-spacing: 0.06em; color: var(--gold-hi); }
.calc-result .btn { justify-self: start; margin-top: 8px; }

/* ---------- light paper acts ---------- */
.paper { background: var(--paper); color: var(--espresso); }
.paper-2 { background: var(--paper-2); }
.hair { padding: var(--section) var(--gutter); }
.hair-intro { width: min(var(--wrap), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.spec { margin-top: 12px; display: grid; gap: 0; border-top: 1px solid var(--espresso-line); }
.spec li { display: grid; grid-template-columns: 172px minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--espresso-line); font-size: 0.95rem; }
.spec span { font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lo); padding-top: 4px; }
.spec strong { font-weight: 500; color: var(--espresso); }
.textures { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; align-items: end; }
.textures figure { margin: 0; position: relative; }
.textures img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 5; }
.textures figure:nth-child(3) img { aspect-ratio: 3 / 4.2; }
.textures figcaption { margin-top: 10px; font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso-2); }

/* Die Haarwand */
.wall-wrap { width: min(var(--wrap), 100%); margin: clamp(72px, 9vw, 120px) auto 0; }
.wall-head { display: grid; gap: 14px; max-width: 760px; }
.wall-script { font-size: clamp(2.6rem, 4.6vw, 4rem); }
.wall-head p:not(.script) { color: var(--espresso-2); max-width: 62ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip { font-weight: 500; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 14px; border: 1px solid var(--espresso-line); border-radius: var(--radius); color: var(--espresso-2); transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out), background-color 200ms var(--ease-out); }
.chip:hover { border-color: var(--espresso); color: var(--espresso); }
.chip.is-on { background: var(--espresso); border-color: var(--espresso); color: var(--paper); }
.wall { position: relative; margin-top: 36px; padding-top: 18px; }
.rail { position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(to right, var(--gold-lo), var(--gold) 20%, var(--gold-hi) 50%, var(--gold) 80%, var(--gold-lo)); box-shadow: 0 1px 0 oklch(50% 0.075 80 / 0.5), 0 6px 14px -6px oklch(24% 0.02 60 / 0.35); }
.rail::before, .rail::after { content: ""; position: absolute; top: -3px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: inset 0 0 0 2px var(--gold-hi); }
.rail::before { left: 0; } .rail::after { right: 0; }
.bundles { display: flex; gap: clamp(10px, 1.4vw, 18px); overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; scrollbar-width: none; padding: 0 2px 10px; -webkit-overflow-scrolling: touch; }
.bundles::-webkit-scrollbar { display: none; }
.bundle { flex: 0 0 auto; display: grid; align-content: start; justify-items: center; scroll-snap-align: start; position: relative; padding-top: 12px; max-width: 120px; }
.bundle::before { /* the hook to the rail */ content: ""; position: absolute; top: -18px; left: 50%; width: 2px; height: 30px; background: var(--gold-lo); transform: translateX(-50%); }
.bundle img {
  height: clamp(250px, 27vw, 380px); width: auto; max-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent), linear-gradient(to bottom, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent), linear-gradient(to bottom, #000 88%, transparent);
  -webkit-mask-composite: source-in; mask-composite: intersect;
  transform-origin: top center;
  transition: transform 500ms var(--ease-out);
}
.bundle:hover img { transform: rotate(1.6deg); }
.b-code { margin-top: 10px; font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 10; font-size: 0.9rem; color: var(--espresso); white-space: nowrap; }
.b-name { font-weight: 500; font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--espresso-2); text-align: center; line-height: 1.35; margin-top: 3px; hyphens: manual; max-width: 92px; }
.wall[data-show="natur"] .bundle:not([data-fam="natur"]),
.wall[data-show="asch"] .bundle:not([data-fam="asch"]),
.wall[data-show="skandi"] .bundle:not([data-fam="skandi"]),
.wall[data-show="balayage"] .bundle:not([data-fam="balayage"]),
.wall[data-show="curly"] .bundle:not([data-fam="curly"]) { display: none; }
.wall.swap .bundle { animation: hang 700ms var(--ease-out) both; animation-delay: calc(var(--i, 0) * 45ms); }
@keyframes hang { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
.wall-fine { margin-top: 18px; font-size: 0.8rem; color: var(--espresso-2); }

/* ---------- care ---------- */
.care { padding: var(--section) var(--gutter); }
.care-grid { width: min(var(--wrap), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.care-lead { display: grid; gap: 40px; position: sticky; top: 96px; }
.care-photo { margin: 0; display: grid; gap: 14px; max-width: 420px; }
.care-photo img { width: 100%; aspect-ratio: 37 / 41; object-fit: cover; }
.care-photo figcaption { font-size: 0.9rem; color: var(--espresso-2); display: flex; align-items: baseline; gap: 12px; }
.care-photo .script { font-size: 1.9rem; }
.steps { counter-reset: step; display: grid; border-top: 1px solid var(--espresso-line); }
.steps > li { counter-increment: step; display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--espresso-line); }
.steps > li > * { grid-column: 2; }
.steps > li::before { grid-column: 1; grid-row: 1 / span 3; content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--gold-lo); padding-top: 2px; }
.steps h3 { font-family: var(--font-display); font-size: 1.3rem; font-variation-settings: "opsz" 11; color: var(--espresso); margin-bottom: 8px; }
.steps ul { display: grid; gap: 4px; color: var(--espresso-2); font-size: 0.95rem; }
.steps ul li { padding-left: 16px; position: relative; }
.steps ul li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 6px; height: 1px; background: var(--gold-lo); }
.care-bottom { width: min(var(--wrap), 100%); margin: clamp(56px, 7vw, 96px) auto 0; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.tips { display: grid; gap: 16px; padding: clamp(24px, 3vw, 36px); background: var(--paper); border: 1px solid var(--espresso-line); outline: 1px solid oklch(42% 0.022 60 / 0.12); outline-offset: 6px; }
.tips ul { display: grid; gap: 12px; font-size: 0.95rem; color: var(--espresso); }
.tips ul li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; }
.tips ul li::before { content: "✓"; color: var(--gold-lo); font-size: 0.85rem; padding-top: 2px; }
.routine { display: grid; gap: 18px; }
.seg { display: inline-flex; border: 1px solid var(--espresso-line); border-radius: var(--radius); overflow: hidden; align-self: start; }
.seg button { font-weight: 500; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 16px; color: var(--espresso-2); transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out); }
.seg button + button { border-left: 1px solid var(--espresso-line); }
.seg button:hover { color: var(--espresso); }
.seg button[aria-selected="true"] { background: var(--espresso); color: var(--paper); }
.routine-pan { display: grid; gap: 14px; }
.routine-pan[hidden] { display: none; }
.routine-line { font-size: 0.95rem; color: var(--espresso-2); max-width: 64ch; }
.routine-line strong { font-weight: 500; color: var(--espresso); }
.mini { display: grid; gap: 8px; counter-reset: mini; font-size: 0.93rem; color: var(--espresso-2); }
.mini li { counter-increment: mini; position: relative; padding-left: 28px; }
.mini li::before { content: counter(mini); position: absolute; left: 0; top: 0; font-family: var(--font-display); color: var(--gold-lo); }
.mini b { font-weight: 500; color: var(--espresso); }
.routine-foot { font-size: 0.88rem; color: var(--espresso-2); padding-top: 14px; border-top: 1px solid var(--espresso-line); max-width: 64ch; }
.routine-foot strong { font-weight: 500; color: var(--espresso); }

/* ---------- reviews ---------- */
.reviews { background: var(--ink); }
.reviews-head { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: end; }
.reviews-head .section-head, .reviews-head > div:last-child { display: grid; gap: 16px; }
.score { display: grid; gap: 6px; padding-right: 32px; border-right: 1px solid var(--gold-line-soft); }
.score-num { font-family: var(--font-display); font-weight: 500; font-size: 5.6rem; line-height: 0.9; color: var(--gold-hi); font-variation-settings: "opsz" 26; }
.stars-lg { font-size: 1.05rem; letter-spacing: 0.18em; }
.score-sub { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--cream-2); }
.score .text-link { justify-self: start; margin-top: 8px; }
.quotes { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(28px, 4vw, 56px); border-top: 1px solid var(--gold-line-soft); }
.quote { margin: 0; padding: 32px 0 30px; border-bottom: 1px solid var(--gold-line-soft); display: grid; gap: 18px; align-content: start; }
.quote p { font-size: 1rem; color: var(--cream); line-height: 1.75; }
.quote footer { display: flex; align-items: baseline; gap: 12px; }
.quote cite { font-style: normal; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--gold-hi); }
.quote footer span { font-weight: 500; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-lo); }

/* ---------- contact ---------- */
.contact { background: var(--ink-2); border-top: 1px solid var(--gold-line-soft); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-main { display: grid; gap: 22px; }
.path { margin-top: 26px; counter-reset: p; display: grid; gap: 0; border-top: 1px solid var(--gold-line-soft); max-width: 60ch; }
.path li { counter-increment: p; position: relative; padding: 16px 0 16px 52px; border-bottom: 1px solid var(--gold-line-soft); font-size: 0.95rem; color: var(--cream-2); }
.path li::before { content: counter(p, upper-roman); position: absolute; left: 0; top: 17px; font-family: var(--font-display); color: var(--gold); font-size: 1.05rem; }
.path li span { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--cream); margin-bottom: 2px; }
.contact-card { font-style: normal; padding: clamp(24px, 3.5vw, 44px); background: var(--ink); border: 1px solid var(--gold-line); outline: 1px solid var(--gold-line-soft); outline-offset: 6px; display: grid; gap: 18px; }
.cc-k { font-weight: 500; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.cc-addr { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; font-variation-settings: "opsz" 14; line-height: 1.25; color: var(--gold-hi); }
.hours { border-collapse: collapse; width: 100%; }
.hours th, .hours td { text-align: left; font-weight: 400; padding: 9px 0; border-bottom: 1px solid var(--gold-line-soft); font-size: 0.95rem; }
.hours th { color: var(--cream-2); width: 40%; }
.hours td { color: var(--cream); font-variant-numeric: tabular-nums; }
.cc-links { display: grid; gap: 8px; }
.cc-links a { display: inline-flex; align-items: center; gap: 12px; color: var(--cream); font-size: 0.95rem; transition: color 200ms var(--ease-out); }
.cc-links a::before { content: ""; width: 18px; height: 1px; background: var(--gold-lo); transition: width 260ms var(--ease-out), background-color 260ms var(--ease-out); }
.cc-links a:hover { color: var(--gold-hi); }
.cc-links a:hover::before { width: 30px; background: var(--gold); }
.cc-fine { font-size: 0.78rem; color: var(--cream-2); letter-spacing: 0.04em; }

/* ---------- footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--gold-line-soft); padding: 64px var(--gutter) 72px; }
.footer-inner { width: min(var(--wrap), 100%); margin: 0 auto; display: grid; justify-items: center; text-align: center; gap: 14px; }
.brand-foot .brand-mark { width: 52px; }
.brand-foot .brand-word > span { font-size: 1.15rem; }
.footer-script { font-size: 2.2rem; margin-top: 6px; }
.footer-meta { font-size: 0.85rem; color: var(--cream-2); letter-spacing: 0.04em; }
.footer-meta a:hover { color: var(--gold-hi); }
.footer-nav { display: flex; gap: 24px; font-weight: 500; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-2); }
.footer-nav a:hover { color: var(--gold-hi); }
.footer-copy { font-size: 0.74rem; color: var(--gold-lo); letter-spacing: 0.06em; margin-top: 10px; }

/* ---------- sticky mobile bar ---------- */
.sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in oklch, var(--ink) 88%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--gold-line-soft); transform: translateY(110%); transition: transform 400ms var(--ease-out); }
.sticky .btn { flex: 1; padding-inline: 1em; }
.sticky .btn-line { flex: 0 0 auto; }
.sticky.show { transform: none; }

/* ---------- scroll reveals ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 850ms var(--ease-out), transform 850ms var(--ease-out); transition-delay: calc(var(--i, 0) * 110ms); }
.rv.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .reviews-head { grid-template-columns: 200px 1fr; }
  .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .topnav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 64px; padding-bottom: 0; }
  .hero-crown { justify-self: center; width: min(78vw, 440px); margin-top: -12px; }
  .hero::before { width: 65%; opacity: 0.4; }
  .method { grid-template-columns: 140px 1fr; gap: 24px; }
  .ledger-grid, .reco, .calc, .hair-intro, .care-grid, .care-bottom, .contact-grid { grid-template-columns: 1fr; }
  .calc-controls { border-right: 0; border-bottom: 1px solid var(--gold-line-soft); }
  .care-lead { position: static; }
  .textures { max-width: 560px; }
  .reviews-head { grid-template-columns: 1fr; align-items: start; }
  .score { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--gold-line-soft); padding-bottom: 20px; }
}
@media (max-width: 720px) {
  body { font-size: 1rem; }
  .topbar { padding: 12px var(--gutter); }
  .topbar-cta { display: none; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 56px; gap: 18px; }
  .hero-title { font-size: clamp(2.7rem, 13.5vw, 3.6rem); }
  .hero-script { font-size: clamp(1.6rem, 6.8vw, 2rem); }
  .hero-eyebrow .rule { display: none; }
  .hero::before { width: 65%; opacity: 0.32; }
  .chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
  .chips::-webkit-scrollbar { display: none; }
  .chip { white-space: nowrap; }
  .band-list { justify-content: flex-start; gap: 8px 22px; font-size: 0.7rem; }
  .strip figure, .strip figure:nth-child(3n) { width: 72vw; }
  .strip-nav { display: none; }
  .method { grid-template-columns: 1fr; padding: 32px 0; }
  .schema { max-width: 140px; }
  .facts { grid-template-columns: 1fr; }
  .plate { padding: 22px 18px; outline-offset: 4px; }
  .ledger .price { font-size: 1.12rem; }
  .ledger td, .ledger th { padding-right: 8px; }
  .quotes { grid-template-columns: 1fr; }
  .quote { padding: 24px 0; }
  .sticky { display: flex; }
  .footer { padding-bottom: 130px; }
  .spec li { grid-template-columns: 1fr; gap: 4px; }
  .steps > li { grid-template-columns: 44px 1fr; gap: 14px; }
  .steps > li::before { font-size: 1.5rem; }
  .textures { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .bundle img { height: 240px; }
  .seg { display: grid; grid-template-columns: 1fr; width: 100%; }
  .seg button + button { border-left: 0; border-top: 1px solid var(--espresso-line); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-eyebrow, .ht-line, .hero-script, .hero-lead, .hero-cta, .hero-proof, .hero-crown, .rv { transform: none !important; transition: opacity 300ms linear !important; }
  .hero-eyebrow .rule { transform: none !important; }
  .wall.swap .bundle { animation: none; }
  .bundle:hover img, .strip figure:hover img { transform: none; }
  .sticky { transition: none; }
}

/* ---------- print: the price plates on light paper ---------- */
@media print {
  .topbar, .sticky, .strip, .strip-nav, .strip-hint, .hero::before, .hero-crown, .calc, .wall, .chips, .textures { display: none !important; }
  body, .hero, .results, .methods, .prices, .reviews, .contact, .footer, .plate, .contact-card { background: #fff !important; color: #111 !important; }
  .h2, .h3, .ledger td, .ledger caption, .lead, .facts dd, .quote p, .cc-addr, .hours td, .hero-title { color: #111 !important; }
  .ledger .price, .plate-kicker { color: #8a2f3c !important; }
  .plate { outline: none; border-color: #999; break-inside: avoid; }
  .rv { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.7em; }
}
