/* =========================================================
   BAR TORTILLA
   Estética tomada de la CARTA y de las CAMISETAS:
   fondo blanco, título en azul, Poppins para los textos,
   marca "B A R  T O R T I L L A" en terracota muy espaciada
   y dibujos de línea. Sin amarillo en los fondos.

   El hero y el pie mantienen su tratamiento (rojizo), que es
   lo que ya estaba validado.
   ========================================================= */
:root {
  --white:      #FFFFFF;
  --blue:       #1E4895;   /* el "CARTA" de la carta */
  --blue-deep:  #16376F;
  --terra:      #AE4723;   /* el de la carta nueva */
  --terra-deep: #7E2F11;
  --yellow:     #FFD200;   /* solo hero y pie */
  --hero-bg:    #63270D;   /* plano: el color que daba el velo sobre la foto */
  --ink:        #1A1A1A;
  --ink-soft:   #6E6E6E;

  --rule:       rgba(26, 26, 26, 0.14);
  --rule-light: rgba(255, 253, 247, 0.24);

  --header-in:  68px;
  --header-h:   69px;

  --body:    'Poppins', system-ui, -apple-system, sans-serif;  /* la de la carta */
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --serif:   'Playfair Display', Georgia, serif;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

::selection { background: var(--yellow); color: var(--terra-deep); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
input, select, textarea { font-family: var(--body); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 2px;
}

/* Visible para buscadores y lectores de pantalla, no para la vista: el h1 de
   la portada, que en el diseño es el vinilo. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.shell { max-width: 1080px; margin: 0 auto; padding: 0 26px; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--blue);
}

/* La marca escrita, tal cual aparece en la carta: terracota y muy espaciada */
.marca {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--terra);
}

/* Etiqueta de sección */
.label {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
}

/* La voz con guasa de las camisetas: Playfair cursiva en azul */
.quip {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--blue);
}

/* ===== CABECERA ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.site-header .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--header-in);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; flex: none; object-fit: contain;
  filter: invert(29%) sepia(48%) saturate(1725%) hue-rotate(354deg) brightness(93%) contrast(92%);
}
.logo-name {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--terra);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 8px 12px; font-weight: 500; font-size: 14.5px; color: var(--ink); position: relative; }
.nav a:not(.btn-reservar)::after {
  content: "";
  position: absolute; left: 12px; right: 12px; bottom: 5px;
  height: 2px; background: var(--terra);
  transform: scaleX(0); transition: transform .18s ease;
}
.nav a:not(.btn-reservar):hover::after { transform: scaleX(1); }

.btn-reservar {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--terra);
  color: #fff !important;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: background .16s;
}
.btn-reservar:hover { background: var(--terra-deep); }
.btn-reservar::after { display: none; }

/* ===== HERO — color plano con el vinilo encima =====
   Sin foto: el fondo es el color que resultaba del velo. Ver NOTAS.md: cuando
   haya foto real del local se rueda el vídeo y vuelve a ir detrás, con su velo. */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(18px, 3.5vh, 46px) 24px;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center; }

.vinilo {
  display: block;
  width: min(100%, 520px, 66vh);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 18px rgba(40,12,2,0.45));
}

.hero-meta {
  margin-top: clamp(16px, 3vh, 28px);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: #F6CDA6;
}

.hero-ctas { margin-top: clamp(12px, 2.4vh, 22px); display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--display);
  letter-spacing: 0.1em;
  font-size: clamp(11.5px, min(.95vw, 1.7vh), 13px);
  padding: clamp(11px, 1.9vh, 15px) clamp(20px, 2.4vw, 28px);
  transition: background .16s, color .16s;
}
.btn-solid { background: var(--blue); color: #fff; }
.btn-solid:hover { background: var(--blue-deep); }
.btn-ghost { background: transparent; color: var(--blue); box-shadow: inset 0 0 0 2px currentColor; }
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* Sobre el hero oscuro manda el amarillo */
.hero .btn-solid { background: var(--yellow); color: var(--terra-deep); }
.hero .btn-solid:hover { background: #FFE04D; }
.hero .btn-ghost { color: var(--yellow); }
.hero .btn-ghost:hover { background: var(--yellow); color: var(--terra-deep); }

/* ===== FRASE SUELTA ===== */
.franja {
  text-align: center;
  padding: clamp(38px, 5vw, 62px) 26px;
  border-bottom: 1px solid var(--rule);
}
.franja p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--blue);
  max-width: 26ch;
  margin: 0 auto;
  line-height: 1.35;
}

