/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07070d;
  --bg2:       #0d0d18;
  --fg:        #f0f0f5;
  --fg-muted:  #b8b8cc;
  --border:    rgba(255,255,255,0.07);
  --accent1:   #4f46e5;
  --accent2:   #06b6d4;
  --accent3:   #a855f7;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  cursor: auto;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ── Grain overlay ─────────────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navigation ────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  transition: padding 0.4s var(--ease), backdrop-filter 0.4s, background 0.4s;
}

#nav.scrolled {
  padding: 18px 48px;
  background: rgba(7,7,13,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--fg);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--fg-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

.nav-cta {
  color: var(--fg) !important;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  border-radius: 2px;
}
.btn:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn-lg {
  padding: 20px 60px;
  font-size: 0.82rem;
  margin-top: 48px;
}

/* ── Scroll animations ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.35s; }
.reveal-d4 { transition-delay: 0.5s; }
.reveal-d5 { transition-delay: 0.7s; }

/* ── Section labels ─────────────────────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 72px;
}
.section-label span:first-child {
  opacity: 0.4;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 120px;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}


/* ── Hero Car Photo ───────────────────────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/img/chosen.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.89);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0.85;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-headline {
  color: #c0c0c8;
  font-size: clamp(4.5rem, 13vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-headline .line {
  display: block;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── Work / Gallery ─────────────────────────────────────────────────────────── */
#work {
  padding: 140px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 240px 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(1.15) saturate(1.2);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

/* Grid layout */
.gi-1 { grid-column: 1 / 8; grid-row: 1; }
.gi-2 { grid-column: 8 / 13; grid-row: 1; }
.gi-3 { grid-column: 1 / 5; grid-row: 2; }
.gi-4 { grid-column: 5 / 13; grid-row: 2; }
.gi-5 { grid-column: 1 / 7; grid-row: 3; }
.gi-6 { grid-column: 7 / 13; grid-row: 3; }

