/* ============ TOKENS ============ */
:root {
  --bg: #0A0A0B;
  --bg-elev: #131316;
  --bg-soft: #1A1A1D;
  --line: #26262B;
  --line-soft: #1D1D21;
  --ink: #F5F2ED;
  --ink-mid: #B8B5B0;
  --ink-low: #6F6C68;
  --red: #E2231A;
  --red-deep: #B81913;
  --blue: #5DCDF1;

  --ff-display: 'Anton', 'Bebas Neue', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius: 4px;
  --maxw: 1440px;
  --pad-x: clamp(20px, 5vw, 80px);

  --t-fast: 220ms cubic-bezier(.2,.7,.3,1);
  --t-slow: 720ms cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--red); color: var(--ink); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
html.lenis.lenis-stopped { overflow: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: clamp(15px, 1vw + .5rem, 17px);
  line-height: 1.6;
  font-feature-settings: 'ss01','cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.skip {
  position: absolute; left: -9999px; top: 0; padding: 8px 16px; background: var(--ink); color: var(--bg); z-index: 999;
}
.skip:focus { left: 16px; top: 16px; }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 400; letter-spacing: -.01em; line-height: .95; }

.section__num {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid);
}
.section__num::before { content: ''; width: 28px; height: 1px; background: var(--red); }

.section__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -.025em;
  margin: 18px 0 18px;
  text-transform: uppercase;
}
.section__title em { font-style: normal; color: var(--red); }
.section__lead {
  max-width: 56ch; color: var(--ink-mid); font-size: clamp(1rem, 1vw + .5rem, 1.18rem);
}

.section__head {
  padding: 0 var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto 56px;
}

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 16px var(--pad-x);
  background: linear-gradient(180deg, rgba(10,10,11,.85) 0%, rgba(10,10,11,0) 100%);
  backdrop-filter: blur(0);
  transition: backdrop-filter var(--t-fast), background var(--t-fast), padding var(--t-fast), border-color var(--t-fast);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px var(--pad-x);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.nav__brand img { width: 130px; height: auto; filter: drop-shadow(0 2px 12px rgba(0,0,0,.5)); }
.nav__links {
  display: flex; gap: 28px; margin-left: auto;
  font-size: 14px; letter-spacing: .02em;
}
.nav__links a {
  position: relative; color: var(--ink); padding: 6px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--red);
  transform-origin: left; transform: scaleX(0); transition: transform var(--t-fast);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--ink);
  padding: 11px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav__cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.nav__menu { display: none; width: 36px; height: 36px; position: relative; }
.nav__menu span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--ink); transition: transform var(--t-fast), top var(--t-fast); }
.nav__menu span:nth-child(1) { top: 13px; }
.nav__menu span:nth-child(2) { top: 21px; }
.nav__menu[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { top: 17px; transform: rotate(-45deg); }
.nav__mobile { display: none; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: block; margin-left: auto; }
  .nav__mobile {
    display: flex; flex-direction: column;
    position: fixed; inset: 64px 0 auto 0;
    background: var(--bg-elev); border-bottom: 1px solid var(--line-soft);
    padding: 24px var(--pad-x);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--t-fast), opacity var(--t-fast);
  }
  .nav__mobile[hidden] { display: flex !important; }
  .nav__mobile.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__mobile a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 18px; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: clamp(140px, 18vh, 200px) var(--pad-x) clamp(56px, 8vh, 96px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.18) contrast(1.05) saturate(.92) brightness(.78);
  transform: scale(1.06);
  will-change: transform;
}
.hero__grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,.7) 0%, rgba(10,10,11,.2) 35%, rgba(10,10,11,.85) 90%, var(--bg) 100%),
    radial-gradient(60% 60% at 80% 30%, rgba(226,35,26,.18) 0%, transparent 60%);
}

.hero__rail {
  position: absolute; left: var(--pad-x); top: clamp(96px, 14vh, 140px);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid);
}
.rail__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(226,35,26,.18); }

.hero__content { max-width: var(--maxw); width: 100%; margin: 0 auto; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mid); background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,35,26,.6); }
  50% { box-shadow: 0 0 0 8px rgba(226,35,26,0); }
}

.hero__title {
  font-size: clamp(2.8rem, 9.5vw, 8.5rem);
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .92;
  margin: 26px 0 28px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line em { font-style: italic; color: var(--ink-mid); font-family: var(--ff-body); font-weight: 300; letter-spacing: -.04em; padding-right: .12em; }
.hero__title .line--accent { color: var(--red); }

.hero__lead {
  max-width: 56ch; color: var(--ink-mid);
  font-size: clamp(1.05rem, .8vw + .8rem, 1.3rem);
  line-height: 1.55;
}

.hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: .03em;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.btn--primary { background: var(--red); color: var(--ink); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--ink); }

