/* =====================================================================
   BARBER STATION — Neo-Brutalismo
   Paleta: #FFFFFF base · #E63946 rojo · #1D3E9C azul · #0A0A0A negro
   ===================================================================== */

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --red:   #e63946;
  --blue:  #1d3e9c;

  --border:    4px solid var(--black);
  --border-lg: 6px solid var(--black);
  --shadow:    6px 6px 0 var(--black);
  --shadow-lg: 10px 10px 0 var(--black);
  --shadow-sm: 4px 4px 0 var(--black);

  --font-title: "Archivo Black", "Arial Black", sans-serif;
  --font-body:  "Inter", "Work Sans", system-ui, sans-serif;
  --font-mono:  "Space Mono", "Courier New", monospace;

  --trans-fast: 0.12s steps(4);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ===================== SCROLL PROGRESS (barber pole) ===================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--white);
  border-bottom: 2px solid var(--black);
  z-index: 1000;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background:
    repeating-linear-gradient(
      45deg,
      var(--red) 0 10px,
      var(--white) 10px 20px,
      var(--blue) 20px 30px
    );
  transition: width 0.05s linear;
}

/* ===================== POLE STRIP (loop animado) ===================== */
.pole-strip {
  height: 18px;
  width: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--red)   0 30px,
      var(--white) 30px 60px,
      var(--blue)  60px 90px
    );
  background-size: 254px 100%;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  animation: pole-spin 1.2s linear infinite;
}
@keyframes pole-spin {
  from { background-position: 0 0; }
  to   { background-position: 254px 0; }
}

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 8px; /* deja ver la barra de progreso */
  z-index: 900;
  margin-top: 10px;
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__img {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.logo__text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}
.logo__dot { color: var(--red); }

.nav { display: flex; gap: 22px; }
.nav__link {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--trans-fast);
}
.nav__link:hover { border-bottom-color: var(--red); }

/* ===================== BOTONES ===================== */
.btn {
  --bg: var(--white);
  --fg: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  background: var(--bg);
  color: var(--fg);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  text-transform: uppercase;
  user-select: none;
}
.btn--red   { --bg: var(--red);   --fg: var(--white); }
.btn--blue  { --bg: var(--blue);  --fg: var(--white); }
.btn--black { --bg: var(--black); --fg: var(--white); }
.btn--white { --bg: var(--white); --fg: var(--black); }
.btn--lg    { padding: 16px 30px; font-size: 1.05rem; box-shadow: var(--shadow); }
.btn--block { width: 100%; display: flex; }

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--black);
}
.btn--lg:hover { box-shadow: 12px 12px 0 var(--black); }
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--black);
}

.header__cta { padding: 10px 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 3px;
  background: var(--black);
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== BADGES / SELLOS ===================== */
.badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 8px 14px;
  background: var(--red);
  color: var(--white);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-fast);
}
.badge:hover { animation: wiggle 0.4s ease-in-out; }
@keyframes wiggle {
  0%,100% { transform: rotate(0); }
  25%     { transform: rotate(-6deg); }
  75%     { transform: rotate(6deg); }
}
.badge--blue   { background: var(--blue); }
.badge--top {
  position: absolute;
  top: -16px; right: -10px;
  background: var(--white);
  color: var(--black);
  transform: rotate(8deg);
}
.badge--rot-left   { transform: rotate(-4deg); }
.badge--rot-right  { transform: rotate(4deg); }

/* ===================== SECTION BASE ===================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px;
}
.section__head { margin-bottom: 48px; }
.section__head--center { text-align: center; }
.section__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section__lead {
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 60ch;
}
.section__head--center .section__lead { margin: 0 auto; }

.hl { padding: 0 6px; }
.hl--red  { background: var(--red);  color: var(--white); box-shadow: 4px 4px 0 var(--black); display: inline-block; }
.hl--blue { background: var(--blue); color: var(--white); box-shadow: 4px 4px 0 var(--black); display: inline-block; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero > .badge { position: absolute; top: 30px; left: 24px; z-index: 3; }

.hero__eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--blue);
}
.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 48ch;
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border: var(--border-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  overflow: hidden;
}
.hero__tag {
  position: absolute;
  bottom: -14px; right: -10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 12px;
  border: var(--border);
}

/* ===================== FOTOS (Unsplash) + tratamiento neo-brutalista ===================== */
.photo-frame {
  position: relative;
  background: var(--white);
  line-height: 0; /* elimina hueco inline debajo de la img */
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* look "duro" coherente con el estilo: más contraste, algo de saturación */
  /* blanco y negro + contraste duro, coherente con el estilo neo-brutalista */
  filter: grayscale(1) contrast(1.1);
  transition: filter var(--trans-fast), transform var(--trans-fast);
}
.card:hover .photo-frame img,
.shot:hover img {
  filter: grayscale(1) contrast(1.2);
}
.hero__frame { aspect-ratio: 5 / 6; }
.historia__media .frame { aspect-ratio: 4 / 3; }

