/* =========================================================================
   Benske Media — Immobilienmedien Hamburg
   Cinematic Dark · Exaggerated Minimalism
   Design tokens + components. Tailwind (Play CDN) handles layout utilities;
   this layer owns the brand system, typography, and motion.
   ========================================================================= */

:root {
  /* --- Surfaces --- */
  --ink:        #0E0E10;   /* page background */
  --ink-2:      #141417;   /* elevated bands */
  --ink-3:      #1B1B20;   /* cards */
  --line:       rgba(245, 244, 239, 0.08);
  --line-2:     rgba(245, 244, 239, 0.16);

  /* --- Text --- */
  --text:       #F5F4EF;
  --text-dim:   #A5A29B;   /* muted warm gray, ≥4.5:1 on --ink */
  --text-faint: #6F6C66;

  /* --- Accent: warm brass --- */
  --brass:      #C8A96A;
  --brass-2:    #DAC08A;
  --brass-dim:  rgba(200, 169, 106, 0.14);

  /* --- Type --- */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* --- Rhythm --- */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(5rem, 12vw, 10rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brass); color: #17130A; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.band { background: var(--ink-2); border-block: 1px solid var(--line); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.005em;
}
h1.display { font-size: clamp(2.3rem, 6vw, 5.4rem); font-weight: 400; }
h2.display { font-size: clamp(2.4rem, 6vw, 4.75rem); }
h3.display { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--text-dim); max-width: 52ch; }
.muted { color: var(--text-dim); }
.italic-serif { font-family: var(--font-display); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 1rem; --pad-x: 1.9rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: var(--pad-y) var(--pad-x);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  cursor: pointer; background: transparent; color: var(--text);
  transition: background .35s var(--ease-out), color .35s var(--ease-out),
              border-color .35s var(--ease-out), transform .35s var(--ease-out);
  min-height: 48px;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--brass); border-color: var(--brass); color: #17130A; }
.btn-primary:hover { background: var(--brass-2); border-color: var(--brass-2); }
.btn-ghost:hover { border-color: var(--text); background: rgba(245,244,239,0.04); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.link-underline {
  position: relative; color: var(--text);
  padding-bottom: 2px; letter-spacing: 0.02em;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background .4s var(--ease-out), padding .4s var(--ease-out),
              border-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 14, 16, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 1rem;
}
.brand { display: flex; align-items: baseline; gap: 0.55rem; }
.brand .mark {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.02em;
}
.brand .mark b { color: var(--brass); font-weight: 600; }
.brand .sub {
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-dim);
  transition: color .3s var(--ease-out); position: relative; padding-block: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brass);
}
.nav-cta { display: inline-flex; }

/* mobile menu */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 1.5px; width: 26px; background: var(--text); transition: transform .4s var(--ease-out), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform .55s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; width: 100%; }
.mobile-menu a {
  display: block; width: 100%;
  font-family: var(--font-display); font-size: clamp(1.9rem, 8vw, 2.8rem);
  line-height: 1.1; padding-block: 0.85rem; color: var(--text-dim); transition: color .3s;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--brass); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; text-align: center; overflow: hidden; padding-top: 7rem; }
.hero-media { position: absolute; inset: -8% 0 0 0; z-index: 0; }
.hero-media img { animation: heroZoom 7s var(--ease-out) both; }
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.15) 30%, rgba(14,14,16,0.75) 78%, var(--ink) 100%),
    radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(14,14,16,0.5) 100%);
}
.hero-media img, .hero-media video { width: 100%; height: 116%; object-fit: cover; filter: saturate(0.92) contrast(1.02); }
.hero-inner { position: relative; z-index: 2; width: 100%; text-shadow: 0 2px 26px rgba(0,0,0,0.5); }
.hero .eyebrow { justify-content: center; color: #E8E2D2; font-weight: 500; font-size: 0.66rem; opacity: 0.9; }
.hero .eyebrow::after { content: ""; width: 2rem; height: 1px; background: var(--brass); opacity: 0.7; }
.hero h1 { margin: 1.4rem auto 0; max-width: 22ch; }
.hero .lead { margin: 1.6rem auto 0; color: #E7E3DB; font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; justify-content: center; }
.hero-scroll { margin-top: 2.4rem; display: inline-flex; flex-direction: column; align-items: center; gap: 0.55rem; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); }
.hero-scroll .line { width: 1px; height: 32px; background: linear-gradient(var(--brass), transparent); animation: cue 2.4s var(--ease-out) infinite; transform-origin: top; }
@media (prefers-reduced-motion: reduce) { .hero-scroll .line { animation: none; } }
.hero-meta {
  position: absolute; right: var(--gutter); bottom: clamp(3rem,8vh,6rem); z-index: 2;
  text-align: right; display: none;
}
.hero-meta .n { font-family: var(--font-display); font-size: 3rem; color: var(--brass); line-height: 1; }
.hero-meta .l { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 1;
  display: none;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-cue .bar { width: 1px; height: 44px; background: linear-gradient(var(--brass), transparent); animation: cue 2.4s var(--ease-out) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.3); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--ink); padding: clamp(1.8rem, 4vw, 3rem) var(--gutter); }
