/* =====================================================================
   Javibbrs — estilos
   Identidad sacada del propio local: paredes blancas, techo negro,
   luces hexagonales, suelo de terrazo y madera. Blanco y negro con un
   único acento cálido (madera) para detalles.
   Para otro cliente: cambia los tokens de :root.
   ===================================================================== */

/* Tipografía Archivo (licencia SIL OFL), servida desde la propia web:
   sin conexiones a Google al abrir la página. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("../fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0c0c0c;
  --ink-2: #151515;
  --ink-3: #1f1f1f;
  --white: #ffffff;
  --paper: #f3f2ee;
  --paper-2: #e8e5de;
  --text: #121212;
  --text-muted: #57544f;
  --text-on-dark: #f5f4f1;
  --muted-on-dark: #a19e98;
  --line: #dad6ce;
  --line-dark: rgba(255, 255, 255, 0.12);
  --wood: #b07a45;
  --wood-dark: #7c522b;
  --wa: #25d366;
  --wa-hover: #1ebe5b;
  --wa-ink: #07351a;
  --danger: #c2410c;
  --danger-on-dark: #ff9a6b;

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 64px;
  --section-y: clamp(4.5rem, 10vw, 8rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

@media (min-width: 960px) {
  :root { --header-h: 76px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--wood);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

.muted { color: var(--text-muted); }

@media (max-width: 959.98px) { .hide-mobile { display: none !important; } }
@media (min-width: 960px) { .hide-desktop { display: none !important; } }

/* ---------- Tipografía ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--light { color: var(--muted-on-dark); }

.section-title {
  font-size: clamp(2.4rem, 7.5vw, 4.25rem);
  font-weight: 800;
  font-stretch: 72%;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-intro {
  max-width: 38rem;
  margin-top: 1.25rem;
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  text-wrap: pretty;
}
.section-intro--light { color: var(--muted-on-dark); }

/* ---------- Botones ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 160ms var(--ease-out);
}
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn .i-arrow { transition: transform 250ms var(--ease-out); }
.btn:active { transform: scale(0.97); }

.btn--sm { min-height: 42px; padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.btn--lg { min-height: 56px; padding: 0.9rem 1.6rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--light { --btn-bg: var(--white); --btn-fg: var(--ink); }
.btn--dark { --btn-bg: var(--ink); --btn-fg: var(--white); }
.btn--ghost-light { --btn-bg: rgba(255, 255, 255, 0.06); --btn-fg: var(--white); --btn-bd: rgba(255, 255, 255, 0.35); }
.btn--ghost-dark { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--wa { --btn-bg: var(--wa); --btn-fg: var(--wa-ink); }

@media (hover: hover) and (pointer: fine) {
  .btn--light:hover { --btn-bg: #e9e7e2; }
  .btn--dark:hover { --btn-bg: #2a2a2a; }
  .btn--ghost-light:hover { --btn-bg: rgba(255, 255, 255, 0.14); --btn-bd: rgba(255, 255, 255, 0.6); }
  .btn--ghost-dark:hover { --btn-bd: var(--ink); }
  .btn--wa:hover { --btn-bg: var(--wa-hover); }
  .btn:hover .i-arrow { transform: translateX(3px); }
}

.wa-color { color: var(--wa); }

.link-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}
.link-wa svg { width: 1.1rem; height: 1.1rem; color: #128c4b; }

.link-btn {
  margin-top: 1rem;
  padding: 0.5rem;
  background: none;
  border: 0;
  color: var(--muted-on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 200ms ease, transform 160ms var(--ease-out);
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:active { transform: scale(0.94); }
.icon-btn--wa { color: var(--wa); }

.stars { display: inline-flex; gap: 2px; color: var(--white); }
.stars svg { width: 14px; height: 14px; }
.stars--wood { color: var(--wood); }

/* ---------- Cabecera ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  color: var(--white);
  transition: background-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--ease-out);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
  transition: opacity 300ms ease;
}
.site-header.is-scrolled {
  background: rgba(12, 12, 12, 0.88);
  box-shadow: 0 1px 0 var(--line-dark);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
}
.site-header.is-scrolled::before { opacity: 0; }

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.brand__hex { width: 30px; height: 30px; flex-shrink: 0; stroke-width: 2; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-size: 1.35rem;
  font-weight: 800;
  font-stretch: 80%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand__sub {
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav { display: none; }
@media (min-width: 960px) {
  .nav { display: block; }
  .nav__list { display: flex; gap: clamp(1rem, 2vw, 2rem); }
  .nav__list a {
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.82;
    transition: opacity 200ms ease;
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms var(--ease-out);
  }
  .nav__list a:hover,
  .nav__list a.is-active { opacity: 1; }
  .nav__list a:hover::after,
  .nav__list a.is-active::after { transform: scaleX(1); }
}

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }

.burger {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 350ms var(--ease-out), top 350ms var(--ease-out);
}
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- Menú móvil ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) calc(1.5rem + env(safe-area-inset-bottom));
  background: var(--ink);
  color: var(--white);
  overflow-y: auto;
  opacity: 0;
  transition: opacity 250ms ease;
}
.mobile-menu.is-open { opacity: 1; }

.mobile-menu__list li {
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 40ms + 60ms);
}
.mobile-menu.is-open .mobile-menu__list li { opacity: 1; transform: none; }
.mobile-menu__list a {
  display: block;
  padding: 0.85rem 0;
  font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  font-weight: 800;
  font-stretch: 72%;
  line-height: 1.05;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-menu__footer {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  transition: opacity 400ms ease 250ms;
}
.mobile-menu.is-open .mobile-menu__footer { opacity: 1; }
.mobile-menu__tel {
  justify-self: center;
  padding: 0.5rem;
  color: var(--muted-on-dark);
  text-decoration: none;
}

body.menu-open,
body.visor-abierto { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 1600ms var(--ease-out);
}
.hero__media img.is-loaded { opacity: 1; transform: none; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0 0 0 -2px;
  background:
    linear-gradient(to top, rgba(12, 12, 12, 0.98) 0%, rgba(12, 12, 12, 0.9) 45%, rgba(12, 12, 12, 0.55) 75%, rgba(12, 12, 12, 0.35) 100%);
}


.hero__content { position: relative; }

.hero__title {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  line-height: 0.88;
}
.hero__title-top {
  font-size: clamp(1.35rem, 5.5vw, 2rem);
  font-weight: 600;
  font-stretch: 85%;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.hero__title-main {
  font-size: clamp(4.2rem, 21vw, 9.5rem);
  font-weight: 900;
  font-stretch: 68%;
  letter-spacing: -0.01em;
}

.hero__lead {
  max-width: 30rem;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}

.hero__ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
@media (min-width: 420px) {
  .hero__ctas { grid-template-columns: 1.25fr 1fr; }
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.rating-chip strong { color: var(--white); }

/* Entrada del hero */
.js .hero__content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 800ms var(--ease-out) forwards;
}
.js .hero__content > :nth-child(2) { animation-delay: 80ms; }
.js .hero__content > :nth-child(3) { animation-delay: 160ms; }
.js .hero__content > :nth-child(4) { animation-delay: 240ms; }
.js .hero__content > :nth-child(5) { animation-delay: 320ms; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (min-width: 960px) {
  .hero {
    align-items: center;
    min-height: min(100svh, 900px);
    padding: calc(var(--header-h) + 3rem) 0 4rem;
  }
  .hero__media { left: 44%; }
  .hero__media::after {
    background:
      linear-gradient(to right, var(--ink) 0%, rgba(12, 12, 12, 0.6) 22%, rgba(12, 12, 12, 0) 55%),
      linear-gradient(to top, rgba(12, 12, 12, 0.5), transparent 30%);
  }
  .hero__content { padding-right: 50%; }
  .hero__ctas { display: flex; flex-wrap: wrap; }
  .hero__title-main { font-size: clamp(6rem, 10vw, 9.5rem); }
}

/* ---------- Franja de datos ---------- */
.facts {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}
.facts__list {
  display: grid;
  grid-template-columns: 1fr;
}
.facts__list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.facts__list li:last-child { border-bottom: 0; }
.facts__list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--muted-on-dark); }
.facts__list li > span { display: flex; flex-direction: column; line-height: 1.3; }
.facts__list strong { font-weight: 600; }
.facts__list li > span > span { font-size: 0.88rem; color: var(--muted-on-dark); }

