/* Cañarejo Gastrobar — "La mancha".
   Dirección: campo rojo (el de su logo) a sangre con un plato redondo gigante sangrando por
   la derecha. Lo demás, blanco mantel frío, negro del wordmark, verde de la pared vegetal. */

:root {
  --rojo: #D91920;        /* campo del hero: la mancha, un punto más honda para que el blanco pase 4,5:1 */
  --rojo-vivo: #E31E25;   /* la mancha tal cual, para acentos */
  --rojo-hondo: #A8121A;  /* anillo tras el plato, hovers */
  --negro: #141414;       /* wordmark */
  --tinta: #262424;
  --gris: #5f5b5b;
  --blanco: #F7F6F2;      /* mantel, frío a propósito */
  --blanco-2: #ECEAE4;
  --verde: #3C5226;       /* pared vegetal */
  --verde-2: #516832;
  --piedra: #894F21;      /* la fuente */
  --line: rgba(20, 20, 20, .14);
  --line-light: rgba(247, 246, 242, .18);

  --display: "Young Serif", Georgia, serif;
  --italic: "Instrument Serif", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --logo: "Nunito", "Hanken Grotesk", sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(72px, 10vw, 140px);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); font-weight: 400; font-size: 17px; line-height: 1.6;
  color: var(--tinta); background: var(--blanco);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