/* Franja barber pole como detalle sobre la foto del equipo */
.card--photo .photo::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 14px,
    var(--white) 14px 28px,
    var(--blue) 28px 42px
  );
  border-bottom: 3px solid var(--black);
  z-index: 2;
}

/* ===================== GRID DE TARJETAS ===================== */
.cards {
  display: grid;
  gap: 26px;
}
.servicios__grid    { grid-template-columns: repeat(3, 1fr); }
.equipo__grid       { grid-template-columns: repeat(3, 1fr); }
.testimonios__grid  { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.card--red  { background: var(--red);  color: var(--white); }
.card--blue { background: var(--blue); color: var(--white); }
.card--white{ background: var(--white); }

.card:hover {
  transform: rotate(-1.5deg) translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--black);
}
.card__icon {
  width: 56px; height: 56px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card__title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.card__desc { font-weight: 600; margin-bottom: 18px; }
.card--red .card__desc, .card--blue .card__desc { color: rgba(255,255,255,0.92); }

.price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.6rem;
  padding: 10px 0;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}

/* Tarjetas de equipo */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .photo {
  position: relative;
  aspect-ratio: 6 / 7;
  background: var(--white);
}
.card__info { padding: 20px; }
.card__info--red  { background: var(--red);  color: var(--white); }
.card__info--blue { background: var(--blue); color: var(--white); }
.card__info--black{ background: var(--black); color: var(--white); }
.card__title--name { margin-bottom: 4px; }
.card__desc--role { font-weight: 700; margin-bottom: 14px; }
.card__desc--role span { font-weight: 500; }
.card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 8px;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

/* ===================== HISTORIA ===================== */
.historia__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.historia__media { position: relative; }
.frame {
  border: var(--border-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  overflow: hidden;
}
.historia__media .badge {
  position: absolute;
  bottom: -18px; right: -12px;
  z-index: 3;
}
.historia__text > p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stat {
  border: var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  padding: 16px;
  text-align: center;
}
.stat--red  { background: var(--red);  color: var(--white); }
.stat--blue { background: var(--blue); color: var(--white); }
.stat__num {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* ===================== GALERÍA ===================== */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shot {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  border: var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter var(--trans-fast), transform var(--trans-fast);
}
.shot:hover {
  transform: rotate(1.5deg) translate(-3px,-3px);
  box-shadow: 10px 10px 0 var(--black);
}
.shot:hover img { filter: grayscale(1) contrast(1.15); }
.shot figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px;
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--black);
}
.shot__mark {
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  border: 3px solid var(--black);
  z-index: 2;
}
.shot__mark--red  { background: var(--red); }
.shot__mark--blue { background: var(--blue); }

/* ===================== HORARIOS / UBICACIÓN ===================== */
.horarios__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.tarifa {
  width: 100%;
  border-collapse: collapse;
  border: var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
  font-family: var(--font-mono);
}
.tarifa th, .tarifa td {
  border: 2px solid var(--black);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
}
.tarifa thead th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-title);
  letter-spacing: 1px;
}
.tarifa tbody tr:nth-child(even) { background: #f3f3f3; }
.tarifa__closed td { color: var(--red); }
.tarifa__note {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 14px;
}
.dot {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 8px;
  border: 2px solid var(--black);
}
.dot--open   { background: #d9ffe0; }
.dot--closed { background: var(--red); color: var(--white); }

.horarios__ubicacion { display: flex; flex-direction: column; gap: 22px; }

/* Mapa neo-brutalista de A Coruña */
.mapa { aspect-ratio: 1 / 1; padding: 0; }
.mapa__inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--white);
}
.mapa__top, .mapa__bot {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 1px;
  text-align: center;
  padding: 14px 8px;
  flex: 0 0 auto;
}
.mapa__bot { background: var(--blue); border-top: 4px solid var(--black); }
.mapa__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
  background: #f3f3f3;
}
.mapa__grid span {
  border: 2px solid var(--black);
  background: #fff;
}
.mapa__grid span:nth-child(2)  { background: var(--red); }
.mapa__grid span:nth-child(5)  { background: var(--blue); }
.mapa__grid span:nth-child(10) { background: var(--red); }
.mapa__grid span:nth-child(11) { background: var(--blue); }
.mapa__grid span:nth-child(15) { background: var(--red); }
/* PIN */
.mapa__pin {
  position: relative;
  background: var(--white) !important;
}
.mapa__pin::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -65%) rotate(-45deg);
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  border: 4px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  z-index: 2;
}
.mapa__pin::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 12px;
  transform: translate(-50%, -95%);
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 50%;
  z-index: 3;
}

