
:root {
  --bg: #f4efe8;
  --bg-2: #ebe1d4;
  --paper: rgba(255, 250, 244, 0.82);
  --paper-solid: #f6f1ea;
  --paper-2: rgba(241, 234, 226, 0.94);
  --text: #211712;
  --muted: rgba(33, 23, 18, 0.72);
  --line: rgba(57, 37, 24, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --light: rgba(255, 251, 245, 0.88);
  --light-2: rgba(255, 248, 240, 0.72);
  --accent: #9a6b42;
  --accent-deep: #633f29;
  --shadow: 0 28px 90px rgba(31, 19, 11, 0.18);
  --shadow-strong: 0 40px 140px rgba(10, 8, 7, 0.42);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --shell: min(1520px, calc(100vw - 64px));
  --section-space: clamp(92px, 10vw, 156px);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --finish-accent: #d9c7ac;
  --finish-glow: rgba(217, 199, 172, 0.28);
  --header-text: #f7f1ea;
  --header-line: rgba(255,255,255,0.16);
  --header-panel: rgba(255,255,255,0.08);
}
body[data-tone="dark"] {
  --bg: #0f0c0a;
  --bg-2: #15100d;
  --paper: rgba(33, 24, 19, 0.76);
  --paper-solid: #17110e;
  --paper-2: rgba(28, 21, 17, 0.92);
  --text: #f2eadf;
  --muted: rgba(242, 234, 223, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --light: rgba(32, 24, 19, 0.82);
  --light-2: rgba(18, 14, 12, 0.72);
  --accent: #c59869;
  --accent-deep: #6f4a31;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 40px 140px rgba(0, 0, 0, 0.58);
}
body[data-tone="bright"] {
  --header-text: var(--text);
  --header-line: rgba(63, 40, 26, 0.12);
  --header-panel: rgba(255,255,255,0.58);
}
body[data-finish="ivory"] { --finish-accent: #d8c4a5; --finish-glow: rgba(216, 196, 165, 0.28); }
body[data-finish="noir"] { --finish-accent: #25211e; --finish-glow: rgba(22, 19, 16, 0.28); }
body[data-finish="wine"] { --finish-accent: #6d3042; --finish-glow: rgba(109, 48, 66, 0.24); }
body[data-finish="olive"] { --finish-accent: #6f7754; --finish-glow: rgba(111, 119, 84, 0.24); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Avenir LT Std", "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--finish-accent) 10%, transparent), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(99, 63, 41, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 38%, var(--bg) 100%);
  overflow-x: hidden;
  transition: background 0.45s ease, color 0.35s ease;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(680px circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,0.18), transparent 46%),
    radial-gradient(420px circle at calc(var(--pointer-x) + 5%) calc(var(--pointer-y) - 5%), var(--finish-glow), transparent 48%);
  z-index: 0;
  pointer-events: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
.page-grain, .page-lines, .cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.page-grain {
  z-index: 1;
  opacity: 0.05;
  background-image:
    linear-gradient(transparent 0, rgba(34, 24, 18, 0.38) 50%, transparent 100%),
    linear-gradient(90deg, transparent 0, rgba(34, 24, 18, 0.22) 50%, transparent 100%);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: multiply;
}
body[data-tone="dark"] .page-grain { mix-blend-mode: soft-light; opacity: 0.08; }
.page-lines {
  z-index: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(70, 45, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 45, 32, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}
body[data-tone="dark"] .page-lines { opacity: 0.06; }
.cursor-glow { z-index: 1; }
main, .site-footer, .site-header { position: relative; z-index: 2; }
.shell { width: var(--shell); margin: 0 auto; }
.section { padding: var(--section-space) 0; position: relative; }
.fullscreen { min-height: 100vh; display: flex; align-items: center; }
.section--dark { color: #f7f0e8; }
.section--dark .eyebrow,
.section--dark p { color: rgba(247, 240, 232, 0.84); }

.section-title {
  margin: 0;
  font-family: "Geoform", "Chillax", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 10.5ch;
}
.section-title--light { color: #fff7ee; }
.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  font-family: "Geoform", "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: color-mix(in srgb, var(--text) 58%, transparent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: min(1600px, calc(100vw - 36px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--header-line);
  color: var(--header-text);
  z-index: 30;
  transition: transform 0.4s ease, color 0.3s ease, border-color 0.3s ease;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--finish-accent) 62%, #3b2418), rgba(41,25,16,0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 14px 30px rgba(0,0,0,0.18);
  transition: background 0.3s ease;
}
.brand-mark i {
  position: absolute;
  inset: 11px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.62);
}
.brand-mark i:last-child { inset: 18px; opacity: 0.36; }
.brand-copy { display: flex; flex-direction: column; gap: 4px; }
.brand-copy strong {
  font-family: "Geoform", "Chillax", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 0.9;
}
.brand-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.72;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}
.site-nav a,
.header-cta span,
.header-cta strong,
.tone-switch span {
  font-family: "Geoform", "DM Sans", system-ui, sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.header-actions { display: flex; align-items: center; gap: 22px; }
.tone-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--header-panel);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
}
body[data-tone="bright"] .tone-switch { border-color: rgba(43, 28, 19, 0.08); }
.tone-switch i {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  position: relative;
  background: rgba(255,255,255,0.18);
}
body[data-tone="bright"] .tone-switch i { background: rgba(0,0,0,0.12); }
.tone-switch i::after {
  content: "";
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; transition: transform 0.25s ease, background 0.25s ease;
}
body[data-tone="bright"] .tone-switch i::after { background: #241811; transform: translateX(16px); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta strong { font-size: 1.34rem; letter-spacing: 0.12em; }

.hero-cover,
.text-reveal,
.material-hero,
.cinema-stack,
.berlin-band,
.site-footer { overflow: clip; }
.hero-cover { color: #f7f1ea; }
.hero-cover__media,
.text-reveal__bg,
.material-hero__bg,
.cinema-stack__bg,
.berlin-band__air,
.site-footer__bg {
  position: absolute;
  inset: -8%;
  will-change: transform;
}
.hero-cover__media img,
.text-reveal__bg img,
.material-hero__bg img,
.cinema-stack__bg img,
.berlin-band__air img,
.site-footer__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-cover__veil,
.text-reveal__veil,
.material-hero__veil,
.cinema-stack__overlay,
.berlin-band__veil { background: linear-gradient(180deg, rgba(6,8,14,0.28), rgba(6,8,14,0.8)); }
.berlin-band__inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 34px;
  align-items: center;
}
.berlin-band__copy p:last-child { color: rgba(247,240,232,0.86); max-width: 54ch; }
.berlin-band__gallery {
  position: relative;
  min-height: 76vh;
}
.berlin-band__facade,
.berlin-band__mini {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: var(--shadow-strong);
}
.berlin-band__facade {
  position: absolute;
  inset: 4% 0 4% 12%;
}
.berlin-band__mini {
  position: absolute;
  width: 33%;
  aspect-ratio: 0.82;
  left: 2%;
  bottom: 8%;
  z-index: 3;
}

.material-hero__veil,
.cinema-stack__overlay,
.berlin-band__veil,
.site-footer__veil,
.configurator__veil {
  position: absolute;
  inset: 0;
}
.hero-cover__veil {
  background:
    linear-gradient(180deg, rgba(10,8,7,0.32) 0%, rgba(10,8,7,0.58) 52%, rgba(10,8,7,0.76) 100%),
    radial-gradient(circle at 18% 50%, rgba(0,0,0,0.08), transparent 32%);
}
.hero-cover__copy,
.text-reveal__inner,
.site-footer__inner,
.material-hero__panel,
.berlin-band__inner,
.configurator__inner,
.cinema-stack__inner { position: relative; z-index: 2; }
.hero-cover__copy { width: var(--shell); margin: 0 auto; padding-top: 110px; }
.hero-title {
  margin: 0;
  font-family: "Geoform", "Chillax", system-ui, sans-serif;
  font-size: clamp(72px, 11vw, 210px);
  line-height: 0.86;
  letter-spacing: -0.08em;
  max-width: 8.8ch;
  color: rgba(255, 249, 243, 0.98);
  text-shadow: 0 16px 60px rgba(0,0,0,0.38);
}
.hero-title span { display: block; }
.hero-lead {
  max-width: 720px;
  margin-top: 26px;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.75;
  color: rgba(255,248,240,0.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.button--light { background: rgba(255,255,255,0.9); color: #1a120d; }
.button--ghost { background: rgba(255,255,255,0.08); color: #fff8ee; }
.hero-cover__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255,246,238,0.82);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.hero-cover__scroll i {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0));
}
.story-band { min-height: 110vh; display: flex; align-items: center; }
.story-band__sticky {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: center;
}
.story-band__copy p:last-child { max-width: 52ch; line-height: 1.85; }
.story-band__visual {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-strong);
}
.story-band__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.story-band__card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,250,244,0.84);
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
body[data-tone="dark"] .story-band__card {
  background: rgba(24,18,14,0.76);
  border-color: rgba(255,255,255,0.1);
}
.story-band__card span,
.finish-meta span,
.footer-panel span,
.sidebar-title,
.catalog__index,
.brand-copy span,
.footer-bottom span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.story-band__card strong,
.founder__quote strong,
.product-card__meta h3,
.footer-panel strong {
  font-family: "Geoform", "Chillax", system-ui, sans-serif;
}
.story-band__card strong { font-size: 1.22rem; line-height: 1.08; }

.cinema-stack__overlay {
  background: linear-gradient(180deg, rgba(8,6,5,0.58), rgba(8,6,5,0.78));
}
.cinema-stack__inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.cinema-stack__copy p:last-child { color: rgba(247, 240, 232, 0.88); max-width: 48ch; }
.cinema-stack__cards { position: relative; min-height: 78vh; }
.floating-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,255,255,0.26);
}
.floating-panel--a { width: 42%; aspect-ratio: 0.82; left: 8%; top: 6%; }
.floating-panel--b { width: 56%; aspect-ratio: 1.18; right: 0; bottom: 8%; }

.text-reveal { color: #fff5ec; }
.text-reveal__veil {
  background: linear-gradient(180deg, rgba(10,8,7,0.38) 0%, rgba(10,8,7,0.38) 36%, rgba(10,8,7,0.58) 100%);
}
.text-reveal__inner { width: var(--shell); margin: 0 auto; }
.text-reveal__stack { width: min(1280px, 100%); }
.clarity-line {
  --clarity-opacity: 0.22;
  --clarity-blur: 24px;
  --clarity-y: 60px;
  margin: 0;
  font-family: "Geoform", "Chillax", system-ui, sans-serif;
  font-size: clamp(62px, 9vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.09em;
  color: rgba(255, 247, 238, 0.82);
  text-shadow: 0 0 28px rgba(255,255,255,0.16), 0 16px 60px rgba(0,0,0,0.35);
  opacity: var(--clarity-opacity);
  filter: blur(var(--clarity-blur));
  transform: translateY(var(--clarity-y));
  transition: opacity 0.2s linear, filter 0.2s linear, transform 0.2s linear;
}

.catalog { position: relative; z-index: 3; }
.catalog__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 42px;
}
.catalog__headline-block h2,
.founder__copy h2 {
  margin: 0;
  font-family: "Geoform", "Chillax", system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.catalog__headline-block p { max-width: 720px; margin-top: 22px; line-height: 1.8; color: var(--muted); }
.catalog__index { color: color-mix(in srgb, var(--text) 46%, transparent); }
.catalog__layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; }
.catalog__sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,251,247,0.76);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}
body[data-tone="dark"] .catalog__sticky {
  background: rgba(33,24,19,0.78);
  border-color: rgba(255,255,255,0.08);
}
.sidebar-title { margin: 0 0 8px; }
.catalog-filter {
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  background: transparent;
}
.catalog-filter.is-active { background: #e5dbcf; color: #201712; }
body[data-tone="dark"] .catalog-filter.is-active { background: rgba(255,255,255,0.14); color: #fff; }
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.product-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,251,247,0.86);
  box-shadow: 0 18px 40px rgba(48, 31, 19, 0.08);
  transition: opacity 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transform: none !important;
}
.product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 56px rgba(48,31,19,0.14);
}
body[data-tone="dark"] .product-card {
  background: rgba(25,18,15,0.92);
  border-color: rgba(255,255,255,0.08);
}
.product-card.is-hidden { display: none; }
.product-card figure {
  margin: 0;
  aspect-ratio: 0.92;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(234,225,216,0.94));
}
.product-card__meta { padding: 20px 22px 24px; }
.product-card__meta h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
}
.product-card__meta p { margin: 0; line-height: 1.6; color: var(--muted); }
.product-card__meta strong { display: block; margin-top: 12px; font-size: 1.08rem; }

