/* ============================================================
   Bunny Lash
   Tema unico oscuro "black & tan". Un acento (champan calido).
   Radios: superficies 18px, inputs 12px, botones pastilla.
   Solo se animan transform, opacity, clip-path y filter.
   ============================================================ */

:root {
  --bg: #0f0d0b;
  --bg-2: #151210;
  --bg-3: #1c1813;
  --text: #efe8dd;
  --muted: #a89c8d;
  --accent: #d2a878;
  --accent-soft: #e8cba4;
  --accent-ink: #221a11;
  --line: rgba(239, 232, 221, 0.13);
  --r-surface: 18px;
  --r-input: 12px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);
  --nav-h: 72px;
  color-scheme: dark;
}

/* ---------- Reset ---------- */

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul[role="list"] { list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Grano sutil fijo, fuera del flujo de pintura del scroll */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Tipografia ---------- */

h1, h2, h3, .brand-name, .offer-big {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.5vw, 56px);
}

section { padding-block: clamp(90px, 11vw, 150px); }

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9em 2em;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn:active { transform: translateY(0) scale(0.97); }

.btn-solid { background: var(--accent); color: var(--accent-ink); font-weight: 500; position: relative; overflow: hidden; }

/* Destello que recorre el boton solido una vez por hover */
.btn-solid::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.38) 50%, transparent 62%);
  pointer-events: none;
}

@keyframes sheen { to { transform: translateX(130%) skewX(-18deg); } }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
  .btn-solid:hover { background: var(--accent-soft); }
  .btn-solid:hover::after { animation: sheen 700ms var(--ease-out); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); }
  .btn-dark:hover { background: #33271a; }
}

/* ---------- Nav ---------- */

.nav-sentinel { position: absolute; top: 0; height: 32px; width: 1px; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background-color 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(15, 13, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
}

.brand { display: flex; align-items: center; gap: 0.85rem; margin-right: auto; }

.brand-logo { height: 52px; width: auto; display: block; }

.brand-name {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); }

.nav-links a {
  position: relative;
  font-size: 0.98rem;
  color: var(--muted);
  transition: color 180ms ease;
}

/* Subrayado que crece desde la izquierda; tambien marca la seccion activa */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}

.nav-links a.active { color: var(--text); }

.nav-links a.active::after { transform: scaleX(1); }

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { transform: scaleX(1); }
}

.brand-logo { transition: transform 400ms var(--ease-out); }

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-logo { transform: scale(1.06) rotate(-3deg); }
}

.btn-nav { padding: 0.6em 1.5em; font-size: 0.95rem; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .brand-name { display: none; }
  .brand-logo { height: 46px; }
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  width: 100%;
}

.hero-copy {
  grid-column: 1 / 8;
  grid-row: 1;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.9rem, 7.2vw, 6rem);
  margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
}

.hero-title span { display: block; }

.hero-sub {
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-media {
  grid-column: 7 / 13;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  border-radius: var(--r-surface);
}

/* Velo lateral: mantiene legible el titular que se encima a la foto */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--r-surface);
  background: linear-gradient(100deg, rgba(15, 13, 11, 0.88) 8%, rgba(15, 13, 11, 0) 52%);
  pointer-events: none;
}

/* Entrada del hero: revelado escalonado + clip de la imagen */
.js .hr {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 800ms var(--ease-out) forwards;
}

.js .hr-1 { animation-delay: 60ms; }
.js .hr-2 { animation-delay: 140ms; }
.js .hr-3 { animation-delay: 240ms; }
.js .hr-4 { animation-delay: 330ms; }

.js .hero-media {
  clip-path: inset(0 0 100% 0);
  animation: unveil 1000ms var(--ease-io) 200ms forwards;
}

.js .hero-media img {
  transform: scale(1.07);
  animation: settle 1400ms var(--ease-out) 200ms forwards;
}

@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes unveil { to { clip-path: inset(0 0 0 0); } }
@keyframes settle { to { transform: scale(1); } }

@media (max-width: 880px) {
  .hero { align-items: flex-end; }
  .hero-grid { grid-template-columns: 1fr; row-gap: 2rem; }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .hero-media { grid-column: 1; grid-row: 2; }
  .hero-media img { height: 46vh; }
}

/* ---------- Revelado al hacer scroll ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.js .reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Servicios ---------- */

.services { background: var(--bg-2); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.svc-list { grid-column: 1 / 8; }

.svc {
  position: relative;
  width: 100%;
  text-align: left;
  display: block;
  padding: clamp(1.4rem, 2.5vw, 2rem) 0.75rem;
  border-top: 1px solid var(--line);
}

/* Barra de acento que crece junto al servicio activo */
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 42%;
  width: 2px;
  background: var(--accent);
  transform: translateY(-50%) scaleY(0);
  transition: transform 350ms var(--ease-out);
}