b, strong { font-weight: 600; }
::selection { background: var(--rojo-vivo); color: #fff; }
:focus-visible { outline: 3px solid var(--rojo-vivo); outline-offset: 3px; }
.container { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--negro); color: #fff; padding: 8px 12px; z-index: 1000; }
.skip:focus { left: 8px; }

/* ---------- títulos de sección: el recurso de SU cartel (caligráfica + grotesk fino) ---------- */
.t2 { display: flex; align-items: baseline; gap: .35em; line-height: 1; margin-bottom: clamp(24px, 4vw, 48px); }
.t2 em { font-family: var(--italic); font-style: italic; font-weight: 400; font-size: clamp(30px, 3.6vw, 52px); color: var(--rojo-vivo); letter-spacing: -.01em; }
.t2 span { font-family: var(--sans); font-weight: 300; text-transform: uppercase; letter-spacing: .12em; font-size: clamp(30px, 4.2vw, 64px); color: var(--negro); }
.t2--light span { color: var(--blanco); }
.t2--light em { color: #F3B7B3; }

/* ---------- header ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 50; color: var(--negro); }
.header__in { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; display: flex; align-items: center; gap: 28px; height: 76px; }
.header.scrolled { background: rgba(247, 246, 242, .94); box-shadow: 0 1px 0 var(--line); }
@supports (backdrop-filter: blur(1px)) { .header.scrolled { background: rgba(247, 246, 242, .82); backdrop-filter: blur(10px) saturate(1.2); } }
.brand { display: inline-flex; align-items: baseline; gap: 6px; position: relative; line-height: 1; }
.brand__ring { width: 30px; height: 30px; color: var(--rojo-vivo); align-self: center; margin-right: -4px; }
.brand__word { font-family: var(--logo); font-weight: 800; font-size: 28px; letter-spacing: -.03em; color: currentColor; }
.brand__sub { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--rojo-vivo); }
.header:not(.scrolled) .brand__sub, .header:not(.scrolled) .brand__ring { color: var(--negro); }
.header:not(.scrolled) .brand__ring { color: var(--rojo-hondo); }
.brand--light { color: var(--blanco); }
.nav { display: flex; gap: 22px; margin-left: auto; font-size: 15px; font-weight: 500; }
.nav a { position: relative; padding: 6px 0; opacity: .78; transition: opacity .15s ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease-out); }
.nav a.active { opacity: 1; }
.nav a.active::after { transform: scaleX(1); }
.header__tel { font-weight: 600; font-size: 15px; padding: 10px 16px; border: 1.5px solid currentColor; border-radius: 999px; transition: background-color .15s ease, color .15s ease; }
.burger { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; margin-left: auto; }
.burger span { display: block; width: 24px; height: 2px; background: currentColor; margin-inline: auto; transition: transform .2s var(--ease-out), opacity .15s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (hover: hover) {
  .nav a:hover { opacity: 1; }
  .header__tel:hover { background: var(--negro); color: var(--blanco); border-color: var(--negro); }
}

/* ---------- PORTADA: campo rojo + plato ---------- */
.hero { background: var(--rojo); color: var(--blanco); }
.hero__field {
  position: relative; min-height: 100svh; overflow: hidden;
  display: grid; align-items: end;
  padding: 130px var(--gutter) clamp(40px, 6vh, 72px);
}
.hero__copy { position: relative; z-index: 2; max-width: min(720px, 58%); width: min(100%, var(--maxw)); margin-inline: auto; justify-self: start; }
@media (min-width: 1360px) { .hero__copy { margin-left: calc((100% - var(--maxw)) / 2); } }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(54px, 9.6vw, 152px); line-height: .94; letter-spacing: -.035em;
  color: var(--negro); text-wrap: balance; margin-bottom: clamp(20px, 3vw, 36px);
}
.hero__lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; max-width: 34ch; color: var(--blanco); margin-bottom: clamp(24px, 3.5vw, 44px); text-wrap: pretty; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }
.hero__tel { font-family: var(--display); font-size: clamp(26px, 2.6vw, 40px); letter-spacing: -.02em; color: var(--blanco); border-bottom: 2px solid rgba(247, 246, 242, .55); line-height: 1.1; transition: border-color .15s ease; }
.pill { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; letter-spacing: .02em; padding: 8px 14px 8px 10px; border-radius: 999px; background: rgba(20, 20, 20, .22); color: var(--blanco); }
.pill__dot { width: 9px; height: 9px; border-radius: 50%; background: #9a9a9a; box-shadow: 0 0 0 3px rgba(255, 255, 255, .16); }
.pill.open .pill__dot { background: #57D66B; }
.pill.closed .pill__dot { background: #F3B7B3; }
.pill--dark { background: var(--negro); color: var(--blanco); }

.hero__plate {
  position: absolute; z-index: 1;
  width: clamp(420px, 106vh, 78vw); aspect-ratio: 1;
  right: -14%; bottom: -26%;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .55);
}
.hero__plate img { width: 100%; height: 100%; object-fit: cover; }
/* el anillo de su logo, desplazado detrás del plato */
.hero__field::before {
  content: ""; position: absolute; z-index: 0;
  width: clamp(420px, 106vh, 78vw); aspect-ratio: 1; border-radius: 50%;
  right: calc(-14% + 3vw); bottom: calc(-26% + 4vh);
  border: clamp(10px, 1.4vw, 22px) solid var(--rojo-hondo);
}
.hero__whisper {
  position: absolute; z-index: 1; left: 14px; top: 50%; transform: rotate(-90deg) translateX(-50%); transform-origin: left top;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: rgba(247, 246, 242, .55); white-space: nowrap;
}

/* barra de acciones: una fila a todo el ancho con filetes */
.actions { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(247, 246, 242, .28); background: var(--rojo); }
.actions a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px var(--gutter); font-weight: 600; font-size: 16px; letter-spacing: .01em; color: var(--blanco); border-right: 1px solid rgba(247, 246, 242, .28); transition: background-color .15s ease; }
.actions a:last-child { border-right: 0; }
.actions i { font-style: normal; transition: transform .15s var(--ease-out); }
@media (hover: hover) {
  .actions a:hover { background: var(--rojo-hondo); }
  .actions a:hover i { transform: translateX(4px); }
  .hero__tel:hover { border-color: var(--blanco); }
}

/* ---------- EL SITIO ---------- */
.sitio { padding-top: var(--section); }
.mapa-foto { position: relative; margin: 0; }
.mapa-foto img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.tags { position: absolute; inset: 0; pointer-events: none; }
.tag { position: absolute; left: var(--x); top: var(--y); display: flex; align-items: center; gap: 0; transform: translate(-7px, -7px); }
.tag i { width: 14px; height: 14px; border-radius: 50%; background: var(--rojo-vivo); box-shadow: 0 0 0 4px rgba(247, 246, 242, .6); flex: none; }
.tag i::after { content: ""; display: block; width: 56px; height: 1.5px; background: var(--blanco); position: absolute; left: 14px; top: 6px; }
.tag span { margin-left: 70px; background: var(--blanco); color: var(--negro); font-size: 13px; font-weight: 600; letter-spacing: .02em; padding: 7px 12px; white-space: nowrap; box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .4); }
.tag--left { flex-direction: row-reverse; transform: translate(calc(-100% + 7px), -7px); }
.tag--left i::after { left: auto; right: 14px; }
.tag--left span { margin-left: 0; margin-right: 70px; }
.tag--below { flex-direction: column; align-items: flex-start; }
.tag--below i::after { width: 1.5px; height: 40px; left: 6px; top: 14px; }
.tag--below span { margin-left: 0; margin-top: 46px; }
.sitio__text { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); padding-block: clamp(40px, 6vw, 80px); }
.sitio__col h3 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.08; letter-spacing: -.02em; color: var(--negro); margin-bottom: 18px; text-wrap: balance; }
.sitio__col p { font-size: 18px; max-width: 52ch; text-wrap: pretty; }
.facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.facts li { display: grid; grid-template-columns: 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts b { font-size: 17px; color: var(--negro); }
.facts span { font-size: 15px; color: var(--gris); }

/* ---------- LOS PLATOS: bento asimétrico ---------- */
.platos { padding-block: var(--section); background: var(--blanco-2); }
.platos__head { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 24px 56px; margin-bottom: clamp(24px, 4vw, 48px); }
.platos__head .t2 { margin-bottom: 0; }
.platos__head p { max-width: 44ch; color: var(--gris); font-size: 17px; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 19vw, 270px); gap: 12px; }
.cell { position: relative; overflow: hidden; margin: 0; background: #ddd; }
.cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.cell--big { grid-column: span 2; grid-row: span 2; }
.cell--tall { grid-row: span 2; }
.cell figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; color: #fff; font-size: 15px; font-weight: 500; letter-spacing: .01em; background: linear-gradient(to top, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0)); }
.cell--big figcaption { font-family: var(--display); font-size: clamp(20px, 2vw, 28px); font-weight: 400; padding: 60px 22px 20px; }
.shot { cursor: zoom-in; }
@media (hover: hover) { .shot:hover img { transform: scale(1.04); } }
.cell--list { background: var(--rojo); color: var(--blanco); padding: 22px 22px 18px; display: flex; flex-direction: column; grid-column: span 2; }
.cell__kicker { font-family: var(--italic); font-style: italic; font-size: 26px; line-height: 1; margin-bottom: 12px; }
.cell--list ul { columns: 2; column-gap: 20px; font-size: 15px; line-height: 1.45; flex: 1; }
.cell--list li { break-inside: avoid; padding: 4px 0; border-bottom: 1px solid rgba(247, 246, 242, .22); }
.cell__foot { font-size: 13px; margin-top: 12px; opacity: .85; }

/* ---------- CELEBRAR: banda verde de la pared ---------- */
.celebrar { background: var(--verde); color: var(--blanco); }
.celebrar__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.celebrar__photo { margin: 0; position: relative; }
.celebrar__photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.celebrar__copy { padding: clamp(48px, 7vw, 104px) var(--gutter); max-width: 620px; }
.celebrar__copy > p { font-size: 18px; margin-bottom: 24px; text-wrap: pretty; color: rgba(247, 246, 242, .92); }
.celebrar__list { margin-bottom: 32px; border-top: 1px solid var(--line-light); }
.celebrar__list li { padding: 12px 0 12px 22px; border-bottom: 1px solid var(--line-light); position: relative; font-size: 16px; }
.celebrar__list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 9px; height: 9px; border-radius: 50%; background: var(--rojo-vivo); }

