/* ============================================================
   schneller-bautrockner.de — Editorial Premium
   ============================================================ */

:root {
  /* Palette — warme Neutraltöne, Editorial */
  --paper:       #F5F1EA;   /* Warmweiß */
  --paper-2:     #EAE3D6;   /* Papyrus */
  --paper-3:     #D9CFBC;   /* Sand */
  --ink:         #1A1613;   /* Tinte */
  --ink-2:       #3B342E;   /* Sekundärtext */
  --ink-3:       #6B5F54;   /* Tertiärtext */
  --rule:        #C9BFAD;   /* Trennlinien */
  --accent:      #C8102E;   /* Signalrot */
  --accent-ink:  #FFFFFF;

  /* Typografie */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --gutter:     clamp(20px, 3vw, 48px);
  --max:        1640px;
  --radius-s:   4px;
  --radius-m:   10px;
}

[data-theme="dark"] {
  --paper:    #14110E;
  --paper-2:  #1D1914;
  --paper-3:  #2A241D;
  --ink:      #F5EFE4;
  --ink-2:    #C9BFAD;
  --ink-3:    #8C8276;
  --rule:     #2E2820;
}

/* Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background: var(--paper);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  transition: background .5s ease, color .5s ease;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* Selection */
::selection { background: var(--accent); color: #fff; }

/* Type scale ------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.eyebrow .dot { display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-right: 10px; vertical-align: middle; transform: translateY(-1px); }

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 260px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-style: normal;
}
.display-l {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.display-m {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.italic { font-style: italic; }

.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
  font-weight: 400;
}

.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Grid ------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--rule);
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  display: inline-grid;
  place-items: center;
  background: var(--paper);
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.brand-mark::before { width: 14px; height: 1px; }
.brand-mark::after { width: 1px; height: 14px; }
.brand-mark .tick {
  position: absolute;
  inset: 4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 3s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.6); opacity: 0; }
  50% { transform: scale(1); opacity: 1; }
}
.brand-name { font-weight: 400; }
.brand-name em { font-style: italic; color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a {
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width .3s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.cta-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .3s ease, background .3s ease;
}
.cta-btn:hover { transform: translateY(-2px); background: var(--accent); }
.cta-btn .arrow { transition: transform .3s ease; }
.cta-btn:hover .arrow { transform: translateX(4px); }

.cta-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.cta-btn.ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.cta-btn.accent {
  background: var(--accent);
  color: #fff;
}
.cta-btn.accent:hover { background: var(--ink); }

@media (max-width: 900px) {
  .nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--paper-2) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, var(--paper-3) 0%, transparent 40%),
    var(--paper);
  opacity: 1;
  z-index: 0;
}
.hero-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,0,0,0.015) 2px, rgba(0,0,0,0.015) 3px);
  pointer-events: none;
}

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
}
.hero-top .meta {
  display: grid;
  gap: 8px;
}
.hero-top .meta-item { display: flex; gap: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.hero-top .meta-item strong { color: var(--ink); font-weight: 500; letter-spacing: 0.04em; }

.hero-headline {
  position: relative;
  z-index: 2;
}
.hero-headline h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.035em;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line .inner {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-headline .line:nth-child(1) .inner { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) .inner { animation-delay: 0.30s; }
.hero-headline .line:nth-child(3) .inner { animation-delay: 0.45s; }
.hero-headline em { color: var(--accent); font-style: italic; }

@keyframes reveal {
  to { transform: translateY(0); }
}

.hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-bottom .lede { max-width: 36ch; }
.hero-bottom .stat {
  text-align: right;
}
.hero-bottom .stat .num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-bottom .stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
  z-index: 2;
}
.hero-scroll-hint .line-v {
  display: inline-block;
  width: 1px;
  height: 40px;
  background: var(--ink-3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-hint .line-v::after {
  content: "";
  position: absolute;
  top: -40px; left: 0;
  width: 1px; height: 40px;
  background: var(--accent);
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0% { top: -40px; }
  100% { top: 40px; }
}
@keyframes fade-in {
  to { opacity: 1; }
}

/* Parallax headline offset */
.hero-headline { will-change: transform; }

/* Hero floating device illustration */
.hero-device {
  position: absolute;
  right: var(--gutter);
  top: 40%;
  transform: translateY(-50%);
  width: clamp(200px, 22vw, 360px);
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .hero-device { mix-blend-mode: screen; opacity: 0.4; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.ticker {
  border-block: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
  background: var(--paper);
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-style: italic;
  color: var(--ink);
}
.ticker-track .sep {
  color: var(--accent);
  font-style: normal;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
section { position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding: 120px var(--gutter) 60px;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.section-head .index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-head .index strong {
  color: var(--accent);
  font-weight: 500;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.section-head h2 em { color: var(--accent); font-style: italic; }
.section-head .sub {
  grid-column: 2;
  max-width: 56ch;
  color: var(--ink-2);
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; padding-top: 80px; }
  .section-head .sub { grid-column: 1; }
}

/* ============================================================
   USP / MANIFESTO — pinned scrolling text
   ============================================================ */
.manifesto {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--rule);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.manifesto-copy {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.manifesto-copy .word {
  color: var(--paper-3);
  transition: color .4s ease;
}
.manifesto-copy .word.lit {
  color: var(--ink);
}
.manifesto-copy .word.accent {
  color: var(--accent);
  font-style: italic;
}
.manifesto-foot {
  position: absolute;
  bottom: 60px;
  right: var(--gutter);
  max-width: 280px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
}

/* ============================================================
   USPs — four-up grid
   ============================================================ */
.usps {
  padding: 0 var(--gutter) 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
.usp {
  background: var(--paper);
  padding: 48px 32px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
}
.usp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.usp:hover::before { transform: translateY(0); }
.usp:hover .usp-title,
.usp:hover .usp-body,
.usp:hover .usp-num,
.usp:hover .usp-label { color: #fff; }
.usp > * { position: relative; z-index: 1; }
.usp-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  transition: color .4s ease;
}
.usp-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .4s ease;
}
.usp-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 16px 0 12px;
  transition: color .4s ease;
}
.usp-title em { color: var(--accent); font-style: italic; transition: color .4s ease; }
.usp:hover .usp-title em { color: #fff; }
.usp-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 30ch;
  transition: color .4s ease;
}
@media (max-width: 900px) {
  .usps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .usps { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS — horizontal scroll (pinned)
   ============================================================ */
.products {
  position: relative;
}
.products-pin {
  height: 500vh; /* length of scroll */
  position: relative;
}
.products-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.products-track {
  display: flex;
  gap: 40px;
  padding: 0 var(--gutter);
  will-change: transform;
  align-items: stretch;
}
.products-intro {
  flex: 0 0 auto;
  width: 520px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}
.products-intro .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.products-intro h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.products-intro h2 em { color: var(--accent); font-style: italic; }
.products-intro p {
  color: var(--ink-2);
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.55;
}
.products-intro .counter {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}

.product-card {
  flex: 0 0 auto;
  width: 460px;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-rows: 320px auto;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s ease, background .3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--ink);
}
.product-card .img-box {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.product-card .img-box::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 8px, rgba(0,0,0,0.03) 8px, rgba(0,0,0,0.03) 9px);
}
.product-card .img-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}
.product-card .img-num {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 112px;
  line-height: 0.9;
  color: var(--accent);
  font-style: italic;
  opacity: 0.9;
}
.product-card .body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-card .category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.product-card .name {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 400;
}
.product-card .model {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.product-card .specs {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.product-card .specs li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.product-card .specs li span:first-child { color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.product-card .footer-row {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-card .price {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-card .price .cur { font-size: 22px; vertical-align: super; margin-right: 2px; }
.product-card .price-alt {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.product-card .price-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}
.product-card .book-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: background .3s, color .3s;
}
.product-card .book-btn:hover { background: var(--ink); color: var(--paper); }

.products-end {
  flex: 0 0 auto;
  width: 420px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}
.products-end h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 16px;
}
.products-end h3 em { color: var(--accent); font-style: italic; }
.products-end p { max-width: 28ch; margin: 0 auto 28px; color: color-mix(in oklab, var(--paper) 80%, transparent); font-size: 15px; line-height: 1.6; }

/* Price toggle */
.price-toggle {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-3);
  transition: background .3s, color .3s;
}
.price-toggle button.active { background: var(--ink); color: var(--paper); }

[data-price-mode="brutto"] .price-brutto { display: inline; }
[data-price-mode="brutto"] .price-netto { display: none; }
[data-price-mode="netto"] .price-netto { display: inline; }
[data-price-mode="netto"] .price-brutto { display: none; }

/* ============================================================
   CALENDAR / BOOKING
   ============================================================ */
.booking {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
  transition: background .5s ease;
}
[data-theme="dark"] .booking { background: var(--paper-2); }
.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1000px) {
  .booking-grid { grid-template-columns: 1fr; }
}

.booking-left h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 80px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.booking-left h2 em { color: var(--accent); font-style: italic; }

/* Product selector strip */
.product-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.product-chip {
  padding: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all .3s;
  background: var(--paper);
}
.product-chip:hover { border-color: var(--ink); }
.product-chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Calendar */
.calendar {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 24px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
}
.cal-nav {
  display: flex;
  gap: 4px;
}
.cal-nav button {
  width: 34px; height: 34px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s;
}
.cal-nav button:hover { background: var(--ink); color: var(--paper); }

.cal-weekdays, .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-weekdays {
  margin-bottom: 6px;
}
.cal-weekdays span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all .2s;
  background: var(--paper);
}
.cal-day:hover { border-color: var(--ink); }
.cal-day.empty { cursor: default; background: transparent; }
.cal-day.past { color: var(--ink-3); opacity: 0.35; cursor: not-allowed; }
.cal-day.past:hover { border-color: transparent; }
.cal-day.unavail { color: var(--ink-3); opacity: 0.45; cursor: not-allowed; text-decoration: line-through; }
.cal-day.unavail:hover { border-color: transparent; }
.cal-day.today { font-weight: 600; color: var(--accent); }
.cal-day.start, .cal-day.end {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cal-day.in-range {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
/* Booking summary */
.booking-right {
  position: sticky;
  top: 100px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px;
  display: grid;
  gap: 20px;
}
.booking-right h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.summary-row .lbl { color: var(--ink-3); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.summary-row .val { font-family: var(--font-mono); font-size: 13px; color: var(--ink); text-align: right; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}
.summary-total .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.summary-total .val {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.summary-total .val .cur { font-size: 22px; vertical-align: super; margin-right: 2px; }
.summary-total .alt {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
}

.min-days {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  background: color-mix(in oklab, var(--accent) 8%, transparent);
  padding: 10px 14px;
  border-left: 2px solid var(--accent);
}
.min-days strong { color: var(--accent); font-weight: 500; }

.legend {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.legend span { display: flex; align-items: center; gap: 6px; }
.legend span::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--swatch);
  border: 1px solid var(--rule);
}
.legend .lg-start { --swatch: var(--ink); }
.legend .lg-range { --swatch: var(--accent); }
.legend .lg-unavail { --swatch: var(--paper-3); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--rule);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 40px; }
}
.checkout-steps { display: grid; gap: 48px; }
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: start;
}
.step-num {
  width: 40px; height: 40px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.step h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.step h3 em { color: var(--accent); font-style: italic; }
.step .step-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.step .fields {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.step .fields .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.request-card {
  border: 1px solid var(--rule);
  padding: 24px;
  background: var(--paper);
  display: grid;
  gap: 16px;
}
.request-status {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-2);
  border-left: 2px solid var(--rule);
  padding: 12px 14px;
  background: color-mix(in oklab, var(--paper-2) 55%, transparent);
}
.request-status.success {
  border-left-color: #2B6E4F;
  color: var(--ink);
  background: color-mix(in oklab, #2B6E4F 10%, transparent);
}
.request-status.error {
  border-left-color: var(--accent);
  color: var(--ink);
  background: color-mix(in oklab, var(--accent) 9%, transparent);
}
.request-status.loading {
  border-left-color: var(--ink);
  color: var(--ink);
}
.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-3);
}
.consent-row input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.delivery-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.delivery-option {
  border: 1px solid var(--rule);
  padding: 24px;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  display: grid;
  gap: 10px;
  text-align: left;
  background: transparent;
}
.delivery-option:hover { border-color: var(--ink); }
.delivery-option.active { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 5%, transparent); }
.delivery-option .d-title { font-family: var(--font-display); font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; }
.delivery-option .d-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; }
.delivery-option .d-cost { font-family: var(--font-mono); font-size: 13px; color: var(--ink); margin-top: 8px; }

@media (max-width: 640px) {
  .step { grid-template-columns: 1fr; gap: 14px; }
  .step-num { width: 34px; height: 34px; font-size: 12px; }
  .step .fields, .delivery-choice { grid-template-columns: 1fr; }
  .legend { flex-wrap: wrap; gap: 10px 16px; }
  .order-total .val, .summary-total .val { font-size: 38px; }
}

/* Order summary aside */
.order-aside {
  position: sticky;
  top: 100px;
  background: var(--ink);
  color: var(--paper);
  padding: 32px;
  border-radius: 0;
}
.order-aside h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 20%, transparent);
}
.order-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 10%, transparent);
}
.order-line .lbl { color: color-mix(in oklab, var(--paper) 60%, transparent); }
.order-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 30%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.order-total .val {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.order-total .val .cur { font-size: 20px; vertical-align: super; }
.request-btn {
  margin-top: 24px;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .3s, transform .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.request-btn:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.request-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.request-btn:disabled:hover {
  background: var(--accent);
  color: #fff;
}
.trust-row {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  justify-content: center;
}

/* ============================================================
   COVERAGE MAP
   ============================================================ */
.coverage {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .coverage { grid-template-columns: 1fr; } }
.coverage h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.coverage h2 em { color: var(--accent); font-style: italic; }
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.coverage-stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.coverage-stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

.map-frame {
  aspect-ratio: 1;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.map-frame svg { width: 100%; height: 100%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; } }
.faq h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.faq h2 em { color: var(--accent); font-style: italic; }
.faq-list { display: grid; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin .4s ease;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 68ch;
}
.faq-item.open .faq-a {
  max-height: 500px;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--gutter) 40px;
  position: relative;
  overflow: hidden;
}
.footer-mega {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.035em;
  margin: 0 0 80px;
}
.footer-mega em { color: var(--accent); font-style: italic; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 20%, transparent);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-col h4 {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  color: color-mix(in oklab, var(--paper) 85%, transparent);
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-legal {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 15%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: color-mix(in oklab, var(--paper) 45%, transparent);
}

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 20px;
  width: 280px;
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.tweaks.open { display: block; }
.tweaks h5 {
  margin: 0 0 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h5 .close { cursor: pointer; color: var(--ink-3); }
.tweak-row { display: grid; gap: 6px; margin-bottom: 14px; }
.tweak-row > span { color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.tweak-swatches { display: flex; gap: 6px; }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.tweak-swatch:hover { transform: scale(1.1); }
.tweak-swatch.active { border-color: var(--ink); border-width: 2px; }
.tweak-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--rule);
}
.tweak-toggle:last-child { border-bottom: 1px solid var(--rule); }
.toggle {
  width: 36px; height: 20px;
  background: var(--paper-3);
  border-radius: 999px;
  position: relative;
  transition: background .3s;
  cursor: pointer;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: var(--paper);
  border-radius: 50%;
  transition: transform .3s;
}
.toggle.on { background: var(--accent); }
.toggle.on::after { transform: translateX(16px); }

.tweaks-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.tweaks-launcher.visible { display: flex; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(0.22, 1, 0.36, 1), transform .9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.reveal-fade.in { opacity: 1; }

.no-anim .reveal-up, .no-anim .reveal-fade { opacity: 1; transform: none; transition: none; }
.no-anim .hero-headline .line .inner { animation: none; transform: none; }
.no-anim .ticker-track { animation: none; }
.no-anim .brand-mark .tick { animation: none; }

/* Custom cursor dot */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, width .3s, height .3s;
  display: none;
}
@media (hover: hover) {
  .cursor-dot { display: block; }
}
