/* ========== Westring 22 — OnePager styles ========== */

/* DM Sans — self-hosted variable font (OFL licence) */
@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-Italic-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --ink-2: #131313;
  --ink-3: #1c1c1c;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.22);
  --paper: #f4f1ec;
  --paper-dim: #d8d4cd;
  --mute: rgba(244,241,236,0.62);
  --mute-2: rgba(244,241,236,0.42);
  --red: #e23528;
  --red-deep: #b81e14;
  --coral: #d18774;
  --petrol: #2d4845;
  --petrol-2: #3d605c;
  --glass: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.10);
  --display: "DM Sans", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --ui: "DM Sans", "Helvetica Neue", Helvetica, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ui);
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* PD Everyday — SVG replacements */
.brush-hero-svg {
  display: block;
  width: min(100%, clamp(380px, 90vw, 1200px));
  height: auto;
}
.brush-svg {
  display: inline-block;
  height: 0.85em;
  width: auto;
  vertical-align: -0.1em;
}
.brush-word-svg {
  display: block;
  height: clamp(60px, 9vw, 144px);
  width: auto;
}

::selection { background: var(--red); color: #fff; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===== Layout ===== */
.section { position: relative; }
.wrap { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ===== Type ===== */
.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; line-height: 0.92; }
.display.expressive { font-weight: 800; letter-spacing: -0.035em; }
.brush { font-family: var(--brush); font-weight: 400; letter-spacing: 0; text-transform: uppercase; }
.eyebrow {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
}
.tag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tag-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(226,53,40,0.16); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 80;
  display: flex; justify-content: center; pointer-events: none;
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  pointer-events: auto;
  padding: 10px 14px 10px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-radius: 999px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}
