/* ============================================================
   davisvaughn.com — operator portfolio
   paper · ink-blue · electric accent · Geist + Inter
   ============================================================ */

:root {
  --paper:        #FAF7F2;
  --paper-warm:   #F5F1EA;
  --paper-deep:   #EFEAE0;
  --ink:          #0B1626;
  --ink-soft:     #1F2A3C;
  --gray:         #6B7280;
  --gray-soft:    #9CA3AF;
  --gray-faint:   #C7CBD2;
  --line:         rgba(11, 22, 38, 0.08);
  --line-soft:    rgba(11, 22, 38, 0.04);
  --accent:       #2D5BFF;
  --accent-soft:  #B9C9FF;
  --card-bg:      #FFFFFF;
  --spotify:      #1DB954;

  --max:          1180px;
  --max-narrow:   860px;
  --max-form:     720px;

  --font-display: 'Geist', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
input, textarea, button, select { font: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.dot, .accent-dot { color: var(--accent); }

a { color: inherit; text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-mail {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px !important;
  transition: background .15s ease;
}
.nav-mail:hover { background: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--line-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 1px rgba(11,22,38,0.04),
    0 12px 32px rgba(11,22,38,0.08);
}
.hero-copy { min-width: 0; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.028em;
  line-height: 1.0;
  margin: 0 0 28px 0;
  color: var(--ink);
}
.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* social pill (used in hero + creative section) */
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--ink-soft);
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}
.social-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.social-pill svg { color: var(--gray); }
.social-pill:hover svg { color: var(--accent); }
.social-pill-soft { background: transparent; }
.pill-suffix {
  color: var(--gray-soft);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  margin-left: 2px;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */

.portfolio { padding: 96px 0 96px; }
.section-head { margin-bottom: 48px; max-width: var(--max-narrow); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 12px 0;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
}

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  border-color: rgba(11, 22, 38, 0.16);
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(11,22,38,0.04),
    0 16px 40px rgba(11,22,38,0.08);
}

/* card logo frame (replaces screenshot) */
.card-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 28px;
  transition: filter .3s ease;
}
.card-logo img {
  max-width: 65%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.card:hover .card-logo img { transform: scale(1.04); }

/* card backgrounds per brand */
.logo-bg-paper { background: var(--paper-warm); }
.logo-bg-ink   { background: #0B1626; }
.logo-bg-sp    { background: #000000; }
.logo-bg-bb    { background: #111111; }
.logo-bg-cs    { background: #0E0E0E; }

/* logo-specific sizing tweaks */
.logo-sp { max-width: 32% !important; max-height: 50% !important; }
.logo-bb { max-width: 48% !important; max-height: 56% !important; }

/* wordmarks (Cowboys Skate + Davision Logistics) */
.wordmark {
  display: inline-block;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.wordmark-cs {
  color: var(--paper-warm);
  font-weight: 700;
  font-size: clamp(34px, 5.4vw, 52px);
  letter-spacing: 0.04em;
}
.wordmark-dl {
  color: var(--ink);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.wordmark-dl-sub {
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  display: inline-block;
  padding-left: 0.1em;
}

/* hover arrow */
.card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.card-arrow-inverse {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  color: var(--paper);
}
.card:hover .card-arrow {
  background: var(--ink);
  color: var(--paper);
  transform: translate(2px, -2px);
}
.card:hover .card-arrow-inverse {
  background: var(--paper);
  color: var(--ink);
}

/* card body */
.card-body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.card-num { color: var(--gray-soft); font-weight: 500; }
.card-role {
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.card-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.ico {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  color: var(--gray);
  transition: background .15s ease, color .15s ease, transform .15s ease;
  border: 1px solid var(--line-soft);
}
.ico:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

/* ============================================================
   CREATIVE
   ============================================================ */

.creative {
  padding: 96px 0 96px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}
.creative-block { margin-bottom: 48px; }
.creative-block:last-child { margin-bottom: 0; }
.creative-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.creative-eyebrow-meta {
  color: var(--gray-soft);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.creative-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.creative-empty {
  font-size: 14.5px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
  max-width: 62ch;
}
.ghost-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px dashed var(--gray-faint);
  color: var(--gray);
  margin: 0 2px;
}

/* music rows */
.music-grid {
  display: grid;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  max-width: var(--max-form);
}
.music-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background .15s ease;
}
.music-row:hover { background: var(--paper-warm); }
.music-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.music-links {
  display: flex;
  gap: 8px;
}
.music-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--line);
  background: var(--card-bg);
  color: var(--ink-soft);
  transition: transform .15s ease, border-color .15s ease;
}
.music-pill:hover { transform: translateY(-1px); }
.music-spotify svg { color: var(--spotify); }
.music-spotify:hover { border-color: var(--spotify); color: var(--spotify); }
.music-apple svg { color: var(--ink); }
.music-apple:hover { border-color: var(--ink); }

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

.contact {
  padding: 96px 0 112px;
  border-top: 1px solid var(--line-soft);
}
.contact-wrap { max-width: var(--max-form); margin: 0 auto; padding: 0 28px; }
.contact .section-head { margin-bottom: 32px; }

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 1px 2px rgba(11,22,38,0.03), 0 14px 36px rgba(11,22,38,0.05);
}
.form-row {
  display: grid;
  gap: 18px;
}
.form-row-2 {
  grid-template-columns: 1fr 1fr;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-label-opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 10.5px;
  color: var(--gray-soft);
}
.form-field input,
.form-field textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  width: 100%;
  resize: vertical;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.12);
}
.form-field textarea {
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 120px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-soft);
}
.form-submit {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.form-submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45, 91, 255, 0.25);
}
.form-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.form-submit:hover .form-arrow { transform: translateX(3px); }

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  background: var(--paper-warm);
}
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.foot-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.foot-loc {
  color: var(--gray);
  font-size: 13px;
  margin-top: 2px;
}
.foot-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-soft);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   most visitors arrive from phones — tuned for that first
   ============================================================ */

