/* ==========================================================
   mooVRoom — Light Cinematic VR Design System
   Cream paper. Editorial type. Chromatic aberration accents.
   Built to feel like a film poster, not a SaaS dashboard.
   ========================================================== */

:root {
  /* Paper & ink */
  --paper:        #F6F2EA;   /* warm off-white */
  --paper-2:      #EFE9DC;   /* slightly deeper */
  --ink:          #0E0E14;   /* near black with warmth */
  --ink-2:        #2A2A36;
  --line:         rgba(14,14,20,0.10);
  --line-bright:  rgba(14,14,20,0.22);
  --muted:        #6B6A78;

  /* VR signature accents */
  --red:          #FF3D2E;   /* signature VR red */
  --red-deep:     #D9281B;
  --red-soft:     rgba(255,61,46,0.10);
  --blue:         #2E5BFF;   /* RGB split blue */
  --green:        #00C896;   /* RGB split green */
  --lens:         #FFCBA4;   /* soft lens flare */

  /* Effects */
  --shadow-soft:  0 20px 60px rgba(14,14,20,0.08);
  --shadow-card:  0 30px 80px rgba(14,14,20,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Film grain overlay — subtle texture (behind content) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0,0,0,0.6) 0.5px, transparent 1px),
    radial-gradient(circle at 56% 73%, rgba(0,0,0,0.6) 0.5px, transparent 1px),
    radial-gradient(circle at 88% 35%, rgba(0,0,0,0.6) 0.5px, transparent 1px),
    radial-gradient(circle at 31% 92%, rgba(0,0,0,0.6) 0.5px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 90px 90px, 150px 150px;
}
main, .nav, .footer, .cta-strip { position: relative; z-index: 1; }

/* Layout container */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; }

/* ==================== Typography ==================== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 7.5vw, 6.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 0.5em; }
h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.4em; letter-spacing: -0.01em; }
h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.05rem; }
p { color: var(--ink-2); margin-bottom: 1em; font-size: 1.05rem; }
a { color: var(--red); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }

/* Chromatic aberration on display text */
.aberrate {
  position: relative;
  display: inline-block;
  color: var(--ink);
}
.aberrate::before,
.aberrate::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.aberrate::before {
  color: var(--red);
  transform: translate(-2px, 0);
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.aberrate::after {
  color: var(--blue);
  transform: translate(2px, 0);
  mix-blend-mode: multiply;
  opacity: 0.85;
}

/* Eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--red);
}

/* Display script accent */
.script {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}
.red { color: var(--red); }

/* ==================== Nav ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,242,234,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
}
.brand-mark svg { display: block; }
.brand .red { color: var(--red); }
.brand-italic { font-style: italic; font-weight: 400; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
}
.nav-links a.active { color: var(--red); }
.nav-links a:hover { color: var(--red); opacity: 1; }
.nav-links .cta-btn { margin-left: 8px; }

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--red);
  color: var(--paper);
  transform: translateY(-1px);
  opacity: 1;
}
.btn-primary::after {
  content: "→";
  font-size: 1.1em;
  transition: transform 0.2s;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  opacity: 1;
}
.cta-btn {
  padding: 11px 22px;
  font-size: 0.88rem;
  border-radius: 999px;
}

/* ==================== Hero ==================== */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero .sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 3.5rem;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta div span {
  display: block;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
  text-transform: none;
}

/* Hero VR viewfinder visual */
.viewfinder {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.viewfinder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 30%, rgba(255,61,46,0.35), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(46,91,255,0.35), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0,200,150,0.18), transparent 60%);
  filter: blur(20px);
}
.viewfinder::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.viewfinder .corners {
  position: absolute;
  inset: 28px;
  pointer-events: none;
}
.viewfinder .corners span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--paper);
}
.viewfinder .corners span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.viewfinder .corners span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.viewfinder .corners span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.viewfinder .corners span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }
.viewfinder .rec {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--paper);
  letter-spacing: 0.15em;
  z-index: 1;
}
.viewfinder .rec::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: blink 1.2s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.viewfinder .hud {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--paper);
  letter-spacing: 0.12em;
  opacity: 0.7;
  z-index: 2;
}
.viewfinder .vf-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.viewfinder .vf-art svg {
  width: 75%;
  height: auto;
  opacity: 0.95;
}

/* ==================== Section base ==================== */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 0 70px; }
.section-head.center { margin: 0 auto 70px; text-align: center; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 1.15rem; color: var(--ink-2); }

/* Big numbered headers like film chapter cards */
.chapter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chapter::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ==================== Editorial grid ==================== */
.edit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }

/* ==================== Cards ==================== */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 14px;
}
.card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.card p { color: var(--ink-2); margin-bottom: 0; font-size: 0.98rem; }

/* ==================== Feature row ==================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.feature-row.reverse > :first-child { order: 2; }
.feature-text h2 { margin-bottom: 20px; }
.feature-text p { font-size: 1.05rem; margin-bottom: 1.2em; }
.feature-visual {
  aspect-ratio: 5/4;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,61,46,0.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(46,91,255,0.22), transparent 55%);
  filter: blur(10px);
}
.feature-visual .label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--paper);
  opacity: 0.75;
  z-index: 2;
}
.feature-visual .frame {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 2;
}
.feature-visual svg {
  position: relative;
  z-index: 1;
  width: 65%;
  height: auto;
  max-height: 70%;
  opacity: 0.92;
}
.feature-visual .glyph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* ==================== Steps ==================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step .step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 10px; font-size: 1.25rem; }
.step p { margin-bottom: 0; font-size: 0.98rem; }

/* ==================== CTA strip ==================== */
.cta-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  margin: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,61,46,0.25), transparent 60%);
  filter: blur(60px);
}
.cta-strip .wrap { position: relative; z-index: 1; }
.cta-strip .chapter { color: var(--red); }
.cta-strip h2 {
  color: var(--paper);
  max-width: 760px;
  margin-bottom: 28px;
}
.cta-strip p { color: rgba(246,242,234,0.7); max-width: 600px; margin-bottom: 32px; font-size: 1.1rem; }
.cta-strip .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.cta-strip .btn-primary:hover {
  background: var(--red);
  color: var(--paper);
}
.cta-strip .btn-ghost {
  border-color: var(--paper);
  color: var(--paper);
}
.cta-strip .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ==================== Footer ==================== */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; max-width: 340px; color: var(--muted); }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--ink-2);
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--red); opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 20px;
  text-transform: uppercase;
}
.socials { display: flex; gap: 10px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--ink);
  color: var(--paper);
  opacity: 1;
}

/* ==================== Contact form ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 8px; font-size: 1.5rem; }
.contact-info p { font-size: 1rem; margin-bottom: 28px; }
.contact-info .info-item { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 44px 40px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--paper);
  border: none;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--red);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hp { position: absolute; left: -10000px; }
.contact-form button { width: 100%; justify-content: center; margin-top: 8px; }

/* ==================== Page header ==================== */
.page-header {
  padding: 80px 0 40px;
}
.page-header h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); margin-bottom: 20px; max-width: 900px; }
.page-header p { font-size: 1.2rem; color: var(--ink-2); max-width: 720px; }

/* ==================== Experience tiles ==================== */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exp-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.exp-tile:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.exp-tile-visual {
  aspect-ratio: 4/3;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.exp-tile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,61,46,0.25), transparent 65%);
  filter: blur(8px);
}
.exp-tile-visual span {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.exp-tile-body { padding: 28px; flex: 1; }
.exp-tile h3 { margin-bottom: 10px; font-size: 1.35rem; }
.exp-tile .tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.exp-tile p { font-size: 0.95rem; margin-bottom: 0; }

/* ==================== Tech list ==================== */
.tech-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  margin-top: 32px;
}
.tech-list .item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.tech-list .item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.tech-list .item:nth-child(even) { padding-left: 24px; }
.tech-list .item .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--red);
  flex-shrink: 0;
  padding-top: 4px;
}
.tech-list .item h4 { color: var(--ink); margin-bottom: 6px; font-size: 1.08rem; }
.tech-list .item p { font-size: 0.95rem; margin-bottom: 0; color: var(--ink-2); }

/* ==================== Quote / pull ==================== */
.pull {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--ink);
  padding: 60px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 60px 0;
}
.pull .red { color: var(--red); }

/* ==================== Notice ==================== */
.notice {
  background: var(--paper-2);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--ink-2);
  margin: 32px 0;
}

/* ==================== Responsive ==================== */
@media (max-width: 900px) {
  .nav-inner { padding: 16px 20px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.cta-btn) { display: none; }
  .wrap { padding: 0 20px; }
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-meta { gap: 30px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 50px; }
  .edit-grid { grid-template-columns: 1fr; }
  .col-4, .col-6, .col-12 { grid-column: span 1; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .feature-row.reverse > :first-child { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .tech-list { grid-template-columns: 1fr; border-top: 1px solid var(--ink); }
  .tech-list .item:nth-child(odd) { padding-right: 0; border-right: none; }
  .tech-list .item:nth-child(even) { padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .cta-strip { padding: 70px 0; margin-top: 70px; }
}