.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: -0.01em;
}
.brand-mark .square { width: 12px; height: 12px; background: var(--red); border-radius: 50%; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { font-size: 12.5px; letter-spacing: 0.04em; color: var(--paper); opacity: 0.78; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 12px; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 999px;
  background: var(--paper); color: var(--ink); font-weight: 500;
  transition: background .2s;
}
.nav-cta:hover { background: #fff; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; padding: 4px; cursor: pointer; color: var(--paper);
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.24s, opacity 0.24s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 79;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 32px 60px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-nav a {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 11vw, 64px); line-height: 1; letter-spacing: -0.035em;
  text-transform: uppercase; color: var(--paper);
  display: block; padding: 6px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .mobile-cta {
  margin-top: 36px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  padding: 16px 28px; border-radius: 999px;
  background: var(--red); color: #fff;
  transition: background 0.2s;
}
.mobile-nav .mobile-cta:hover { background: var(--red-deep); color: #fff; }
.mobile-nav-foot {
  position: absolute; bottom: 32px; left: 32px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: -8% -2% -2% -2%;
  background: url("images/hero-office.jpg") center 50% / cover no-repeat;
  filter: contrast(1.04) saturate(1.02);
  will-change: transform;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 32%, rgba(10,10,10,0.10) 60%, rgba(10,10,10,0.45) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 30%, rgba(10,10,10,0.55) 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 5; opacity: 0.07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-spot {
  position: absolute; pointer-events: none; z-index: 1;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(226,53,40,0.18), transparent 70%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

.hero-content {
  position: relative; z-index: 10;
  height: 100%;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 110px 28px 32px;
  max-width: 1480px; margin: 0 auto;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.hero-addr {
  font-family: var(--ui); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
}
.hero-addr strong { color: var(--paper); font-weight: 600; display: block; margin-bottom: 4px; letter-spacing: 0.16em; }
.hero-meta { text-align: right; font-size: 11px; color: var(--mute); letter-spacing: 0.18em; text-transform: uppercase; }
.hero-meta .live { color: var(--red); }

.hero-head {
  align-self: end;
  font-size: clamp(64px, 11.5vw, 196px);
  letter-spacing: -0.045em;
  line-height: 0.86;
  font-weight: 800;
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.hero-head.brush {
  font-family: var(--brush);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  font-size: clamp(74px, 13vw, 220px);
}
.hero-head span.line { display: block; }
.hero-head .pulse {
  color: var(--red);
  display: inline-block;
  transform: rotate(-1.5deg);
  padding-right: 0.05em;
}
.hero-foot {
  display: flex;
  padding-top: 28px;
}
.hero-claim {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2.2vw, 32px); line-height: 1.05; letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero-claim em { font-style: normal; color: var(--red); font-family: var(--brush); font-weight: 400; text-transform: uppercase; letter-spacing: 0; }
.hero-actions { display: flex; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.04em;
  padding: 14px 20px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--paper); font-weight: 500;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn:hover { background: var(--glass-strong); border-color: var(--line-strong); transform: translateY(-1px); }
.btn.solid { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.solid:hover { background: #fff; }
.btn.red { background: var(--red); color: #fff; border-color: var(--red); }
.btn.red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-scroll {
  position: absolute; bottom: 28px; right: 28px;
  z-index: 12;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute-2);
}
.hero-scroll .line-v {
  width: 1px; height: 36px; background: linear-gradient(180deg, var(--mute-2), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Manifest section ===== */
.manifest {
  padding: 22vh 0 22vh;
  position: relative;
  background: var(--ink);
}
.manifest-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.manifest h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 7vw, 124px); line-height: 0.9; letter-spacing: -0.035em;
  margin: 0;
  text-transform: uppercase;
}
.manifest h2 .accent { color: var(--red); font-family: var(--brush); font-weight: 400; letter-spacing: 0; text-transform: uppercase; display: inline-block; transform: rotate(-2deg); }
.manifest h2 .accent .brush-svg { vertical-align: -0.02em; height: 1.05em; }
.manifest-body { padding-top: 0; }
.manifest-body .lede {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 1.9vw, 26px); line-height: 1.3; letter-spacing: -0.012em;
  color: var(--paper);
  text-wrap: pretty;
}
.manifest-body .lede + .lede { margin-top: 28px; color: var(--mute); font-size: clamp(16px, 1.4vw, 19px); font-weight: 400; }
.manifest-divider {
  width: 100%; height: 1px; background: var(--line); margin: 18px 0 28px;
}
.manifest-meta {
  display: flex; gap: 36px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
}
.manifest-meta b { color: var(--paper); font-weight: 600; }

@media (max-width: 880px) {
  .manifest-grid { grid-template-columns: 1fr; gap: 32px; }
  .manifest { padding: 14vh 0; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* ===== Fluid Scroll Gallery ===== */
.fluid-section {
  position: relative;
  height: 320vh;
}
.fluid-sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}
.fluid-cols {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px;
  align-items: start;
}
.fluid-col {
  display: flex; flex-direction: column; gap: 16px;
  will-change: transform;
}
.fluid-card {
  position: relative;
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.fluid-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s;
}
.fluid-card:hover img { transform: scale(1.04); }
.fluid-card.tall { aspect-ratio: 3 / 4.4; }
.fluid-card.portrait { aspect-ratio: 3 / 4; }
.fluid-card.square { aspect-ratio: 1 / 1; }
.fluid-card.wide { aspect-ratio: 4 / 3; }
.fluid-card.short { aspect-ratio: 5 / 3.4; }
.fluid-card .caption { display: none; }
.fluid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.55) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.6), transparent 18%, transparent 82%, rgba(10,10,10,0.7));
  z-index: 3;
}
.fluid-words {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
  display: flex; flex-direction: column; justify-content: center;
}
.fluid-word {
  position: absolute;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(60px, 9vw, 144px); line-height: 1; letter-spacing: -0.04em;
  color: var(--paper);
  text-transform: uppercase;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.fluid-word.brush { font-family: var(--brush); font-weight: 400; color: var(--red); mix-blend-mode: normal; letter-spacing: 0; text-transform: uppercase; transform-origin: left; }
.fluid-word.active { opacity: 1; }
.fluid-progress {
  position: absolute; left: 28px; bottom: 28px; z-index: 5;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute-2);
}
.fluid-progress .bar { width: 120px; height: 1px; background: var(--line-strong); position: relative; }
.fluid-progress .bar i { display: block; height: 1px; background: var(--paper); width: 0%; transition: width .15s linear; }

/* Tablet: 3-column gallery with parallax still active */
@media (max-width: 1100px) and (min-width: 881px) {
  .fluid-cols { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile: static 2-column grid, no parallax */
@media (max-width: 880px) {
  .fluid-section { height: auto; }
  .fluid-sticky { position: relative; height: auto; padding: 60px 0; }
  .fluid-cols { position: relative; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px; }
  .fluid-col { gap: 10px; }
  .fluid-words { display: none; }
  .fluid-progress { display: none; }
  .fluid-card.tall, .fluid-card.portrait { aspect-ratio: 3 / 4; }
  .fluid-card[aria-hidden="true"] { display: none; }
}

/* Phone: single column */
@media (max-width: 480px) {
  .fluid-cols { grid-template-columns: 1fr; }
}

/* ===== Red Thread section ===== */
.red-thread {
  position: relative;
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.red-thread .rt-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch;
  min-height: 100vh;
}
.red-thread .rt-left {
  padding: 14vh 6vw 14vh 4vw;
  display: flex; flex-direction: column; justify-content: space-between; gap: 60px;
  position: relative;
}
.red-thread .rt-left::before {
  content: ""; position: absolute; left: 28px; top: 14vh; bottom: 14vh; width: 1px;
  background: rgba(255,255,255,0.22);
}
.red-thread h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(56px, 9vw, 160px); line-height: 0.88; letter-spacing: -0.04em;
  margin: 0; text-transform: uppercase;
  text-wrap: balance;
}
.red-thread h2 .brush-line { font-family: var(--brush); font-weight: 400; letter-spacing: 0; text-transform: uppercase; color: var(--ink); display: block; }
.red-thread .rt-body { max-width: 540px; }
.red-thread .rt-lede { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.3; letter-spacing: -0.012em; }
.red-thread .rt-meta { display: flex; gap: 28px; margin-top: 24px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.red-thread .rt-right {
  position: relative; overflow: hidden;
  background: #000;
}
.red-thread .rt-right .stair {
  position: absolute; inset: 0;
  background: url("images/red-stair-wide.jpg") center / cover no-repeat;
  will-change: transform;
  transform: scale(1.06);
}
.red-thread .rt-right::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(178,30,20,0.4) 100%),
              linear-gradient(90deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.0) 30%);
}
.red-thread .rt-bg-mark {
  position: absolute; right: -3vw; bottom: -6vw; z-index: -1;
  font-family: var(--brush); font-size: clamp(220px, 32vw, 540px); line-height: 0.85;
  color: rgba(255,255,255,0.08); pointer-events: none;
  transform: rotate(-6deg);
}
@media (max-width: 880px) {
  .red-thread .rt-grid { grid-template-columns: 1fr; }
  .red-thread .rt-right { min-height: 70vh; }
  .red-thread .rt-left { padding: 12vh 24px; }
  .red-thread .rt-left::before { display: none; }
}


/* ===== Standort section ===== */
.standort {
  padding: 18vh 0 16vh;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.standort h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(48px, 6.8vw, 116px); line-height: 0.9; letter-spacing: -0.035em;
  margin: 0; text-transform: uppercase;
}
.standort h2 .brush { color: var(--red); font-family: var(--brush); font-weight: 400; letter-spacing: 0; text-transform: uppercase; display: inline-block; transform: rotate(-2deg) translateY(0.05em); }
.standort-grid {
  display: grid; grid-template-columns: 1fr;
  margin-top: 80px;
  align-items: start;
}
.standort-lede {
  font-family: var(--display); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.4; color: var(--paper);
  margin-bottom: 32px; max-width: 440px;
}
.distances {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 60px;
}
@media (max-width: 880px) { .distances { grid-template-columns: 1fr; } }
.distance {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 18px; align-items: center;
  padding: 16px 0;
  font-size: 14.5px;
  transition: padding-left .25s;
}
.distance:hover { padding-left: 8px; }
.distance .idx { font-size: 11px; color: var(--mute); letter-spacing: 0.18em; }
.distance .label { color: var(--paper); font-weight: 400; }
.distance .label small { display: block; color: var(--mute); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.distance .val { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.distance .val em { font-style: normal; color: var(--coral); }

/* abstract map */
.map {
  position: relative; aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 40%, rgba(226,53,40,0.10), transparent 50%),
    linear-gradient(180deg, #111, #0a0a0a);
}
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-label {
  position: absolute;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  pointer-events: none;
}
.map-label.solid { color: var(--paper); }
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(226,53,40,0.18), 0 0 0 12px rgba(226,53,40,0.06);
  z-index: 3;
}
.map-pin::after {
  content: "Westring 22"; position: absolute; left: 22px; top: -3px; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: -0.005em; color: var(--paper);
}
.map-cross {
  position: absolute; width: 10px; height: 10px;
  border-left: 1px solid var(--line-strong); border-top: 1px solid var(--line-strong);
}
.map-corner-tag {
  position: absolute; right: 14px; top: 14px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
}
.map-corner-tag.bottom { top: auto; bottom: 14px; right: 14px; }
.map-coord {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--display); font-size: 11px; letter-spacing: 0.04em; color: var(--mute);
}

@media (max-width: 880px) {
  .standort-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
}

/* ===== Experience modules ===== */
.exp {
  padding: 18vh 0 18vh;
  background: #080808;
  position: relative;
}
.exp-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
  margin-bottom: 64px;
}
.exp h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(48px, 6.5vw, 110px); line-height: 0.9; letter-spacing: -0.035em;
  margin: 0; text-transform: uppercase;
}
.exp-sub { font-family: var(--display); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.4; color: var(--mute); max-width: 440px; }

.mods {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.mod {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #0e0e0e;
  cursor: pointer;
  transition: border-color .25s, transform .25s;
  isolation: isolate;
}
.mod:hover { border-color: var(--line-strong); }
.mod-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #000;
}
.mod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s; }
.mod:hover .mod-img img { transform: scale(1.04); filter: blur(2px) brightness(0.85); }
.mod-body { padding: 22px 22px 24px; }
.mod-num { display: none; }
.mod h3 {
  font-family: var(--display); font-weight: 700; font-size: clamp(26px, 2vw, 34px);
  letter-spacing: -0.02em; margin: 0 0 10px;
  text-transform: uppercase;
}
.mod h3.brushy { font-family: var(--brush); font-weight: 400; letter-spacing: 0; text-transform: uppercase; color: var(--red); transform: translateY(0.02em); }
.mod-teaser { font-size: 14px; line-height: 1.5; color: var(--mute); margin: 0 0 16px; max-width: 36ch; }
.mod-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper);
  padding: 8px 12px; border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  transition: background .2s, border-color .2s;
}
.mod-more:hover { background: var(--glass-strong); }
.mod-more .ic { width: 12px; height: 12px; position: relative; display: inline-block; }
.mod-more .ic::before, .mod-more .ic::after {
  content: ""; position: absolute; background: currentColor; left: 1px; top: 5.5px; width: 10px; height: 1px;
}
.mod-more .ic::after { transform: rotate(90deg); transition: transform .25s; }
.mod.open .mod-more .ic::after { transform: rotate(0deg); }

