/* ============================================================
   VELVET EMPIRE MUSIC GROUP — "VELVET CATHEDRAL" DESIGN SYSTEM
   Dark cinematic editorial · charcoal + oxblood + antique gold
   Fully inquiry-only. Rebrand 2026.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── canvas (near-black, faintly warm — never pure #000) ── */
  --bg:          #0c0a0b;
  --bg-2:        #110e10;
  --bg-card:     #14110f;
  --bg-elevate:  #1a1613;

  /* ── velvet + gold accents ── */
  --oxblood:     #6e1423;
  --oxblood-lt:  #8d1f31;
  --velvet:      #a02234;
  --gold:        #c9a84c;
  --gold-lt:     #e8c96a;
  --gold-dk:     #9a7a2a;

  /* ── ink ── */
  --text:        #f3efe9;
  --text-muted:  #9a928a;
  --text-dim:    #5c554f;
  --border:      #211d1a;
  --border-lt:   #2e2823;

  /* ── type ── */
  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;

  /* ── metrics ── */
  --nav-h:       76px;
  --radius:      8px;
  --radius-lg:   16px;
  --max:         1240px;
  --gutter:      clamp(20px, 5vw, 64px);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--velvet); color: var(--text); }

/* ── a11y: skip link + visible keyboard focus ── */
.skip { position: absolute; left: -9999px; top: 10px; z-index: 300; background: var(--gold); color: #120d04; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; }
.skip:focus { left: 16px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.btn--gold:focus-visible { outline-color: var(--text); }
[tabindex="-1"]:focus { outline: none; }

/* ── layout ── */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 12vw, 144px); }
.section--tight { padding-block: clamp(48px, 8vw, 88px); }

/* ── type scale ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: -0.015em; color: var(--text); }
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text); line-height: 1.7; }
.muted { color: var(--text-muted); }
.accent-gold { color: var(--gold); }
.accent-velvet { color: var(--velvet); }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* hairline divider */
.rule { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 1.5rem 0; }
.rule--center { margin-inline: auto; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .15s var(--ease);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #120d04; }
.btn--gold:hover { background: var(--gold-lt); }
.btn--velvet { background: var(--oxblood); color: var(--text); }
.btn--velvet:hover { background: var(--oxblood-lt); }
.btn--ghost { border-color: var(--border-lt); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 1.1em 2.2em; font-size: 0.85rem; }
.btn--sm { padding: 0.6em 1.1em; font-size: 0.72rem; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,10,11,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--border);
}
.nav-inner { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-brand img { width: 38px; height: 38px; object-fit: contain; }
.nav-brand .nav-wm { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .wm-main { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; letter-spacing: -0.01em; line-height: 1; }
.nav-brand .wm-sub { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text-muted); transition: color .25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) brightness(0.55) contrast(1.05); }
/* roster group hero: keep warmth + faces, favor upper group on crop */
.hero-media--roster img { filter: brightness(0.72) contrast(1.04) saturate(1.02); object-position: center 28%; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(110,20,35,0.28) 0%, transparent 55%),
    linear-gradient(180deg, rgba(12,10,11,0.55) 0%, rgba(12,10,11,0.15) 35%, rgba(12,10,11,0.96) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin-inline: auto; padding: 0 var(--gutter) clamp(56px, 9vw, 112px); }
.hero .display { max-width: 14ch; }
.hero .display .accent { color: var(--gold); }
.hero-tag { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.7rem); color: var(--text); margin-top: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-badge { margin-bottom: 1.6rem; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: var(--bg-2); padding-block: 1.05rem; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 3rem; animation: marquee 38s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-size: 1.15rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 3rem; }
.marquee-item::after { content: '✦'; color: var(--velvet); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head h2 { margin-bottom: 0.6rem; }

/* ============================================================
   ROSTER GRID (art-led, color-on-hover)
   ============================================================ */
.roster { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(10px, 1.4vw, 18px); }
.roster-card {
  position: relative; display: block; aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.roster-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.7) contrast(1.05);
  transition: filter .6s var(--ease), transform .9s var(--ease);
}
.roster-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(12,10,11,0.5) 70%, rgba(12,10,11,0.96) 100%);
  transition: background .4s var(--ease);
}
.roster-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.roster-card:hover img { filter: grayscale(0) brightness(0.92) contrast(1.02); transform: scale(1.05); }
.roster-meta { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.25rem 1.3rem; }
.roster-meta .genre { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.roster-meta .name { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.roster-card .view { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem; opacity: 0; transform: translateY(6px); transition: .4s var(--ease); }
.roster-card:hover .view { opacity: 1; transform: none; }

/* ============================================================
   RELEASE CARDS
   ============================================================ */
.releases { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(16px, 2vw, 28px); }
.release { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); transition: border-color .35s var(--ease), transform .35s var(--ease); }
.release:hover { border-color: var(--border-lt); transform: translateY(-3px); }
.release-art { aspect-ratio: 1; overflow: hidden; }
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.release:hover .release-art img { transform: scale(1.05); }
.release-body { padding: 1.25rem 1.35rem 1.5rem; }
.release-body .tag { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.release-body h3 { font-size: 1.25rem; margin: 0.4rem 0 0.5rem; }
.release-body p { font-size: 0.86rem; line-height: 1.6; }

/* ============================================================
   CARD / PANEL
   ============================================================ */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.panel-velvet { background: linear-gradient(135deg, #160a0d 0%, #1d0c11 55%, #0c0a0b 100%); border-block: 1px solid var(--border); }

/* ============================================================
   STORY / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split p + p { margin-top: 1.1rem; }
.story-cards { display: flex; flex-direction: column; gap: 1rem; }
.story-card { padding: 1.5rem 1.7rem; }
.story-card .yr { color: var(--gold); }
.story-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin: 0.35rem 0 0.4rem; }
.story-card p { font-size: 0.88rem; line-height: 1.55; }

/* ── disclosure / fine print ── */
.disclosure { font-size: 0.78rem; line-height: 1.6; color: var(--text-dim); border-left: 2px solid var(--gold-dk); padding-left: 1rem; }

/* ============================================================
   ARTIST PAGE
   ============================================================ */
.artist-hero { position: relative; min-height: 78svh; display: flex; align-items: flex-end; overflow: hidden; }
.artist-hero-media { position: absolute; inset: 0; }
.artist-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(0.35) brightness(0.6); }
.artist-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,11,0.4) 0%, transparent 30%, rgba(12,10,11,0.97) 92%); }
.artist-hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin-inline: auto; padding: 0 var(--gutter) clamp(40px,6vw,72px); }
.breadcrumb { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 1.4rem; display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { color: var(--text-dim); }
.artist-hero .genre { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.artist-hero .a-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(3rem, 9vw, 6.5rem); line-height: 0.9; }
.artist-hero .a-real { font-size: 0.95rem; color: var(--text-muted); margin-top: 0.8rem; letter-spacing: 0.04em; }
.artist-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.social-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }

