/* ============================================================
   The Collective Auto Depot — Heritage Edition
   Light cream + brass editorial luxury
   ============================================================ */

:root {
  --paper: #f2ecdd;
  --paper-2: #e8e0cb;
  --paper-3: #ddd3ba;
  --ink: #221b11;
  --ink-2: #14100a;
  --muted: #6f6757;
  --brass: #a8853b;
  --brass-2: #8a6b2c;
  --brass-soft: rgba(168, 133, 59, 0.16);
  --line: rgba(34, 27, 17, 0.14);
  --line-strong: rgba(34, 27, 17, 0.28);
  --paper-plain: #faf7ef;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --nav-h: 84px;
  --gutter: clamp(20px, 4.5vw, 72px);
}

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

html.js { scrollbar-gutter: stable; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.loading { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--brass); color: var(--paper-plain); }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding-inline: var(--gutter); }

.mono { font-family: var(--font-mono); }
.brass-text { color: var(--brass); font-style: italic; }

/* ---------- Film grain + vignette ---------- */

.grain {
  position: fixed; inset: -200px; z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2"/></filter><rect width="300" height="300" filter="url(%23n)"/></svg>');
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-22px, 18px); }
  50% { transform: translate(14px, -26px); }
  75% { transform: translate(-8px, -12px); }
  100% { transform: translate(0, 0); }
}

.vignette {
  position: fixed; inset: 0; z-index: 1999;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(20, 16, 10, 0.35) 100%);
  opacity: 0.25;
}

/* ---------- Custom cursor ---------- */

.cursor { position: fixed; top: 0; left: 0; z-index: 3000; pointer-events: none; }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cursor-grow .cursor-ring {
  width: 60px; height: 60px;
  background: rgba(168, 133, 59, 0.12);
  border-color: var(--brass-2);
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- Preloader ---------- */

#preloader {
  position: fixed; inset: 0; z-index: 5000;
  display: none;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
}
.pre-inner { display: grid; place-items: center; gap: 14px; text-align: center; }
.pre-logo { width: 58px; height: auto; filter: drop-shadow(0 2px 8px rgba(20,16,10,0.12)); }
.pre-lockup { display: grid; gap: 2px; }
.pre-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.pre-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; }
.pre-bar {
  width: min(260px, 60vw); height: 1px;
  background: var(--line);
  margin-top: 14px; overflow: hidden;
}
.pre-bar span {
  display: block; height: 100%;
  background: var(--brass);
  transform: scaleX(0); transform-origin: left;
}
.pre-count { font-family: var(--font-mono); font-size: 13px; color: var(--brass-2); }

/* ---------- Nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(242, 236, 221, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav.nav-hidden { transform: translateY(-110%); }

.nav-logo img { width: 54px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link { position: relative; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); padding: 6px 0; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 7px;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
}
.nav-burger span { display: block; width: 18px; height: 1px; background: var(--ink); transition: transform 0.35s ease, opacity 0.25s ease; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  will-change: transform;
}
.btn-ink { background: var(--ink); color: var(--paper-plain); border: 1px solid var(--ink); }
.btn-ink:hover { background: var(--brass); border-color: var(--brass); color: var(--ink-2); }
.btn-line { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-line:hover { border-color: var(--brass); color: var(--brass-2); }

/* ---------- Full-screen menu ---------- */

.menu {
  position: fixed; inset: 0; z-index: 1400;
  background: var(--paper);
  color: var(--ink);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 20px) var(--gutter) 40px;
  clip-path: inset(0% 0% 100% 0%);
  visibility: hidden;
}
.menu-links { display: flex; flex-direction: column; gap: 4px; }
.menu-link {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 1.1;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  transition: color 0.3s ease;
}
.menu-link:hover { color: var(--brass); font-style: italic; }
.menu-num { font-family: var(--font-mono); font-size: 13px; color: var(--brass); }
.menu-foot {
  margin-top: auto;
  display: grid; gap: 6px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--muted);
}
.menu-foot a:hover { color: var(--brass); }

/* ---------- Kicker ---------- */

.kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-2);
  display: flex; align-items: center; gap: 14px;
}
.kicker::before { content: ''; width: 34px; height: 1px; background: var(--brass); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--paper);
}
.hero-bg { position: absolute; inset: -12% 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); filter: saturate(0.85) sepia(0.12); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(242, 236, 221, 0.94) 0%, rgba(242, 236, 221, 0.72) 34%, rgba(242, 236, 221, 0.12) 62%, rgba(20, 16, 10, 0.25) 100%),
    linear-gradient(0deg, var(--paper) 0%, transparent 22%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-top: calc(var(--nav-h) + 10vh);
  padding-bottom: clamp(72px, 12vh, 140px);
}
.hero-kicker { margin-bottom: clamp(22px, 4vh, 40px); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(54px, 10.5vw, 168px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-title .line { display: block; overflow: hidden; padding: 0.04em 0; }
.hero-sub {
  margin-top: clamp(22px, 4vh, 40px);
  max-width: 520px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink);
  opacity: 0.9;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 4.5vh, 46px); }
