/* =============================================================================
   GK Luxury Remodeling — hoja de estilos única
   Dirección "Atelier oscuro". Sin framework, sin build de CSS.
   ============================================================================= */

:root {
  /* superficie */
  --bg:            #0E0D0C;
  --bg-raise:      #151312;
  --scrim:         rgba(14, 13, 12, 0.86);

  /* texto */
  --fg:            #F2EFEA;
  --fg-muted:      rgba(242, 239, 234, 0.62);
  --fg-subtle:     rgba(242, 239, 234, 0.45);
  --fg-faint:      rgba(242, 239, 234, 0.30);

  /* marca */
  --gold:          #E0A32E;
  --gold-hover:    #F2BC55;
  --rule:          rgba(224, 163, 46, 0.22);
  --rule-strong:   rgba(224, 163, 46, 0.42);

  --display: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* escala fluida: el mismo valor sirve de 360px a 1400px */
  --h1:    clamp(2.35rem, 1.25rem + 4.6vw, 4.125rem);
  --h2:    clamp(1.85rem, 1.25rem + 2.4vw, 2.75rem);
  --h3:    clamp(1.25rem, 1.05rem + 0.8vw, 1.5625rem);
  --body-size: clamp(0.975rem, 0.93rem + 0.18vw, 1rem);
  --lead:  clamp(1rem, 0.94rem + 0.28vw, 1.0625rem);

  --gutter: clamp(1.25rem, 0.6rem + 2.6vw, 3.5rem);
  --section-y: clamp(3.25rem, 2rem + 4.4vw, 5.25rem);
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

/* El menú lateral cerrado vive fuera de pantalla con translateX(100%). Sin este
   clip sigue sumando al scrollWidth del documento y aparece scroll horizontal
   en móvil. `clip` no crea contenedor de scroll, a diferencia de `hidden`. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: var(--body-size);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; text-wrap: pretty; }
h1 { font-size: var(--h1); line-height: 1.02; letter-spacing: -0.015em; }
h2 { font-size: var(--h2); line-height: 1.08; }
h3 { font-size: var(--h3); line-height: 1.15; }
p  { margin: 0; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section-top-rule { border-top: 1px solid var(--rule); }
.stack { display: flex; flex-direction: column; }
.muted { color: var(--fg-muted); }
.subtle { color: var(--fg-subtle); }
.lead { font-size: var(--lead); line-height: 1.68; color: var(--fg-muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* volanta con filete dorado: el gesto que se repite en cada sección */
.eyebrow {
  display: flex; align-items: center; gap: 0.875rem;
  font-size: 0.6875rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin: 0;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); flex: 0 0 auto; }

.label {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-subtle);
}

/* ---------- botones: 44px de alto mínimo en todos los tamaños -------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.9rem 1.5rem;
  font-family: var(--body); font-size: 0.875rem; font-weight: 600;
  border: 1px solid transparent; border-radius: 0; cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-hover); color: var(--bg); }
.btn-ghost { border-color: var(--rule-strong); color: var(--gold); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); background: rgba(224,163,46,0.08); color: var(--gold-hover); }
.btn-sm { min-height: 44px; padding: 0.6rem 1.05rem; font-size: 0.78125rem; }
.btn-block { width: 100%; }

.link-under {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--fg); border-bottom: 1px solid rgba(242,239,234,0.35);
  font-size: 0.875rem;
}
.link-under:hover { color: var(--gold); border-color: var(--gold); }

/* =============================== NAV ====================================== */
.nav { border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; background: var(--bg); }
.nav-inner {
  max-width: var(--max); margin-inline: auto; padding: 0.875rem var(--gutter);
  display: flex; align-items: center; gap: 1.25rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--fg); flex: 0 0 auto; }
.brand:hover { color: var(--fg); }
.brand svg { flex: 0 0 auto; }
.brand-name { font-family: var(--display); font-size: 1.0625rem; letter-spacing: 0.2em; line-height: 1; }
.brand-sub { font-size: 0.5rem; letter-spacing: 0.32em; color: var(--fg-subtle); line-height: 1; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  font-size: 0.78125rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,239,234,0.72);
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--gold); }

.lang { display: flex; align-items: center; gap: 0.5rem; }
.lang a {
  min-width: 40px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; letter-spacing: 0.12em; color: var(--fg-faint);
}
.lang a:hover { color: var(--fg-muted); }
.lang a[aria-current] { color: var(--gold); }

