/* Pazos a la Salud — green wellness */
:root {
  --sky: #95d5b2;
  --sky-deep: #52b788;
  --blue: #2d6a4f;
  --navy: #1b4332;
  --aqua: #74c69d;
  --aqua-soft: #d8f3e7;
  --ice: #f4fbf7;
  --white: #ffffff;
  --text: #1b4332;
  --muted: #52796f;
  --border: rgba(27, 67, 50, 0.12);
  --wa: #25d366;
  --wa-dark: #1ebe57;
  --fb: #1877f2;
  --fb-dark: #0f64d8;
  --shadow-sm: 0 6px 20px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 16px 40px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 28px 60px rgba(27, 67, 50, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 86px;
  --font: "Lato", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--sky-deep); }

button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--ice), var(--white));
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__ring {
  width: 52px; height: 52px;
  border: 3px solid var(--aqua-soft);
  border-top-color: var(--sky-deep);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
}

.section--ice {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(126, 200, 227, 0.28), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(64, 224, 208, 0.18), transparent 55%),
    var(--ice);
}

.section--white { background: var(--white); }

.section__eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(64, 224, 208, 0.22);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section__text {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__head { margin-bottom: 2.25rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(168px, 46vw);
  max-height: calc(var(--header-h) - 12px);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.06em;
  overflow: hidden;
}
.brand img {
  display: block;
  width: auto;
  height: calc(var(--header-h) - 18px);
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex; align-items: center; gap: 0.35rem;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
}
.nav a:hover { background: var(--ice); color: var(--navy); }
.nav-cta-mobile { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: 0; cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--sky-deep), var(--blue));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(31, 111, 139, 0.28);
}
.btn--primary:hover { color: var(--white); }
.btn--ghost {
  background: rgba(255,255,255,0.7);
  color: var(--navy);
  border: 1px solid rgba(82, 183, 136, 0.35);
}
.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}
.btn--wa:hover { background: var(--wa-dark); color: #fff; }
.btn--full { width: 100%; }

.header__cta { white-space: nowrap; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--navy);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(14,77,108,0.78) 0%, rgba(31,111,139,0.55) 45%, rgba(116,198,157,0.35) 100%),
    var(--hero-image, url("/images/hero.jpg")) center / cover no-repeat;
  color: var(--white);
}
.hero__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3.5rem, 7vw, 5rem);
}
.hero__eyebrow {
  margin: 0 0 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--aqua-soft);
}
.hero__title {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 6.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.hero__subtitle {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}
.hero__copy {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.9);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 72px; color: var(--white);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.stat-card__value {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-card__label {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.service-card__image {
  width: calc(100% + 3.2rem);
  margin: -1.6rem -1.6rem 1rem;
  height: 176px;
  object-fit: cover;
  border-radius: 16px 16px 12px 12px;
  display: block;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(82, 183, 136, 0.45);
}
.service-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--sky), var(--aqua));
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  color: var(--navy);
}
.service-card p { margin: 0; color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.gallery-card figcaption {
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.service-card__price {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--ice);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Progress / info */
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.highlights {
  list-style: none; margin: 1.4rem 0 0; padding: 0;
  display: grid; gap: 0.7rem;
}
.highlights li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-weight: 700; color: var(--text);
}
.highlights li::before {
  content: "";
  width: 12px; height: 12px; margin-top: 0.4rem; flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-deep), var(--aqua));
}
.progress-list { display: grid; gap: 1.1rem; }
.progress-item__top {
  display: flex; justify-content: space-between; gap: 1rem;
  font-weight: 700; color: var(--navy); margin-bottom: 0.4rem;
}
.progress-bar {
  height: 10px; border-radius: 999px; background: rgba(149,213,178,0.35); overflow: hidden;
}
.progress-bar__fill {
  height: 100%; width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky-deep), var(--aqua));
  transition: width 1.2s var(--ease);
}

