/* =========================================================
   Mobile Neckband Wholesale — Editorial Stylesheet
   Magazine-style, mobile-first, white + light grey + blue
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-grey: #f3f5f8;
  --bg-blue: #0d2a6b;
  --ink: #0b1020;
  --ink-soft: #2a3142;
  --muted: #5b6478;
  --line: #e4e7ee;
  --accent: #1e4fd8;
  --accent-deep: #173fb0;
  --accent-soft: #eaf0ff;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,22,40,.04), 0 4px 12px rgba(15,22,40,.04);
  --shadow-md: 0 8px 28px rgba(15,22,40,.07);
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
::selection { background: #1e4fd8; color: #fff; }

/* ===================== NAV ===================== */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark { width: 36px; height: 36px; display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--serif); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.brand-text em {
  font-style: normal; font-family: var(--mono);
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}
.nav-links { margin-left: auto; display: flex; gap: 28px; }
.nav-links a {
  color: var(--ink-soft); font-weight: 500; font-size: 14.5px;
  position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* ===================== HERO ===================== */
.hero { padding: 64px 24px 0; max-width: var(--maxw); margin: 0 auto; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
  align-items: end;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--ink-soft); }
.hero-title .ink {
  background: linear-gradient(180deg, transparent 60%, #fff170 60%, #fff170 92%, transparent 92%);
  padding: 0 4px;
}
.hero-lede { font-size: 19px; color: var(--ink-soft); max-width: 56ch; margin: 0 0 24px; }
.hero-meta { font-family: var(--mono); font-size: 12px; color: var(--muted); display: flex; gap: 10px; margin-bottom: 32px; letter-spacing: .04em; }
.hero-meta .dot { color: var(--accent); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-grey); }
.btn-lg { padding: 18px 28px; font-size: 16px; }

.hero-figure { margin: 0; }
.hero-image-wrap {
  position: relative; background: var(--bg-grey);
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #fff;
}
.hero-figure figcaption {
  margin-top: 14px; font-family: var(--mono); font-size: 12px;
  color: var(--muted); display: flex; align-items: center; gap: 12px; letter-spacing: .04em;
}
.caption-tag {
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: 4px;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
}