/* Gallery card backgrounds — iridescent tint palette */
.gi-1 { background: linear-gradient(135deg, #080814 0%, #12083a 40%, #061a24 100%); }
.gi-2 { background: linear-gradient(160deg, #070d14 0%, #0a2238 50%, #10082e 100%); }
.gi-3 { background: linear-gradient(120deg, #0d0a1e 0%, #1a0a3a 60%, #061428 100%); }
.gi-4 { background: linear-gradient(145deg, #070712 0%, #0c1a2e 40%, #0a0a20 100%); }
.gi-5 { background: linear-gradient(130deg, #080a18 0%, #0a1e30 50%, #14083c 100%); }
.gi-6 { background: linear-gradient(150deg, #0a0818 0%, #1a0a2a 45%, #061820 100%); }

/* Shimmer effect on each card */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(79,70,229,0.06) 45%,
    rgba(6,182,212,0.04) 55%,
    rgba(168,85,247,0.05) 65%,
    transparent 80%);
  background-size: 200% 200%;
  animation: shimmerCard 6s ease-in-out infinite alternate;
  z-index: 1;
}

.gi-2::before { animation-delay: -2s; }
.gi-3::before { animation-delay: -1s; }
.gi-4::before { animation-delay: -3s; }
.gi-5::before { animation-delay: -0.5s; }
.gi-6::before { animation-delay: -4s; }

@keyframes shimmerCard {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Card hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(7,7,13,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gi-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.gi-tag {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.02em;
}

/* ── Process ────────────────────────────────────────────────────────────────── */
#process {
  padding: 140px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.process-step {
  padding: 56px 48px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.process-step:hover {
  border-color: rgba(255,255,255,0.15);
}

.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.process-step:hover::before { opacity: 1; }

.step-num {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 32px;
  user-select: none;
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--fg);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 400;
}

/* ── Booking ─────────────────────────────────────────────────────────────────── */
#contact {
  padding: 140px 48px;
  position: relative;
  border-top: 1px solid var(--border);
}

.booking-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-headline {
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.booking-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ── Tint Visualizer ──────────────────────────────────────────────────────── */
.tint-visualizer {
  margin-top: 8px;
}

.tint-viz-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

/* Outer wrapper — shaped like a car window */
.tint-window-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  margin-bottom: 16px;
  /* Car-window shape: slightly rounded top, trapezoid-ish */
  clip-path: polygon(6% 0%, 94% 0%, 100% 8%, 100% 100%, 0% 100%, 0% 8%);
  border-radius: 2px;
  overflow: hidden;
}

/* ── Outside scene (visible through the tint) ─ */
.tint-scene-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

/* ── The tinted glass overlay ─ */
.tint-glass {
  position: absolute;
  inset: 0;
  background: rgb(89, 92, 96); /* default 35% VLT — cool charcoal */
  mix-blend-mode: multiply;
  transition: background 0.55s cubic-bezier(0.16,1,0.3,1);
}

/* ── Glass glare / reflection streak ─ */
.tint-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 28%,
    rgba(255,255,255,0.045) 38%,
    rgba(200,220,255,0.06)  44%,
    transparent 52%
  );
  z-index: 2;
}

/* ── Chrome frame around window ─ */
.tint-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,0.1),
    inset 0 -6px 20px rgba(0,0,0,0.45),
    inset 0  2px  8px rgba(255,255,255,0.04);
  z-index: 3;
}

/* ── VLT label inside the window ─ */
.tint-label-inside {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 4;
  pointer-events: none;
}

/* ── Swatches row ─ */
.tint-swatches {
  display: flex;
  gap: 8px;
}

.tint-swatch {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  padding: 10px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.tint-swatch:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
}

.tint-swatch.active {
  border-color: rgba(79,70,229,0.7);
  background: rgba(79,70,229,0.08);
}

.swatch-bar-clear {
  background:
    linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.06) 75%) !important;
  background-size: 8px 8px !important;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0px !important;
}

.swatch-bar {
  width: 100%;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(
    160deg,
    rgba(10, 8, 26, var(--op))  0%,
    rgba(8, 10, 22, calc(var(--op) * 0.88)) 100%
  );
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.swatch-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(79,70,229,0.18) 60%, transparent 80%);
}

.swatch-pct {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.swatch-name {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── Booking Form ─────────────────────────────────────────────────────────── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.field-group input,
.field-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 13px 16px;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(79,70,229,0.5);
  background: rgba(79,70,229,0.04);
}

.field-group textarea {
  resize: none;
  line-height: 1.6;
}

/* ── Film type selector ───────────────────────────────────────────────────── */
.film-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.film-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}

.film-option:hover:not(:disabled) {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.film-option.active {
  border-color: rgba(79,70,229,0.7);
  background: rgba(79,70,229,0.08);
}

.film-option-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.film-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.film-desc {
  font-size: 0.72rem;
  color: var(--fg-muted);
}

.film-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
}

.tint-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg);
}

.tint-display-hint {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.book-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ── Removal checkbox ─────────────────────────────────────────────────────── */
.removal-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.removal-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.info-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--fg-muted);
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  font-family: Georgia, serif;
  line-height: 1;
  cursor: default;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.info-icon-wrap:hover .info-icon {
  background: rgba(255,255,255,0.18);
  color: var(--fg);
}

.info-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 290px;
  background: #13131f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 0.79rem;
  line-height: 1.7;
  color: var(--fg-muted);
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.info-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255,255,255,0.1);
}

.info-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #13131f;
  z-index: 1;
  margin-top: -1px;
}

.info-icon-wrap:hover .info-tooltip { display: block; }

/* Custom checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 1.5px solid var(--fg);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: rgba(79,70,229,0.2);
  border-color: rgba(79,70,229,0.7);
}

.checkbox-label input:checked ~ .checkbox-custom::after { opacity: 1; }

.checkbox-text {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
  transition: color 0.2s;
}

.checkbox-label:hover .checkbox-text { color: var(--fg); }
.checkbox-label:hover .checkbox-custom { border-color: rgba(255,255,255,0.2); }

.form-note {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.03em;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 4px;
  font-size: 0.85rem;
  color: #86efac;
}

.form-error {
  font-size: 0.82rem;
  color: #fca5a5;
  text-align: center;
  min-height: 20px;
}

/* ── Contact responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .tint-swatches { gap: 5px; }
  .swatch-name { display: none; }
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  #nav { padding: 20px 24px; }
  #nav.scrolled { padding: 14px 24px; }
  .nav-links { gap: 20px; }
  .nav-links a:not(.nav-cta) { display: none; }

  #work, #process, #contact { padding: 96px 24px; }

  .gallery {
    grid-template-columns: 1fr;
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
    aspect-ratio: 16/9;
  }

  .gallery-overlay { opacity: 1; }

  footer { padding: 24px; }

}
