/* site.css — shared styles for all static sub-pages.
   Theme parity with the home (index.html) dark-navy palette. */

:root {
  --bg:        oklch(40% 0.035 250);
  --bg-soft:   oklch(46% 0.035 250);
  --bg-deep:   oklch(15% 0.03 250);
  --bg-hero:   oklch(12% 0.03 250);
  --ink:       oklch(98% 0.008 230);
  --ink-mid:   oklch(88% 0.018 230);
  --ink-soft:  oklch(76% 0.022 230);
  --line:      oklch(55% 0.03 250);
  --line-soft: oklch(48% 0.03 250);
  --brand:     oklch(80% 0.15 210);
  --brand-deep:oklch(68% 0.17 215);
  --brass:     oklch(84% 0.15 85);
  --brass-deep:oklch(72% 0.15 80);
  --surface:   oklch(44% 0.038 250);
  --paper:     oklch(98% 0.005 230);

  --serif: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --sans:  "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono:  "Geist Mono", ui-monospace, monospace;
  --nav:   "Roboto", sans-serif;
  --maxw:  1320px;
  --pad:   clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.hide-sm { display: inline-flex; }
@media (max-width: 720px) { .hide-sm { display: none !important; } }

/* ── Top bar ───────────────────────────────────────────────────────────── */
.topbar {
  background: var(--bg-deep);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.topbar-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 38px; gap: 18px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-phone {
  color: var(--paper); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.topbar-pin { display: inline-flex; align-items: center; gap: 8px; opacity: 0.7; }
.topbar-habla { display: inline-flex; align-items: center; gap: 7px; opacity: 0.95; }
.topbar-habla .dot { width: 6px; height: 6px; background: var(--brass); border-radius: 50%; }
.lang-toggle {
  background: var(--brass); color: var(--bg-deep);
  padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 6px;
}
.lang-toggle:hover { background: var(--brass-deep); color: var(--bg-deep); }

@media (max-width: 720px) {
  .topbar-row { padding: 8px 0; }
  .topbar-phone { font-size: 20px !important; font-weight: 700; letter-spacing: 0; }
  .topbar-phone svg { width: 18px; height: 18px; }
  .lang-toggle { font-size: 14px; padding: 7px 16px; }
}

/* ── Header / Nav ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,17,30,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; gap: 28px;
}
.brand img { height: 60px; width: auto; border-radius: 10px; }

.primary-nav { flex: 1; display: flex; justify-content: flex-end; }
.primary-nav > ul {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.primary-nav a {
  color: var(--paper); font-family: var(--nav); font-weight: 700; font-size: 17px;
  letter-spacing: 0.005em; padding: 6px 0; display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent;
}
.primary-nav li.is-active > a,
.primary-nav a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.primary-nav .caret { font-size: 11px; opacity: 0.7; }

.has-dropdown { position: relative; }
.has-dropdown::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0;
  height: 18px; /* invisible bridge between nav link and dropdown */
}
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  min-width: 240px; padding: 10px;
  list-style: none; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  z-index: 10;
}
.has-dropdown:hover > .dropdown,
.has-dropdown.open > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  color: var(--ink); font-weight: 600; font-size: 14.5px;
  padding: 10px 14px; border-radius: 8px; display: block;
  border-bottom: 0;
}
.dropdown a:hover { background: rgba(255,255,255,.06); color: var(--brand); }

.header-right { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; }
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--line);
    border-radius: 10px; width: 44px; height: 44px; cursor: pointer;
    color: var(--paper);
  }
  .header-row { height: 72px; }
  .brand img { height: 52px; }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14.5px; font-weight: 600; font-family: var(--sans);
  cursor: pointer; text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-sm { height: 40px; padding: 0 16px; font-size: 13.5px; }
.btn-lg { height: 56px; padding: 0 26px; font-size: 15.5px; }
.btn-primary { background: var(--brand); color: var(--bg-deep); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-deep); color: var(--paper); transform: translateY(-1px); }
.btn-brass { background: var(--brass); color: var(--bg-deep); border-color: var(--brass); }
.btn-brass:hover { background: var(--brass-deep); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.2); }
.btn-ghost-light:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); }