/* ===================== TESTIMONIOS ===================== */
.review { display: flex; flex-direction: column; }
.review__stars { font-size: 1.2rem; letter-spacing: 2px; color: #ffb400; margin-bottom: 12px; -webkit-text-stroke: 1px var(--black); }
.card--red .review__stars, .card--blue .review__stars { color: #fff; }
.review__text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  flex: 1;
}
.review__author { display: flex; align-items: center; gap: 12px; }
.review__author strong { display: block; font-family: var(--font-title); font-size: 0.9rem; }
.review__author span { font-size: 0.8rem; font-weight: 600; opacity: 0.85; }
.review__author--oncolor span { color: rgba(255,255,255,0.9); }
.review__avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--white);
  border: 3px solid var(--black);
}

/* ===================== CTA FINAL ===================== */
.cta {
  background: var(--white);
  border-top: var(--border-lg);
  border-bottom: var(--border-lg);
  margin: 40px 0 0;
  padding: 80px 24px;
  position: relative;
}
.cta::before, .cta::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 12px;
  background:
    repeating-linear-gradient(-45deg,
      var(--red) 0 20px, var(--white) 20px 40px, var(--blue) 40px 60px);
  background-size: 170px 100%;
  animation: pole-spin 1.2s linear infinite;
}
.cta::before { top: -12px; }
.cta::after  { bottom: -12px; }
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta__inner > .badge { margin-bottom: 20px; }
.cta__title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.cta__lead { font-size: 1.1rem; font-weight: 600; margin-bottom: 32px; }

.reserva {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  background: var(--white);
  border: var(--border-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.reserva .field { display: flex; flex-direction: column; gap: 6px; }
.reserva .field:nth-child(3) { grid-column: 1 / -1; }
.reserva .btn { grid-column: 1 / -1; }
.reserva label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}
.reserva input, .reserva select {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 14px;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  color: var(--black);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.reserva input:focus, .reserva select:focus {
  outline: none;
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 var(--blue);
}
.cta__fineprint {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--white);
  border-top: var(--border-lg);
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand { background: var(--black); padding: 28px; border: var(--border); box-shadow: var(--shadow); }
.logo--footer .logo__text { color: var(--white); font-size: 1.4rem; }
.logo--footer .logo__img {
  width: 60px; height: 60px;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 4px 4px 0 var(--red);
}
.footer__brand p { color: rgba(255,255,255,0.85); margin-top: 12px; font-weight: 600; }

.footer__col h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--black);
}
.footer__col a {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color var(--trans-fast), transform var(--trans-fast);
}
.footer__col a:hover { color: var(--red); transform: translateX(4px); }

.footer__socials { display: flex; gap: 12px; }
.social {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.social:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--black); }
.social--blue { background: var(--blue); }
.social--red  { background: var(--red); }
.social--blue svg path, .social--blue svg circle, .social--blue svg rect { stroke: var(--white); fill: none; }
.social--blue svg path[fill] { fill: var(--white); }

.pole-strip--footer { border: 0; border-top: var(--border); border-bottom: var(--border); }

.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 460px; margin: 0 auto; }
  .historia__layout,
  .horarios__layout { grid-template-columns: 1fr; gap: 40px; }
  .servicios__grid,
  .equipo__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow);
    padding: 16px;
    gap: 4px;
    z-index: 950;
  }
  .nav.open .nav__link {
    padding: 12px 8px;
    border-bottom: 2px solid var(--black);
  }
  .nav.open .nav__link:last-child { border-bottom: none; }

  .section { padding: 56px 20px; }
  .servicios__grid,
  .equipo__grid,
  .galeria__grid,
  .testimonios__grid { grid-template-columns: 1fr; }
  .reserva { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .hero > .badge { position: static; display: inline-block; margin-bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