/* ---------- botones ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; font-weight: 600; font-size: 16px; line-height: 1; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; font-family: inherit; transition: background-color .15s ease, color .15s ease, transform .1s ease, border-color .15s ease; }
.btn:active { transform: scale(.97); }
.btn--light { background: var(--blanco); color: var(--verde); }
.btn--red { background: var(--rojo-vivo); color: #fff; }
.btn--lg { padding: 18px 28px; font-size: 17px; width: 100%; justify-content: center; }
@media (hover: hover) {
  .btn--light:hover { background: #fff; }
  .btn--red:hover { background: var(--rojo-hondo); }
}

/* ---------- OPINIONES ---------- */
.opiniones { padding-block: var(--section); }
.opiniones__grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.score { position: sticky; top: 100px; }
.score__num { font-family: var(--display); font-size: clamp(88px, 10vw, 150px); line-height: .9; letter-spacing: -.04em; color: var(--negro); }
.score__stars { display: flex; gap: 2px; margin: 14px 0 10px; color: var(--rojo-vivo); }
.score__stars svg { fill: currentColor; }
.score__count { font-size: 17px; color: var(--gris); }
.score__count b { color: var(--negro); }
.score__link { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 15px; border-bottom: 1.5px solid var(--negro); }
.quotes { display: grid; gap: 0; border-top: 1px solid var(--line); }
.quote { padding: clamp(24px, 3vw, 40px) 0; border-bottom: 1px solid var(--line); }
.quote p { font-family: var(--display); font-size: clamp(20px, 2vw, 27px); line-height: 1.32; letter-spacing: -.01em; color: var(--negro); text-wrap: pretty; }
.quote footer { margin-top: 14px; font-size: 15px; font-weight: 600; }
.quote footer span { font-weight: 400; color: var(--gris); }

