/* ══════════════════════════════════════════
   Posada Bendición — Riviera Maya · Design System
   ══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --sand:     #f5efe6;
  --sand-d:   #e8ddd0;
  --teal:     #1a6b6b;
  --teal-d:   #124f4f;
  --teal-l:   #2a8a8a;
  --gold:     #b89b6e;
  --gold-l:   #d4b88a;
  --ink:      #1c1a18;
  --ink-60:   rgba(28, 26, 24, 0.6);
  --white:    #ffffff;
  --white-80: rgba(255,255,255,0.8);

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Jost', system-ui, sans-serif;

  --radius:    4px;
  --trans:     0.3s ease;
  --shadow:    0 8px 40px rgba(0,0,0,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-sans); background: var(--white); color: var(--ink); line-height: 1.6; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
em { font-style: italic; color: var(--teal); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--gold-l); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.btn--primary  { background: var(--teal);    color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-d); border-color: var(--teal-d); }
.btn--outline  { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: var(--white); }
.btn--ghost    { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,0.25); }
.btn--text     { padding: 0; border: none; color: var(--teal); font-size: 0.85rem; letter-spacing: 0.08em; }
.btn--text:hover { color: var(--teal-d); }
.btn--sm       { padding: 0.6rem 1.25rem; font-size: 0.75rem; }


/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 72px;
  width: auto;
  transition: opacity var(--trans);
}
.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-80);
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--ink-60); }
.nav.scrolled .nav__links a:hover { color: var(--teal); }
.nav.scrolled .btn--outline { color: var(--teal); border-color: var(--teal); }
.nav .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.6); }
.nav__burger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }
.nav.scrolled .nav__burger { color: var(--ink); }


/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 800px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 1rem;
}
.hero__title {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--white-80);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-80);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll span {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--white-80));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}


/* ══════════════════════════════════════════
   BOOKING BAR
   ══════════════════════════════════════════ */
