/* ============================================================
   SILVER BARBERÍA — styles.css
   Editorial oscuro · mobile-first · sin dependencias
   ============================================================ */

:root {
  --bg: #141414;
  --panel: #1a1a1a;
  --wm: #1e1e1e;
  --line: #2a2a2a;
  --silver: #C7C9CC;
  --amber: #C9A35B;
  --muted: #888888;
  --white: #f4f4f2;
  --wa: #25D366;
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: var(--silver); text-decoration: none; }
a:hover { color: var(--white); }

::selection { background: var(--amber); color: var(--bg); }

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
.container--narrow { max-width: 760px; }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.btn--primary {
  background: var(--amber);
  color: var(--bg);
}
.btn--primary:hover {
  background: #d9b46e;
  color: var(--bg);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(199, 201, 204, .35);
  color: var(--silver);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--silver);
  color: var(--white);
  background: rgba(199, 201, 204, .06);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--amber);
  color: var(--bg);
  width: 100%;
  padding: 18px 28px;
  font-size: 16px;
}
.btn--whatsapp:hover { background: #d9b46e; color: var(--bg); transform: translateY(-2px); }
.btn--whatsapp svg { width: 22px; height: 22px; flex: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 20, 20, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  /* Instalada como app en iPhone, el contenido no queda bajo el notch */
  padding-top: env(safe-area-inset-top, 0px);
}

.nav__progress {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--amber);
  z-index: 2;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.brand__wolf {
  width: 36px;
  height: 36px;
  color: var(--silver);
  flex: none;
  transition: color .3s ease;
}
.brand:hover .brand__wolf { color: var(--amber); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 2.5px;
  color: var(--white);
}
.brand__sub {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 4.5px;
  color: var(--silver);
  margin-top: 3px;
}

.nav__links { display: none; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.btn--nav { padding: 11px 18px; font-size: 13px; }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--silver);
  transition: transform .3s ease, opacity .3s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil */
.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(20, 20, 20, .98);
  padding: 40px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity .3s ease, transform .3s ease, visibility 0s;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__links a em {
  font-style: normal;
  font-size: 15px;
  color: var(--amber);
  margin-right: 12px;
  vertical-align: middle;
}
.mobile-menu__foot { display: flex; flex-direction: column; gap: 18px; padding-bottom: 24px; }
.mobile-menu__phone {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--silver);
  text-align: center;
}
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 2.4s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 20, 20, .72) 0%,
    rgba(20, 20, 20, .68) 55%,
    #141414 100%);
}

.hero__wm {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-52%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(340px, 62vh, 720px);
  line-height: 1;
  color: var(--wm);
  opacity: .35;
  pointer-events: none;
  user-select: none;
}

.hero__content { position: relative; z-index: 1; }

.hero__kicker {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: riseIn .8s ease-out .1s both;
}
.hero__kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--amber);
  flex: none;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(66px, 16vw, 168px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 22px;
  animation: riseIn .8s ease-out .25s both;
}
.hero__line1 { display: block; color: var(--white); }
.hero__line2 {
  display: block;
  color: var(--silver);
  transform: translateX(clamp(26px, 7vw, 110px));
}

.hero__location {
  margin-top: 22px;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--silver);
  animation: riseIn .8s ease-out .4s both;
}

.hero__claim {
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(20px, 4vw, 26px);
  letter-spacing: 1px;
  color: var(--white);
  animation: riseIn .8s ease-out .5s both;
}

.hero__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 9px;
  margin-top: 16px;
  font-size: 15px;
  color: var(--silver);
  animation: riseIn .8s ease-out .6s both;
}
.hero__stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
}
.hero__rating-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}
.hero__rating-sep { color: var(--muted); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: riseIn .8s ease-out .72s both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--amber);
  transform: rotate(-1.2deg) scale(1.03);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 2;
  margin: -14px 0 14px;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__group {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--bg);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECCIONES — base
   ============================================================ */