/* tracklist */
.tracklist { width: 100%; border-collapse: collapse; }
.tracklist td { padding: 0.95rem 0.5rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.tracklist tr:last-child td { border-bottom: 0; }
.tracklist tr:hover td { background: rgba(255,255,255,0.015); }
.t-num { width: 42px; color: var(--text-dim); font-variant-numeric: tabular-nums; font-size: 0.85rem; }
.t-title { color: var(--text); font-size: 0.95rem; }
.t-feat { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-left: 0.6rem; }
.t-dur { width: 96px; text-align: right; color: var(--text-muted); font-variant-numeric: tabular-nums; font-size: 0.85rem; }
.tl-play {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-lt);
  background: transparent; color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
  margin-right: 0.85rem; vertical-align: middle; transition: .25s var(--ease);
}
.tl-play:hover, .tl-play.playing { background: var(--gold); color: #120d04; border-color: var(--gold); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header { padding: calc(var(--nav-h) + clamp(48px,8vw,88px)) 0 clamp(40px,6vw,64px); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(110,20,35,0.07) 0%, transparent 100%); }
.page-header h1 { margin: 0.6rem 0; }
.page-header p { max-width: 620px; }
.page-header--center { text-align: center; }
.page-header--center p { margin-inline: auto; }

/* ============================================================
   FORMS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--border-lt); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem; padding: 0.85rem 1rem; width: 100%;
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field select option { background: var(--bg-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); border-radius: 999px; padding: 5px 12px; }
.form-note::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-lg); background: rgba(201,168,76,0.04); }
.form-success.show { display: block; }
.form-success .check { font-size: 2.4rem; color: var(--gold); margin-bottom: 0.75rem; }

/* pricing / inquiry tiers */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.tier { padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(201,168,76,0.25); }
.tier .tier-kicker { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.tier .tier-name { font-family: var(--font-display); font-size: 1.6rem; margin: 0.5rem 0 0.25rem; }
.tier .tier-price { font-size: 1.4rem; color: var(--text); margin-bottom: 1.25rem; }
.tier ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; flex: 1; }
.tier li { font-size: 0.88rem; color: var(--text-muted); padding-left: 1.3rem; position: relative; }
.tier li::before { content: '✦'; position: absolute; left: 0; color: var(--velvet); font-size: 0.7rem; top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: clamp(48px,7vw,80px) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: clamp(2rem,4vw,3rem); }
.footer-brand img { width: 48px; margin-bottom: 0.8rem; }
.footer-brand .fb-name { font-family: var(--font-display); font-size: 1.3rem; line-height: 1; }
.footer-brand .fb-sub { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }
.footer-brand .fb-desc { font-size: 0.84rem; color: var(--text-muted); margin-top: 1rem; max-width: 30ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--border-lt); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.66rem; letter-spacing: 0.05em; color: var(--text-muted); transition: .25s var(--ease); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.86rem; color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: clamp(2.5rem,5vw,3.5rem); padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.74rem; color: var(--text-dim); }
.footer-credit a:hover { color: var(--gold); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .split, .artist-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(12,10,11,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0; transform: translateY(-120%); transition: transform .4s var(--ease); pointer-events: none;
  }
  .nav-links.open { transform: none; pointer-events: auto; }
  .nav-links a { padding: 1rem var(--gutter); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 0.75rem var(--gutter) 0.5rem; justify-content: center; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