.hero__meta {
  list-style: none; display: flex; gap: clamp(24px, 4vw, 56px); margin-top: clamp(48px, 8vh, 80px);
  flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--line-soft);
}
.hero__meta li { display: flex; flex-direction: column; gap: 4px; }
.hero__meta strong { font-family: var(--ff-display); font-size: clamp(1.6rem, 2vw + .5rem, 2.4rem); font-weight: 400; color: var(--ink); }
.hero__meta span { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mid); }

.hero__scroll {
  position: absolute; right: var(--pad-x); bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-mid);
}
.hero__scroll-line { width: 1px; height: 56px; background: linear-gradient(180deg, transparent, var(--ink-mid), transparent); animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 720px) {
  .hero__rail { top: 88px; }
  .hero__scroll { display: none; }
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-elev);
  padding: 28px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 56px; white-space: nowrap;
  font-family: var(--ff-display); font-size: clamp(1.6rem, 4vw, 3rem); text-transform: uppercase;
  color: var(--ink); letter-spacing: -.01em;
  animation: marquee 38s linear infinite;
}
.marquee__track span:nth-child(even) { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ INTRO ============ */
.intro {
  padding: clamp(96px, 14vh, 160px) var(--pad-x);
  background: var(--bg);
}
.intro__inner { max-width: 1200px; margin: 0 auto; }
.intro__statement {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw + .5rem, 3.4rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 22ch;
}
.intro__statement em { font-style: italic; color: var(--red); }
.intro__sig {
  margin-top: 56px;
  display: flex; align-items: center; gap: 18px;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
}
.intro__sig img { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; filter: grayscale(.2); }
.intro__sig p { font-family: var(--ff-display); font-size: 1.4rem; line-height: 1; text-transform: uppercase; }
.intro__sig small { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mid); }

/* ============ SERVICES ============ */
.services { padding: clamp(96px, 14vh, 160px) 0; background: var(--bg-elev); }
.services__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .services__grid { grid-template-columns: 1fr; } }
.service {
  position: relative; padding: 40px 32px 32px; background: var(--bg);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 320px; overflow: hidden;
  transition: background var(--t-fast);
}
.service::before {
  content: ''; position: absolute; inset: 0; background-image: var(--svc-img);
  background-size: cover; background-position: center;
  opacity: 0; filter: grayscale(.4) brightness(.55);
  transition: opacity var(--t-slow), transform 4s ease;
  z-index: 0;
}
.service::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.3) 0%, rgba(10,10,11,.92) 90%);
  opacity: 0; transition: opacity var(--t-slow);
  z-index: 1;
}
.service:hover::before { opacity: .9; transform: scale(1.06); }
.service:hover::after { opacity: 1; }
.service > * { position: relative; z-index: 2; }
.service__num { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .16em; color: var(--ink-mid); }
.service h3 { font-size: clamp(1.5rem, 1.5vw + .8rem, 2.2rem); text-transform: uppercase; letter-spacing: -.01em; }
.service p { color: var(--ink-mid); font-size: .96rem; }
.service__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); padding-top: 16px; border-top: 1px solid var(--line);
  transition: color var(--t-fast);
}
.service__link span { transition: transform var(--t-fast); }
.service__link:hover { color: var(--red); }
.service__link:hover span { transform: translateX(6px); }

/* ============ FEATURE ============ */
.feature { padding: clamp(96px, 14vh, 160px) 0; background: var(--bg-elev); }
.feature__split {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: start;
}
@media (max-width: 880px) { .feature__split { grid-template-columns: 1fr; } }
.feature__img--big { aspect-ratio: 4/5; overflow: hidden; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.feature__img:hover img { transform: scale(1.04); }
.feature__body { display: flex; flex-direction: column; gap: 24px; padding-top: 12px; }
.feature__specs { list-style: none; border-top: 1px solid var(--line); }
.feature__specs li {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.feature__specs span { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mid); padding-top: 2px; }
.feature__specs strong { font-weight: 500; color: var(--ink); }
.feature__body p { color: var(--ink-mid); line-height: 1.65; }
.feature__body p em { color: var(--red); font-style: italic; }
.feature__img--detail { aspect-ratio: 16/10; overflow: hidden; margin-top: 12px; }

/* ============ GALLERY ============ */
.gallery { padding: clamp(96px, 14vh, 160px) 0; background: var(--bg-elev); }
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--bg-elev);
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.1) contrast(1.05);
  transition: transform 1.4s cubic-bezier(.2,.7,.3,1), filter var(--t-fast);
}
.tile:hover img { transform: scale(1.06); filter: none; }
.tile__cap {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
}
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,11,.85) 100%);
  opacity: 0; transition: opacity var(--t-fast);
}
.tile:hover::after, .tile:hover .tile__cap { opacity: 1; transform: translateY(0); }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
@media (max-width: 1024px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } .tile--wide { grid-column: span 2; } .tile--tall { grid-row: span 2; } }
@media (max-width: 640px)  { .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 280px; } .tile--wide, .tile--tall { grid-row: auto; grid-column: auto; } }