@media (min-width: 720px) {
  .facts__list { grid-template-columns: repeat(3, 1fr); }
  .facts__list li {
    justify-content: center;
    padding: 1.4rem 1rem;
    border-bottom: 0;
    border-right: 1px solid var(--line-dark);
  }
  .facts__list li:last-child { border-right: 0; }
}

/* ---------- Secciones ---------- */
.section { padding-block: var(--section-y); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: var(--text-on-dark); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .section-head--row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* Aparición al hacer scroll (solo con JS) */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal-on .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Servicios ---------- */
.services {
  display: grid;
  gap: 2rem;
}
.services__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
}
.services__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.services__media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.services__list { border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.service__name {
  font-size: clamp(1.6rem, 4.5vw, 2rem);
  font-weight: 800;
  font-stretch: 75%;
  line-height: 1;
  text-transform: uppercase;
}
.service__price {
  align-self: start;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  line-height: 1;
  font-weight: 700;
  font-stretch: 80%;
  white-space: nowrap;
}
.service__desc { grid-column: 1 / -1; color: var(--text-muted); max-width: 34rem; }
.service__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.service__meta svg { width: 15px; height: 15px; }
.service__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin-top: 0.75rem;
}
.service__actions .link-wa { font-size: 0.95rem; }

.notice {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.75rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.notice p { color: var(--text-muted); }
.notice .link-wa { align-self: flex-start; }
.catalog + .notice { margin-top: 0.75rem; }
.notice strong { color: var(--text); }

.catalog {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: transform 160ms var(--ease-out);
}
.catalog:active { transform: scale(0.98); }
.catalog__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--wa-ink);
}
.catalog__icon svg { width: 22px; height: 22px; }
.catalog__text { display: flex; flex-direction: column; flex: 1; line-height: 1.3; }
.catalog__text strong { font-weight: 600; }
.catalog__text span { font-size: 0.85rem; color: var(--muted-on-dark); }
.catalog__arrow { width: 20px; height: 20px; flex-shrink: 0; }