/* ---------- HORARIO Y MAPA ---------- */
.horario { background: var(--negro); color: var(--blanco); padding-block: var(--section); }
.horario__grid { display: grid; grid-template-columns: minmax(320px, 460px) 1fr; gap: clamp(32px, 5vw, 80px); align-items: stretch; }
.horario .t2 span { color: var(--blanco); }
.horario .pill--dark { background: rgba(247, 246, 242, .1); margin-bottom: 22px; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.hours th, .hours td { padding: 10px 0; border-bottom: 1px solid var(--line-light); text-align: left; font-weight: 400; font-size: 16px; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours .today th, .hours .today td { color: #fff; font-weight: 600; }
.hours .today th::before { content: "●"; color: var(--rojo-vivo); font-size: 10px; margin-right: 8px; vertical-align: middle; }
.horario__addr { font-style: normal; margin-bottom: 20px; font-size: 16px; line-height: 1.5; color: rgba(247, 246, 242, .85); }
.horario__addr b { color: #fff; }
.map { min-height: 420px; background: #222; }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.2); }

/* ---------- RESERVAR ---------- */
.reservar { padding-block: var(--section); }
.reservar__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.reservar__copy p { font-size: 18px; max-width: 42ch; color: var(--gris); margin-bottom: 26px; }
.reservar__tel { display: inline-block; font-family: var(--display); font-size: clamp(34px, 4vw, 56px); letter-spacing: -.02em; color: var(--negro); border-bottom: 3px solid var(--rojo-vivo); line-height: 1.1; }
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--negro); }
.form input, .form textarea { font: inherit; font-size: 16px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 0; background: #fff; color: var(--tinta); width: 100%; transition: border-color .15s ease; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--negro); }
.form .invalid { border-color: var(--rojo-vivo); }
.check { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 400 !important; font-size: 14px; color: var(--gris) !important; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--rojo-vivo); }
.check a { text-decoration: underline; }
.form__note { font-size: 14px; color: var(--gris); text-align: center; }

/* ---------- FOOTER ---------- */
.footer { background: #0e0e0e; color: rgba(247, 246, 242, .8); padding-top: clamp(48px, 6vw, 80px); padding-bottom: 92px; font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--line-light); }
.footer__tag { margin-top: 16px; max-width: 40ch; }
.footer__h { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(247, 246, 242, .5); margin-bottom: 12px; }
.footer p + p { margin-top: 8px; }
.footer a:not(.brand) { border-bottom: 1px solid rgba(247, 246, 242, .3); }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-block: 20px; font-size: 14px; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { border-bottom: 0 !important; color: rgba(247, 246, 242, .7); }
.demo-aviso { font-size: 12.5px; color: rgba(247, 246, 242, .42); padding-top: 4px; }

/* ---------- barra móvil ---------- */
.callbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; grid-template-columns: 1fr 1fr; background: var(--negro); border-top: 1px solid var(--line-light); }
.callbar a { padding: 16px; text-align: center; color: #fff; font-weight: 600; font-size: 15px; }
.callbar a:first-child { border-right: 1px solid var(--line-light); }
.callbar a:last-child { background: var(--rojo-vivo); }

/* ---------- lightbox ---------- */
.lightbox img { max-width: min(94vw, 1400px); max-height: 88vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 14px; right: 18px; width: 48px; height: 48px; font-size: 32px; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .hero__copy { max-width: min(640px, 62%); }
  .hero__plate, .hero__field::before { width: clamp(380px, 84vh, 70vw); }
}
@media (max-width: 900px) {
  .nav { position: fixed; inset: 76px 0 0 0; background: var(--blanco); flex-direction: column; gap: 0; padding: 12px var(--gutter); font-size: 22px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .25s var(--ease-out); color: var(--negro); }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); opacity: 1; }
  .nav a::after { display: none; }
  .header__tel { display: none; }
  .burger { display: flex; }
  .sitio__text, .platos__head, .opiniones__grid, .horario__grid, .reservar__grid { grid-template-columns: 1fr; }
  .score { position: static; }
  .celebrar__grid { grid-template-columns: 1fr; min-height: 0; }
  .celebrar__photo { aspect-ratio: 16 / 10; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 26vw, 240px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero__field { padding-top: 104px; padding-bottom: 74vw; align-items: start; }
  .hero__copy { max-width: 100%; }
  .hero__title { font-size: clamp(50px, 15vw, 76px); }
  .hero__plate, .hero__field::before { width: 132vw; right: -50vw; bottom: -62vw; }
  .hero__field::before { right: calc(-50vw + 12px); bottom: calc(-62vw + 16px); border-width: 8px; }
  .hero__whisper { display: none; }
  .actions { grid-template-columns: 1fr; }
  .actions a { border-right: 0; border-bottom: 1px solid rgba(247, 246, 242, .28); padding: 18px var(--gutter); }
  .actions a:last-child { border-bottom: 0; }
  .t2 { flex-wrap: wrap; }
  /* etiquetas: en móvil no hay sitio para las líneas; pasan a lista bajo la foto */
  .tags { position: static; display: grid; gap: 0; padding: 0 var(--gutter); }
  .tag { position: static; transform: none; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .tag i::after { display: none; }
  .tag span, .tag--left span, .tag--below span { margin: 0 0 0 12px; background: none; box-shadow: none; padding: 0; white-space: normal; font-size: 15px; }
  .tag--left, .tag--below { flex-direction: row; align-items: center; }
  .bento { grid-auto-rows: 44vw; }
  .cell--big, .cell--list { grid-column: span 2; }
  .cell--list ul { columns: 1; }
  .cell--list { min-height: 0; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .callbar { display: grid; }
  .footer { padding-bottom: 110px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cell img, .actions i, .btn { transition: none; }
}
