/* =========================================================
   Coach Kody Music — shared styles  (v2: bold & official)
   Bright base, vibrant gradients, display type, real polish
   ========================================================= */

:root {
  --bg:         #ffffff;
  --bg-soft:    #faf7ec;   /* warm off-white */
  --bg-tint:    #fff8dd;   /* light yellow tint */
  --ink:        #1a1a12;   /* near-black text */
  --ink-soft:   #5f5c4c;
  --brand:      #ffc20e;   /* Coach Kody yellow */
  --brand-2:    #ffd23f;   /* light yellow */
  --brand-3:    #e8a400;   /* gold / darker yellow */
  --brand-ink:  #111111;   /* black */
  --brand-tint: #fff2c2;
  --brand-soft: #fffaea;
  --border:     #ececd6;
  --ink-grad:   linear-gradient(150deg, #17170f 0%, #2c2b1a 100%); /* dark cards */
  --grad:       linear-gradient(120deg, #ffb703 0%, #ffc20e 45%, #ffd23f 100%);
  --grad-soft:  linear-gradient(120deg, #fff3cc 0%, #fff8dd 50%, #fffbe9 100%);
  --shadow:     0 18px 50px rgba(60, 45, 0, 0.14);
  --shadow-sm:  0 8px 24px rgba(60, 45, 0, 0.10);
  --radius:     18px;
  --maxw:       1100px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display:    'Sora', var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-ink); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 800; font-size: 1.15rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.brand .logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand);
  display: grid; place-items: center;
  color: var(--brand-ink); font-family: var(--display); font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(255, 194, 14, 0.5);
  border: 2px solid var(--brand-ink);
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: inline-block; padding: 9px 16px; border-radius: 11px;
  color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; transition: all 0.15s ease;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-links a.active { color: var(--brand-ink); background: var(--brand-tint); }
.nav-cta { background: var(--brand) !important; color: var(--brand-ink) !important; box-shadow: 0 6px 16px rgba(255,194,14,0.45); }
.nav-cta:hover { color: var(--brand-ink) !important; filter: brightness(1.05); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 14px;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent; transition: all 0.18s ease; letter-spacing: -0.01em;
}
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 12px 28px rgba(255,194,14,0.4); border-color: var(--brand-ink); }
.btn-primary:hover { color: var(--brand-ink); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,194,14,0.5); }
.btn-ghost { background: #fff; color: var(--brand); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-soft); }

/* ---------- Announcement bar ---------- */
.announce {
  display: block; background: var(--brand-ink); color: #fff; text-align: center;
  padding: 11px 16px; font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.announce:hover { color: #fff; }
.announce strong { color: var(--brand); }
.announce .announce-cta { color: var(--brand); text-decoration: underline; white-space: nowrap; }

/* ---------- Album showcase ---------- */
.album { padding: 56px 0; }
.album-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center;
  background: var(--ink-grad); border: 3px solid var(--brand); border-radius: 28px; padding: 40px;
}
.album-cover { position: relative; }
.album-cover img { width: 100%; border-radius: 16px; border: 3px solid var(--brand-ink); box-shadow: var(--shadow); display: block; }
.album-cover .ph {
  aspect-ratio: 1/1; border-radius: 16px; border: 3px dashed var(--brand);
  display: grid; place-items: center; text-align: center; color: #fff; padding: 20px;
  background: rgba(255,255,255,0.05);
}
.album-flag {
  position: absolute; top: -14px; left: -14px; background: var(--brand); color: var(--brand-ink);
  font-family: var(--display); font-weight: 800; font-size: 0.85rem; padding: 8px 16px;
  border-radius: 999px; border: 3px solid var(--brand-ink); transform: rotate(-6deg);
}
.album-info .eyebrow { background: var(--brand); color: var(--brand-ink); }
.album-info h2 { color: #fff; margin-bottom: 12px; }
.album-info .lead { color: rgba(255,255,255,0.85); max-width: none; }
.countdown { display: flex; gap: 12px; margin: 26px 0; flex-wrap: wrap; }
.cd-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 12px 10px; min-width: 78px; text-align: center;
}
.cd-num { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--brand); display: block; line-height: 1; }
.cd-lab { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.7); margin-top: 6px; display: block; }
.cd-out { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--brand); }
.album-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.album-actions .streaming-note { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
@media (max-width: 880px) {
  .album-grid { grid-template-columns: 1fr; gap: 28px; padding: 26px; }
  .album-cover { max-width: 340px; margin: 0 auto; }
}

/* ---------- Typography / sections ---------- */
section { padding: 88px 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 640px; }
/* readable gold accent for small links */
.gradient-text { color: #b9820b; font-weight: 700; }
.gradient-text:hover { color: #8a6100; }
/* highlighter accent for headline words — black text on yellow */
.hl {
  background: var(--brand); color: var(--brand-ink);
  padding: 0 0.18em; border-radius: 10px; box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-ink); background: var(--brand-tint);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 96px; background: var(--bg); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 15% 10%, rgba(255,194,14,0.20), transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(255,183,3,0.18), transparent 60%),
    radial-gradient(60% 60% at 70% 95%, rgba(255,210,63,0.16), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px;
}

/* Hero visual card with soundwave */
.hero-visual {
  position: relative; border-radius: 24px; padding: 34px;
  background: var(--ink-grad); box-shadow: var(--shadow); overflow: hidden; min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 3px solid var(--brand);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255,194,14,0.22), transparent 55%);
}
.hv-top .kicker { color: var(--brand); }
.hv-top { position: relative; z-index: 1; color: #fff; }
.hv-top .kicker { font-family: var(--display); font-weight: 700; opacity: 0.9; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; }
.hv-top .title { font-family: var(--display); font-weight: 800; font-size: 1.7rem; margin-top: 6px; }
.wave { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 6px; height: 120px; margin: 24px 0; }
.wave span {
  flex: 1; border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #ffd23f, #ffb703);
}
.hv-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28); border-radius: 14px;
  padding: 14px 16px; display: flex; align-items: center; gap: 14px; color: #fff;
}
.hv-card .disc { width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, #fff 18%, rgba(255,255,255,0.35) 20% 34%, #fff 36% 40%, rgba(255,255,255,0.25) 42%); }
.hv-card .meta small { opacity: 0.85; font-weight: 600; }
.hv-card .meta strong { display: block; font-family: var(--display); font-weight: 700; }

/* Hero as a photo card */
.hero-visual.photo { padding: 0; }
.hero-visual.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hv-badge {
  position: absolute; z-index: 2; left: 18px; bottom: 18px;
  background: var(--brand); color: var(--brand-ink);
  font-family: var(--display); font-weight: 800; font-size: 0.95rem;
  padding: 10px 16px; border-radius: 999px; border: 2px solid var(--brand-ink);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ---------- Video ---------- */
.video-wrap { max-width: 820px; margin: 0 auto; }
.video-embed, .video-ph {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 18px; box-shadow: var(--shadow);
}
.video-embed { border: 3px solid var(--brand-ink); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-ph { border: 3px dashed var(--brand); background: var(--ink-grad); }
.video-ph .inner { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: #fff; padding: 20px; }
.video-ph .play {
  width: 74px; height: 74px; border-radius: 50%; background: var(--brand); color: var(--brand-ink);
  display: grid; place-items: center; font-size: 1.9rem; margin: 0 auto 14px; border: 3px solid var(--brand-ink);
}
.video-ph strong { font-family: var(--display); font-size: 1.15rem; display: block; }
.video-ph small { opacity: 0.85; }

/* ---------- Home video teaser ---------- */
.video-teaser {
  position: relative; display: block; max-width: 780px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  border: 3px solid var(--brand-ink); box-shadow: var(--shadow); background: #000;
}
.video-teaser img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.video-teaser:hover img { transform: scale(1.05); }
.video-teaser::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.15); transition: background 0.2s ease; }
.video-teaser:hover::before { background: rgba(0,0,0,0.05); }
.video-teaser .play-badge {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
}
.video-teaser .play-badge span {
  width: 84px; height: 84px; border-radius: 50%; background: var(--brand); color: var(--brand-ink);
  display: grid; place-items: center; font-size: 2rem; border: 3px solid var(--brand-ink);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45); transition: transform 0.2s ease;
}
.video-teaser:hover .play-badge span { transform: scale(1.08); }
.video-teaser .v-label {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: var(--brand-ink); color: #fff; font-family: var(--display); font-weight: 700;
  padding: 9px 16px; border-radius: 999px; font-size: 0.9rem;
}

/* ---------- Photo gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 18px; }
.gallery figure { position: relative; overflow: hidden; border-radius: 18px; border: 1px solid var(--border); background: var(--bg-soft); margin: 0; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .g-feature { grid-column: span 2; grid-row: span 2; }
.gallery .g-mascot { background: var(--brand); border-color: var(--brand-ink); }
.gallery .g-mascot img { object-fit: contain; padding: 12px; }
@media (max-width: 880px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery .g-feature { grid-column: span 2; }
}

/* ---------- Genre / credential strip ---------- */
.strip { background: var(--brand-ink); padding: 22px 0; }
.strip-row { display: flex; flex-wrap: wrap; gap: 12px 16px; justify-content: center; align-items: center; }
.strip-row .pill { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1rem; letter-spacing: 0.01em; }
.strip-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden;
  background: var(--grad-soft); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.portrait .ph { color: var(--brand-ink); }
.portrait .ph .avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--brand); display: grid; place-items: center; color: var(--brand-ink); font-size: 2.4rem;
  box-shadow: 0 10px 24px rgba(255,194,14,0.5); border: 3px solid var(--brand-ink);
}
.portrait .ph small { display: block; font-weight: 600; margin-top: 4px; color: var(--ink-soft); }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-body .signature { font-family: var(--display); font-weight: 800; font-size: 1.15rem; margin-top: 22px; color: var(--brand-ink); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px; transition: all 0.2s ease; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--grad); opacity: 0; transition: opacity 0.2s ease; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--brand-tint);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 20px;
}
.card p { color: var(--ink-soft); }
.card .more { display: inline-block; margin-top: 14px; font-family: var(--display); font-weight: 700; }