.configurator { overflow: clip; }
.configurator__veil {
  background:
    radial-gradient(circle at 18% 22%, var(--finish-glow), transparent 26%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 88%, transparent), color-mix(in srgb, var(--bg-2) 92%, transparent));
}
.configurator__inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 44px;
  align-items: center;
}
.configurator__copy { max-width: 520px; }
.configurator__copy p { line-height: 1.8; color: var(--muted); }
.finish-switch { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.finish-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.62);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.finish-dot span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.finish-dot[data-finish="ivory"] span { background: #e6d9c2; }
.finish-dot[data-finish="noir"] span { background: #1e1b18; }
.finish-dot[data-finish="wine"] span { background: #672d40; }
.finish-dot[data-finish="olive"] span { background: #6f7754; }
.finish-dot.is-active {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  border-color: color-mix(in srgb, var(--finish-accent) 64%, rgba(0,0,0,0.2));
}
.finish-meta { margin-top: 22px; }
.finish-meta strong {
  font-family: "Geoform", "Chillax", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 54px);
  line-height: 0.96;
}
.configurator__stage {
  position: relative;
  min-height: 76vh;
  border-radius: 34px;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.configurator__ambient {
  position: absolute;
  inset: auto auto 8% 8%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--finish-glow), transparent 70%);
  filter: blur(24px);
}
.configurator__frame {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 32px;
}
.configurator__frame img { object-fit: contain; }

.berlin-band__veil {
  background:
    radial-gradient(circle at 18% 84%, rgba(255, 214, 160, 0.22), transparent 12%),
    radial-gradient(circle at 20% 80%, rgba(255, 214, 160, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(6,8,14,0.14), rgba(6,8,14,0.68));
}
.berlin-band__inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.berlin-band__copy p:last-child { color: rgba(247,240,232,0.9); max-width: 54ch; }
.berlin-band__gallery {
  position: relative;
  min-height: 76vh;
}
.berlin-band__air { position: relative; }
.berlin-band__air::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 8%;
  width: 26vw;
  height: 26vw;
  max-width: 420px;
  max-height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,167,0.28) 0%, rgba(255,216,167,0.10) 34%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}
.berlin-band__facade {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: var(--shadow-strong);
  position: absolute;
  inset: 4% 0 4% 12%;
}
.berlin-band__locator {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(12,14,22,0.48);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
}
.berlin-band__locator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,222,182,0.7), transparent);
}
.berlin-band__locator span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,245,236,0.68);
}
.berlin-band__locator strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
  color: #fff5ec;
}