/* ===== DIBUJOS DE LAS CAMISETAS Y LA CARTA ===== */
.deco { position: absolute; pointer-events: none; user-select: none; }

/* ===== CARTA — como la carta real: título, poco texto y un botón ===== */
.carta { padding: clamp(52px, 7vw, 96px) 0; position: relative; overflow: hidden; }

.carta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.carta-txt h2 {
  font-size: clamp(40px, 6.4vw, 76px);
  letter-spacing: 0.02em;
  margin-top: 10px;
}
.carta-txt .quip { margin-top: 14px; max-width: 34ch; }

.carta-nota {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 40ch;
}

.carta-acciones { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.pdf-meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Marco pequeño para la foto, no un bloque enorme */
.carta-foto {
  width: clamp(190px, 24vw, 280px);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  padding: 9px;
  background: var(--white);
  flex: none;
}
.carta-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }

.deco-gilda {
  left: 2%; bottom: 18%;
  width: clamp(58px, 5.5vw, 84px);
  transform: rotate(-6deg);
}

/* ===== UBICACIÓN ===== */
.ubicacion { padding: clamp(52px, 7vw, 96px) 0; border-top: 1px solid var(--rule); position: relative; overflow: hidden; }

.ubicacion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.ubicacion h2 { font-size: clamp(26px, 3.5vw, 42px); margin-top: 12px; }

.datos { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.dato-titulo { font-family: var(--display); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); margin-bottom: 7px; }

/* Horario en Poppins, como los platos de la carta */
.horario { display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; font-size: 15px; }
.horario dt { font-weight: 500; color: var(--ink); }
.horario dd { color: var(--ink-soft); }

.contacto { display: flex; gap: 28px; flex-wrap: wrap; }
.contacto a { font-size: 16.5px; font-weight: 500; color: var(--blue); border-bottom: 2px solid var(--rule); }
.contacto a:hover { border-bottom-color: var(--blue); }

.mapa { position: relative; min-height: 380px; height: 100%; border: 1px solid var(--rule); overflow: hidden; }

.mapa iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Lo que se ve en el hueco del mapa mientras no hay consentimiento. */
.mapa-permiso {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: clamp(24px, 4vw, 38px);
  background: #FBF4E4;
}
.mapa-permiso[hidden] { display: none; }
.mapa-label { font-family: var(--display); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); }
.mapa-dir { font-family: var(--display); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.25; color: var(--ink); }
.mapa-nota { font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); max-width: 40ch; }
.mapa-botones { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.mapa-botones .btn { font-size: 11px; padding: 10px 16px; cursor: pointer; }

.btn-llegar { align-self: flex-start; }

/* ===== CASILLA DE PROTECCIÓN DE DATOS ===== */
.form-check { display: flex; align-items: flex-start; gap: 9px; margin-top: 16px; }
.form-check input { width: 17px; height: 17px; margin-top: 1px; flex: none; accent-color: var(--blue); cursor: pointer; }
.form-check label { font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); cursor: pointer; }
.form-check a { color: var(--blue); text-decoration: underline; }

/* Una línea discreta bajo el botón: quién trata los datos y para qué. */
.form-privacy { font-size: 11.5px; line-height: 1.5; color: var(--ink-soft); margin-top: 12px; }

