:root {
  --sea: #0b6e7a;
  --sea-dark: #085560;
  --sea-light: #e8f6f8;
  --sand: #f7f1e8;
  --sand-dark: #e8dcc8;
  --ink: #1a2b2e;
  --muted: #5c6d70;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 60, 70, 0.12);
  --radius: 18px;
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

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

a {
  color: var(--sea);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.section {
  padding: 5rem 0;
}

.section-label {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sea);
}

.section-title,
.about h2,
.contacts h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}

.header.scrolled {
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sea), #1a9aaa);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.logo__text {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
}

.nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
}

.nav a:hover {
  color: var(--sea);
  opacity: 1;
}

.header__cta {
  margin-left: 0.5rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--sea);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--sea);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.btn:hover {
  background: var(--sea-dark);
  border-color: var(--sea-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 43, 46, 0.2);
}

.btn--ghost-dark:hover {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand-dark);
}

.btn--outline {
  background: transparent;
  color: var(--sea);
  margin-top: 2rem;
}

.btn--outline:hover {
  background: var(--sea-light);
  color: var(--sea-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 30, 36, 0.35) 0%, rgba(8, 30, 36, 0.55) 45%, rgba(8, 30, 36, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 40, 48, 0.45), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 4.5rem;
}

.hero__eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

.hero__lead {
  max-width: 560px;
  font-size: 1.08rem;
  opacity: 0.92;
  margin: 0 0 1.8rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* About */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about__text p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about__text strong {
  color: var(--ink);
}

.note {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--sand);
  border-left: 4px solid var(--sea);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
}

.about__photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  min-height: 420px;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about__img--main {
  grid-row: 1 / span 2;
  min-height: 420px;
}

.about__img--side {
  min-height: 200px;
}

/* Amenities */
.amenities {
  background: linear-gradient(180deg, var(--sea-light), #fbfaf7);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity {
  background: white;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(11, 110, 122, 0.06);
  transition: transform 0.2s;
}

.amenity:hover {
  transform: translateY(-3px);
}

.amenity__icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.amenity h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.amenity p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Rooms */
.rooms__hint {
  margin: -0.6rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.room-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.room-card__media {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.55rem 0.55rem 0;
}

.room-card__main {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #dfe8ea;
}

.room-card__main img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.room-card__main:hover img {
  transform: scale(1.04);
}

.room-card__count {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 40, 48, 0.72);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}

.room-card__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.room-card__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #e8eef0;
  aspect-ratio: 1.2;
}

.room-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card__thumb:hover,
.room-card__thumb.is-active {
  border-color: var(--sea);
}

.room-card__body {
  padding: 1.05rem 1.2rem 1.35rem;
  flex: 1;
}

.room-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.room-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  align-items: center;
  margin-top: 0.85rem;
}

.room-price {
  font-weight: 700;
  color: var(--sea-dark);
  font-size: 1.02rem;
  width: 100%;
  line-height: 1.35;
}

.room-price small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.82rem;
}

.room-price-note {
  width: 100%;
  font-size: 0.84rem;
  color: var(--muted);
}

.room-availability {
  font-size: 0.86rem;
  color: var(--muted);
  background: var(--sea-light);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
}

.room-availability.is-empty {
  background: #fdecec;
  color: #b42318;
}

.room-card__book {
  margin-top: 0.95rem;
  display: inline-flex;
}

/* Availability calendar */
.availability {
  background: #fff;
}

.avail-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1rem;
}

.avail-toolbar label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.avail-toolbar select {
  min-width: 240px;
  border: 1px solid #d7e3e6;
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font: inherit;
  background: #fbfcfc;
}

.avail-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avail-nav strong {
  min-width: 10rem;
  text-align: center;
  text-transform: capitalize;
}

.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}

.cal__head {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.35rem 0;
}

.cal__day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 12px;
  background: #f1f5f6;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cal__day:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 60, 70, 0.12);
}

.cal__day:disabled {
  cursor: default;
  opacity: 0.55;
}

.cal__day.is-empty {
  background: transparent;
  box-shadow: none;
}

.cal__day.is-free {
  background: #dcfce7;
  color: #166534;
}

.cal__day.is-partial {
  background: #fef3c7;
  color: #92400e;
}