.nav-cta { flex: 0 0 auto; }

.burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--rule); color: var(--fg); cursor: pointer;
}

/* =============================== HERO ===================================== */
.hero { display: grid; grid-template-columns: 1fr minmax(360px, 40%); align-items: stretch; }
.hero-copy {
  display: flex; flex-direction: column; justify-content: center; gap: 1.75rem;
  padding: clamp(3rem, 1.5rem + 5vw, 5.25rem) var(--gutter);
  max-width: calc(var(--max) * 0.62); margin-left: auto; width: 100%;
}
.hero h1 { max-width: 11ch; }
.hero .lead { max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 0.25rem; }
.hero-media { position: relative; overflow: hidden; min-height: 320px; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,13,12,0.85) 0%, rgba(14,13,12,0) 34%);
}

/* ============================== TRUST BAR ================================= */
.trust {
  border-block: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem clamp(1rem, 0.4rem + 2vw, 2.5rem);
  padding: 1.05rem var(--gutter);
  font-size: 0.71875rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(242,239,234,0.55); text-align: center;
}
.trust .dot { width: 3px; height: 3px; background: var(--gold); flex: 0 0 auto; }

/* ============================== SECCIONES ================================= */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(1.5rem, 0.5rem + 3vw, 3.5rem); flex-wrap: wrap;
}
.section-head .stack { gap: 1rem; }
.section-head .aside { max-width: 30ch; text-align: right; font-size: 0.875rem; color: var(--fg-subtle); }

.grid { display: grid; gap: clamp(0.875rem, 0.4rem + 1.4vw, 1.375rem); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* tarjeta de servicio: foto con nombre encima */
.svc { position: relative; aspect-ratio: 3 / 4; overflow: hidden; display: block; color: var(--fg); }
.svc img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc:hover img { transform: scale(1.03); }
.svc::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,13,12,0.92) 0%, rgba(14,13,12,0.08) 62%);
}
.svc-body { position: absolute; inset: auto 1.25rem 1.25rem; z-index: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.svc:hover { color: var(--fg); }
.svc:hover h3 { color: var(--gold); }

/* ===================== SLIDER ANTES / DESPUÉS ============================= */
/* Un <input type="range"> transparente encima resuelve mouse, touch y teclado
   de una sola vez, y queda accesible sin trabajo extra. */
.ba { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-raise); }
.ba-tall { aspect-ratio: 1 / 1; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { will-change: clip-path; }
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--gold); pointer-events: none; }
.ba-handle {
  position: absolute; top: 50%; width: 44px; height: 44px;
  margin-left: -22px; margin-top: -22px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  pointer-events: none; box-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.ba-tag {
  position: absolute; top: 0.9rem; z-index: 2; padding: 0.4rem 0.8rem;
  font-size: 0.625rem; letter-spacing: 0.2em; pointer-events: none;
}
.ba-tag-before { left: 0.9rem; background: var(--scrim); color: rgba(242,239,234,0.9); }
.ba-tag-after  { right: 0.9rem; background: var(--gold); color: var(--bg); font-weight: 600; }
.ba-input {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3;
  margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: none;
}
.ba-input::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100px; }
.ba-input::-moz-range-thumb { width: 44px; height: 100px; border: 0; opacity: 0; }

.pf-item { display: flex; flex-direction: column; gap: 0.75rem; }
.pf-title { font-family: var(--display); font-size: 1.1875rem; line-height: 1.2; }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filters a {
  min-height: 44px; display: inline-flex; align-items: center;
  border: 1px solid rgba(242,239,234,0.2); color: var(--fg-muted);
  padding: 0.45rem 1rem; font-size: 0.71875rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.filters a[aria-current] { border-color: var(--gold); color: var(--gold); }

/* ============================ BANDA DE NICHO ============================== */
.band { position: relative; overflow: hidden; }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,13,12,0.97) 0%, rgba(14,13,12,0.92) 46%, rgba(14,13,12,0.45) 100%);
}
.band-inner { position: relative; z-index: 1; }