.svc.active::before { transform: translateY(-50%) scaleY(1); }

.svc-list li:last-child .svc { border-bottom: 1px solid var(--line); }

.svc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.svc-name {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 500;
  transition: color 250ms ease, transform 350ms var(--ease-out);
  display: inline-block;
}

.svc-price {
  color: var(--muted);
  font-size: 1rem;
  white-space: nowrap;
  transition: color 250ms ease;
}

.svc.active .svc-price { color: var(--accent-soft); }

.svc.active .svc-name { transform: translateX(6px); }

.svc-desc {
  display: block;
  color: var(--muted);
  max-width: 46ch;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.svc.active .svc-name { color: var(--accent); }

@media (hover: hover) and (pointer: fine) {
  .svc:hover .svc-name { color: var(--accent-soft); transform: translateX(6px); }
}

.svc-media {
  grid-column: 8 / 13;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  aspect-ratio: 3 / 4;
  border-radius: var(--r-surface);
  overflow: hidden;
}

.svc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.05);
  transition: opacity 450ms ease, filter 450ms ease, transform 700ms var(--ease-out);
}

.svc-media img.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

@media (max-width: 880px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-list { grid-column: 1; order: 2; }
  .svc-media { grid-column: 1; order: 1; position: relative; top: 0; aspect-ratio: 4 / 3; }
}

/* ---------- Catalogo ---------- */

.cat-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem 2.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.cat-header h2 { margin-bottom: 0; }

.cat-header p { color: var(--muted); max-width: 42ch; }

.cat-entry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 3.5vw, 4rem);
  align-items: center;
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line);
}

.cat-media {
  grid-column: 1 / 6;
  grid-row: 1;
  border-radius: var(--r-surface);
  overflow: hidden;
}

.cat-copy { grid-column: 6 / 13; grid-row: 1; }

/* Alterna el lado de la foto entrada por entrada */
.cat-entry:nth-of-type(even) .cat-media { grid-column: 8 / 13; }

.cat-entry:nth-of-type(even) .cat-copy { grid-column: 1 / 8; }

.cat-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 500ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .cat-entry:hover .cat-media img { transform: scale(1.045); filter: brightness(1.06) saturate(1.04); }
  .cat-entry:hover .cat-price { transform: translateY(-2px); border-color: rgba(210, 168, 120, 0.55); }
  .cat-entry:hover .cat-d { background: var(--accent); color: var(--accent-ink); }
}

/* Revelado editorial: la foto se descubre, el texto entra en cascada
   y la linea del nombre se dibuja de izquierda a derecha */
.js .cat-entry.reveal { transform: none; }

.js .cat-entry .cat-media {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 900ms var(--ease-io);
}

.js .cat-entry.in .cat-media { clip-path: inset(0 0 0 0); }

.js .cat-entry .cat-copy > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.js .cat-entry .cat-copy > *:nth-child(2) { transition-delay: 100ms; }

.js .cat-entry .cat-copy > *:nth-child(3) { transition-delay: 200ms; }

.js .cat-entry.in .cat-copy > * { opacity: 1; transform: translateY(0); }

.js .cat-entry .cat-name::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-io) 250ms;
}

.js .cat-entry.in .cat-name::after { transform: scaleX(1); }

.cat-name {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.9rem;
}

/* Linea fina que remata el nombre, como en catalogos editoriales */
.cat-name::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.cat-d {
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid rgba(210, 168, 120, 0.45);
  border-radius: 999px;
  padding: 0.25em 0.75em;
  flex: none;
  transition: background-color 300ms ease, color 300ms ease;
}

.cat-points { display: grid; gap: 0.45rem; margin-bottom: 1.4rem; }

.cat-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch;
}

.cat-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.cat-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  padding: 0.5em 1.4em;
  transition: transform 300ms var(--ease-out), border-color 300ms ease;
}

.cat-price span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cat-price strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--accent-soft);
}

.cat-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}

.cat-foot p { color: var(--muted); font-size: 0.98rem; max-width: 52ch; }

.cat-foot strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

@media (max-width: 880px) {
  .cat-entry { grid-template-columns: 1fr; gap: 1.2rem; }

  .cat-entry .cat-media,
  .cat-entry:nth-of-type(even) .cat-media { grid-column: 1; grid-row: 1; }

  .cat-entry .cat-copy,
  .cat-entry:nth-of-type(even) .cat-copy { grid-column: 1; grid-row: 2; }

  .cat-media img { aspect-ratio: 16 / 10; }
}

/* ---------- Ofertas ---------- */

.offers { background: var(--bg-2); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

.offer { border-radius: var(--r-surface); overflow: hidden; transition: transform 400ms var(--ease-out); }

@media (hover: hover) and (pointer: fine) {
  .offer-feature:hover, .offer-photo:hover { transform: translateY(-5px); }
}

.offer h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0.6rem;
}

.offer-text { max-width: 40ch; }