.hero-ticker {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 38px;
  animation: ticker 38s linear infinite;
  font-family: var(--mono); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft);
}
.ticker-track span:nth-child(even) { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */
.section { padding: 96px 24px; max-width: var(--maxw); margin: 0 auto; }
.section-grey { background: var(--bg-grey); max-width: 100%; padding-left: 0; padding-right: 0; }
.section-grey .section-head, .section-grey .cat-grid { max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

.section-head { max-width: 880px; margin-bottom: 56px; }
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.section-title em { font-style: italic; color: var(--ink-soft); font-weight: 500; }
.section-sub { color: var(--muted); font-size: 18px; margin: 0; max-width: 60ch; }

/* ===================== ARTICLE GRID ===================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.card {
  grid-column: span 2;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-feature { grid-column: span 4; flex-direction: row; }
.card-feature .card-media { flex: 1; min-height: 360px; }
.card-feature .card-body { flex: 1; padding: 40px; }

.card-media {
  background: var(--bg-grey);
  aspect-ratio: 16/11;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.card-media img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  width: auto; height: auto;
}
.card-feature .card-media { aspect-ratio: auto; }
.card-feature .card-media img { max-height: 360px; }

.card-body { padding: 24px 24px 28px; }
.tag {
  display: inline-block; font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.card h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.18; letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.card-feature h3 { font-size: clamp(26px, 2.2vw, 36px); }
.card p { color: var(--ink-soft); margin: 0 0 16px; font-size: 15.5px; }
.read { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 500; }

/* Stripe variants (no image cards) */
.stripe-1 { background: linear-gradient(135deg, #f0f4ff 0%, #e6ecff 100%); padding: 32px; aspect-ratio: 16/11; }
.stripe-2 { background: var(--ink); padding: 32px; aspect-ratio: 16/11; display: flex; align-items: center; justify-content: center; }
.stripe-3 { background: var(--accent-soft); padding: 32px; aspect-ratio: 16/11; display: flex; align-items: center; justify-content: center; }
.stripe-4 { background: #fff8e6; padding: 28px; aspect-ratio: 16/11; display: flex; flex-direction: column; justify-content: center; gap: 12px; }

.quote-card { font-family: var(--serif); }
.quote-card .q { font-size: 80px; line-height: .6; color: var(--accent); display: block; }
.quote-card p { font-size: 19px; line-height: 1.35; color: var(--ink); margin: 6px 0 16px; font-weight: 500; }
.quote-card .byline { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }

.big-stat { text-align: center; color: #fff; }
.stat-num { font-family: var(--serif); font-size: clamp(40px, 4vw, 56px); font-weight: 600; display: block; line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #c7d0ea; margin-top: 14px; display: block; }

.bullet-card { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; font-family: var(--serif); font-size: 20px; }
.bullet-card li { padding-left: 28px; position: relative; color: var(--ink); }
.bullet-card li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-family: var(--sans); font-weight: 700; }

.numbered { display: flex; gap: 14px; align-items: center; }
.numbered span { font-family: var(--mono); font-weight: 600; font-size: 14px; color: var(--accent); background: #fff; padding: 6px 10px; border-radius: 6px; }
.numbered p { margin: 0; font-size: 15px; color: var(--ink); }

/* ===================== PROSE / LONG FORM ===================== */
.section-prose { padding-top: 96px; padding-bottom: 96px; }
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 36px;
}
.prose-wrap p { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 22px; }
.prose-wrap h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 26px; line-height: 1.2; margin: 40px 0 14px;
  color: var(--ink);
}
.prose-wrap a { font-weight: 600; border-bottom: 1.5px solid var(--accent); }
.dropcap::first-letter {
  font-family: var(--serif); font-size: 72px; line-height: .85;
  float: left; padding: 6px 12px 0 0; color: var(--accent); font-weight: 600;
}
.prose-list { padding-left: 0; list-style: none; margin: 18px 0 26px; }
.prose-list li {
  padding: 12px 0 12px 32px; border-bottom: 1px dashed var(--line);
  position: relative; color: var(--ink-soft);
}
.prose-list li::before {
  content: "→"; position: absolute; left: 4px; top: 12px;
  color: var(--accent); font-weight: 700;
}
.pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.32;
  color: var(--ink); border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px; margin: 32px 0;
}

/* ===================== CATEGORIES ===================== */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cat-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cdd6ea; }
.cat-num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: .14em; margin-bottom: 14px; }
.cat-card h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 0 0 10px; letter-spacing: -0.01em; }
.cat-card p { color: var(--ink-soft); margin: 0 0 16px; font-size: 15px; }
.cat-card ul { list-style: none; padding: 0; margin: 0; }
.cat-card ul li {
  padding: 8px 0 8px 22px; position: relative;
  font-size: 14px; color: var(--muted); border-top: 1px solid var(--line);
}
.cat-card ul li:first-child { border-top: 0; }
.cat-card ul li::before {
  content: ""; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; position: absolute; left: 0; top: 16px;
}
.cat-card-feature {
  grid-column: span 3;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px;
  align-items: center; padding: 32px;
  background: linear-gradient(135deg, #0d2a6b 0%, #1e4fd8 100%);
  color: #fff; border: 0;
}
.cat-banner-img {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 14px;
  max-height: 360px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cat-banner-img img {
  max-width: 100%; max-height: 320px;
  object-fit: contain; width: auto; height: auto;
  border-radius: 10px;
}
.cat-banner-text {
  font-family: var(--serif); font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3; margin: 0;
}

/* ===================== WHY ONLINE ===================== */
.why-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.why-copy .section-title { margin-bottom: 18px; }
.why-lede { color: var(--muted); font-size: 17px; }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list li span {
  font-family: var(--mono); font-size: 12px; color: var(--accent);
  letter-spacing: .14em; padding-top: 6px;
}
.why-list li div { font-size: 17px; color: var(--ink-soft); }
.why-list li strong { color: var(--ink); font-weight: 600; }

/* ===================== ORDERING (BLUE) ===================== */
.section-blue {
  background: var(--bg-blue); color: #fff;
  max-width: 100%; padding-left: 0; padding-right: 0;
  position: relative; overflow: hidden;
}
.section-blue::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(30,79,216,.6) 0%, transparent 40%);
  pointer-events: none;
}
.ordering-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.kicker.light { color: #93b4ff; }
.kicker.light::before { background: #93b4ff; }
.section-title.light { color: #fff; }
.ordering-copy { max-width: 760px; margin-bottom: 48px; }
.ordering-copy p { color: #c8d3f2; font-size: 18px; margin: 0; }
.ordering-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.o-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.o-num {
  font-family: var(--serif); font-size: 52px; font-weight: 600;
  display: block; line-height: 1; margin-bottom: 18px;
  color: #fff; letter-spacing: -0.02em;
}
.o-card h4 { font-family: var(--serif); font-size: 22px; margin: 0 0 8px; color: #fff; font-weight: 600; }
.o-card p { color: #b9c4e3; font-size: 15px; margin: 0; }
.section-blue .btn-primary { background: #fff; color: var(--bg-blue); }
.section-blue .btn-primary:hover { background: #fff170; color: var(--ink); }

/* ===================== FAQ ===================== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 24px 0; display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-size: clamp(18px, 1.8vw, 22px); font-weight: 600;
  color: var(--ink); align-items: center;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item .plus {
  font-family: var(--sans); font-weight: 400; font-size: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-grey); display: inline-flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--ink); transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item[open] .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-body { padding: 0 0 24px; }
.faq-body p { margin: 0; color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; max-width: 68ch; }

/* ===================== CTA ===================== */
.cta-section { text-align: center; padding-top: 96px; padding-bottom: 96px; }
.cta-wrap { max-width: 760px; margin: 0 auto; }
.cta-wrap .kicker { justify-content: center; }
.cta-wrap h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(36px, 4.5vw, 60px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 18px;
}
.cta-wrap h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.cta-wrap > p { font-size: 18px; color: var(--ink-soft); margin: 0 0 32px; }
.cta-fine {
  font-family: var(--mono); font-size: 12.5px;
  letter-spacing: .1em; color: var(--muted);
  margin-top: 22px; text-transform: uppercase;
}

/* ===================== FOOTER ===================== */
.site-foot { background: var(--ink); color: #c7cee0; padding: 72px 24px 28px; }
.foot-wrap {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand .brand { color: #fff; }
.foot-brand .brand-text strong { color: #fff; }
.foot-brand .brand-text em { color: #93b4ff; }
.foot-brand p { font-size: 14.5px; color: #98a3bd; margin: 18px 0 0; max-width: 36ch; }
.foot-col h5 {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: #93b4ff; margin: 0 0 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col ul li { padding: 7px 0; }
.foot-col ul li a { color: #c7cee0; font-size: 14.5px; transition: color .2s ease; }
.foot-col ul li a:hover { color: #fff; }

.foot-seo {
  max-width: var(--maxw); margin: 28px auto 0;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-seo p { font-size: 13px; color: #8b96b3; line-height: 1.7; margin: 0; }
.foot-seo strong { color: #c7cee0; font-weight: 600; }

.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 24px; display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em;
  color: #6f7a96; flex-wrap: wrap; gap: 8px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .card { grid-column: span 1; }
  .card-feature { grid-column: span 2; flex-direction: column; }
  .card-feature .card-media { min-height: 280px; }
  .card-feature .card-body { padding: 28px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card-feature { grid-column: span 2; grid-template-columns: 1fr; text-align: left; }
  .why-wrap { grid-template-columns: 1fr; gap: 32px; }
  .ordering-cards { grid-template-columns: 1fr; }
  .foot-wrap { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; margin-left: auto; }
  .nav-wrap.open + .nav-mobile { display: flex; }
  .hero { padding-top: 40px; }
  .hero-title { font-size: clamp(34px, 9vw, 48px); }
  .hero-lede { font-size: 17px; }
  .hero-ticker { margin-top: 56px; }
  .section { padding: 64px 20px; }
  .section-grey .section-head, .section-grey .cat-grid { padding-left: 20px; padding-right: 20px; }
  .section-head { margin-bottom: 36px; }
  .article-grid { grid-template-columns: 1fr; gap: 24px; }
  .card { grid-column: span 1; }
  .card-feature { grid-column: span 1; }
  .card-media { aspect-ratio: 4/3; padding: 14px; }
  .card-media img { max-height: 240px; }
  .card-feature .card-media img { max-height: 240px; }
  .stripe-1, .stripe-2, .stripe-3, .stripe-4 { aspect-ratio: 4/3; padding: 22px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card-feature { grid-column: span 1; padding: 24px; }
  .cat-banner-img { max-height: 260px; }
  .cat-banner-img img { max-height: 230px; }
  .foot-wrap { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .prose-wrap p { font-size: 17px; }
  .ordering-wrap { padding: 0 20px; }
  .o-card { padding: 24px; }
  .o-num { font-size: 42px; }
  .hero-actions .btn { flex: 1; }
}

/* Mobile menu drawer (simple) */
.nav-mobile {
  display: none;
  position: fixed; inset: 64px 0 0; background: #fff;
  padding: 24px; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--line); z-index: 50;
}
.nav-mobile a {
  padding: 14px 16px; border-radius: 10px;
  font-family: var(--serif); font-size: 22px; color: var(--ink);
}
.nav-mobile a:hover { background: var(--bg-grey); }
.nav-mobile .btn { margin-top: 16px; }
body.menu-open .nav-mobile { display: flex; }
body.menu-open { overflow: hidden; }