/* ===== AVISO DE COOKIES ===== */
.cookies {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  background: var(--white);
  border-top: 2px solid var(--terra);
  box-shadow: 0 -8px 30px rgba(26, 26, 26, 0.14);
}
.cookies[hidden] { display: none; }
.cookies-caja {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.cookies-titulo { font-family: var(--display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); }
.cookies-texto { font-size: 13px; line-height: 1.55; color: var(--ink); margin-top: 6px; max-width: 68ch; }
.cookies-texto a { color: var(--blue); text-decoration: underline; }

/* Los dos botones son idénticos a propósito: mismo tamaño, mismo color, mismo
   peso. Destacar "Aceptar" sobre "Rechazar" es un patrón engañoso según la
   Guía de Cookies de la AEPD, y es justo lo que no se puede hacer. */
.cookies-botones { display: flex; gap: 10px; flex: none; }
.cookies-btn {
  padding: 12px 22px;
  min-width: 128px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  border: 0;
  cursor: pointer;
  transition: background .16s;
}
.cookies-btn:hover { background: var(--blue-deep); }

/* Un botón que se lee como un enlace: el de reabrir el panel desde el pie. */
.enlace-boton {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .cookies-caja { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 18px; }
  .cookies-botones { flex-direction: column; }
  .cookies-btn { width: 100%; }
}


/* La mesa con el sifón, donde antes iba el abanico */
.deco-mesa {
  right: 6px; top: 50%;
  width: clamp(104px, 10vw, 156px);
  transform: translateY(-50%);
}

/* ===== RESERVAS ===== */
.reservas { padding: clamp(52px, 7vw, 92px) 0; border-top: 1px solid var(--rule); }
.reservas-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 4.5vw, 60px); align-items: start; }
.reservas h2 { font-size: clamp(26px, 3.5vw, 43px); margin-top: 12px; }
.reservas .quip { margin-top: 14px; }

/* Los guiones, en Poppins como la carta */
.checks { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 9px; }
.checks li { display: flex; gap: 10px; font-size: 15px; font-weight: 400; color: var(--ink); }
.checks li::before { content: "—"; color: var(--terra); }

/* El sifón es muy estrecho y alto (proporción 0.35), así que va estrecho:
   con estos anchos ronda los 150–220px de alto, que es lo que cabe. */
.deco-sifon { display: block; width: clamp(54px, 6vw, 78px); margin-top: 30px; pointer-events: none; }

.form-card { border: 1px solid var(--rule); padding: clamp(22px, 3vw, 34px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }
/* 9.5px en versalitas espaciadas era ilegible para media clientela del bar. */
.form-field label { font-family: var(--display); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

/* Nota bajo un campo: la de las alergias, por ejemplo. */
.form-hint { font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); margin-top: 2px; }
.form-hint a { text-decoration: underline; }

/* Trampa para bots. Fuera de pantalla en vez de display:none, porque algunos
   rellenadores automáticos saltan lo que está oculto del todo. */
.campo-trampa {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-field input, .form-field select, .form-field textarea {
  padding: 11px 12px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  border-radius: 0;
  transition: border-color .15s, box-shadow .15s;
}
/* La regla global de foco usa :where(), que tiene especificidad cero, así que
   un "outline: none" aquí la ganaba siempre y dejaba el formulario con un
   indicador de 1px, por debajo del mínimo de WCAG 2.2. Se mantiene el borde
   azul como refuerzo, pero el contorno se queda. */
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 2px;
  border-color: var(--blue);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue);
}
.form-field textarea { resize: vertical; }

.btn-submit {
  margin-top: 18px; width: 100%; padding: 15px;
  background: var(--blue); color: #fff;
  font-family: var(--display); font-size: 13px; letter-spacing: 0.12em;
  border: 0; cursor: pointer; transition: background .16s;
}
.btn-submit:hover { background: var(--blue-deep); }

/* Aviso bajo el botón: día completo, error de envío, sin conexión. */
.form-aviso {
  margin-top: 11px;
  padding: 10px 12px;
  border-left: 2px solid var(--ink-soft);
  background: rgba(26, 26, 26, 0.04);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}
.form-aviso[data-tono="error"] {
  border-left-color: var(--terra);
  background: rgba(174, 71, 35, 0.07);
  color: var(--terra-deep);
}

.form-field select:disabled {
  color: var(--ink-soft);
  background: rgba(26, 26, 26, 0.03);
  cursor: not-allowed;
}
.btn-submit:disabled { opacity: .6; cursor: progress; }

/* Se enseña con una clase, no tocando el atributo style desde JS: así la
   Content-Security-Policy puede prohibir los estilos en línea. */
.form-confirm { display: none; text-align: center; padding: 36px 10px; }
.form-confirm.visible { display: block; }
.form-confirm h3 { font-size: 23px; margin-top: 14px; }
.confirm-msg { color: var(--ink-soft); margin-top: 9px; max-width: 34ch; margin-inline: auto; }
.confirm-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 22px; margin: 0 auto;
}
.btn-reset {
  margin-top: 20px; padding: 11px 20px;
  background: var(--terra); color: #fff;
  font-family: var(--display); font-size: 11px; letter-spacing: 0.12em;
  border: 0; cursor: pointer;
}