.offer-feature {
  grid-column: span 7;
  background: linear-gradient(135deg, #e2c193, var(--accent) 55%, #b98d5e);
  color: var(--accent-ink);
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer-big {
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.offer-feature .offer-text { color: #46351f; margin-bottom: 1.8rem; }

.offer-photo {
  grid-column: span 5;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.offer-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-photo-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  padding-top: 5rem;
  background: linear-gradient(to top, rgba(15, 13, 11, 0.92) 30%, rgba(15, 13, 11, 0));
}

.offer-strip {
  grid-column: span 12;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 2.5vw, 2.2rem) clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  align-items: baseline;
  gap: 1rem 3rem;
  flex-wrap: wrap;
}

.offer-strip h3 { margin-bottom: 0; }

.offer-strip .offer-text { color: var(--muted); max-width: none; }

.offer-note {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 880px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-feature, .offer-photo, .offer-strip { grid-column: auto; }
  .offer-photo { min-height: 320px; }
}

/* ---------- Cita ---------- */

.quote-block blockquote {
  max-width: 56rem;
  margin-left: clamp(0px, 8vw, 140px);
}

.quote-block p {
  font-family: "Bodoni Moda", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.25;
  padding-bottom: 0.2em;
}

.quote-block cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- Indicaciones ---------- */

.rules-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.rules-intro {
  grid-column: 1 / 6;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.rules-intro h2 { margin-bottom: 1.2rem; }

.rules-intro p { color: var(--muted); max-width: 34ch; }

.rules-list { grid-column: 6 / 13; counter-reset: rules; }

.rules-list li {
  counter-increment: rules;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.4rem 1.2rem;
  padding-block: clamp(1.2rem, 2vw, 1.6rem);
  border-top: 1px solid var(--line);
}

.rules-list li::before {
  content: counter(rules, decimal-leading-zero);
  font-family: "Bodoni Moda", Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  grid-row: 1 / 3;
  padding-top: 0.15em;
  transition: color 300ms ease;
}

.rules-list h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  transition: transform 300ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .rules-list li:hover::before { color: var(--accent-soft); }
  .rules-list li:hover h3 { transform: translateX(5px); }
}

.rules-list p { grid-column: 2; color: var(--muted); font-size: 1rem; max-width: 46ch; }

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

  .rules-intro { grid-column: 1; position: static; }

  .rules-list { grid-column: 1; }
}

/* ---------- Reserva ---------- */

.booking { background: var(--bg-2); }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.booking-info { grid-column: 1 / 6; }

.booking-lead { color: var(--muted); max-width: 38ch; }

.booking-facts { margin-top: 2.2rem; }

.booking-facts div {
  display: flex;
  gap: 1.5rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--line);
}

.booking-facts dt { min-width: 6.5rem; color: var(--muted); }

.booking-facts dd { flex: 1; min-width: 0; }

.booking-policy {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  margin-bottom: 2.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52ch;
}

.booking-media { border-radius: var(--r-surface); overflow: hidden; }

.booking-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 900ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .booking-media:hover img { transform: scale(1.035); }
}

.booking-form {
  grid-column: 7 / 13;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.field { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }

.field-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }

.field label { font-weight: 400; font-size: 0.98rem; transition: color 200ms ease; }

.field:focus-within label { color: var(--accent-soft); }

.field input,
.field select {
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-input);
  padding: 0.85em 1em;
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field input::placeholder { color: #8d8172; }

.field input:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(210, 168, 120, 0.14);
}

.field.invalid input,
.field.invalid select { border-color: #c46a5a; }

.field-error { font-size: 0.88rem; color: #dfa093; }

.btn-submit { margin-top: 0.4rem; }

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 880px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info, .booking-form { grid-column: auto; }
}

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-logo { height: 150px; width: auto; margin-bottom: 1.2rem; }

.footer-tag { color: var(--muted); margin-top: 0.4rem; }

.footer-col .footer-heading {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
  transition: color 180ms ease, transform 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { color: var(--accent-soft); transform: translateX(4px); }
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Movimiento reducido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .hr,
  .js .hero-media,
  .js .hero-media img {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .js .reveal {
    transition: opacity 300ms ease;
    transform: none;
  }

  .svc-media img { transition: opacity 300ms ease; transform: none; }

  .js .cat-entry .cat-media { clip-path: none; transition: none; }

  .js .cat-entry .cat-copy > * { opacity: 1; transform: none; transition: opacity 300ms ease; }

  .js .cat-entry .cat-name::after { transform: none; transition: none; }

  .btn-solid::after { content: none; }

  .nav-links a::after { transition: none; }

  .cat-media img, .svc-name, .btn, .cat-price, .cat-d, .rules-list h3, .offer,
  .footer-col a, .brand-logo, .booking-media img, .svc-price {
    transition-property: color, background-color, border-color, opacity;
  }
}