/* Solo en pantallas táctiles (móvil/tablet) */
.only-touch { display: none; }
@media (hover: none) and (pointer: coarse) {
  .only-touch { display: flex; }
}

@media (min-width: 960px) {
  .services { grid-template-columns: 5fr 7fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
  .services__media { position: sticky; top: calc(var(--header-h) + 2rem); aspect-ratio: 4 / 5; }
  .service { grid-template-columns: 1fr auto; padding: 1.75rem 0; }
  .service__actions { grid-column: 2; grid-row: 2 / span 2; margin-top: 0; justify-content: flex-end; align-self: center; }
  .service__desc, .service__meta { grid-column: 1; }
}

/* ---------- Galería ---------- */
.filters {
  display: flex;
  gap: 0.5rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.filters::-webkit-scrollbar { display: none; }
@media (min-width: 960px) { .filters { margin: 0; padding: 0; overflow: visible; } }

.filter {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--muted-on-dark);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.filter[aria-pressed="true"] { background: var(--white); border-color: var(--white); color: var(--ink); }
@media (hover: hover) and (pointer: fine) {
  .filter:not([aria-pressed="true"]):hover { border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 42vw;
  grid-auto-flow: dense;
  gap: 0.5rem;
}
.gallery__item { position: relative; }
.gallery__item.is-featured { grid-column: span 2; grid-row: span 2; }
.gallery__item.is-hidden { display: none; }

.gallery__btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-3);
  cursor: zoom-in;
}
.gallery__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), opacity 400ms ease;
}
.gallery__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 45%);
  opacity: 0.8;
  transition: opacity 300ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .gallery__btn:hover img { transform: scale(1.04); }
  .gallery__btn:hover::after { opacity: 1; }
}

.gallery__tag {
  position: absolute;
  z-index: 1;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.7);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.gallery__tag--ref { background: rgba(255, 255, 255, 0.88); color: var(--ink); }