.hero-cue {
  position: absolute; bottom: 30px; right: var(--gutter);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cue-line { width: 1px; height: 56px; background: var(--ink); position: relative; overflow: hidden; }
.cue-line::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--brass);
  animation: cueDrop 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes cueDrop { 0% { top: -50%; } 100% { top: 110%; } }
.cue-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

/* ---------- Marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  display: grid;
}
.mq-track {
  display: flex; white-space: nowrap;
  padding: 14px 0;
}
.mq-track-1 { color: var(--muted); }
.mq-track-1 span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 2vw, 20px);
  color: var(--brass);
  padding: 0 24px;
}
.mq-track-2 { color: transparent; -webkit-text-stroke: 1px var(--line-strong); }
.mq-track-2 span {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  padding: 0 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.js .mq-track { animation: mq-scroll 22s linear infinite; }
.js .mq-track-2 { animation-direction: reverse; animation-duration: 30s; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section { padding: clamp(88px, 12vw, 168px) 0; position: relative; }

/* ---------- Intro ---------- */

.intro-statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 74px);
  line-height: 1.08;
  max-width: 1000px;
  margin-top: 34px;
}
.intro-grid {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.intro-text { font-size: clamp(15px, 1.5vw, 18px); color: var(--muted); max-width: 620px; }
.intro-meta { display: grid; gap: 8px; border-left: 1px solid var(--brass); padding-left: 22px; }
.meta-line { font-family: var(--font-mono); font-size: 12px; color: var(--ink); letter-spacing: 0.08em; }

/* ---------- Facility / gallery pin ---------- */

.facility-head { margin-bottom: clamp(40px, 6vw, 80px); }
.facility-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6vw, 84px); line-height: 1.04; margin-top: 30px; }
.gallery-pin { position: relative; overflow: hidden; }
.gallery-track {
  display: flex; gap: clamp(18px, 2.5vw, 36px);
  padding-inline: var(--gutter);
  width: max-content;
  will-change: transform;
}
.g-card { flex-shrink: 0; width: clamp(300px, 34vw, 520px); }
.g-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
}
.g-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s ease;
  filter: saturate(0.85) sepia(0.08) contrast(1.02);
}
.g-card:hover .g-img img { transform: scale(1.1); }
.g-card figcaption { display: flex; align-items: baseline; gap: 16px; padding-top: 18px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.g-num { font-family: var(--font-mono); font-size: 11px; color: var(--brass); }
.g-name { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; }
.g-cap { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-left: auto; text-align: right; }
.gallery-hint {
  position: absolute; left: 50%; bottom: -46px;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .gallery-pin { overflow-x: auto; overscroll-behavior-x: contain; }
  .gallery-track { padding-bottom: 56px; }
  .gallery-hint { display: none; }
}

/* ---------- Film window ---------- */

.film-head { margin-bottom: clamp(40px, 6vw, 76px); }
.film-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6vw, 84px); line-height: 1.04; margin-top: 30px; }
.film-sub { margin-top: 20px; color: var(--muted); max-width: 460px; font-size: 15px; }
.film-window {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  margin-inline: auto;
  background: var(--ink-2);
  overflow: hidden;
  cursor: pointer;
}
.fw-media { position: absolute; inset: 0; }
.fw-media img, .fw-media video { width: 100%; height: 100%; object-fit: cover; }
.fw-poster { filter: saturate(0.85) sepia(0.08); }
.fw-corners { position: absolute; width: 26px; height: 26px; z-index: 4; pointer-events: none; }
.fw-tl { top: 14px; left: 14px; border-top: 1px solid rgba(250,247,239,0.55); border-left: 1px solid rgba(250,247,239,0.55); }
.fw-tr { top: 14px; right: 14px; border-top: 1px solid rgba(250,247,239,0.55); border-right: 1px solid rgba(250,247,239,0.55); }
.fw-bl { bottom: 14px; left: 14px; border-bottom: 1px solid rgba(250,247,239,0.55); border-left: 1px solid rgba(250,247,239,0.55); }
.fw-br { bottom: 14px; right: 14px; border-bottom: 1px solid rgba(250,247,239,0.55); border-right: 1px solid rgba(250,247,239,0.55); }
.fw-bars { position: absolute; left: 0; right: 0; z-index: 3; background: var(--paper); }
.fw-bar-top { top: 0; }
.fw-bar-bottom { bottom: 0; }
.fw-ui {
  position: absolute; top: 22px; left: 26px; right: 26px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transition: opacity 0.5s ease;
}
.film-window:hover .fw-ui { opacity: 1; }
.fw-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,239,0.85); }
.fw-time { font-size: 12px; color: rgba(250,247,239,0.7); }
.fw-sound {
  position: absolute; bottom: 22px; right: 26px; z-index: 2;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,247,239,0.85);
  border: 1px solid rgba(250,247,239,0.35);
  padding: 10px 16px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.fw-sound:hover { border-color: var(--paper-plain); color: var(--paper-plain); }