.booking {
  background: var(--teal);
  padding: 0 3rem 2rem;
}
.booking__form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.booking__field {
  flex: 1;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.booking__field label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.booking__field input,
.booking__field select {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  width: 100%;
}
.booking__field input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.7; }
.booking__field select option { background: var(--teal-d); color: var(--white); }
.booking__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.booking .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
  white-space: nowrap;
}
.booking .btn--primary:hover { background: var(--gold-l); border-color: var(--gold-l); color: var(--ink); }
.booking-results {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--white);
}
.booking-results:empty { display: none; }
.booking-results__status {
  padding: 1rem 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.booking-results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
}
.booking-option {
  background: var(--white);
  color: var(--ink);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
}
.booking-option__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.booking-option h3 { font-size: 1.45rem; }
.booking-option p {
  color: var(--ink-60);
  font-size: 0.9rem;
}
.booking-option__price {
  text-align: right;
  white-space: nowrap;
}
.booking-option__price strong {
  display: block;
  font-size: 1.1rem;
  color: var(--teal);
  font-weight: 500;
}
.booking-option__price span {
  font-size: 0.75rem;
  color: var(--ink-60);
}
.booking-option__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.booking-option__meta span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 2px;
  padding: 0.25rem 0.55rem;
}
.booking-option__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.booking-option__form input {
  width: 100%;
  border: 1px solid var(--sand-d);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--ink);
  outline-color: var(--teal);
}
.booking-option__form .btn {
  grid-column: 1 / -1;
  justify-content: center;
  margin: 0;
}
.booking-option__message {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  color: var(--teal);
  font-size: 0.85rem;
}
.booking-option__message.error { color: #a33a2b; }


/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about__img-wrap {
  position: relative;
  overflow: hidden;
}
.about__img-wrap img { height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-l);
}
.about__badge-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.about__text {
  background: var(--sand);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.about__text p { color: var(--ink-60); font-size: 0.95rem; max-width: 440px; }


/* ══════════════════════════════════════════
   ROOMS
   ══════════════════════════════════════════ */
.rooms {
  padding: 7rem 3rem;
  background: var(--white);
}
.rooms__header {
  text-align: center;
  margin-bottom: 4rem;
}
.rooms__header .rooms__sub {
  font-size: 0.95rem;
  color: var(--ink-60);
  margin-top: 0.75rem;
}
.rooms__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.rooms__grid--secondary {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}

.room-card {
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform var(--trans), box-shadow var(--trans);
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.room-card__img {
  position: relative;
  overflow: hidden;
}
.room-card--featured .room-card__img { height: 360px; }
.room-card:not(.room-card--featured) .room-card__img { height: 220px; }
.room-card__img img { transition: transform 0.5s ease; }
.room-card:hover .room-card__img img { transform: scale(1.04); }
.room-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.room-card__tag--gold { background: var(--gold); }
.room-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--white);
}
.room-card__body p { font-size: 0.88rem; color: var(--ink-60); }
.room-card__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.room-card__meta span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--sand-d);
  border-radius: 2px;
}
.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.room-card__price { font-size: 0.8rem; color: var(--ink-60); }
.room-card__price strong { font-size: 1rem; color: var(--ink); font-weight: 500; }
.room-card__avail {
  font-size: 0.72rem;
  color: var(--ink-60);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── Room Types (2-type layout) ── */
.room-types {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.room-type {
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: var(--white);
  transition: transform var(--trans), box-shadow var(--trans);
}
.room-type:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.room-type__main {
  height: 380px;
  overflow: hidden;
}
.room-type__main img { transition: transform 0.5s ease; }
.room-type:hover .room-type__main img { transform: scale(1.03); }
.room-type__thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  background: var(--sand-d);
}
.room-type__thumb {
  border: none;
  padding: 0;
  cursor: pointer;
  height: 56px;
  overflow: hidden;
  opacity: 0.65;
  transition: opacity var(--trans);
}
.room-type__thumb img { height: 100%; object-fit: cover; }
.room-type__thumb:hover,
.room-type__thumb.active { opacity: 1; }
.room-type__thumb.active { outline: 2px solid var(--teal); outline-offset: -2px; }
.room-type__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.room-type__body p { font-size: 0.9rem; color: var(--ink-60); }
.room-type__amenities {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.room-type__amenities span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--teal);
  border-radius: 2px;
}
.room-type__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}


/* ══════════════════════════════════════════
   EXPERIENCES
   ══════════════════════════════════════════ */
.experiences {
  position: relative;
  padding: 8rem 3rem;
  overflow: hidden;
}
.experiences__bg {
  position: absolute;
  inset: 0;
}
.experiences__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,50,50,0.9) 0%, rgba(26,107,107,0.75) 100%);
}
.experiences__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}
.experiences__content h2 { color: var(--white); margin-bottom: 4rem; }
.exp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.exp__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem 1.75rem;
  transition: background var(--trans), transform var(--trans);
}
.exp__card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.exp__icon {
  font-size: 1.8rem;
  color: var(--gold-l);
  margin-bottom: 1rem;
}
.exp__card h4 { color: var(--white); margin-bottom: 0.6rem; font-weight: 400; }
.exp__card p  { font-size: 0.875rem; color: rgba(255,255,255,0.7); }


/* ══════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════ */
.gallery {
  padding: 7rem 3rem;
  background: var(--sand);
}
.gallery__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.gallery__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
.gallery__item { overflow: hidden; border-radius: var(--radius); }
.gallery__item img { transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }


/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials {
  padding: 7rem 3rem;
  background: var(--white);
  text-align: center;
}
.testimonials .eyebrow { margin-bottom: 3rem; }
.testimonials__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi {
  background: var(--sand);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  text-align: left;
  border-left: 3px solid var(--gold);
}
.testi p {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.testi footer {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}


/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.contact__map { background: var(--sand-d); overflow: hidden; }
.contact__map iframe { display: block; min-height: 500px; }
.contact__info {
  padding: 6rem 5rem;
  background: var(--teal-d);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.contact__info h2 { color: var(--white); }
.contact__list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__list li { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact__icon { color: var(--gold-l); font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0; }
.contact__list strong { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.25rem; font-weight: 400; }
.contact__list p { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.contact__social {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.contact__social a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-l);
  transition: color var(--trans);
}
.contact__social a:hover { color: var(--white); }


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 3rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 0.25rem;
}
.footer__brand p:last-child { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: flex-end;
}
.footer__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}
.footer__nav a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}


/* ══════════════════════════════════════════
   NAV SCROLL EFFECT (JS-free fallback via scroll-driven)
   ══════════════════════════════════════════ */
@supports (animation-timeline: scroll()) {
  .nav {
    animation: navScroll linear both;
    animation-timeline: scroll();
    animation-range: 0px 80px;
  }
  @keyframes navScroll {
    to {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      padding-top: 1rem;
      padding-bottom: 1rem;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
  }
  .nav__logo-img {
    animation: logoShadow linear both;
    animation-timeline: scroll();
    animation-range: 0px 80px;
  }
  @keyframes logoShadow {
    from { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.45)); }
    to   { filter: none; }
  }
  .nav__links a, .nav__burger {
    animation: navTextScroll linear both;
    animation-timeline: scroll();
    animation-range: 0px 80px;
  }
  @keyframes navTextScroll {
    to { color: #1a6b6b; }
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rooms__grid { grid-template-columns: 1fr 1fr; }
  .rooms__grid--secondary { grid-template-columns: 1fr 1fr; }
  .room-card--featured { grid-column: span 2; }
  .room-card--featured .room-card__img { height: 300px; }
  .room-types { grid-template-columns: 1fr; }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav__links, .nav > .btn { display: none; }
  .nav__burger { display: block; }

  /* Menú móvil abierto */
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    padding: 1rem 0 1.5rem;
  }
  .nav--open .nav__links a {
    color: var(--ink);
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--sand-d);
  }
  .nav--open .nav__links a:last-child { border-bottom: none; }
  .nav--open .nav__links a:hover { color: var(--teal); background: var(--sand); }
  .nav--open .nav > .btn { display: none; }

  .hero__ctas { flex-direction: column; align-items: center; }

  .booking__form {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
  }
  .booking__divider { display: none; }
  .booking__field { padding: 0.75rem 1.5rem; }
  .booking .btn--primary { margin: 0 1.5rem 1rem; }
  .booking-results__grid { grid-template-columns: 1fr; }

  .about { grid-template-columns: 1fr; }
  .about__img-wrap { height: 320px; }
  .about__badge { right: 1.5rem; }
  .about__text { padding: 3.5rem 2rem; }

  .rooms { padding: 5rem 1.5rem; }
  .rooms__grid { grid-template-columns: 1fr; }
  .rooms__grid--secondary { grid-template-columns: 1fr; }
  .room-card--featured { grid-column: span 1; }
  .room-types { grid-template-columns: 1fr; gap: 2rem; }
  .room-type__thumbs { grid-template-columns: repeat(7, 1fr); }
  .room-type__main { height: 260px; }

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

  .gallery { padding: 5rem 1.5rem; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall, .gallery__item--wide { grid-row: auto; grid-column: auto; }

  .testimonials { padding: 5rem 1.5rem; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .contact { grid-template-columns: 1fr; }
  .contact__map { height: 280px; }
  .contact__info { padding: 3.5rem 2rem; }

  .footer__top { flex-direction: column; }
  .footer__nav { justify-content: flex-start; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .exp__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .booking-option__top,
  .booking-option__form {
    grid-template-columns: 1fr;
  }
  .booking-option__price { text-align: left; }
}