.stat.adv { display: flex; flex-direction: column; gap: 0.55rem; }
.adv-ico { color: var(--brass); }
.adv-ico svg { width: 30px; height: 30px; }
.stat.adv h3.display { font-size: 1.4rem; margin: 0.5rem 0 0.1rem; }
.stat.adv .l { text-transform: none; letter-spacing: 0; font-size: 0.96rem; color: var(--text-dim); line-height: 1.55; margin-top: 0; }
.stat.adv { position: relative; transition: background .45s var(--ease-out); }
.stat.adv::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.stat.adv:hover { background: linear-gradient(180deg, rgba(200,169,106,0.07), transparent 70%); }
.stat.adv:hover::before { transform: scaleX(1); }
.stat.adv .adv-ico { transition: transform .45s var(--ease-out), filter .45s var(--ease-out); }
.stat.adv:hover .adv-ico { transform: translateY(-3px) scale(1.06); filter: drop-shadow(0 0 12px rgba(200,169,106,0.55)); }
.stat.adv h3.display { transition: color .4s var(--ease-out); }
.stat.adv:hover h3.display { color: var(--brass-2); }
.stat .n { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--text); line-height: 1; }
.stat .n b { color: var(--brass); font-weight: inherit; }
.stat .l { margin-top: 0.6rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- Section head ---------- */
.section-head { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.split { grid-template-columns: 1.2fr 1fr; align-items: end; }
.section-head p { margin: 0; }

/* ---------- Leistungen ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0; border-bottom: 1px solid var(--line);
  position: relative; transition: padding-left .45s var(--ease-out);
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, var(--brass-dim), transparent);
  transition: width .5s var(--ease-out); z-index: 0;
}
.svc:hover { padding-left: 1.4rem; }
.svc:hover::before { width: 42%; }
.svc > * { position: relative; z-index: 1; }
.svc .idx { font-family: var(--font-display); font-size: 1.1rem; color: var(--brass); width: 3ch; }
.svc .body h3 { margin: 0 0 0.4rem; }
.svc .body p { margin: 0; max-width: 60ch; }
.svc .price { text-align: right; white-space: nowrap; }
.svc .price .from { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.svc .price .amt { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); }
.price .on-request {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass);
}
.price .on-request svg { width: 1em; height: 1em; transition: transform .35s var(--ease-out); }
.svc:hover .price .on-request svg { transform: translateX(4px); }

/* ---------- Referenzen grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.work {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--ink-3); border: 1px solid var(--line);
  grid-column: span 6; aspect-ratio: 4 / 3;
}
.work.tall { grid-column: span 6; aspect-ratio: 3 / 4; }
.work.wide { grid-column: span 12; aspect-ratio: 21 / 9; }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out), filter .6s; filter: saturate(0.9); }
.work:hover img { transform: scale(1.06); filter: saturate(1.05); }
.work-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: flex-end; padding: clamp(1.2rem, 2.5vw, 2rem);
  background: linear-gradient(180deg, transparent 40%, rgba(14,14,16,0.85) 100%);
}
.work .cat { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); opacity: 0; transform: translateY(8px); transition: .5s var(--ease-out); }
.work .title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 2rem); margin-top: 0.3rem; }
.work:hover .cat { opacity: 1; transform: translateY(0); }
.work .place-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); background: rgba(14,14,16,0.6); border: 1px solid var(--line-2);
  padding: 0.3rem 0.6rem; border-radius: 100px; backdrop-filter: blur(6px);
}

/* ---------- Filter chips ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.chip {
  font-size: 0.74rem; letter-spacing: 0.08em; padding: 0.55rem 1.1rem;
  border: 1px solid var(--line-2); border-radius: 100px; color: var(--text-dim);
  background: transparent; cursor: pointer; transition: .3s var(--ease-out); min-height: 40px;
}
.chip:hover { color: var(--text); border-color: var(--text-dim); }
.chip.active { background: var(--brass); border-color: var(--brass); color: #17130A; }

/* ---------- Split feature ---------- */
.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-feature .media { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.split-feature .media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

/* ---------- Founders intro ---------- */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.founders-media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.8rem, 1.5vw, 1.2rem); }
.portrait { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 3/4; }
.portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.02); transition: transform 1s var(--ease-out); }
.portrait:hover img { transform: scale(1.05); }
.portrait figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(14,14,16,0.9));
  font-family: var(--font-display); font-size: 1.2rem; color: var(--text);
}
.portrait figcaption span { display: block; font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-top: 0.25rem; }
.portrait.offset { margin-top: clamp(1.6rem, 4vw, 3rem); }
.credential { position: relative; font-size: 0.9rem; color: var(--text-dim); line-height: 1.55; padding: 0.95rem 1.1rem 0.95rem 2.9rem; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--brass-dim); }
.credential svg { position: absolute; left: 1.1rem; top: 0.95rem; width: 20px; height: 20px; color: var(--brass); }
.credential b { color: var(--text); font-weight: 600; }