/* ============ PROCESS ============ */
.process { padding: clamp(96px, 14vh, 160px) 0; background: var(--bg); }
.process__steps {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  counter-reset: step;
}
@media (max-width: 880px) { .process__steps { grid-template-columns: 1fr; } }
.process__steps li {
  background: var(--bg-elev); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step__num {
  font-family: var(--ff-display); font-size: 3.6rem; line-height: 1; color: var(--red);
}
.process__steps h3 { font-size: 1.6rem; text-transform: uppercase; letter-spacing: -.01em; }
.process__steps p { color: var(--ink-mid); font-size: .96rem; line-height: 1.6; }

/* ============ ABOUT ============ */
.about { padding: clamp(96px, 14vh, 160px) 0; background: var(--bg-elev); }
.about__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.about__grid {
  display: grid; grid-template-columns: .8fr 1fr; gap: clamp(24px, 4vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } }
.about__photo { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15); }
.about__copy p { color: var(--ink-mid); font-size: 1.08rem; margin-bottom: 1em; line-height: 1.65; }
.about__copy strong { color: var(--ink); font-weight: 600; }
.about__list { list-style: none; padding-top: 24px; margin-top: 12px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.about__list li { padding-left: 24px; position: relative; color: var(--ink); }
.about__list li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 12px; height: 1px; background: var(--red);
}

/* ============ TRUST ============ */
.trust { padding: clamp(96px, 14vh, 160px) var(--pad-x); background: var(--bg-elev); }
.trust blockquote {
  max-width: 1000px; margin: 0 auto; text-align: center;
}
.trust p {
  font-family: var(--ff-body); font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw + .5rem, 2.8rem); line-height: 1.3; letter-spacing: -.015em;
  color: var(--ink); margin-bottom: 28px;
}
.trust cite { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mid); font-style: normal; }

/* ============ CONTACT ============ */
.contact {
  padding: clamp(96px, 14vh, 160px) 0;
  background:
    radial-gradient(70% 60% at 80% 0%, rgba(226,35,26,.18) 0%, transparent 60%),
    var(--bg);
}
.contact__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.contact__grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 4vw, 80px);
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mid); }
.field input, .field select, .field textarea {
  background: var(--bg-elev); color: var(--ink); border: 1px solid var(--line);
  padding: 14px 16px; border-radius: var(--radius);
  font: inherit;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: var(--bg-soft);
}
.contact__form .btn--primary { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
.form__note { grid-column: 1 / -1; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-low); }
@media (max-width: 640px) { .contact__form { grid-template-columns: 1fr; } }