@media (max-width: 900px) {
  .hero { padding: 56px 0 44px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .hero-photo { max-width: 148px; }
  .hero-copy h1 { margin-bottom: 22px; }

  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .portfolio, .creative, .contact { padding: 64px 0 72px; }
  .section-head { margin-bottom: 32px; }
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) a { font-size: 13.5px; }

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

@media (max-width: 640px) {
  /* hero: name big and proud */
  .hero { padding: 44px 0 36px; }
  .hero-copy h1 { font-size: 48px; letter-spacing: -0.03em; }
  .hero-photo { max-width: 124px; }
  .hero-photo img { border-radius: 20px; }

  /* nav: trim brand wordmark so the CTA stays comfortable */
  .nav-inner { padding-top: 14px; padding-bottom: 14px; }
  .nav-brand { font-size: 16px; }
  .nav-links { gap: 14px; }
  .nav-links li:not(:last-child) { font-size: 13px; }
  .nav-mail { padding: 7px 12px; font-size: 12.5px !important; }

  /* sections — tighter */
  .wrap, .contact-wrap { padding: 0 18px; }
  .portfolio, .creative, .contact { padding: 56px 0 64px; }
  .section-head h2 { font-size: 32px; line-height: 1.08; }
  .section-sub { font-size: 14.5px; }

  /* cards on mobile: arrow always visible, taller logo frame */
  .card { border-radius: 18px; }
  .card-logo { aspect-ratio: 5 / 3; padding: 24px; }
  .card-arrow {
    background: var(--ink);
    color: var(--paper);
    width: 32px; height: 32px;
    top: 12px; right: 12px;
    font-size: 14px;
  }
  .card-arrow-inverse {
    background: var(--paper);
    color: var(--ink);
    border-color: rgba(255,255,255,0.4);
  }
  .card-body { padding: 22px 20px 22px; gap: 11px; }
  .card-title { font-size: 20px; }
  .card-desc { font-size: 14.5px; line-height: 1.55; }

  /* wordmarks scale down */
  .wordmark-cs { font-size: 38px; }
  .wordmark-dl { font-size: 40px; }

  /* social icons: bigger tap targets */
  .ico { width: 40px; height: 40px; }
  .card-socials { gap: 8px; padding-top: 14px; }

  /* social pills (hero + creative): bigger tap targets */
  .social-pill {
    padding: 11px 16px;
    font-size: 13.5px;
  }
  .pill-suffix { font-size: 11.5px; }

  /* creative — tighter */
  .creative-block { margin-bottom: 36px; }
  .creative-eyebrow { font-size: 11.5px; margin-bottom: 14px; }

  /* music rows: bigger tap targets, comfortable spacing */
  .music-grid { padding: 6px; }
  .music-row { padding: 14px 16px; gap: 14px; }
  .music-name { font-size: 16.5px; }
  .music-pill {
    padding: 10px 14px;
    font-size: 12.5px;
    flex: 1;
    justify-content: center;
  }
  .music-links { width: 100%; gap: 8px; }

  /* contact form: bigger inputs, ≥16px font to prevent iOS zoom */
  .contact-form { padding: 24px 22px; border-radius: 18px; gap: 16px; }
  .form-field input,
  .form-field textarea {
    font-size: 16px;          /* iOS won't zoom at ≥16px */
    padding: 14px 16px;
    border-radius: 12px;
    -webkit-appearance: none;
  }
  .form-field textarea { min-height: 140px; }
  .form-label { font-size: 10.5px; }
  .form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    border-radius: 14px;
  }

  /* footer — center on mobile */
  .foot { padding: 28px 0 36px; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .foot-meta { font-size: 11.5px; }
}

@media (max-width: 380px) {
  .hero-copy h1 { font-size: 42px; }
  .nav-brand { font-size: 15px; }
  .nav-links { gap: 10px; }
  .section-head h2 { font-size: 28px; }
  .wordmark-cs { font-size: 32px; }
  .wordmark-dl { font-size: 34px; }
}

/* respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   VISION
   ============================================================ */
.vision {
  background: var(--paper-deep);
  padding: 96px 0 104px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vision-wrap { max-width: var(--max-narrow); }
.vision-body {
  margin-top: 14px;
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
  max-width: 660px;
}
.vision-body p { margin: 0 0 18px; }
.vision-lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px !important;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 26px !important;
}
.vision-sign {
  font-family: var(--font-mono);
  font-size: 12.5px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-top: 28px !important;
}

/* ============================================================
   COMING SOON — release list
   ============================================================ */
.coming-soon {
  padding: 96px 0 104px;
  background: var(--paper);
}
.cs-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  max-width: 720px;
}
.cs-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cs-row:last-child { border-bottom: none; }
.cs-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--ink);
  flex-shrink: 0;
  white-space: nowrap;
}
.cs-name .cs-meta {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--gray);
  margin-left: 6px;
  letter-spacing: 0;
}
.cs-dot {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--gray-faint);
  align-self: center;
  min-width: 24px;
}
.cs-date {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.vision-build {
  font-family: var(--font-display) !important;
  font-weight: 500;
  font-size: 19px !important;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 26px !important;
  margin-bottom: 8px !important;
}

/* ============================================================
   NAV — desktop links + mobile hamburger drawer
   ============================================================ */
.nav-links li { list-style: none; }

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar {
  display: block;
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1.75px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.4,0,.2,1), top .25s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.nav-toggle-bar:nth-child(1) { top: 15px; }
.nav-toggle-bar:nth-child(2) { top: 23px; }
body.menu-open .nav-toggle-bar:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.menu-open .nav-toggle-bar:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* Mobile drawer — hidden by default */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 49;            /* under nav (50) so the nav bar stays visible */
  padding: 86px 28px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  overflow-y: auto;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu li { width: 100%; }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  padding: 22px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .15s ease, transform .15s ease;
}
.mobile-menu li:last-child a { border-bottom: none; }
.mobile-menu a::after {
  content: '→';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--gray-soft);
  transition: transform .15s ease, color .15s ease;
}
.mobile-menu a:hover, .mobile-menu a:active {
  color: var(--accent);
}
.mobile-menu a:hover::after { color: var(--accent); transform: translateX(4px); }
.mobile-menu .mm-contact { color: var(--accent); }

body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .mobile-menu { display: block; }

  .vision { padding: 64px 0 72px; }
  .coming-soon { padding: 64px 0 72px; }
  .vision-body { font-size: 16px; }
  .vision-lead { font-size: 22px !important; }
  .vision-build { font-size: 17px !important; }
}

@media (max-width: 640px) {
  .vision { padding: 56px 0 64px; }
  .vision-body { font-size: 15.5px; line-height: 1.7; }
  .vision-lead { font-size: 20px !important; }
  .vision-body p { margin-bottom: 16px; }

  .coming-soon { padding: 56px 0 64px; }
  .cs-list { margin-top: 20px; }
  .cs-row { padding: 14px 0; gap: 12px; }
  .cs-name { font-size: 17px; }
  .cs-name .cs-meta { font-size: 11.5px; }
  .cs-date { font-size: 11px; letter-spacing: 0.08em; }
  .cs-dot { min-width: 12px; }

  .mobile-menu a { font-size: 30px; padding: 20px 0; }
}

@media (max-width: 380px) {
  .mobile-menu a { font-size: 26px; padding: 18px 0; }
}