.cal__day.is-busy {
  background: #fee2e2;
  color: #991b1b;
}

.cal__day.is-past {
  background: #eef1f2;
  color: #94a3b8;
}

.cal__day.is-selected,
.cal__day.is-in-range {
  outline: 2px solid var(--sea);
  outline-offset: 1px;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.cal-legend .dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  margin-right: 0.35rem;
  vertical-align: -1px;
}

.dot--free { background: #86efac; }
.dot--partial { background: #fcd34d; }
.dot--busy { background: #fca5a5; }
.dot--past { background: #cbd5e1; }

/* Booking form */
.booking {
  background: linear-gradient(180deg, #f3fafb 0%, #fbfaf7 100%);
}

.booking__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.booking__lead {
  color: var(--muted);
  max-width: 34ch;
}

.booking__notes {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.booking__notes li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.booking__notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: 700;
}

.booking__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.booking-form {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.booking-compare {
  border: 1px solid #d7e3e6;
  border-radius: 14px;
  padding: 0.85rem;
  background: #f8fbfb;
}

.booking-compare__title {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--sea-dark);
  font-size: 0.95rem;
}

.booking-compare__list {
  display: grid;
  gap: 0.5rem;
}

.booking-compare__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 1px solid #d7e3e6;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: white;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}

.booking-compare__item:hover,
.booking-compare__item.is-active {
  border-color: var(--sea);
  box-shadow: 0 0 0 2px rgba(11, 110, 122, 0.12);
}

.booking-compare__item.is-busy {
  opacity: 0.72;
  cursor: not-allowed;
}

.booking-compare__item strong {
  font-size: 0.95rem;
}

.booking-compare__item span {
  font-size: 0.84rem;
  color: var(--muted);
}

.booking-compare__price {
  font-weight: 700;
  color: var(--sea-dark);
  white-space: nowrap;
}

.booking-compare__badge {
  justify-self: end;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.booking-compare__badge.is-ok {
  background: #dcfce7;
  color: #166534;
}

.booking-compare__badge.is-busy {
  background: #fee2e2;
  color: #991b1b;
}

.booking-form__alt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-form__alt a {
  font-weight: 600;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #d7e3e6;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-weight: 500;
  background: #fbfcfc;
  color: var(--ink);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(11, 110, 122, 0.22);
  border-color: var(--sea);
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.booking-quote {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--sea-light);
  color: var(--ink);
}

.booking-quote strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--sea-dark);
}

.booking-quote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-form__status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.booking-form__status.is-ok {
  color: #067647;
}

.booking-form__status.is-error {
  color: #b42318;
}

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item.is-hidden {
  display: none;
}

/* Reviews */
.reviews {
  background: var(--white);
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--sea-light);
  border-radius: var(--radius);
}

.score-big {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 600;
  color: var(--sea);
  line-height: 1;
}

.stars {
  color: #e0a800;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}

.reviews__score p {
  margin: 0 0 0.3rem;
  color: var(--muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.review-card {
  background: #fbfaf7;
  border: 1px solid rgba(11, 110, 122, 0.08);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.review-card__top span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card p {
  margin: 0;
  color: #334447;
}

/* Contacts */
.contacts {
  background:
    radial-gradient(circle at top right, rgba(11, 110, 122, 0.08), transparent 40%),
    var(--sand);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contacts__lead {
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 1.8rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.contact-list__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.contact-list a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--sea);
}

.contacts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  background: white;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Footer */
.footer {
  background: #0d2f34;
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 0;
}

.footer a {
  color: white;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__copy {
  margin: 0;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  text-decoration: none;
  transition: transform 0.15s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  text-decoration: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 18, 22, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__close {
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
}

.lightbox__nav--prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Responsive */
@media (max-width: 960px) {
  .about__grid,
  .contacts__grid,
  .rooms__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .avail-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .avail-toolbar select {
    min-width: 0;
    width: 100%;
  }

  .cal {
    gap: 0.3rem;
  }

  .cal__day {
    border-radius: 10px;
    font-size: 0.85rem;
  }

  .amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__photos {
    min-height: auto;
  }

  .about__img--main {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .burger {
    display: flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 72px 1rem auto;
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin: 0;
  }

  .nav.open {
    display: flex;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero__content {
    padding-top: 7rem;
  }
}

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

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