.contact__side { display: flex; flex-direction: column; gap: 32px; }
.contact__block { padding: 24px; border: 1px solid var(--line); background: var(--bg-elev); border-radius: var(--radius); }
.contact__block span { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mid); display: block; margin-bottom: 10px; }
.contact__block p { color: var(--ink); line-height: 1.6; }
.contact__block a { color: var(--red); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.contact__block a:hover { color: var(--ink); }

/* ============ FOOTER ============ */
.footer { background: var(--bg-elev); border-top: 1px solid var(--line-soft); padding: 64px var(--pad-x) 32px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
@media (max-width: 880px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand img { width: 140px; }
.footer__brand p { margin-top: 16px; color: var(--ink-mid); font-size: .92rem; max-width: 32ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 640px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h4 { font-family: var(--ff-mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 14px; }
.footer__cols a, .footer__cols p { display: block; padding: 4px 0; color: var(--ink); font-size: .94rem; }
.footer__cols a:hover { color: var(--red); }
.footer__legal {
  max-width: var(--maxw); margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-mid);
}
.footer__legal a:hover { color: var(--ink); }

/* ============ ANIMATIONS ============ */
[data-anim="reveal"] .section__head,
[data-anim="reveal"] .section__title,
[data-anim="reveal"] .section__lead,
[data-anim="reveal"] .section__num {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0ms);
}
[data-anim="reveal"].is-in .section__num { opacity: 1; transform: translateY(0); --d: 0ms; }
[data-anim="reveal"].is-in .section__title { opacity: 1; transform: translateY(0); --d: 80ms; }
[data-anim="reveal"].is-in .section__lead { opacity: 1; transform: translateY(0); --d: 160ms; }

[data-anim="reveal"] .service,
[data-anim="reveal"] .tile,
[data-anim="reveal"] .process__steps li,
[data-anim="reveal"] .feature__img,
[data-anim="reveal"] .feature__body,
[data-anim="reveal"] .about__photo,
[data-anim="reveal"] .about__copy,
[data-anim="reveal"] .intro__statement,
[data-anim="reveal"] .intro__sig {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1s cubic-bezier(.2,.7,.3,1);
}
[data-anim="reveal"].is-in .service:nth-child(1) { transition-delay: 60ms; }
[data-anim="reveal"].is-in .service:nth-child(2) { transition-delay: 120ms; }
[data-anim="reveal"].is-in .service:nth-child(3) { transition-delay: 180ms; }
[data-anim="reveal"].is-in .service:nth-child(4) { transition-delay: 240ms; }
[data-anim="reveal"].is-in .service:nth-child(5) { transition-delay: 300ms; }
[data-anim="reveal"].is-in .service:nth-child(6) { transition-delay: 360ms; }
[data-anim="reveal"].is-in .service,
[data-anim="reveal"].is-in .tile,
[data-anim="reveal"].is-in .process__steps li,
[data-anim="reveal"].is-in .feature__img,
[data-anim="reveal"].is-in .feature__body,
[data-anim="reveal"].is-in .about__photo,
[data-anim="reveal"].is-in .about__copy,
[data-anim="reveal"].is-in .intro__statement,
[data-anim="reveal"].is-in .intro__sig { opacity: 1; transform: translateY(0); }

[data-anim="reveal"].is-in .tile:nth-child(1) { transition-delay: 60ms; }
[data-anim="reveal"].is-in .tile:nth-child(2) { transition-delay: 120ms; }
[data-anim="reveal"].is-in .tile:nth-child(3) { transition-delay: 180ms; }
[data-anim="reveal"].is-in .tile:nth-child(4) { transition-delay: 240ms; }
[data-anim="reveal"].is-in .tile:nth-child(5) { transition-delay: 300ms; }
[data-anim="reveal"].is-in .tile:nth-child(6) { transition-delay: 360ms; }
[data-anim="reveal"].is-in .tile:nth-child(7) { transition-delay: 420ms; }
[data-anim="reveal"].is-in .tile:nth-child(8) { transition-delay: 480ms; }

[data-anim="hero"] .hero__title .line { transform: translateY(102%); transition: transform 1.1s cubic-bezier(.2,.7,.3,1); }
[data-anim="hero"].is-in .hero__title .line:nth-child(1) { transform: translateY(0); transition-delay: 100ms; }
[data-anim="hero"].is-in .hero__title .line:nth-child(2) { transform: translateY(0); transition-delay: 220ms; }
[data-anim="hero"].is-in .hero__title .line:nth-child(3) { transform: translateY(0); transition-delay: 340ms; }
[data-anim="hero"] .hero__eyebrow,
[data-anim="hero"] .hero__lead,
[data-anim="hero"] .hero__ctas,
[data-anim="hero"] .hero__meta {
  opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
[data-anim="hero"].is-in .hero__eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
[data-anim="hero"].is-in .hero__lead { opacity: 1; transform: translateY(0); transition-delay: 520ms; }
[data-anim="hero"].is-in .hero__ctas { opacity: 1; transform: translateY(0); transition-delay: 620ms; }
[data-anim="hero"].is-in .hero__meta { opacity: 1; transform: translateY(0); transition-delay: 720ms; }

/* ============ KARO BACKGROUND PATTERN ============ */
.karo {
  position: fixed; inset: 0; z-index: 99;
  pointer-events: none;
  opacity: .85;
  mix-blend-mode: overlay;
  background-image:
    /* dots at intersections — adds depth */
    radial-gradient(circle at center, rgba(255,255,255,.10) 1px, transparent 1.6px),
    /* main grid lines */
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 64px 64px;
  background-position: 32px 32px, 0 0, 0 0;
  /* radial mask softens edges & gives 3D-vignette feel */
  -webkit-mask-image: radial-gradient(ellipse 110% 95% at 50% 50%, #000 25%, transparent 90%);
          mask-image: radial-gradient(ellipse 110% 95% at 50% 50%, #000 25%, transparent 90%);
}
@media (max-width: 880px) {
  .karo { background-size: 44px 44px, 44px 44px, 44px 44px; background-position: 22px 22px, 0 0, 0 0; opacity: .7; }
}

/* ============ FILM GRAIN ============ */
.grain {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none; opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  animation: grain 1.4s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-3%, 1%); }
  33%  { transform: translate(2%, -2%); }
  50%  { transform: translate(-1%, 3%); }
  66%  { transform: translate(2%, 1%); }
  83%  { transform: translate(-2%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 999;
  width: 0; height: 0; pointer-events: none;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor span {
  position: absolute; top: 0; left: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: width .25s cubic-bezier(.2,.7,.3,1), height .25s cubic-bezier(.2,.7,.3,1), opacity .2s;
  will-change: transform;
}
.cursor.is-hover span { width: 56px; height: 56px; }
.cursor.is-hidden span { opacity: 0; }
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, [role="slider"] { cursor: none; }
}

/* ============ HERO VIDEO ============ */
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.18) contrast(1.05) saturate(.88) brightness(.7);
  transform: scale(1.03);
  will-change: transform;
}
.hero__fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.18) contrast(1.05) saturate(.88) brightness(.7);
  z-index: -1;
}
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 35%, rgba(0,0,0,.6) 100%);
}

/* Hero title — capped so it doesn't crowd the nav */
.hero__title { font-size: clamp(2.8rem, 9.5vw, 8.5rem); }