/* ============================== PASOS ===================================== */
.step { display: flex; flex-direction: column; gap: 0.875rem; border-top: 1px solid var(--rule); padding-top: 1.25rem; }
.step-n { font-family: var(--display); font-size: clamp(2rem, 1.5rem + 1.6vw, 2.75rem); line-height: 1; color: var(--gold); }
.step h3 { font-family: var(--body); font-size: 1.0625rem; font-weight: 600; }

.note {
  display: flex; align-items: flex-start; gap: 1.1rem;
  border: 1px solid var(--rule-strong); padding: 1.4rem 1.6rem;
}
.note svg { flex: 0 0 auto; margin-top: 2px; }

/* ============================== OFICIO ==================================== */
.craft-item { display: flex; flex-direction: column; gap: 0.875rem; }
.craft-item img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.craft-cap { display: flex; align-items: baseline; gap: 0.7rem; font-size: 0.90625rem; color: rgba(242,239,234,0.8); }
.craft-cap .n { font-size: 0.6875rem; letter-spacing: 0.2em; color: var(--gold); flex: 0 0 auto; }

/* =============================== FAQ ====================================== */
.faq-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(2rem, 1rem + 3vw, 3.75rem); align-items: start; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.35rem 0; min-height: 44px; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: 0 0 auto; width: 16px; height: 16px;
  background: currentColor; color: var(--fg-subtle);
  clip-path: polygon(46% 0, 54% 0, 54% 46%, 100% 46%, 100% 54%, 54% 54%, 54% 100%, 46% 100%, 46% 54%, 0 54%, 0 46%, 46% 46%);
  transition: transform 0.2s ease;
}
.faq details[open] summary { color: var(--gold); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding-bottom: 1.35rem; max-width: 60ch; color: var(--fg-muted); line-height: 1.7; }

/* ============================ FORMULARIO ================================== */
.cta { display: grid; grid-template-columns: 1fr minmax(340px, 42%); border-top: 1px solid var(--rule); }
.cta-copy {
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding: clamp(3rem, 1.5rem + 4vw, 4.75rem) var(--gutter);
  max-width: calc(var(--max) * 0.6); margin-left: auto; width: 100%;
}
.cta-copy h2 { max-width: 12ch; }
.form {
  border-left: 1px solid var(--rule);
  padding: clamp(2.25rem, 1.2rem + 3.4vw, 3.75rem) var(--gutter);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field > label { font-size: 0.71875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-subtle); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 0.7rem 0;
  background: transparent; color: var(--fg);
  border: 0; border-bottom: 1px solid rgba(242,239,234,0.22);
  font-family: var(--body); font-size: 1rem; border-radius: 0;
}
.field select { padding-right: 1.5rem; }
.field option { background: var(--bg-raise); color: var(--fg); }
.field input::placeholder { color: var(--fg-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.drop {
  border: 1px dashed var(--rule-strong); padding: 1.6rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  text-align: center; cursor: pointer; color: var(--fg-muted); font-size: 0.84375rem;
}
.drop:hover { border-color: var(--gold); color: var(--fg); }
.drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips label {
  min-height: 44px; display: inline-flex; align-items: center;
  border: 1px solid rgba(242,239,234,0.2); color: var(--fg-muted);
  padding: 0.5rem 1.05rem; font-size: 0.78125rem; cursor: pointer;
}
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips input:checked + span, .chips label:has(input:checked) { color: var(--gold); }
.chips label:has(input:checked) { border-color: var(--gold); }
.form-note { font-size: 0.78125rem; color: var(--fg-subtle); line-height: 1.6; }

/* ============================== FOOTER ==================================== */
.footer { border-top: 1px solid var(--rule); padding-block: clamp(2.5rem, 1.5rem + 3vw, 3.5rem) 2rem; }
.footer-top { display: flex; flex-wrap: wrap; gap: clamp(2rem, 1rem + 3vw, 3.75rem); justify-content: space-between; }
.footer-col { display: flex; flex-direction: column; gap: 0.875rem; min-width: 180px; }
/* Los enlaces del footer también son objetivos táctiles. */
.footer-col a, .footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; }
.city-list span { display: inline-flex; align-items: center; min-height: 36px; }
.footer-col h2 { font-family: var(--body); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.city-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem 2.125rem; font-size: 0.875rem; color: var(--fg-muted); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(224,163,46,0.15); margin-top: clamp(2rem, 1rem + 2vw, 2.75rem); padding-top: 1.5rem;
  font-size: 0.75rem; color: var(--fg-faint);
}
.footer-bottom nav { display: flex; gap: 1.375rem; }

/* ============================ PÁGINAS INTERIORES ========================== */
.page-hero { position: relative; overflow: hidden; min-height: clamp(320px, 40vh, 460px); display: grid; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,13,12,0.97) 14%, rgba(14,13,12,0.82) 52%, rgba(14,13,12,0.5) 100%);
}
.page-hero-inner { position: relative; z-index: 1; align-self: end; padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); display: flex; flex-direction: column; gap: 1rem; }
.crumb { font-size: 0.71875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-subtle); }
.crumb a { color: var(--fg-subtle); }
.crumb a:hover { color: var(--gold); }