.fw-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,239,0.5);
  display: grid; place-items: center;
  color: rgba(250,247,239,0.92);
  background: rgba(20,16,10,0.25);
  transition: background 0.35s ease, transform 0.35s ease;
}
.fw-play svg { width: 26px; height: 26px; margin-left: 4px; }
.film-window:hover .fw-play { transform: translate(-50%, -50%) scale(1.08); }
.film-window.playing .fw-play { opacity: 0; pointer-events: none; }
.fw-play .pause { display: none; }

/* ---------- Services / cards ---------- */

.sec-head { margin-bottom: clamp(40px, 6vw, 76px); }
.sec-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6vw, 84px); line-height: 1.04; margin-top: 30px; max-width: 900px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 30px); }
.card { background: var(--paper-plain); border: 1px solid var(--line); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease, border-color 0.4s ease; }
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px -24px rgba(34,27,17,0.28); border-color: var(--brass); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) sepia(0.08); transition: transform 1.1s cubic-bezier(0.22,1,0.36,1); }
.card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 24px 22px 28px; }
.card-body h3 { font-family: var(--font-display); font-size: clamp(21px, 2vw, 26px); font-weight: 600; margin-bottom: 12px; }
.card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
@media (max-width: 1100px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */

.stats {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.stat { display: grid; gap: 6px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.95;
  color: var(--ink);
}
.stat-num .count { color: var(--brass); font-style: italic; }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Events ---------- */

.events-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.events-media { position: relative; }
.events-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.events-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) sepia(0.08); }
.events-stamp {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--ink); color: var(--paper-plain);
  padding: 14px 22px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.events-body .kicker { margin-bottom: 28px; }
.events-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 5vw, 72px); line-height: 1.06; }
.events-text { margin-top: 24px; color: var(--muted); max-width: 540px; }
.events-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; }
  .events-stamp { right: 0; }
}

/* ---------- Contact ---------- */

.contact { padding: 0; color: var(--paper-plain); position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.7) sepia(0.15); }
.contact-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,10,0.72), rgba(20,16,10,0.86)); }
.contact-inner { position: relative; z-index: 2; padding: clamp(88px, 12vw, 170px) var(--gutter); max-width: 1440px; margin: 0 auto; }
.contact-lockup { max-width: 720px; margin-bottom: clamp(44px, 6vw, 76px); }
.contact-lockup .kicker { color: var(--brass); }
.contact-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6vw, 82px); line-height: 1.05; margin-top: 28px; }
.contact-sub { margin-top: 20px; color: rgba(250,247,239,0.75); max-width: 500px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 90px); align-items: start; }
.contact-info { display: grid; gap: 0; }
.ci-item { display: grid; gap: 6px; padding: 22px 0; border-bottom: 1px solid rgba(250,247,239,0.16); transition: padding-left 0.4s cubic-bezier(0.22,1,0.36,1); }
.ci-item:hover { padding-left: 14px; }
.ci-label { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); }
.ci-value { font-family: var(--font-display); font-size: clamp(19px, 2vw, 26px); color: var(--paper-plain); }
.ci-socials { display: flex; gap: 24px; }
.ci-socials a { border-bottom: 1px solid rgba(250,247,239,0.3); padding-bottom: 3px; transition: color 0.3s ease, border-color 0.3s ease; }
.ci-socials a:hover { color: var(--brass); border-color: var(--brass); }
.contact-form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-label { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); }
.field input, .field textarea {
  font: inherit; color: var(--paper-plain);
  background: rgba(250,247,239,0.06);
  border: 1px solid rgba(250,247,239,0.2);
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brass);
  background: rgba(250,247,239,0.1);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(250,247,239,0.35); }
.contact-form .btn { margin-top: 8px; justify-self: start; background: var(--paper-plain); color: var(--ink); border-color: var(--paper-plain); }
.contact-form .btn:hover { background: var(--brass); border-color: var(--brass); color: var(--ink-2); }
.form-ok { font-family: var(--font-mono); font-size: 12px; color: var(--brass); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */

.footer { background: var(--ink-2); color: rgba(250,247,239,0.8); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-top: clamp(56px, 8vw, 90px);
  padding-bottom: clamp(40px, 6vw, 70px);
}
.footer-brand img { width: min(240px, 70%); margin-bottom: 18px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--brass); }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.footer-links, .footer-contact, .footer-social { display: grid; gap: 10px; align-content: start; }
.footer-links a, .footer-contact a, .footer-social a { font-size: 14px; transition: color 0.3s ease; }
.footer-links a:hover, .footer-contact a:hover, .footer-social a:hover { color: var(--brass); }
.footer-contact span { font-size: 13px; color: rgba(250,247,239,0.5); line-height: 1.7; }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; padding-bottom: 30px;
  border-top: 1px solid rgba(250,247,239,0.12);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(250,247,239,0.4);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal initial states (js only) ---------- */

.js [data-reveal]:not([data-reveal="split"]) { opacity: 0; }
.js [data-reveal="split"] { opacity: 1; }

/* ---------- Responsive nav / menu ---------- */

@media (max-width: 1024px) {
  .nav-links { gap: 22px; }
  .nav-cta { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .js .mq-track { animation: none; }
  html { scroll-behavior: auto; }
}