.gallery__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 2rem;
}
.gallery__note { font-size: 0.88rem; color: var(--muted-on-dark); max-width: 36rem; }
.gallery__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 0.75rem; }
}
@media (min-width: 1100px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; }
  .gallery__item.is-tall { grid-row: span 2; }
  .gallery__foot { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Visor ---------- */
.lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8, 8, 8, 0.96);
  color: var(--white);
  overflow: hidden;
}
.lightbox::backdrop { background: transparent; }
.lightbox[open] { display: grid; place-items: center; animation: fade-in 220ms ease; }
.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  max-width: min(92vw, 1100px);
  padding: 4.5rem 0 5.5rem;
}
.lightbox__figure img {
  max-height: calc(100dvh - 10rem);
  width: auto;
  border-radius: var(--radius);
  animation: zoom-in 300ms var(--ease-out);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.lightbox__figure figcaption { font-size: 0.92rem; color: var(--muted-on-dark); text-align: center; }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: background-color 200ms ease, transform 160ms var(--ease-out);
}
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__close:active, .lightbox__nav:active { transform: scale(0.94); }
@media (hover: hover) { .lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); } }
.lightbox__close { top: max(1rem, env(safe-area-inset-top)); right: 1rem; }
.lightbox__nav { bottom: calc(1.25rem + env(safe-area-inset-bottom)); }
.lightbox__nav--prev { left: calc(50% - 60px); }
.lightbox__nav--next { right: calc(50% - 60px); }
@media (min-width: 960px) {
  .lightbox__nav { top: 50%; bottom: auto; transform: translateY(-50%); }
  .lightbox__nav:active { transform: translateY(-50%) scale(0.94); }
  .lightbox__nav--prev { left: 1.5rem; }
  .lightbox__nav--next { right: 1.5rem; }
}

@keyframes fade-in { from { opacity: 0; } }
@keyframes zoom-in { from { opacity: 0; transform: scale(0.97); } }

/* ---------- Sobre nosotros ---------- */
.about { display: grid; gap: 2.5rem; }
.about__media { position: relative; }
.about__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 40%; }