/* ============ CINEMA INTERSTITIAL ============ */
.cinema {
  position: relative; height: clamp(380px, 65vh, 720px);
  overflow: hidden; isolation: isolate;
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
}
.cinema__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(.25) contrast(1.05) brightness(.7);
  transform: scale(1.06);
  z-index: -2;
  will-change: transform;
}
.cinema__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,11,.6) 0%, rgba(10,10,11,.35) 50%, rgba(10,10,11,.85) 100%),
    radial-gradient(50% 50% at 30% 50%, rgba(226,35,26,.18) 0%, transparent 70%);
}
.cinema__copy { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.cinema__num {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid); display: block; margin-bottom: 18px;
}
.cinema__copy h3 {
  font-family: var(--ff-body); font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw + .5rem, 4rem); line-height: 1.2; letter-spacing: -.02em;
  max-width: 22ch; color: var(--ink); text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.cinema__copy h3 em { color: var(--red); font-style: italic; font-weight: 400; }
.cinema--alt .cinema__copy { text-align: right; margin-left: auto; }

/* ============ SHOWCASE — pinned ============ */
.showcase {
  background: var(--bg);
  position: relative;
}
.showcase__pin {
  position: relative;
  min-height: 400vh;
}
.showcase__media {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  width: 100%;
  overflow: hidden;
}
.showcase__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1.4s cubic-bezier(.2,.7,.3,1);
  filter: grayscale(.1) contrast(1.05);
  will-change: opacity, transform;
}
.showcase__img.is-active { opacity: 1; transform: scale(1); }
.showcase__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.85) 0%, rgba(10,10,11,.55) 35%, rgba(10,10,11,.1) 65%, rgba(10,10,11,.7) 100%);
  pointer-events: none;
}

.showcase__rail {
  position: absolute; top: 5vh; left: var(--pad-x); z-index: 3;
}

.showcase__panels {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
}
.showcase__panel {
  flex: 1; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: calc(540px + var(--pad-x));
  padding: 0 var(--pad-x);
  color: var(--ink);
}
.showcase__index {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 22px;
}
.showcase__panel h3 {
  font-size: clamp(2.4rem, 4.5vw, 4.8rem); text-transform: uppercase; letter-spacing: -.025em;
  line-height: .95;
  margin-bottom: 24px;
}
.showcase__panel h3 em {
  font-family: var(--ff-body); font-weight: 300; font-style: italic;
  color: var(--ink-mid); text-transform: none; letter-spacing: -.03em;
}
.showcase__panel p {
  color: var(--ink-mid); font-size: clamp(1rem, .8vw + .6rem, 1.2rem); line-height: 1.6;
  max-width: 48ch; margin-bottom: 28px;
}
.showcase__panel p em { color: var(--red); font-style: italic; }
.showcase__specs {
  list-style: none; border-top: 1px solid var(--line);
}
.showcase__specs li {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid var(--line); font-size: .92rem;
}
.showcase__specs span {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid); padding-top: 2px;
}
.showcase__specs strong { color: var(--ink); font-weight: 500; }

.showcase__counter {
  position: sticky; top: calc(100vh - 76px); margin-left: auto;
  width: max-content; padding: 0 var(--pad-x);
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .14em;
  color: var(--ink-mid); z-index: 3;
}
.showcase__counter-num { font-family: var(--ff-display); font-size: 1.4rem; color: var(--red); margin-right: 6px; }

@media (max-width: 880px) {
  .showcase__pin { min-height: auto; }
  .showcase__media { position: relative; height: 60vh; }
  .showcase__panels { position: relative; }
  .showcase__panel { min-height: auto; padding: 56px var(--pad-x); margin: 0; max-width: none; border-bottom: 1px solid var(--line-soft); }
  .showcase__counter { display: none; }
  .showcase__rail { position: relative; padding: 32px var(--pad-x); top: 0; left: 0; }
  .showcase__img { transition: opacity .6s; }
}

/* ============ VORHER / NACHHER ============ */
.ba {
  padding: clamp(96px, 14vh, 160px) 0;
  background: var(--bg);
}
.ba__stage {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  margin-left: var(--pad-x); margin-right: var(--pad-x);
  aspect-ratio: 16/10;
  overflow: hidden; border-radius: var(--radius);
  user-select: none; touch-action: none;
}
.ba__after, .ba__before {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
  filter: grayscale(.05) contrast(1.04);
}
.ba__before-wrap {
  position: absolute; inset: 0;
  width: 50%; overflow: hidden; pointer-events: none;
  will-change: width;
}
.ba__before-wrap .ba__before {
  width: calc(100% / 0.5); /* keeps the inner image at full stage width */
  position: absolute; left: 0; top: 0;
}
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--ink);
  transform: translateX(-50%); cursor: ew-resize;
  will-change: left;
}
.ba__divider:focus { outline: none; }
.ba__divider:focus-visible::before { box-shadow: 0 0 0 3px var(--red); }
.ba__handle {
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
  transition: transform .2s cubic-bezier(.2,.7,.3,1);
}
.ba__divider:hover .ba__handle, .ba__divider:active .ba__handle { transform: translate(-50%, -50%) scale(1.08); }
.ba__label {
  position: absolute; bottom: 18px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); padding: 6px 12px;
  background: rgba(10,10,11,.65); backdrop-filter: blur(6px);
  border-radius: 999px;
}
.ba__label--before { left: 18px; }
.ba__label--after  { right: 18px; }