/* ── Page hero ─────────────────────────────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(1100px 540px at 80% -10%, oklch(70% 0.11 75 / 0.10), transparent 60%),
    radial-gradient(800px 460px at -10% 30%, oklch(40% 0.06 165 / 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-hero), var(--bg-deep) 60%, var(--bg));
  padding: clamp(28px, 4vw, 52px) 0 clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid var(--line-soft);
}
.page-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.page-eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--brass);
}
.page-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(40px, 6.2vw, 76px);
  letter-spacing: -0.025em; line-height: 1.04;
  margin: 0 0 18px; max-width: 900px;
  text-wrap: balance;
}
.page-subtitle {
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5;
  color: var(--ink-mid); max-width: 720px; margin: 0 0 32px;
  text-wrap: pretty;
}
.hero-subnav {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0 14px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 24px; margin-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.hero-subnav a {
  color: var(--ink-soft); padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.hero-subnav a:hover { color: var(--brand); }
.hero-subnav a.is-current { color: var(--brass); border-bottom-color: var(--brass); }
.hero-subnav .sep { color: var(--line); }

/* ── Main grid (content + form) ────────────────────────────────────────── */
.page-main {
  padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 100px);
  background: #fff;
  color: oklch(22% 0.025 250);
}
/* Light-mode overrides for the white content column. Scoped to .content-col so
   the dark .consult-card sidebar keeps its original light-on-dark text. */
.content-col { color: oklch(22% 0.025 250); }
.content-col .section-title,
.content-col .section-body strong,
.content-col .faq summary {
  color: oklch(15% 0.03 250);
}
.content-col .section-lead,
.content-col .section-body,
.content-col .section-bullets,
.content-col .checklist li,
.content-col .faq-answer {
  color: oklch(38% 0.018 250);
}
.content-col .checklist .check {
  background: oklch(94% 0.035 210);
  color: var(--brand-deep);
}
.content-col .case-result-list li {
  background: oklch(98% 0.005 230);
  border-color: oklch(88% 0.012 230);
  color: oklch(18% 0.025 250);
}
.content-col .services-grid {
  background: oklch(88% 0.012 230);
  border-color: oklch(88% 0.012 230);
}
.content-col .services-grid > li { background: oklch(98% 0.005 230); }
.content-col .services-grid p { color: oklch(38% 0.018 250); }
.content-col .link-chips a {
  background: oklch(98% 0.005 230);
  border-color: oklch(85% 0.014 230);
  color: oklch(20% 0.025 250);
}
.content-col .faq,
.content-col .faq details {
  border-color: oklch(88% 0.012 230);
}
/* Section eyebrows are gold by default — too light on the white content bg.
   Darken to a rich amber for readability while keeping the warm accent feel. */
.content-col .section-eyebrow { color: oklch(45% 0.12 75); }
.content-col .section-eyebrow .rule { background: oklch(45% 0.12 75); }

/* In-section sub-heading (used for "Affirmative asylum" / "Defensive asylum" etc.) */
.content-col .section-subtitle {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: oklch(15% 0.03 250);
  margin: 26px 0 10px;
}
.content-col .section-bullets li strong { color: oklch(15% 0.03 250); font-weight: 700; }
/* Ordered numbered variant of .section-bullets */
.section-bullets--ordered { counter-reset: bullet-num; }
.section-bullets--ordered li { padding-left: 30px; }
.section-bullets--ordered li::before {
  content: counter(bullet-num) ".";
  counter-increment: bullet-num;
  background: transparent;
  color: var(--brand-deep);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  top: 0.18em; left: 0;
  width: auto; height: auto;
  border-radius: 0;
}
.content-col .section-bullets--ordered li::before { color: oklch(45% 0.12 75); }

/* Map embed used on contact + location pages */
.map-embed {
  margin-top: 16px;
  border: 1px solid oklch(85% 0.014 230);
  border-radius: 12px;
  overflow: hidden;
  background: oklch(96% 0.005 230);
}
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }
.map-actions { margin-top: 14px; font-size: 14.5px; }
.map-actions a { color: var(--brand-deep); font-weight: 600; }
.map-actions a:hover { color: var(--brand); }
.content-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
.content-grid.has-form {
  grid-template-columns: minmax(0, 1fr) 380px;
  /* default align-items: stretch — lets .form-col fill row height so sticky has room */
}
@media (max-width: 980px) {
  .content-grid.has-form { grid-template-columns: 1fr; }
}
.content-col > .content-section + .content-section { margin-top: clamp(40px, 5vw, 64px); }