.material-hero__veil { background: linear-gradient(180deg, rgba(8,6,5,0.56), rgba(8,6,5,0.72)); }
.material-hero__panel {
  width: min(820px, calc(100vw - 48px));
  padding: 34px 34px 38px;
  border-radius: 34px;
  background: rgba(21,15,11,0.46);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}
.material-hero__panel p { color: rgba(247, 240, 232, 0.86); max-width: 54ch; line-height: 1.8; }

.founder__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
}
.founder__portrait {
  min-height: 760px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-strong);
}
.founder__copy p { max-width: 60ch; line-height: 1.8; }
.founder__quote {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255,251,247,0.8);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}
body[data-tone="dark"] .founder__quote {
  background: rgba(33,24,19,0.78);
  border-color: rgba(255,255,255,0.08);
}
.founder__quote strong {
  display: block;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.founder__quote span {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: color-mix(in srgb, var(--text) 54%, transparent);
}

.site-footer { color: #fff5ec; }
.site-footer__veil { background: linear-gradient(180deg, rgba(10,8,7,0.66), rgba(10,8,7,0.86)); }
.site-footer__inner { width: var(--shell); margin: 0 auto; position: relative; z-index: 2; }
.footer-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  margin-bottom: 42px;
}
.footer-head p:last-child { color: rgba(255,245,236,0.84); line-height: 1.8; }
.footer-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.footer-panel {
  padding: 26px;
  border-radius: 28px;
  background: rgba(24,18,14,0.54);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}
.footer-panel strong { display: block; margin: 12px 0 10px; font-size: 1.72rem; line-height: 0.96; }
.footer-panel p { margin: 0; color: rgba(255,245,236,0.8); line-height: 1.6; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 34px;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.reveal-up,
.blur-in {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: transform 0.8s cubic-bezier(.2,.75,.1,1), opacity 0.7s ease, filter 0.8s ease;
  transition-delay: calc(var(--delay, 0) * 1s);
}
.blur-in { filter: blur(18px); }
.reveal-up.is-visible,
.blur-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (max-width: 1260px) {
  .site-nav { display: none; }
  .hero-title { max-width: 9.5ch; }
  .story-band__sticky,
  .cinema-stack__inner,
  .configurator__inner,
  .berlin-band__inner,
  .founder__grid,
  .footer-head {
    grid-template-columns: 1fr;
  }
  .berlin-band__gallery,
  .cinema-stack__cards { min-height: 68vh; }
  .berlin-band__facade { inset: 2% 0 8% 12%; }
  .berlin-band__mini { width: 38%; left: 2%; bottom: 7%; }
  .catalog__layout,
  .catalog__top { grid-template-columns: 1fr; }
  .catalog__sticky { position: relative; top: 0; }
}
@media (max-width: 980px) {
  .catalog__grid,
  .footer-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }
  .header-actions { grid-column: 2; }
  .brand-copy strong { font-size: 1.62rem; }
}
@media (max-width: 760px) {
  .shell { width: min(100vw - 28px, 100%); }
  .section { padding: 74px 0; }
  .site-header {
    width: calc(100vw - 22px);
    margin-top: 10px;
    padding: 12px 0;
  }
  .brand-copy span,
  .header-cta span { display: none; }
  .tone-switch { display: none; }
  .hero-cover__copy { padding-top: 90px; }
  .hero-title { font-size: clamp(54px, 16vw, 110px); }
  .catalog__grid,
  .footer-panels { grid-template-columns: 1fr; }
  .floating-panel--a { width: 46%; }
  .floating-panel--b { width: 66%; }
  .berlin-band__facade { inset: 0; }
  .berlin-band__mini { width: 44%; right: 10px; left: auto; bottom: -10px; }
  .founder__portrait { min-height: 520px; }
  .footer-bottom { flex-direction: column; }
}