/* ============ SPRAY GUN SECTION ============ */
.spray {
  position: relative;
  padding: clamp(96px, 14vh, 160px) 0;
  background:
    radial-gradient(70% 60% at 80% 50%, rgba(226,35,26,.12) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.spray__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
}
.spray__head { padding: 0; margin-bottom: 80px; max-width: none; }
.spray__head .section__title { max-width: 18ch; }
.spray__head .section__lead { max-width: 56ch; }

.spray__stage {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 88px); align-items: center;
}

.spray__gun { position: relative; }
.spray__svg { width: 100%; height: auto; max-width: 640px; display: block; filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)); }
.spray__body { transform-origin: 70% 60%; }
.spray.is-spraying .spray__body { animation: gunKick 0.18s ease-in-out infinite alternate; }
@keyframes gunKick {
  to { transform: translate(-2px, 0); }
}

/* spray cone fades in/out as section enters */
.spray__cone-g { opacity: 0; transition: opacity .6s ease .2s; }
.spray.is-spraying .spray__cone-g { opacity: 1; }
.spray.is-spraying .spray__mist { animation: mistPulse 1.4s ease-in-out infinite; transform-origin: 490px 165px; }
@keyframes mistPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.18); opacity: .9; }
}

/* particles - radiating from nozzle */
.spray__particles { opacity: 0; transition: opacity .3s; }
.spray.is-spraying .spray__particles { opacity: 1; }
.spray__particles .p {
  transform-origin: 290px 165px;
  animation: particleFly 1.4s linear infinite;
  opacity: 0;
}
@keyframes particleFly {
  0%   { transform: translate(0, 0) scale(.6); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .8; }
  100% { transform: translate(220px, var(--py, 0)) scale(1.1); opacity: 0; }
}
.spray__particles .p1  { animation-delay: 0.00s; --py: -65px; }
.spray__particles .p2  { animation-delay: 0.08s; --py: -38px; }
.spray__particles .p3  { animation-delay: 0.16s; --py: -10px; }
.spray__particles .p4  { animation-delay: 0.24s; --py: 12px; }
.spray__particles .p5  { animation-delay: 0.32s; --py: 42px; }
.spray__particles .p6  { animation-delay: 0.40s; --py: 70px; }
.spray__particles .p7  { animation-delay: 0.48s; --py: -55px; }
.spray__particles .p8  { animation-delay: 0.56s; --py: -22px; }
.spray__particles .p9  { animation-delay: 0.64s; --py: 5px; }
.spray__particles .p10 { animation-delay: 0.72s; --py: 28px; }
.spray__particles .p11 { animation-delay: 0.80s; --py: 50px; }
.spray__particles .p12 { animation-delay: 0.88s; --py: -42px; }

/* paint cup — fluid level subtle wobble */
.cup__paint { transform-origin: center; animation: paintWobble 3s ease-in-out infinite; }
@keyframes paintWobble {
  0%, 100% { transform: translateY(0) skewX(0deg); }
  50%      { transform: translateY(1px) skewX(-1deg); }
}

/* trigger pulled when spraying */
.spray__trigger { transition: transform .3s cubic-bezier(.2,.7,.3,1); transform-origin: 226px 232px; }
.spray.is-spraying .spray__trigger { transform: rotate(-12deg); }