/* ===== PÁGINAS LEGALES ===== */
.legal { padding: clamp(40px, 6vw, 76px) 0 clamp(50px, 6vw, 80px); }
.legal .shell { max-width: 760px; }
.legal h1 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); color: var(--blue); line-height: 1.15; }
.legal h2 { font-family: var(--display); font-size: clamp(16px, 2vw, 19px); margin-top: 38px; color: var(--terra); }
.legal h3 { font-family: var(--body); font-weight: 600; font-size: 15px; margin-top: 22px; }
.legal p, .legal li { font-size: 15px; line-height: 1.65; margin-top: 11px; color: var(--ink); }
.legal ul, .legal ol { margin-top: 11px; padding-left: 20px; }
.legal li { margin-top: 6px; }
.legal a { color: var(--blue); text-decoration: underline; }
.legal .fecha { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }
.legal .volver { display: inline-block; margin-top: 40px; font-family: var(--display); font-size: 11px; letter-spacing: 0.14em; color: var(--terra); }

/* La tabla de cookies se sale en móvil, así que rueda dentro de su caja en vez
   de empujar la página entera a lo ancho. */
.tabla-cookies { width: 100%; border-collapse: collapse; margin-top: 14px; display: block; overflow-x: auto; }
.tabla-cookies th, .tabla-cookies td { border: 1px solid var(--rule); padding: 9px 11px; text-align: left; font-size: 13px; line-height: 1.45; vertical-align: top; }
.tabla-cookies th { font-family: var(--display); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); }

/* Marca los huecos que tiene que rellenar el titular. Chilla a propósito: si
   alguno llega a producción, se ve a la primera. */
.pendiente {
  background: var(--yellow);
  color: var(--ink);
  padding: 1px 6px;
  font-weight: 600;
  border-radius: 2px;
}
.aviso-borrador {
  border: 2px solid var(--terra);
  background: #FDF1EC;
  padding: 16px 18px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.55;
}

/* ===== PIE ===== */
.site-footer { background: var(--terra-deep); color: #FBF4E4; padding: clamp(42px, 5vw, 62px) 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }

.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo img { width: 44px; height: 44px; filter: brightness(0) saturate(100%) invert(85%) sepia(30%) saturate(700%) hue-rotate(357deg) brightness(105%); }
.footer-logo .n { font-family: var(--display); font-size: 16px; letter-spacing: 0.015em; color: var(--yellow); }

.footer-tagline { font-family: var(--serif); font-style: italic; color: #E8CDB6; font-size: 15px; margin-top: 13px; max-width: 32ch; }

.footer-col h4 { font-family: var(--display); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 11px; }
.footer-col p, .footer-col div { color: #E8CDB6; font-size: 14.5px; line-height: 1.8; }
.footer-col a.phone { color: var(--yellow); font-weight: 500; }

.ig-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255,210,0,0.5);
  padding: 8px 13px;
  transition: background .16s, color .16s;
}
.ig-link:hover { background: var(--yellow); color: var(--terra-deep); box-shadow: none; }

.footer-bottom {
  margin-top: 30px; padding-top: 18px;
  border-top: 1px solid var(--rule-light);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #C9A98E; font-size: 12.5px;
}
.footer-links { display: flex; gap: 17px; }
.footer-links a:hover { color: var(--yellow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .carta-grid { grid-template-columns: 1fr; }
  .carta-foto { width: min(100%, 260px); }
  .ubicacion-grid { grid-template-columns: 1fr; }
  .mapa { min-height: 300px; }
  .reservas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Los dibujos de margen necesitan sitio; por debajo estorban */
@media (max-width: 1180px) {
  .deco { display: none; }
}

@media (max-width: 620px) {
  /* Antes se ocultaban Carta y Ubicación y no había hamburguesa ni enlaces
     alternativos: en el móvil, que es de donde viene casi todo el tráfico de
     un bar, la cabecera se quedaba solo con RESERVAR. Se aprietan en vez de
     esconderse. */
  .site-header .inner { gap: 10px; padding-inline: 16px; }
  .nav a { padding: 8px 6px; font-size: 13px; }
  .nav a.btn-reservar { padding: 9px 12px; }
  .logo-sub { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-height: 560px) {
  .hero { padding-top: 12px; padding-bottom: 12px; }
}