/* ── Content sections ──────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 16px;
}
.section-eyebrow .rule {
  display: inline-block; width: 24px; height: 1px; background: var(--brass);
}
.section-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.015em; line-height: 1.15;
  margin: 0 0 20px;
  text-wrap: balance;
}
.section-lead {
  font-size: 19px; color: var(--ink-mid); margin: 0 0 24px; max-width: 720px;
  text-wrap: pretty;
}
.section-body { color: var(--ink-mid); font-size: 17.5px; line-height: 1.7; }
.section-body p { margin: 0 0 18px; max-width: 720px; }
.section-body p:last-child { margin-bottom: 0; }
.section-body strong { color: var(--ink); font-weight: 600; }

.section-bullets {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 10px;
  font-size: 17px; color: var(--ink-mid);
}
.section-bullets li {
  padding-left: 22px; position: relative;
}
.section-bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.78em;
  width: 8px; height: 8px; background: var(--brand); border-radius: 50%;
}

/* Services grid (used in services overview + location pages) */
.services-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden;
}
.services-grid > li {
  background: var(--surface); padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.services-grid h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em; line-height: 1.2;
  margin: 0;
}
.services-grid p { color: var(--ink-mid); font-size: 16px; margin: 0 0 10px; }
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

.learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 600; font-size: 14.5px;
  margin-top: auto;
}
.learn-more:hover { color: var(--brand-deep); }

/* Checklist (Why us / How we help) */
.checklist {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.checklist li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  font-size: 17px; color: var(--ink-mid); line-height: 1.55;
  align-items: baseline;
}
.checklist .check {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(120, 200, 220, .14); color: var(--brand);
  font-size: 14px; font-weight: 700;
}

/* Case results list */
.case-result-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 10px;
}
.case-result-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 12px;
  align-items: center;
  padding: 14px 18px; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 10px;
  font-size: 17px; color: var(--ink);
}
.case-result-list .approved {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg-deep); background: var(--brass);
  padding: 4px 10px; border-radius: 4px;
}

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.faq details {
  border-bottom: 1px solid var(--line-soft);
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 32px 22px 0;
  font-family: var(--serif); font-weight: 600;
  font-size: 19px; color: var(--ink); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 22px;
  font-size: 26px; color: var(--brass); font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq-answer { color: var(--ink-mid); font-size: 17px; padding: 0 0 22px; }
.faq-answer p { margin: 0; max-width: 720px; }

/* Link chips (nearby areas) */
.link-chips {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.link-chips a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); font-weight: 500; font-size: 14.5px;
}
.link-chips a:hover { border-color: var(--brand); color: var(--brand); }