/* Con foto de Javi: la del local más pequeña y la de Javi superpuesta abajo a la derecha */
.about__media.has-javi { padding-bottom: 18%; }
.about__media.has-javi .about__photo--local { width: 74%; aspect-ratio: 4 / 5; }
.about__media.has-javi .about__photo--javi {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  aspect-ratio: 4 / 5;
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.about__photo--javi img { object-position: 50% 30%; }

.about__text { display: grid; gap: 1rem; margin-top: 1.5rem; font-size: 1.08rem; color: var(--text-muted); max-width: 34rem; }
.about__text p { text-wrap: pretty; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0 clamp(1.5rem, 5vw, 3rem);
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
}
.about__stats li { display: flex; flex-direction: column; line-height: 1.1; }
.about__stats strong {
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  font-weight: 800;
  font-stretch: 72%;
  text-transform: uppercase;
}
.about__stats span { margin-top: 0.3rem; font-size: 0.85rem; color: var(--text-muted); }

@media (min-width: 960px) {
  .about { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
  .about__photo { aspect-ratio: 4 / 5; }
  .about__media.has-javi { padding-bottom: 14%; }
}

/* ---------- Reseñas ---------- */
.reviews-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.score {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  align-self: flex-start;
  text-decoration: none;
}
.score__num {
  font-size: clamp(4.5rem, 14vw, 6.5rem);
  font-weight: 900;
  font-stretch: 68%;
  line-height: 0.8;
}
.score__meta { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.95rem; color: var(--text-muted); }
.score__meta .stars svg { width: 20px; height: 20px; }
@media (hover: hover) { .score:hover .score__meta > span:last-child { text-decoration: underline; text-underline-offset: 3px; } }

.reviews { display: grid; gap: 1rem; }
.review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.review__text {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  text-wrap: pretty;
}
.review__text::before { content: "“"; }
.review__text::after { content: "”"; }
.review__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.review__source { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.g-logo { width: 16px; height: 16px; }

.reviews__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

@media (min-width: 960px) {
  .reviews-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .score { align-self: auto; }
  .reviews { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* ---------- Reserva ---------- */
.booking { display: grid; gap: 2.5rem; }

.steps { display: grid; gap: 1rem; margin-top: 2rem; }
.steps li { display: flex; gap: 1rem; align-items: flex-start; }
.steps__n {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}
.steps li > span:last-child { display: flex; flex-direction: column; line-height: 1.4; color: var(--muted-on-dark); padding-top: 0.2rem; }
.steps strong { color: var(--white); font-weight: 600; }

.booking__alt { margin-top: 2rem; color: var(--muted-on-dark); }
.booking__alt a { color: var(--white); font-weight: 600; white-space: nowrap; }

.booking__card {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
}

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.4rem; align-content: start; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--text-on-dark); }
.field__opt { font-weight: 400; color: var(--muted-on-dark); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 16px; /* evita el zoom automático en iPhone */
  color-scheme: dark;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #6f6c67; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.field input[type="date"] { display: block; }
.field input[type="date"]::-webkit-date-and-time-value { text-align: left; }

.select { position: relative; }
.select::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted-on-dark);
  border-bottom: 2px solid var(--muted-on-dark);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select select { padding-right: 2.5rem; cursor: pointer; }
.select select:disabled { opacity: 0.55; cursor: not-allowed; }
.select select:invalid { color: #8d8a84; }
.select option { color: var(--white); background: var(--ink-2); }

.field.has-error input,
.field.has-error select { border-color: var(--danger-on-dark); }
.field__error { min-height: 0; font-size: 0.85rem; color: var(--danger-on-dark); }
.field__error:empty { display: none; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form .btn--wa { margin-top: 0.4rem; }
.form__legal { font-size: 0.8rem; color: var(--muted-on-dark); text-align: center; }

.success { text-align: center; outline: none; animation: rise-in 500ms var(--ease-out); }
.success__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--wa-ink);
}
.success__icon svg { width: 30px; height: 30px; }
.success__title {
  font-size: 2rem;
  font-weight: 800;
  font-stretch: 75%;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.success > p { color: var(--muted-on-dark); max-width: 26rem; margin-inline: auto; }
.success > p strong { color: var(--white); }

.bubble {
  position: relative;
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-radius: 12px 12px 4px 12px;
  background: #1f3b2c;
  color: #e8f5ec;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
  white-space: pre-line;
}
@keyframes rise-in { from { opacity: 0; transform: translateY(10px); } }

.booking__extra { padding-top: 0.5rem; }
.booking__extra .steps { margin-top: 0; }

@media (min-width: 960px) {
  .booking {
    grid-template-columns: 5fr 6fr;
    grid-template-areas: "intro card" "extra card";
    grid-template-rows: auto 1fr;
    column-gap: clamp(3rem, 6vw, 5rem);
    row-gap: 2.5rem;
    align-items: start;
  }
  .booking__intro { grid-area: intro; }
  .booking__extra { grid-area: extra; padding-top: 0; }
  .booking__card { grid-area: card; }
}

/* ---------- Contacto ---------- */
.contact { display: grid; gap: 2.5rem; }
.contact__list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__list li > svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }
.contact__list li > div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact__list strong { font-weight: 600; }
.contact__list a { font-weight: 500; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--danger);
}
.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}
.status.is-open { color: #15803d; }
.section--dark .status, .facts .status { color: var(--danger-on-dark); }
.section--dark .status.is-open, .facts .status.is-open { color: var(--wa); }
.contact__list .status { margin: 0.1rem 0 0.35rem; font-size: 0.92rem; }

.hours { display: grid; gap: 0.15rem; margin-top: 0.1rem; }
.hours__row { display: flex; justify-content: space-between; gap: 1.5rem; max-width: 22rem; }
.hours__row.is-today { font-weight: 600; }

.contact__ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 2rem; }
.contact__ctas .btn:first-child { grid-column: 1 / -1; }
@media (min-width: 560px) {
  .contact__ctas { display: flex; flex-wrap: wrap; }
}

.contact__visual { display: grid; gap: 1rem; }
.contact__photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}
.contact__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.contact__photo figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
/* Tablet: foto y mapa lado a lado */
@media (min-width: 560px) and (max-width: 959.98px) {
  .contact__visual.has-photo { grid-template-columns: 0.8fr 1fr; }
  .contact__photo { aspect-ratio: auto; min-height: 340px; }
}

.map {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.06), transparent 60%),
    var(--ink);
  color: var(--white);
}
.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: rotate(-12deg) scale(1.4);
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.5rem;
  text-align: center;
}
.map__pin { width: 40px; height: 40px; }
.map__title { font-size: 1.3rem; font-weight: 700; font-stretch: 85%; }
.map__legal { font-size: 0.78rem; color: var(--muted-on-dark); }

