:root {
  --obsidian: #000000;
  --glacier: #e4e8ec;
  --lac: #16344d;
  --mist: #9aa3ac;
  --ink: #000000;
  --display: "EB Garamond", Georgia, "Times New Roman", serif;
  --text: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: 22px;
  --nav-h: 64px;
  color-scheme: dark;
}
@media (min-width: 900px) { :root { --gutter: 6vw; --nav-h: 80px; } }

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--obsidian); -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  background: var(--obsidian);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; margin: 0; letter-spacing: -0.012em; }
p { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid #7fa6c9; outline-offset: 4px; }
::selection { background: var(--lac); color: #fff; }

/* Bühne und Overlays */
.stage { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0; }
.grain { position: fixed; inset: -20%; z-index: 40; pointer-events: none; opacity: 0.09; mix-blend-mode: soft-light; background-size: 160px 160px; animation: grain 0.9s steps(4) infinite; }
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(-3%, 2%); } 50% { transform: translate(2%, -3%); } 75% { transform: translate(-1%, -1%); } 100% { transform: translate(3%, 3%); } }
.progress { position: fixed; top: 0; left: 0; z-index: 60; width: 100%; height: 2px; background: #7fa6c9; transform-origin: 0 50%; transform: scaleX(0); }
.cursor { display: none; }
@media (pointer: fine) {
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 90; width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 1px solid rgba(255,255,255,0.8); border-radius: 50%; pointer-events: none; mix-blend-mode: difference; transition: transform 0.25s ease, opacity 0.3s ease; opacity: 0; }
  .cursor i { position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; margin: -2px 0 0 -2px; background: #fff; border-radius: 50%; }
  .cursor.is-on { opacity: 1; }
  .cursor.is-link { transform: scale(1.9); }
}

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 100; background: var(--obsidian); display: flex; flex-direction: column; justify-content: flex-end; padding: 0 var(--gutter) 34px; }
.preloader__mark { font-family: var(--display); font-weight: 600; letter-spacing: 0.1em; font-size: 15px; color: var(--mist); position: absolute; top: 22px; left: var(--gutter); }
.preloader__num { font-family: var(--display); font-weight: 500; font-size: clamp(6rem, 24vw, 16rem); line-height: 0.85; letter-spacing: -0.03em; font-variant-numeric: lining-nums tabular-nums; }
.preloader__bar { height: 1px; background: rgba(255,255,255,0.14); margin-top: 22px; }
.preloader__bar i { display: block; height: 100%; background: #fff; transform-origin: 0 50%; transform: scaleX(0); }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 70; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 var(--gutter); mix-blend-mode: difference; }
.nav__brand { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: 0.12em; text-decoration: none; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__menu { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; }
.nav__menu span { display: block; width: 24px; height: 1.5px; background: #fff; transition: transform 0.35s ease; }
body.menu-open .nav__menu span:first-child { transform: translateY(3.75px) rotate(45deg); }
body.menu-open .nav__menu span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.menu { position: fixed; inset: 0; z-index: 65; background: var(--obsidian); display: flex; flex-direction: column; justify-content: flex-end; padding: 0 var(--gutter) 40px; clip-path: inset(0 0 100% 0); transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.18, 1); }
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__list { list-style: none; margin: 0 0 26px; padding: 0; }
.menu__list a { display: block; font-family: var(--display); font-size: clamp(2.6rem, 11vw, 6rem); line-height: 1.05; text-decoration: none; padding: 4px 0; transform: translateY(30px); opacity: 0; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease; }
.menu.is-open .menu__list a { transform: none; opacity: 1; }
.menu.is-open .menu__list li:nth-child(1) a { transition-delay: 0.18s; }
.menu.is-open .menu__list li:nth-child(2) a { transition-delay: 0.24s; }
.menu.is-open .menu__list li:nth-child(3) a { transition-delay: 0.30s; }
.menu.is-open .menu__list li:nth-child(4) a { transition-delay: 0.36s; }
.menu.is-open .menu__list li:nth-child(5) a { transition-delay: 0.42s; }
.menu__foot { color: var(--mist); font-size: 14px; max-width: 34ch; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 22px; border-radius: 999px; font-size: 14px; font-weight: 500; letter-spacing: 0.01em; text-decoration: none; white-space: nowrap; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease, color 0.3s ease; will-change: transform; }
.btn--solid { background: #fff; color: #000; }
.btn--solid:hover { background: var(--glacier); }
.btn--ghost { border: 1px solid rgba(255,255,255,0.7); min-height: 38px; padding: 0 16px; font-size: 13px; }
.link { font-size: 14px; text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,0.35); transition: border-color 0.3s ease; }
.link:hover { border-color: #fff; }

/* Sektionen */
main > section, .foot { position: relative; z-index: 1; }
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 var(--gutter) 40px; }
.hero__stage { position: absolute; left: 0; right: 0; top: 4svh; bottom: 40svh; }
.hero__text { position: relative; max-width: 42rem; }
.hero__title { font-size: clamp(3.2rem, 13.5vw, 8.6rem); line-height: 0.95; margin: 0 0 20px; }
.hero__title .line { overflow: hidden; }
.hero__lead { color: var(--mist); font-size: 15px; max-width: 34ch; margin-bottom: 26px; }
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__hint { position: absolute; right: var(--gutter); bottom: 44px; width: 1px; height: 54px; background: rgba(255,255,255,0.16); overflow: hidden; }
.hero__hint span { display: block; width: 100%; height: 40%; background: #fff; animation: hint 2.2s cubic-bezier(0.7, 0, 0.3, 1) infinite; }
@keyframes hint { 0% { transform: translateY(-100%); } 60% { transform: translateY(260%); } 100% { transform: translateY(260%); } }

.manifesto { padding: 24svh var(--gutter) 22svh; }
.manifesto__text { font-family: var(--display); font-weight: 500; font-size: clamp(1.75rem, 6.4vw, 3.9rem); line-height: 1.18; max-width: 24ch; letter-spacing: -0.012em; }

.explode { height: 100svh; overflow: hidden; }
.explode__stage { position: absolute; left: 0; right: 0; top: 14svh; bottom: 34svh; }
.explode__svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; }
.explode__svg line { stroke: rgba(255,255,255,0.55); stroke-width: 1; }
.explode__svg circle { fill: #fff; }
.explode.has-active .explode__svg { opacity: 1; }
.explode__labels { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 74px; min-height: 120px; }
.explode__label { position: absolute; left: 0; right: 0; bottom: 0; opacity: 0; transform: translateY(12px); transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1); pointer-events: none; }
.explode__label.is-active { opacity: 1; transform: none; }
.explode__label h3 { font-size: clamp(1.9rem, 7.4vw, 3.2rem); line-height: 1.02; margin-bottom: 10px; }
.explode__label p { color: var(--mist); font-size: 15px; max-width: 34ch; }
.explode__ticks { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 44px; display: flex; gap: 6px; }
.explode__ticks i { flex: 1; height: 2px; background: rgba(255,255,255,0.16); transition: background-color 0.3s ease; }
.explode__ticks i.is-on { background: #fff; }
.explode__hint { position: absolute; left: var(--gutter); bottom: 18px; font-size: 12px; color: var(--mist); transition: opacity 0.4s ease; }
.explode.has-active .explode__hint, .explode.is-done .explode__hint { opacity: 0; }

.summit { height: 150svh; }
.summit__media { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.summit__video, .craft__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.summit__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.72) 100%); }
.summit__copy { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 44px; max-width: 40rem; }
.summit__num { font-family: var(--display); font-weight: 500; font-size: clamp(4.4rem, 22vw, 13rem); line-height: 0.9; letter-spacing: -0.03em; font-variant-numeric: lining-nums tabular-nums; margin-bottom: 16px; }
.summit__unit { font-size: 0.4em; margin-left: 0.15em; font-weight: 400; }
.summit__copy h2 { font-size: clamp(1.7rem, 6.6vw, 3.4rem); margin-bottom: 12px; }
.summit__copy p { color: rgba(255,255,255,0.78); font-size: 15px; max-width: 38ch; }

/* Handwerk, kühle helle Sektion */
.craft { background: var(--glacier); color: var(--ink); }
.craft__media { position: relative; height: 82svh; overflow: hidden; color: #fff; }
.craft__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%); }
.craft__title { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 36px; font-size: clamp(2.4rem, 10vw, 6rem); line-height: 0.98; max-width: 12ch; }
.craft__body { padding: 44px 0 70px; }
.craft__lead { padding: 0 var(--gutter); font-size: 17px; line-height: 1.5; max-width: 40ch; margin-bottom: 36px; color: #1c2126; }
.strip { display: flex; gap: 12px; padding: 0 var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.strip::-webkit-scrollbar { display: none; }
.strip figure { flex: 0 0 min(78vw, 520px); margin: 0; scroll-snap-align: start; }
.strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #cfd5db; }
.strip figcaption { font-size: 13px; color: #4a535c; margin-top: 10px; }
.strip__bar { margin: 22px var(--gutter) 0; height: 1px; background: rgba(0,0,0,0.12); }
.strip__bar i { display: block; height: 100%; width: 100%; background: var(--ink); transform-origin: 0 50%; transform: scaleX(0.16); }
.craft__quote { font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(1.7rem, 6.6vw, 3.6rem); line-height: 1.15; margin: 64px var(--gutter) 60px; max-width: 22ch; }
.craft__atelier { padding: 0 var(--gutter); }
.craft__atelier img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #cfd5db; }
.craft__atelier p { font-size: 13px; color: #4a535c; margin-top: 12px; max-width: 40ch; }

/* Datenblatt */
.specs { background: var(--glacier); color: var(--ink); padding: 40px var(--gutter) 90px; border-top: 1px solid rgba(0,0,0,0.12); }
.specs__title { font-size: clamp(2.4rem, 10vw, 6rem); line-height: 1; margin-bottom: 34px; }
.instruments { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 18px; margin-bottom: 44px; }
.instr { color: var(--ink); }
.instr svg { width: 100%; height: auto; display: block; margin-bottom: 10px; }
.instr--balance svg, .instr--reserve svg { max-width: 150px; }
.instr--accuracy { grid-column: 1 / -1; }
.instr--accuracy svg { max-width: 420px; }
.instr p { font-size: 13.5px; color: #3d454d; max-width: 26ch; }
.instr p strong { font-family: var(--display); font-weight: 600; font-size: 1.35em; color: var(--ink); font-variant-numeric: lining-nums; }
.instr__wheel { transform-box: fill-box; transform-origin: 50% 50%; }
.instr__spiral { transform-box: fill-box; transform-origin: 50% 50%; }
.instr__hours { font-family: var(--display); font-size: 30px; fill: currentColor; font-variant-numeric: lining-nums tabular-nums; }
.instr__hl { font-family: var(--text); font-size: 9px; fill: #5a636c; letter-spacing: 0.02em; }
.instr--accuracy text { font-family: var(--text); font-size: 10px; fill: #5a636c; }
.sheet { margin: 0; display: grid; grid-template-columns: 1fr; }
.sheet > div { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(0,0,0,0.14); }
.sheet > div:last-child { border-bottom: 1px solid rgba(0,0,0,0.14); }
.sheet dt { font-size: 13px; color: #5a636c; padding-top: 4px; }
.sheet dd { margin: 0; font-family: var(--display); font-size: 21px; line-height: 1.2; font-variant-numeric: lining-nums; }

/* Kollektion */
.collection { padding-bottom: 60px; }
.collection__stage { height: 92svh; }
.collection__body { padding: 0 var(--gutter); }
.collection__title { font-size: clamp(2.4rem, 10vw, 6rem); line-height: 1; margin-bottom: 28px; }
.refs { display: grid; grid-template-columns: 1fr; gap: 2px; margin-bottom: 30px; }
.ref { display: grid; grid-template-columns: 34px 1fr auto; grid-template-rows: auto auto; column-gap: 16px; align-items: center; text-align: left; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.ref:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.ref__swatch { grid-row: 1 / 3; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ref__swatch--lac { background: radial-gradient(circle at 35% 30%, #f4f6f8, #8a9096 55%, #3a4046); }
.ref__swatch--aurore { background: radial-gradient(circle at 35% 30%, #fbe3cf, #d9a67e 55%, #7a4d35); }
.ref__swatch--nuit { background: radial-gradient(circle at 35% 30%, #5a5a60, #1b1b1e 55%, #000); }
.ref__name { font-family: var(--display); font-size: 27px; line-height: 1; }
.ref__desc { grid-column: 2; grid-row: 2; font-size: 13px; color: var(--mist); margin-top: 6px; }
.ref__price { grid-column: 3; grid-row: 1 / 3; font-size: 14px; color: var(--mist); font-variant-numeric: lining-nums tabular-nums; transition: color 0.3s ease; }
.ref.is-active .ref__price { color: #fff; }
.ref.is-active .ref__swatch { transform: scale(1.2); }
.ref.is-active .ref__name { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.collection__actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.collection__note { color: var(--mist); font-size: 13.5px; max-width: 36ch; }

/* Presse */
.press { padding: 30px 0 70px; }
.press__intro { padding: 0 var(--gutter); font-size: 13px; color: var(--mist); margin-bottom: 20px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 56px; width: max-content; padding-right: 56px; animation: marquee 32s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.wm { color: rgba(255,255,255,0.72); white-space: nowrap; font-size: 22px; }
.wm--hodinkee { font-family: var(--text); font-weight: 700; letter-spacing: 0.22em; font-size: 17px; }
.wm--monocle { font-family: var(--display); font-weight: 600; font-size: 27px; }
.wm--forbes { font-family: var(--display); font-weight: 700; letter-spacing: 0.06em; font-size: 26px; }
.wm--wallpaper { font-family: var(--text); font-weight: 500; font-size: 22px; }
.wm--robb { font-family: var(--display); font-weight: 500; letter-spacing: 0.04em; }
.wm--ft { font-family: var(--display); font-weight: 400; font-size: 23px; }
.wm--gq { font-family: var(--text); font-weight: 800; font-size: 26px; }
.wm--revolution { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 25px; }

/* Fuss */
.foot { padding: 96px 0 34px; overflow: hidden; }
.foot__mark { font-family: var(--display); font-weight: 600; font-size: clamp(4rem, 21.5vw, 22rem); line-height: 0.85; letter-spacing: 0.02em; padding: 0 var(--gutter); clip-path: inset(0 100% 0 0); white-space: nowrap; }
.foot__grid { display: grid; grid-template-columns: 1fr; gap: 44px; padding: 44px var(--gutter) 0; }
.foot h2 { font-size: 26px; margin-bottom: 18px; }
.boutiques { list-style: none; margin: 0; padding: 0; }
.boutiques li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.14); font-size: 14px; }
.boutiques li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.boutiques time { font-family: var(--display); font-size: 20px; font-variant-numeric: lining-nums tabular-nums; }
.foot__note { color: var(--mist); font-size: 13px; margin-top: 16px; max-width: 40ch; }
.newsletter label { display: block; font-size: 13px; color: var(--mist); margin-bottom: 10px; }
.newsletter__row { display: flex; flex-direction: column; gap: 12px; }
.newsletter input { width: 100%; min-height: 46px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.28); background: transparent; color: #fff; font: inherit; font-size: 15px; }
.newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__msg { margin-top: 12px; font-size: 14px; color: var(--mist); min-height: 1.5em; }
.foot__small { padding: 44px var(--gutter) 0; color: var(--mist); font-size: 12px; line-height: 1.6; max-width: 60ch; }
.foot__small p + p { margin-top: 8px; }

/* Desktop */
@media (min-width: 900px) {
  .hero { padding-bottom: 8vh; }
  .hero__stage { top: 0; bottom: 0; left: 40%; right: 0; }
  .hero__text { max-width: 46rem; }
  .hero__title { font-size: clamp(4.6rem, 8.4vw, 9.6rem); }
  .hero__lead { font-size: 17px; }
  .manifesto { padding: 26vh var(--gutter); }
  .manifesto__text { max-width: 26ch; }
  .explode__stage { top: 0; bottom: 0; left: 0; right: 36%; }
  .explode__labels { left: auto; right: var(--gutter); bottom: auto; top: 50%; width: 30vw; transform: translateY(-50%); }
  .explode__label h3 { font-size: clamp(2rem, 3vw, 3rem); }
  .explode__ticks { right: auto; width: 24vw; }
  .summit__copy { bottom: 8vh; }
  .craft__media { height: 92vh; }
  .craft__body { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--gutter); padding: 80px 0 100px; }
  .craft__lead { font-size: 19px; grid-column: 1; }
  .strip { grid-column: 1 / -1; scroll-snap-type: none; overflow: visible; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 var(--gutter); }
  .strip figure { flex: none; }
  .strip__bar { display: none; }
  .craft__quote { grid-column: 1 / -1; margin: 100px var(--gutter) 80px; max-width: 24ch; }
  .craft__atelier { grid-column: 2; }
  .specs { padding: 90px var(--gutter) 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--gutter); }
  .specs__title { grid-column: 1 / -1; }
  .instruments { grid-column: 1; grid-template-columns: 1fr 1fr; align-content: start; }
  .sheet { grid-column: 2; }
  .collection { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 6vh 0 12vh; }
  .collection__stage { height: 88vh; }
  .collection__body { padding-right: var(--gutter); }
  .press { padding: 60px 0 110px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: var(--gutter); padding-top: 70px; }
  .newsletter__row { flex-direction: row; }
  .newsletter input { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .hero__hint span, .marquee__track { animation: none; }
  .menu, .menu__list a, .explode__label, .btn { transition: none; }
}