/* ── Consultation form sidebar ─────────────────────────────────────────── */
.consult-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 24px 24px;
  position: sticky; top: 104px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  color: var(--paper);
}
.consult-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 10px;
}
.consult-title {
  font-family: var(--serif); font-weight: 700;
  font-size: 26px; letter-spacing: -0.015em; line-height: 1.15;
  margin: 0 0 8px;
}
.consult-lead { color: var(--ink-mid); font-size: 14.5px; margin: 0 0 20px; }
.consult-form { display: grid; gap: 12px; }
.consult-form label {
  display: grid; gap: 6px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
}
.consult-form label .opt { text-transform: none; opacity: 0.7; letter-spacing: 0; }
.consult-form input, .consult-form select, .consult-form textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px; padding: 11px 12px; outline: none;
  width: 100%; resize: vertical;
  letter-spacing: 0;
  text-transform: none;
}
.consult-form input:focus, .consult-form select:focus, .consult-form textarea:focus {
  border-color: var(--brand);
}
.consult-form button[type="submit"] {
  margin-top: 6px; width: 100%; border: 0;
}
.consult-success {
  font-family: var(--sans); font-size: 14.5px; letter-spacing: 0;
  text-transform: none; color: var(--brand); margin-top: 8px;
  padding: 12px 14px; background: rgba(120,200,220,.1);
  border: 1px solid var(--brand); border-radius: 8px;
}
.consult-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 16px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.consult-divider::before, .consult-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.consult-direct { display: grid; gap: 10px; }
.consult-phone {
  display: grid; gap: 2px; padding: 12px 16px;
  background: rgba(120,200,220,.08); border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink);
}
.consult-phone strong {
  font-family: var(--serif); font-weight: 800; font-size: 26px;
  color: var(--brand); letter-spacing: -0.01em;
}
.consult-phone span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft);
}
.consult-whatsapp {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; background: #25D366; color: #fff; font-weight: 700;
  font-size: 14.5px; border-radius: 10px;
}
.consult-whatsapp:hover { background: #1ebe57; color: #fff; }

@media (max-width: 980px) {
  .consult-card { position: static; }
}

/* ── Final CTA strip ───────────────────────────────────────────────────── */
.final-cta-strip {
  background: var(--bg-deep); color: var(--paper);
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.final-cta-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 16px;
}
.final-cta-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.02em;
  margin: 0 auto 18px; max-width: 800px; line-height: 1.1;
  text-wrap: balance;
}
.final-cta-lead {
  color: oklch(85% 0.012 230); font-size: 17px; line-height: 1.55;
  margin: 0 auto 28px; max-width: 640px;
}
.final-cta-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg); border-top: 1px solid var(--line);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
  margin-bottom: 56px;
}
.footer-grid > * { min-width: 0; }
.footer-grid ul a { line-height: 1.45; text-wrap: pretty; }
.footer-tagline { color: var(--ink-mid); margin: 0 0 12px; max-width: 320px; }
.footer-bilingual {
  color: var(--ink-soft); font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 22px; max-width: 320px;
}
.footer-bilingual .dot { width: 6px; height: 6px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }
.footer-address, .footer-hours {
  color: var(--ink-mid); font-size: 14px; line-height: 1.7; font-style: normal;
  margin: 0 0 18px;
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-family: var(--serif); font-weight: 700;
  font-size: 24px; letter-spacing: -0.01em;
}
.footer-label {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid ul a { color: var(--ink-mid); font-size: 14.5px; }
.footer-grid ul a:hover { color: var(--brand); }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.footer-legal a { color: var(--ink-soft); text-decoration: underline; }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Mobile drawer ─────────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  padding: 24px clamp(20px, 6vw, 32px) 32px;
  display: flex; flex-direction: column; gap: 24px;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
}
.mobile-drawer[data-open="true"] { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head img { height: 64px; width: auto; border-radius: 10px; }
.drawer-close {
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px; width: 44px; height: 44px;
  display: grid; place-items: center; color: var(--ink); cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav > a,
.drawer-nav summary {
  font-family: var(--nav); font-weight: 700; font-size: 22px;
  color: var(--paper); padding: 18px 0;
  border-bottom: 1px solid var(--line); cursor: pointer;
  list-style: none;
}
.drawer-nav summary::-webkit-details-marker { display: none; }
.drawer-nav summary::after {
  content: " ▾"; color: var(--brass); font-size: 16px;
}
.drawer-nav details[open] summary::after { content: " ▴"; }
.drawer-nav details ul {
  list-style: none; padding: 8px 0 12px 14px; margin: 0;
  display: grid; gap: 8px;
}
.drawer-nav details ul a {
  color: var(--ink-mid); font-size: 15.5px; font-weight: 500;
}
.drawer-cta {
  margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 16px;
}

/* ── Mobile sticky bar ─────────────────────────────────────────────────── */
.mobile-sticky-bar { display: none; }
@media (max-width: 720px) {
  body { padding-bottom: 64px; }
  .mobile-sticky-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 95; gap: 1px; background: var(--line);
    box-shadow: 0 -6px 22px rgba(0,0,0,.16);
    transform: translateZ(0); will-change: transform;
  }
  .msb-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 16px 8px; font-size: 16px; font-weight: 700;
    font-family: var(--sans); text-decoration: none;
  }
  .msb-call { background: var(--bg-deep); color: var(--paper); }
  .msb-wa { background: #25D366; color: #fff; }
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px; border-radius: 4px;
}