/* Modal */
.mod-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mod-modal.open { opacity: 1; pointer-events: auto; }
.mod-modal-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  max-width: 1200px; width: 100%;
  max-height: 88vh;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,20,20,0.86), rgba(10,10,10,0.86));
  box-shadow: 0 30px 100px rgba(0,0,0,0.65);
  transform: translateY(20px) scale(0.99); transition: transform .35s ease;
}
.mod-modal.open .mod-modal-inner { transform: translateY(0) scale(1); }
.mod-modal-img { position: relative; min-height: 480px; background: #000; }
.mod-modal-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mod-modal-body { padding: 50px 44px; display: flex; flex-direction: column; justify-content: space-between; gap: 30px; }
.mod-modal-body h3 { font-family: var(--display); font-weight: 800; font-size: clamp(36px, 4vw, 56px); margin: 0; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.92; }
.mod-modal-body h3.brushy { font-family: var(--brush); font-weight: 400; letter-spacing: 0; text-transform: uppercase; color: var(--red); }
.mod-modal-body .lede { font-family: var(--display); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.45; color: var(--paper); text-wrap: pretty; }
.mod-modal-body .meta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
.mod-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(10px);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mod-modal-close:hover { background: rgba(226,53,40,0.7); border-color: rgba(226,53,40,0.7); }

@media (max-width: 880px) {
  .mods { grid-template-columns: 1fr; }
  .exp-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .mod-modal { padding: 12px; }
  .mod-modal-inner { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .mod-modal-img { min-height: 240px; }
  .mod-modal-body { padding: 28px 22px; }
}

/* ===== Availability + Contact ===== */
.avail {
  position: relative;
  padding: 22vh 0 18vh;
  background: var(--ink);
  overflow: hidden;
}
.avail::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 50%, transparent);
}
.avail-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: end;
}
.avail h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(56px, 8vw, 140px); line-height: 0.9; letter-spacing: -0.04em;
  margin: 0; text-transform: uppercase;
  text-wrap: balance;
}
.avail h2 .brush { font-family: var(--brush); font-weight: 400; color: var(--red); letter-spacing: 0; text-transform: uppercase; display: inline-block; transform: rotate(-2deg) translateY(0.05em); }
.avail-body { padding-bottom: 6px; }
.avail-body p { font-family: var(--display); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.45; color: var(--mute); max-width: 480px; margin: 0 0 24px; }
.avail-cards {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.avail-card {
  position: relative;
  padding: 24px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  transition: border-color .2s, transform .25s;
  display: flex; flex-direction: column; gap: 16px; min-height: 220px;
}
.avail-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.avail-card .ix { font-size: 11px; letter-spacing: 0.22em; color: var(--mute); text-transform: uppercase; }
.avail-card h4 { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 1.8vw, 28px); margin: 0; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.avail-card .desc { font-size: 13.5px; line-height: 1.5; color: var(--mute); margin: auto 0 0; }
.avail-card .tag { display: inline-flex; gap: 6px; align-items: center; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.avail-card .tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(226,53,40,0.18); }

@media (max-width: 880px) {
  .avail-grid { grid-template-columns: 1fr; gap: 24px; }
  .avail-cards { grid-template-columns: 1fr; margin-top: 40px; }
}

/* ===== Contact ===== */
.contact {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  min-height: 100vh;
}
.contact-bg {
  position: relative;
  overflow: hidden;
  background: #000;
}
.contact-bg .img {
  position: absolute; inset: 0;
  background: url("images/concrete-corridor.jpg") center / cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}
.contact-bg::after {
  content: ""; position: absolute; inset: 0;
  background: none;
}
.contact-tag {
  position: absolute; bottom: 32px; left: 32px; z-index: 4;
  font-family: var(--display); font-weight: 800; font-size: clamp(48px, 6vw, 96px); line-height: 0.9;
  letter-spacing: -0.03em; text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
  max-width: 90%;
}
.contact-tag .brush { font-family: var(--brush); font-weight: 400; color: var(--paper); letter-spacing: 0; text-transform: uppercase; display: inline-block; transform: rotate(-2deg); }

.contact-body {
  padding: 14vh 6vw 12vh 5vw;
  display: flex; flex-direction: column; gap: 32px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
}
.contact-eyebrow {
  display: flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
}
.contact-eyebrow .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(226,53,40,0.18); }
.contact-body h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4vw, 64px); line-height: 0.95; letter-spacing: -0.03em;
  margin: 0; text-transform: uppercase;
  text-wrap: balance;
}
.contact-body h2 .brush { font-family: var(--brush); font-weight: 400; color: var(--red); letter-spacing: 0; text-transform: uppercase; }