.section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  scroll-margin-top: var(--nav-h);
}
.section--alt { background: #161616; }

.section__wm {
  position: absolute;
  top: -14px;
  right: -12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(150px, 30vw, 320px);
  line-height: 1;
  color: var(--wm);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section--alt .section__wm { color: #1f1f1f; }

.section .container { position: relative; z-index: 1; }

.section__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 68px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.section__sub {
  font-size: 17px;
  color: var(--silver);
  margin: -14px 0 30px;
}

/* ============================================================
   01 · LA BARBERÍA
   ============================================================ */
.rating-card {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  padding: 16px 22px;
  margin-bottom: 40px;
}
.rating-card__stars {
  color: var(--amber);
  font-size: 21px;
  letter-spacing: 4px;
  line-height: 1;
}
.rating-card__text { color: var(--silver); font-size: 15px; }
.rating-card__text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  margin-right: 6px;
  vertical-align: -2px;
}
.rating-card__sep { margin: 0 6px; color: var(--muted); }
.rating-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--amber);
}
.rating-card__link:hover { color: #d9b46e; }

.about {
  display: grid;
  gap: 40px;
}

.about__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--silver);
  max-width: 60ch;
  margin-bottom: 34px;
}

.about__photo {
  border: 1px solid var(--line);
  overflow: hidden;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform .6s ease;
}
.about__photo:hover img { transform: scale(1.03); }

/* Lista de datos (dirección, teléfono, horario…) */
.datalist { display: flex; flex-direction: column; }
.datalist__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dotted #3a3a3a;
  align-items: baseline;
}
.datalist__row dt {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.datalist__row dd { font-size: 15px; color: var(--white); }
.datalist__row dd a { color: var(--amber); font-weight: 500; }
.datalist__row dd a:hover { color: #d9b46e; }

.hours { display: flex; flex-direction: column; gap: 6px; }
.hours__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 10px;
  font-size: 14.5px;
}
.hours__row span:first-child { color: var(--silver); flex: none; }
.hours__row span:last-child {
  color: var(--white);
  flex: 0 1 auto;
  margin-left: auto;
  text-align: right;
}
.hours__dots {
  flex: 1;
  border-bottom: 1px dotted #3a3a3a;
  transform: translateY(-4px);
  min-width: 20px;
}
.hours__note { margin-top: 12px; font-size: 13px; color: var(--muted); }

/* ============================================================
   02 · SERVICIOS
   ============================================================ */
.services {
  display: grid;
  gap: 0 56px;
  margin-bottom: 26px;
}
.services__fallback { color: var(--silver); font-size: 15px; padding: 12px 0; }
.services__fallback a { color: var(--amber); }

.service-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #242424;
}
.service-row__name { font-size: 16px; color: var(--white); flex: none; max-width: 75%; }
.service-row__dots {
  flex: 1;
  border-bottom: 1px dotted #3a3a3a;
  transform: translateY(-4px);
  min-width: 24px;
}
.service-row__price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--amber);
  flex: none;
}
.service-row__price--pending { color: var(--muted); }

.services__note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 34px;
}

.services__cta { text-align: center; }

/* ============================================================
   03 · RESERVAR
   ============================================================ */
.booking {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 34px 26px 28px;
}

.booking__steps {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.booking__steps li {
  font-size: 15px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking__steps li em {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--amber);
  border: 1px solid rgba(201, 163, 91, .4);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* Aviso provisional mientras Fresha no está activo */
.booking__notice {
  text-align: center;
  border: 1px dashed rgba(201, 163, 91, .4);
  background: rgba(201, 163, 91, .05);
  padding: 26px 22px;
  margin-bottom: 30px;
}
.booking__soon-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(201, 163, 91, .4);
  padding: 5px 12px;
  margin-bottom: 16px;
}
.booking__soon {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(19px, 4.5vw, 24px);
  letter-spacing: .5px;
  color: var(--white);
  line-height: 1.25;
}
.booking__soon-sub {
  margin-top: 8px;
  font-size: 15px;
  color: var(--silver);
}

/* ────────────────────────────────────────────────
   INTEGRACIÓN DE FRESHA (ver bloques comentados en
   index.html, sección #reservar)
   ──────────────────────────────────────────────── */

/* OPCIÓN 1 · Botón directo — igual de prominente que el CTA principal */
.booking__fresha { text-align: center; }
.btn--fresha {
  background: var(--amber);
  color: var(--bg);
  width: 100%;
  padding: 20px 28px;
  font-size: 17px;
}
.btn--fresha:hover { background: #d9b46e; color: var(--bg); transform: translateY(-2px); }
.btn--fresha svg { width: 22px; height: 22px; flex: none; }

/* OPCIÓN 2 · Widget embebido.
   El widget de Fresha es blanco por dentro (inevitable); el marco que
   lo rodea se mantiene oscuro para no romper la estética de la web.
   Altura: 100% de la ventana en móvil, 600px fijos en escritorio. */
.booking__widget-wrap {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 100svh;
}
.booking__widget-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  font-size: 15px;
  color: var(--silver);
  background: var(--panel);
}
.booking__spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(199, 201, 204, .18);
  border-top-color: var(--amber);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking__widget-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100svh;
  border: 0;
}