/* ---------- Quote band ---------- */
.quote-band { background: var(--bg-soft); }
.quote {
  max-width: 820px; margin: 0 auto; text-align: center;
  font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.35; letter-spacing: -0.02em; color: var(--ink);
}
.quote .mark { font-size: 3rem; line-height: 0; color: var(--brand-3); vertical-align: -0.3em; }
.quote-by { margin-top: 22px; font-family: var(--font); font-weight: 600; font-size: 1rem; color: var(--ink-soft); }

/* ---------- Inner page header ---------- */
.page-head { position: relative; overflow: hidden; padding: 84px 0 64px; text-align: center; background: var(--bg); }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 20% 0%, rgba(255,194,14,0.20), transparent 60%),
    radial-gradient(50% 60% at 85% 10%, rgba(255,183,3,0.16), transparent 60%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head .lead { margin: 16px auto 0; }

/* ---------- Music page ---------- */
.player-wrap { max-width: 720px; margin: 0 auto; }
.player-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 26px; }
.player-card iframe { border-radius: 12px; width: 100%; display: block; }
.placeholder-note { border: 2px dashed var(--brand-2); background: var(--brand-soft); border-radius: 12px; padding: 24px; text-align: center; color: var(--brand-ink); font-weight: 600; }
.platform-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.platform-links a { padding: 12px 24px; border: 1px solid var(--border); border-radius: 999px; font-family: var(--display); font-weight: 700; color: var(--ink); background: #fff; transition: all 0.15s ease; }
.platform-links a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* ---------- Coming soon (Merch) ---------- */
.coming-soon {
  max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 52px 40px; box-shadow: var(--shadow);
}
.coming-soon .cs-emoji { font-size: 3rem; margin-bottom: 16px; }
.coming-soon h2 { margin-bottom: 12px; }
.coming-soon p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 26px; }

/* ---------- Forms ---------- */
.form-wrap { max-width: 660px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }

/* ---------- Contact info ---------- */
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.info-card { text-align: center; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: all 0.2s ease; }
.info-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.info-card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-tint); display: grid; place-items: center; font-size: 1.4rem; margin: 0 auto 14px; }
.info-card a, .info-card span { color: var(--ink-soft); font-weight: 600; word-break: break-word; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink-grad); color: #fff; text-align: center; border-radius: 28px; padding: 64px 32px; border: 3px solid var(--brand); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, rgba(255,194,14,0.20), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--brand); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 540px; margin: 0 auto 28px; }
.cta-band .btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }
.cta-band .btn-primary:hover { background: #ffcf3a; color: var(--brand-ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 52px 0 34px; margin-top: 40px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 30px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; font-size: 1.1rem; transition: all 0.15s ease; }
.socials a:hover { border-color: var(--brand); transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .about-grid .portrait { max-width: 360px; }
  .card-grid, .contact-info { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch;
    padding: 12px; display: none; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
}