/* ---------- Gear frame + skill tags ---------- */
.gear-frame { aspect-ratio: 2138 / 1512; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.gear-frame img { width: 100%; height: 100%; object-fit: cover; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-list span { font-size: 0.82rem; letter-spacing: 0.03em; padding: 0.5rem 1rem; border: 1px solid var(--line-2); border-radius: 100px; color: var(--text-dim); }

/* ---------- Before/After slider (Virtual Staging) ---------- */
.ba { --pos: 50%; position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); touch-action: pan-y; cursor: ew-resize; }
.ba .layer { position: absolute; inset: 0; }
.ba .layer img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba .layer.after { clip-path: inset(0 0 0 var(--pos)); }
.ba .divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--brass); pointer-events: none; }
.ba .knob {
  position: absolute; top: 50%; left: var(--pos); width: 48px; height: 48px;
  transform: translate(-50%, -50%); border-radius: 50%; background: var(--brass); color: #17130A;
  display: grid; place-items: center; cursor: ew-resize; box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}
.ba .knob svg { width: 24px; height: 24px; }
.ba .knob:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }
.ba.dragging { cursor: ew-resize; }
.ba.dragging .layer.after { clip-path: inset(0 0 0 var(--pos)); } /* no transition while dragging */
.ba .ba-badge {
  position: absolute; top: 1rem; z-index: 3; font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text); background: rgba(14,14,16,0.62);
  border: 1px solid var(--line-2); padding: 0.35rem 0.7rem; border-radius: 100px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); pointer-events: none;
}
.ba .ba-badge.l { left: 1rem; }
.ba .ba-badge.r { right: 1rem; }

/* ---------- Reels ---------- */
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.reel { position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); display: grid; place-items: center; background: radial-gradient(120% 80% at 50% 32%, #2a2320, var(--ink-3)); transition: transform .5s var(--ease-out), border-color .4s var(--ease-out); }
.reel:hover { transform: translateY(-4px); border-color: var(--brass); }
.reel-play { width: 64px; height: 64px; border-radius: 50%; background: var(--brass); color: #17130A; display: grid; place-items: center; transition: transform .4s var(--ease-out); }
.reel-play svg { width: 26px; height: 26px; margin-left: 3px; }
.reel:hover .reel-play { transform: scale(1.08); }
.reel-tag { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
@media (max-width: 720px) { .reels-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .reels-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }

/* ---------- Footer logo ---------- */
.footer-logo { width: 88px; height: auto; display: block; margin-bottom: 0.6rem; }

/* ---------- Staging showcase grid (multiple sliders) ---------- */
.staging-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.6vw, 2rem); }
.staging-item { margin: 0; }
.staging-item figcaption { margin-top: 0.9rem; font-family: var(--font-display); font-size: 1.25rem; color: var(--text); }
@media (max-width: 720px) { .staging-grid { grid-template-columns: 1fr; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink); padding-block: clamp(1.1rem, 2.5vw, 1.8rem); }
.marquee-track { display: inline-flex; gap: clamp(1.6rem, 3vw, 2.6rem); white-space: nowrap; align-items: center; will-change: transform; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 3.2vw, 2.4rem); color: var(--text); }
.marquee-track .dot { color: var(--brass); font-style: normal; font-size: 0.8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.step .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--brass); line-height: 1; }
.step h3 { margin: 0.8rem 0 0.5rem; font-size: 1.15rem; }
.step p { margin: 0; font-size: 0.95rem; }
.step { padding-top: 1.4rem; border-top: 1px solid var(--line-2); }