/* Book */
.book {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(14,77,108,0.95), rgba(31,111,139,0.9) 50%, rgba(116,198,157,0.55)),
    var(--white);
  color: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.book__cover {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  max-width: 320px;
  margin-inline: auto;
}
.book__badge {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(240, 199, 94, 0.95);
  color: #3a2a00;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.book h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.15;
}
.book__subtitle { margin: 0.55rem 0 0; color: var(--aqua-soft); font-weight: 700; }
.book p { margin: 1rem 0 0; color: rgba(255,255,255,0.9); }
.book__price {
  margin-top: 1.2rem;
  font-size: 2rem;
  font-weight: 900;
}
.book__price span {
  margin-left: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--aqua-soft);
}

/* Consultoría */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}
.plan-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.3rem;
}
.plan-card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}
.consultoria-lead {
  max-width: 46rem;
}
.consultoria-lead strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

/* Booking */
.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}
.booking__aside {
  background:
    radial-gradient(circle at 18% 18%, rgba(116,198,157,0.42), transparent 42%),
    radial-gradient(circle at 90% 80%, rgba(149,213,178,0.28), transparent 45%),
    linear-gradient(165deg, #1b4332 0%, #2d6a4f 55%, #40916c 100%);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(1.6rem, 3.2vw, 2.15rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  min-height: 100%;
  box-shadow: 0 22px 50px rgba(27, 67, 50, 0.22);
}
.booking__kicker {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-soft);
}
.booking__aside h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.booking__aside > div > p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-size: 0.98rem;
}
.booking__steps {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
}
.booking__steps li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
}
.booking__steps li::before {
  content: counter(step);
  counter-increment: step;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  flex: 0 0 auto;
}
.booking__cost-box {
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}
.booking__cost-box span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 800;
}
.booking__cost-box strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.65rem, 3.2vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.booking__cost-box small {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
  line-height: 1.35;
}
.booking-form {
  background: #fff;
  border: 1px solid rgba(82, 183, 136, 0.18);
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 18px 44px rgba(27, 67, 50, 0.1);
  display: grid;
  gap: 1.15rem;
}
.booking-form__head {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(82, 183, 136, 0.14);
  margin-bottom: 0.1rem;
}
.booking-form__head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.booking-form__head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.field {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}
.field__label {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 56px;
  border: 1.5px solid #d0e4d8;
  border-radius: 16px;
  padding: 0.95rem 1.15rem;
  background: #f7fbfd;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.3;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.booking-form select {
  background-color: #f7fbfd;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}
.booking-form input::placeholder { color: #7fa090; }
.booking-form input:hover,
.booking-form select:hover {
  border-color: #8ec4a8;
  background-color: #fff;
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 5px rgba(82, 183, 136, 0.16);
  background-color: #fff;
}
.booking-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(149,213,178,0.2), rgba(116,198,157,0.14));
  border: 1px solid rgba(82, 183, 136, 0.22);
}
.booking-summary span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.booking-summary strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 700;
}
.booking-summary__price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}
.booking-submit {
  min-height: 58px;
  font-size: 1.06rem;
  border-radius: 16px;
}
.booking-submit svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.booking-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  color: var(--muted);
}
.form-status.is-error { color: #b42318; }
.form-status.is-ok { color: var(--wa-dark); }

/* Map */
.map-frame {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--ice);
}
.map-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  padding: 2.4rem 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  animation: waPulse 1.8s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
.wa-float:hover { color: #fff; transform: scale(1.05); }
.wa-float--fb {
  background: var(--fb);
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.42);
  animation-name: fbPulse;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 12px 28px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 12px 28px rgba(37, 211, 102, 0.35); }
}
@keyframes fbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.5), 0 12px 28px rgba(24, 119, 242, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(24, 119, 242, 0), 0 12px 28px rgba(24, 119, 242, 0.35); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Responsive */
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .info-grid,
  .book,
  .booking,
  .plans { grid-template-columns: 1fr; }
  .book__cover { max-width: 260px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.9rem 1rem; }
  .nav-cta-mobile { display: list-item; }
  .nav-cta-mobile a { text-align: center; margin-top: 0.35rem; }
}


@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card img { height: 220px; }
  .service-card__image {
    width: calc(100% + 3.2rem);
    height: 148px;
  }
  .form-row { grid-template-columns: 1fr; }
  .booking-form input,
  .booking-form select {
    min-height: 54px;
    font-size: 16px;
  }
  .booking-summary {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; margin-top: -1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}