.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute);
}
.field input, .field textarea, .field select {
  font-family: var(--ui);
  font-size: 14.5px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  outline: none;
  resize: vertical;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--paper-dim);
  background: rgba(255,255,255,0.07);
}
.field textarea { min-height: 110px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.chip {
  font-size: 12px; letter-spacing: 0.04em;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all .2s;
}
.chip:hover { border-color: var(--line-strong); }
.chip.on { background: var(--red); border-color: var(--red); color: #fff; }

.form-foot {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; margin-top: 8px;
}
.form-foot small { font-size: 11px; color: var(--mute); letter-spacing: 0.06em; line-height: 1.5; }

.contact-side {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-side .col .k { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.contact-side .col .v { font-family: var(--display); font-weight: 600; font-size: 16px; line-height: 1.35; letter-spacing: -0.005em; }
.contact-side .col a:hover { color: var(--red); }

.sent {
  border: 1px solid rgba(226,53,40,0.4);
  background: rgba(226,53,40,0.08);
  padding: 18px 20px; border-radius: 4px;
  font-size: 14px; color: var(--paper);
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-bg { min-height: 50vh; }
  .contact-body { padding: 60px 24px 80px; }
  .form { grid-template-columns: 1fr; }
  .contact-side { grid-template-columns: 1fr; }
  .form-foot { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 40px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
.footer-brand .big { margin-top: -0.12em; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .big {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(56px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.04em;
  text-transform: uppercase;
}
.footer-brand .addr { font-size: 13px; line-height: 1.5; color: var(--mute); }
.footer-col h5 { font-family: var(--display); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); font-weight: 500; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--paper); opacity: 0.78; transition: opacity .2s, color .2s; }
.footer-col a:hover { opacity: 1; color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute);
}
.footer-bottom .legal { display: flex; gap: 22px; }
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: row; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: 12px;
  }
  .footer-addr-detail { display: none; }
}

@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== Hero mobile ===== */
@media (max-width: 640px) {
  .hero-content { padding: 88px 20px 24px; }
  .hero-top { flex-direction: column; gap: 10px; }
  .hero-meta { text-align: left; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .hero-scroll { display: none; }
}

/* ===== Section vertical padding — phone ===== */
@media (max-width: 640px) {
  .manifest { padding: 12vh 0 10vh; }
  .standort { padding: 12vh 0 10vh; }
  .standort h2 { font-size: clamp(40px, 10vw, 72px); }
  .exp { padding: 12vh 0 12vh; }
  .avail { padding: 12vh 0 10vh; }
  .avail h2 { font-size: clamp(48px, 11vw, 100px); }
}

/* ===== Footer phone ===== */
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ===== Avail cards tablet ===== */
@media (max-width: 640px) {
  .avail-cards { grid-template-columns: 1fr; margin-top: 28px; }
}

/* ===== Strip dividers (coral steel motif) ===== */
.steel-strip {
  height: 2px;
  background: var(--coral);
  opacity: 0.55;
}

/* ===== Mouse light spot ===== */
.mouse-spot {
  position: fixed; pointer-events: none; z-index: 4;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(226,53,40,0.10), transparent 70%);
  filter: blur(10px);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .35s;
}
.mouse-spot.on { opacity: 1; }