.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 1.15rem; }
.prose p { color: var(--fg-muted); line-height: 1.75; }
.prose h3 { margin-top: 0.75rem; }

.checklist { display: grid; gap: 0.875rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--fg-muted); line-height: 1.6; }
.checklist svg { flex: 0 0 auto; margin-top: 4px; }
ul.checklist { list-style: none; padding: 0; margin: 0; }

.spec { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.spec > div { background: var(--bg); padding: 1.25rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
.spec h3 { font-family: var(--body); font-size: 0.65625rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.spec p { font-size: 0.8125rem; line-height: 1.5; color: var(--fg-muted); }

/* =============================== BREAKPOINTS ============================== */
@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: 1fr; }
  .section-head .aside { text-align: left; max-width: 46ch; }
}

@media (max-width: 879px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .lang { margin-left: auto; }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; margin-left: 0; order: 2; }
  /* La foto no puede comerse el viewport: el titular tiene que entrar sin
     scroll. Altura fija en vez de aspect-ratio — con aspect-ratio el
     max-height encoge también el ancho y deja una franja negra al costado. */
  .hero-media { order: 1; aspect-ratio: auto; height: 42vh; min-height: 240px; max-height: 400px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(14,13,12,0.75) 0%, rgba(14,13,12,0) 55%); }
  .hero h1, .hero .lead { max-width: none; }

  .cta { grid-template-columns: 1fr; }
  .cta-copy { max-width: none; margin-left: 0; }
  .form { border-left: 0; border-top: 1px solid var(--rule); }

  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .band::after { background: linear-gradient(0deg, rgba(14,13,12,0.96) 30%, rgba(14,13,12,0.7) 100%); }
}

@media (max-width: 599px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec { grid-template-columns: 1fr; }
  .ba { aspect-ratio: 3 / 4; }
  .ba-tall { aspect-ratio: 3 / 4; }
  .hero-media { height: 38vh; min-height: 220px; max-height: 320px; }
  .hero-actions .btn { width: 100%; }
  .trust { font-size: 0.6875rem; letter-spacing: 0.12em; }
  .city-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Bajo 480px la fila del header va justa: logo + tres idiomas + hamburguesa.
   Se aprieta el conjunto en vez de esconder el selector de idioma, que en este
   sitio es un argumento comercial y no un extra. */
@media (max-width: 479px) {
  .nav-inner { gap: 0.5rem; padding-inline: 1rem; }
  .brand { gap: 0.5rem; }
  .brand-name { font-size: 0.875rem; letter-spacing: 0.14em; }
  .lang { gap: 0; }
  .lang a { min-width: 32px; }
  .burger { width: 44px; height: 44px; }
}

@media (max-width: 400px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ------- menú móvil ------- */
.drawer {
  position: fixed; inset: 0; z-index: 60; background: var(--bg);
  display: flex; flex-direction: column; padding: var(--gutter);
  transform: translateX(100%); transition: transform 0.25s ease; visibility: hidden;
}
.drawer[data-open] { transform: none; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.drawer nav { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer nav a {
  font-family: var(--display); font-size: 1.75rem; color: var(--fg);
  padding: 0.6rem 0; border-bottom: 1px solid var(--rule);
}
.drawer nav a:hover, .drawer nav a[aria-current] { color: var(--gold); }
.drawer .btn { margin-top: 2rem; }
body[data-locked] { overflow: hidden; }

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

@media print {
  .nav, .drawer, .ba-input, .form { display: none; }
  body { background: #fff; color: #000; }
}