.booking__fallback { text-align: center; }
.booking__alt { margin-top: 16px; font-size: 15px; color: var(--silver); }
.booking__alt a { color: var(--amber); font-weight: 600; }

.booking__live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.booking__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.8); }
}

/* ============================================================
   GALERÍA
   ============================================================ */
.section--gallery { padding-top: 60px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.gallery figure {
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform .6s ease;
}
.gallery figure:hover img { transform: scale(1.03); }

/* ============================================================
   04 · CÓMO LLEGAR
   ============================================================ */
.visit { display: grid; gap: 40px; }

.visit__map {
  border: 1px solid var(--line);
  line-height: 0;
}
.visit__map iframe {
  filter: grayscale(1) contrast(1.05);
}

.visit__btn { margin-top: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  text-align: center;
}
.footer__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(38px, 8vw, 64px);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 26px;
}
.footer__brand span { color: var(--silver); }
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--silver);
  margin-bottom: 30px;
}
.footer__grid a { color: var(--amber); }
.footer__grid a:hover { color: #d9b46e; }
.footer__sep { margin: 0 8px; color: var(--muted); }
.footer__copy { font-size: 13px; color: var(--muted); }

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   REVEAL (IntersectionObserver desde main.js)
   ============================================================ */
/* Solo se oculta contenido si el JS está disponible (html.js).
   Sin JS, todo es visible desde el primer pintado. Además, una
   animación CSS con retardo fuerza la visibilidad a los 6,5 s
   aunque el JS muera a mitad: nunca queda texto invisible. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: revealSafety .7s ease 6.5s forwards;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes revealSafety {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MÓVILES ESTRECHOS (≤ 419px) — el nav completo debe caber
   ============================================================ */
@media (max-width: 419px) {
  .nav__inner { gap: 10px; }
  .nav__actions { gap: 8px; }
  .btn--nav { padding: 10px 12px; font-size: 12px; letter-spacing: 1px; white-space: nowrap; }
  .brand { gap: 8px; }
  .brand__wolf { width: 32px; height: 32px; }
  .brand__name { font-size: 17px; letter-spacing: 2px; }
  .brand__sub { font-size: 9.5px; letter-spacing: 3.5px; }
}

/* ============================================================
   DESKTOP (≥ 900px)
   ============================================================ */
@media (min-width: 900px) {

  .nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav__links a {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 13.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver);
    transition: color .25s ease;
  }
  .nav__links a:hover { color: var(--white); }
  .nav__links a em {
    font-style: normal;
    font-size: 11px;
    color: var(--amber);
    margin-right: 5px;
  }

  .burger, .mobile-menu { display: none; }

  .marquee__group { font-size: 17px; }

  .section { padding: 120px 0; }

  .about { grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; }

  .datalist__row { grid-template-columns: 130px 1fr; }

  .services { grid-template-columns: 1fr 1fr; }

  .booking { padding: 48px 56px 36px; }
  .booking__steps { grid-template-columns: repeat(3, 1fr); }

  /* Widget de Fresha: altura fija en escritorio */
  .booking__widget-wrap { min-height: 600px; }
  .booking__widget-frame { height: 600px; }

  .gallery { gap: 16px; }
  .section--gallery { padding-top: 80px; }

  .visit { grid-template-columns: 1.1fr .9fr; align-items: start; gap: 56px; }
  .visit__map iframe { height: 480px; }

  .wa-float { right: 26px; bottom: 26px; }
}