/* ---------- Testimonial ---------- */
.quote { max-width: 24ch; }
.quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.18; font-weight: 400; margin: 0; letter-spacing: -0.01em;
}
.quote blockquote .mark { color: var(--brass); }
.quote .cite { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; }
.quote .cite .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-2); }
.quote .cite .who b { display: block; font-weight: 500; }
.quote .cite .who span { font-size: 0.85rem; color: var(--text-dim); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin: 1.2rem auto 1.6rem; max-width: 18ch; }
.cta-band .lead { margin-inline: auto; text-align: center; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.field .req { color: var(--brass); }
.field input, .field select, .field textarea {
  background: var(--ink-3); border: 1px solid var(--line-2); border-radius: var(--radius);
  color: var(--text); font-family: inherit; font-size: 1rem; padding: 0.95rem 1.05rem;
  transition: border-color .3s, background .3s; min-height: 52px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); background: #1f1f25;
}
.field .help { font-size: 0.78rem; color: var(--text-faint); }
.field .error { font-size: 0.78rem; color: #E9887A; display: none; }
.field.invalid .error { display: block; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #E9887A; }
.form-note { font-size: 0.8rem; color: var(--text-faint); }
.form-status { display: none; padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.92rem; margin-top: 1rem; }
.form-status.ok { display: block; background: rgba(200,169,106,0.12); border: 1px solid var(--brass); color: var(--brass-2); }
.form-status.wait { display: block; background: rgba(245,244,239,0.05); border: 1px solid var(--line-2); color: var(--text-dim); }
.form-status.err { display: block; background: rgba(233,136,122,0.12); border: 1px solid #E9887A; color: #E9887A; }

/* contact info cards */
.info-list { display: grid; gap: 1.6rem; }
.info-item { display: flex; gap: 1rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.info-item svg { width: 22px; height: 22px; color: var(--brass); flex: none; margin-top: 3px; }
.info-item .k { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.info-item .v { font-size: 1.05rem; margin-top: 0.2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.footer h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 1.3rem; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.footer ul a { color: var(--text-dim); transition: color .3s; font-size: 0.95rem; }
.footer ul a:hover { color: var(--brass); }
.footer .brand .mark { font-size: 1.8rem; }
.footer .tag { color: var(--text-dim); max-width: 34ch; margin-top: 1rem; font-size: 0.95rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.8rem; flex-wrap: wrap; }
.footer-bottom, .footer-bottom a { font-size: 0.82rem; color: var(--text-faint); }
.footer-bottom a:hover { color: var(--text-dim); }
.socials { display: flex; gap: 0.8rem; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 50%; transition: .3s; }
.socials a:hover { border-color: var(--brass); color: var(--brass); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(9rem, 16vh, 13rem); padding-bottom: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 1.2rem 0 0; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text-faint); }
.breadcrumb a:hover { color: var(--brass); }

/* ---------- Reveal animations (JS-driven, reduced-motion safe) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.no-anim [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (min-width: 720px) { .hero-meta { display: block; } }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .section-head.split { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature .media { order: -1; aspect-ratio: 4/5; max-width: 420px; margin-inline: auto; }
  .founders { grid-template-columns: 1fr; }
  .founders-media { order: -1; }
  .portrait.offset { margin-top: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: auto 1fr; }
  .svc .price { grid-column: 2; text-align: left; margin-top: 0.4rem; }
  .work.wide { aspect-ratio: 16/10; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .work, .work.tall { grid-column: span 12; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .scroll-cue .bar { animation: none; }
}