@media (min-width: 960px) {
  .contact { grid-template-columns: 1fr 1.1fr; gap: clamp(3rem, 6vw, 5rem); align-items: stretch; }
  .map { min-height: 480px; }
  /* Ordenador: fachada arriba (apaisada) y mapa debajo, en la misma columna */
  .contact__visual.has-photo { grid-template-rows: auto 1fr; }
  .contact__visual.has-photo .contact__photo { aspect-ratio: 16 / 10; }
  .contact__visual.has-photo .map { min-height: 320px; }
}

/* ---------- Pie ---------- */
.site-footer {
  padding: 4rem 0 calc(2rem + env(safe-area-inset-bottom));
  background: var(--ink);
  color: var(--text-on-dark);
}
.site-footer__inner { display: grid; gap: 2.5rem; }
.site-footer__brand p { margin-top: 1rem; color: var(--muted-on-dark); }
.site-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; }
.site-footer__nav a,
.site-footer__contact a { color: var(--muted-on-dark); text-decoration: none; white-space: nowrap; transition: color 200ms ease; }
.site-footer__nav a:hover,
.site-footer__contact a:hover { color: var(--white); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  color: var(--muted-on-dark);
}
@media (min-width: 960px) {
  .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}

.site-footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-top: 0.5rem; }
.site-footer__legal a { color: var(--muted-on-dark); text-decoration: none; }
.site-footer__legal a:hover { color: var(--white); }
@media (min-width: 720px) {
  .site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .site-footer__legal { margin-top: 0; }
}
.form__legal a { color: var(--text-on-dark); text-underline-offset: 2px; }

/* ---------- Páginas legales ---------- */
.legal-body { padding-bottom: 0; background: var(--white); }
.legal {
  max-width: 780px;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: 4rem;
}
.legal .section-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
.legal__updated { margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.legal h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}
.legal p { margin-bottom: 0.9rem; color: var(--text-muted); text-wrap: pretty; }
.legal p strong { color: var(--text); }
.legal a { color: var(--text); text-underline-offset: 3px; }
.legal__datos {
  display: grid;
  grid-template-columns: minmax(7rem, auto) 1fr;
  gap: 0.5rem 1.5rem;
  margin: 1rem 0 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--paper);
}
.legal__datos dt { font-weight: 600; }
.legal__datos dd { margin: 0; color: var(--text-muted); }
.legal__datos dd.pendiente { justify-self: start; }
.legal__links { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.pendiente {
  padding: 0.05em 0.4em;
  border-radius: 4px;
  background: #fff1b8;
  color: #5c4400;
  font-weight: 600;
}
@media (max-width: 400px) { .legal-body .brand__sub { display: none; } }
.legal-footer { padding: 1.5rem 0; background: var(--ink); color: var(--muted-on-dark); font-size: 0.85rem; }

/* ---------- Barra móvil y botón flotante ---------- */
.action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 0.4rem;
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(12, 12, 12, 0.92);
  border-top: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform 400ms var(--ease-out);
}
.action-bar.is-visible { transform: none; }
.action-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 54px;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background-color 200ms ease;
}
.action-bar__btn svg { width: 22px; height: 22px; }
.action-bar__btn:active { transform: scale(0.96); }
.action-bar__btn--wa svg { color: var(--wa); }
.action-bar__btn--main {
  flex-direction: row;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
}
@media (min-width: 960px) { .action-bar { display: none; } }
@media (max-width: 959.98px) { body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); } }

.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: none;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 300ms ease, transform 400ms var(--ease-out), background-color 200ms ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: var(--wa-hover); }
@media (min-width: 960px) { .wa-float { display: grid; } }

/* ---------- Modo revisión (?revision) ---------- */
.review-panel {
  position: fixed;
  left: 1rem;
  top: calc(var(--header-h) + 1rem);
  z-index: 60;
  width: min(360px, calc(100vw - 2rem));
  max-height: 70vh;
  overflow: auto;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: #fff7d6;
  color: #3b2f00;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  font-size: 0.88rem;
}
.review-panel h2 { font-size: 1rem; margin-bottom: 0.5rem; }
.review-panel ul { list-style: disc; padding-left: 1.1rem; display: grid; gap: 0.3rem; }
.review-panel button { margin-top: 0.75rem; padding: 0.4rem 0.8rem; border: 1px solid #3b2f00; border-radius: 6px; background: transparent; cursor: pointer; }

/* ---------- Movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
  .reveal-on .reveal, .js .hero__content > * { opacity: 1; transform: none; }
}