/* layers */
.spray__layers { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.layer {
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
}
.layer:last-child { padding-bottom: 6px; }
.layer header {
  display: grid; grid-template-columns: 50px 1fr auto; align-items: baseline; gap: 18px;
  margin-bottom: 18px;
}
.layer__num {
  font-family: var(--ff-display); font-size: 2.2rem; line-height: 1; color: var(--ink-mid);
}
.layer__name {
  font-family: var(--ff-display); font-size: clamp(1.6rem, 1.6vw + .8rem, 2.4rem);
  text-transform: uppercase; letter-spacing: -.01em; color: var(--ink); line-height: 1;
}
.layer__hint {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid); white-space: nowrap;
}
.layer__bar {
  position: relative; height: 6px; background: var(--bg-elev);
  border-radius: 99px; overflow: hidden;
}
.layer__fill {
  position: absolute; inset: 0 100% 0 0;
  border-radius: 99px;
  transition: right 1.4s cubic-bezier(.2,.7,.3,1);
}
.layer[data-layer="1"] .layer__fill { background: linear-gradient(90deg, #6F6C68, #9C9A95); }
.layer[data-layer="2"] .layer__fill { background: linear-gradient(90deg, #B81913, var(--red)); }
.layer[data-layer="3"] .layer__fill { background: linear-gradient(90deg, rgba(245,242,237,.4), #F5F2ED); }

.spray.is-filling .layer[data-layer="1"] .layer__fill { right: 0; transition-delay: 0.2s; }
.spray.is-filling .layer[data-layer="2"] .layer__fill { right: 0; transition-delay: 1.2s; }
.spray.is-filling .layer[data-layer="3"] .layer__fill { right: 0; transition-delay: 2.2s; }

@media (max-width: 880px) {
  .spray__stage { grid-template-columns: 1fr; gap: 48px; }
  .spray__gun { max-width: 480px; margin: 0 auto; }
  .layer header { grid-template-columns: 36px 1fr; gap: 14px; }
  .layer__hint { grid-column: 1 / -1; padding-top: 6px; }
}

/* ============ CONTACT enhanced ============ */

/* ============ MOBILE COMPREHENSIVE PASS ============ */
@media (max-width: 880px) {
  :root { --pad-x: clamp(18px, 5vw, 28px); }

  /* Section paddings tighter on mobile */
  .intro, .services, .feature, .gallery, .process, .about, .trust, .contact, .spray, .ba {
    padding: clamp(72px, 9vh, 100px) 0;
  }
  .trust, .contact, .intro { padding-left: var(--pad-x); padding-right: var(--pad-x); }

  /* Section heads */
  .section__head { margin-bottom: 36px; }
  .section__title { font-size: clamp(2.1rem, 8vw, 3rem); margin: 12px 0 14px; }
  .section__lead { font-size: 1rem; }

  /* Hero */
  .hero { padding-top: clamp(100px, 14vh, 130px); padding-bottom: 48px; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 4rem); margin: 18px 0 20px; }
  .hero__lead { font-size: 1rem; }
  .hero__ctas { margin-top: 24px; gap: 10px; }
  .hero__ctas .btn { padding: 14px 18px; font-size: 13px; }
  .hero__meta { margin-top: 40px; gap: 20px 32px; padding-top: 24px; }
  .hero__meta li { flex: 1 1 38%; }
  .hero__meta strong { font-size: 1.6rem; }
  .hero__rail { display: none; }
  .hero__eyebrow { font-size: 10px; padding: 6px 12px; }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee__track { gap: 32px; font-size: clamp(1.2rem, 5vw, 1.8rem); }

  /* Intro */
  .intro__statement { font-size: clamp(1.3rem, 5.4vw, 1.9rem); max-width: none; }
  .intro__sig { margin-top: 40px; flex-wrap: wrap; gap: 14px; }
  .intro__sig img { width: 56px; height: 56px; }
  .intro__sig p { font-size: 1.2rem; }

  /* Cinema interstitial */
  .cinema { height: clamp(320px, 50vh, 480px); padding: 0 var(--pad-x); }
  .cinema__copy h3 { font-size: clamp(1.4rem, 5vw, 2rem); max-width: 26ch; }
  .cinema--alt .cinema__copy { text-align: left; margin-left: 0; }

  /* Services */
  .services__grid { gap: 1px; }
  .service { min-height: 240px; padding: 28px 22px 24px; gap: 10px; }
  .service h3 { font-size: 1.4rem; }
  .service p { font-size: .92rem; }

  /* Spray section */
  .spray__head { margin-bottom: 40px; }
  .spray__stage { gap: 36px; }
  .spray__svg { max-width: 400px; }
  .spray__layers { gap: 18px; }
  .layer { padding: 16px 0 0; }
  .layer header { margin-bottom: 12px; }
  .layer__num { font-size: 1.6rem; }
  .layer__name { font-size: 1.2rem; }
  .layer__hint { font-size: 10px; }

  /* Showcase fallback */
  .showcase__pin { min-height: auto; }
  .showcase__media { position: relative; height: 50vh; min-height: 320px; }
  .showcase__media::after { background: linear-gradient(180deg, transparent 50%, rgba(10,10,11,.85) 100%); }
  .showcase__panels { position: relative; }
  .showcase__panel {
    min-height: auto; padding: 40px var(--pad-x); margin: 0; max-width: none;
    border-bottom: 1px solid var(--line-soft);
  }
  .showcase__panel:last-child { border-bottom: 0; }
  .showcase__panel h3 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .showcase__rail { position: absolute; padding: 16px var(--pad-x); top: 12px; left: 0; z-index: 5; }
  .showcase__counter { display: none; }

  /* Vorher/Nachher */
  .ba__stage { aspect-ratio: 4/5; max-height: 70vh; margin-left: var(--pad-x); margin-right: var(--pad-x); }
  .ba__handle { width: 48px; height: 48px; }
  .ba__label { font-size: 10px; padding: 5px 10px; bottom: 14px; }
  .ba__label--before { left: 14px; }
  .ba__label--after  { right: 14px; }

  /* Feature (only if still rendered) */
  .feature__split { gap: 20px; }
  .feature__specs li { grid-template-columns: 90px 1fr; padding: 11px 0; font-size: .9rem; }

  /* Gallery */
  .gallery__grid { grid-auto-rows: 240px; gap: 10px; }
  .tile__cap { font-size: 10px; }

  /* Process */
  .process__steps li { padding: 28px 22px; gap: 10px; }
  .process__steps h3 { font-size: 1.4rem; }
  .step__num { font-size: 2.6rem; }

  /* About */
  .about__photo { aspect-ratio: 4/3; }
  .about__copy p { font-size: 1rem; }

  /* Trust */
  .trust p { font-size: clamp(1.2rem, 5.6vw, 1.8rem); }

  /* Contact */
  .contact__side { gap: 20px; }
  .contact__block { padding: 20px; }

  /* Footer */
  .footer { padding: 48px var(--pad-x) 24px; }
  .footer__inner { gap: 36px; }
  .footer__legal { font-size: 10px; }

  /* Nav */
  .nav { padding: 12px var(--pad-x); }
  .nav__brand img { width: 110px; }

  /* Hide custom cursor on mobile */
  .cursor { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  :root { --pad-x: 18px; }
  .hero__title { font-size: clamp(2.2rem, 12vw, 3rem); }
  .hero__lead { font-size: .94rem; }
  .hero__meta li { flex: 1 1 100%; }
  .hero__meta strong { font-size: 1.4rem; }
  .hero__eyebrow { font-size: 9.5px; padding: 5px 10px; }
  .hero__ctas .btn { padding: 12px 14px; font-size: 12.5px; }

  .section__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .section__lead { font-size: .94rem; }

  .marquee__track { font-size: clamp(1.05rem, 6vw, 1.4rem); gap: 24px; }
  .marquee { padding: 12px 0; }

  .intro__statement { font-size: clamp(1.2rem, 6vw, 1.6rem); line-height: 1.25; }
  .intro__sig img { width: 48px; height: 48px; }
  .intro__sig p { font-size: 1.05rem; }

  .cinema { height: 320px; }
  .cinema__copy h3 { font-size: clamp(1.15rem, 5vw, 1.5rem); }

  .service { min-height: 200px; padding: 24px 18px 20px; }
  .service h3 { font-size: 1.2rem; }
  .service p { font-size: .88rem; line-height: 1.55; }

  .spray__svg { max-width: 340px; }
  .spray__head { margin-bottom: 28px; }
  .layer__num { font-size: 1.3rem; }
  .layer__name { font-size: 1.05rem; }

  .showcase__media { height: 44vh; min-height: 280px; }
  .showcase__panel { padding: 32px var(--pad-x); }
  .showcase__panel h3 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .ba__stage { aspect-ratio: 3/4; }
  .ba__handle { width: 44px; height: 44px; }

  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 8px; }
  .gallery__grid .tile--wide,
  .gallery__grid .tile--tall { grid-column: auto; grid-row: auto; }

  .process__steps li { padding: 24px 18px; }
  .process__steps h3 { font-size: 1.2rem; }
  .step__num { font-size: 2.2rem; }

  .about__copy p { font-size: .94rem; line-height: 1.6; }
  .about__list li { font-size: .94rem; }

  .trust p { font-size: clamp(1.1rem, 6vw, 1.6rem); }
  .trust { padding: 80px 18px; }

  .contact__form { grid-template-columns: 1fr; gap: 14px; }
  .field input, .field select, .field textarea { padding: 12px 14px; font-size: .96rem; }

  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand img { width: 120px; }

  .nav { padding: 10px 18px; }
  .nav__brand img { width: 100px; }

  /* Local page tweaks */
  .local-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .local-hero__lead { font-size: .94rem; }
  .local-intro__copy { font-size: .96rem; }
  .faq__item summary { font-size: 1.02rem; padding: 16px 8px 16px 0; }
  .faq__item summary::after { font-size: 1.3rem; }
  .faq__item p { font-size: .92rem; line-height: 1.6; }
  .near__chip { padding: 18px; }
  .near__chip span:first-child { font-size: 1.2rem; }
  .cta-strip__inner { gap: 22px; }
  .cta-strip h2 { font-size: clamp(1.4rem, 7vw, 2rem); }
  .hub__card { padding: 24px 22px; }
  .hub__name { font-size: 1.5rem; }
  .crumbs { padding-top: 76px; }
}

/* Touch device tweaks */
@media (hover: none) and (pointer: coarse) {
  .cursor, body { cursor: auto; }
  .cursor { display: none !important; }
  /* Tiles: show caption always on touch since hover doesn't work */
  .tile::after, .tile .tile__cap { opacity: 1; transform: translateY(0); }
  .tile::after { background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,.75) 100%); }
  .service::before { opacity: .35; }
  .service::after { opacity: .85; }
}

/* Landscape phone — prevent hero from being too tall */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: 100vh; padding-top: 88px; padding-bottom: 32px; }
  .hero__title { font-size: clamp(2rem, 8vh, 3rem); margin: 12px 0 14px; }
  .hero__meta { display: none; }
  .hero__lead { font-size: .88rem; }
  .hero__ctas { margin-top: 16px; }
  .local-hero { min-height: 100vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0ms !important; transition-duration: 0ms !important; }
  .marquee__track { animation: none; }
}
