/* Luna Azul Hotel */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --primary: #E49951;
  --primary-hover: #CD8948;
  --text: #1A416C;
  --text-light: #838A8D;
  --accent: #1A416C;
  --border: #E0DFD8;
  --bg: #FFFFFF;
  --bg-light: #F2F2EC;
  --overlay: rgba(26, 65, 108, 0.45);
  --google-star: #FBBC04;
  --google-star-empty: #DADCE0;
  --container: 1290px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --header-h: 72px;
  --section-pad: clamp(60px, 10vw, 150px);
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 2px rgba(60, 64, 67, 0.15), 0 1px 3px rgba(60, 64, 67, 0.1);
  --shadow-md: 0 1px 3px rgba(60, 64, 67, 0.2), 0 4px 8px rgba(60, 64, 67, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

.container {
  width: min(100% - 60px, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.header-left { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 500;
}
.header-phone svg { width: 16px; height: 16px; fill: var(--text); }
.site-logo img { height: 52px; width: auto; }

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}
.main-nav a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-nav a.active { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn--sm { padding: 9px 20px; font-size: 11px; letter-spacing: 1.5px; }
.btn--block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(950px, 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--accent) center/cover no-repeat;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: calc(var(--header-h) + 40px) 30px 80px;
}
.hero__content p {
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.5;
  margin: 0 0 1.5rem;
  font-weight: 300;
}
.hero__content h4 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  margin: 0;
  letter-spacing: -1px;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--accent) center/cover no-repeat;
  padding-bottom: 130px;
}
.page-hero--compact {
  min-height: 280px;
  padding-bottom: 3rem;
  align-items: center;
}
.page-hero--compact h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -1px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 65, 108, 0.55);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  margin: 0;
  letter-spacing: -2px;
  line-height: 1;
}

/* Sections */
.section { padding: var(--section-pad) 0; }
.section--light { background: var(--bg-light); }
.section--reviews { background: #f8f9fa; }

.section-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 74px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 2rem;
  color: var(--text);
}
.section-intro {
  font-size: 22px;
  line-height: 1.55;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-intro b { font-weight: 600; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header--compact { margin-bottom: 2rem; }
.section-header--compact .section-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 0.75rem; }
.section-header--compact .section-intro { font-size: 17px; margin-bottom: 0; max-width: 640px; }
.text-center { text-align: center; }

.section--rooms-list {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.room-card--list {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.room-card--list:hover {
  border-color: rgba(228, 153, 81, 0.45);
  box-shadow: var(--shadow-md);
}
.room-card--list .room-card__img {
  aspect-ratio: 4 / 3;
  min-height: 160px;
}
.room-card--list .room-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 1.25rem;
}
.room-card--list h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}
.room-card--list .room-card__meta {
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}
.room-card--list .room-card__meta span {
  padding: 0.2rem 0.55rem;
  border: 0;
  background: var(--bg-light);
  border-radius: 999px;
  font-size: 12px;
}
.room-card--list .room-card__price {
  bottom: 10px;
  left: 10px;
  padding: 6px 10px;
}
.room-card--list .room-card__price strong { font-size: 18px; }
.room-card--list .btn { margin-top: auto; align-self: flex-start; min-width: 140px; }
.room-card--list .room-card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* Carousel (shared) */
.carousel { position: relative; overflow: hidden; }
.carousel__track {
  display: flex;
  gap: var(--carousel-gap, 30px);
  transition: transform 0.5s ease;
  will-change: transform;
}
.carousel__slide { flex: 0 0 min(100%, 900px); }
.carousel__slide--review { flex: 0 0 min(100%, 320px); }
.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel__nav--overlay {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
}
.carousel__nav--overlay .carousel__btn { pointer-events: auto; }
.carousel__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.carousel__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.carousel__btn svg { width: 20px; height: 20px; fill: currentColor; }

/* Attractions */
.attraction-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  overflow: hidden;
  min-height: 400px;
}
.attraction-card__img { overflow: hidden; }
.attraction-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.attraction-card:hover .attraction-card__img img { transform: scale(1.05); }
.attraction-card__body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.attraction-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 1rem;
}
.attraction-card p { color: var(--text-light); margin: 0; line-height: 1.6; }

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.amenity-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.amenity-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.amenity-card:hover .amenity-card__bg { transform: scale(1.08); }
.amenity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,65,108,0.85) 0%, rgba(26,65,108,0.2) 60%);
}
.amenity-card__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: #fff;
}
.amenity-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.amenity-card h3 { font-size: 18px; font-weight: 500; margin: 0 0 0.75rem; }
.amenity-card p { font-size: 14px; margin: 0; opacity: 0.9; line-height: 1.5; }

/* Rooms */
.rooms-scroll {
  overflow: hidden;
  margin-right: calc(-1 * max(0px, (100vw - var(--container)) / 2 - 30px));
}
.rooms-track {
  display: flex;
  gap: 38px;
  animation: rooms-scroll 30s linear infinite;
}
.rooms-scroll:hover .rooms-track { animation-play-state: paused; }
@keyframes rooms-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 19px)); }
}
.room-card { flex: 0 0 340px; background: #fff; }
.room-card__img { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.room-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card__img img { transform: scale(1.05); }
.room-card__price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 16px;
  font-size: 14px;
}
.room-card__price label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}
.room-card__price strong { font-size: 22px; color: var(--primary); }
.room-card__body { padding: 1.5rem 0; }
.room-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 1rem;
}
.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 13px;
  color: var(--text-light);
}
.room-card__meta span {
  padding-right: 0.75rem;
  border-right: 1px solid var(--border);
}
.room-card__meta span:last-child { border: 0; }

/* Room detail */
.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.room-detail--compact {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}
.room-detail--compact .room-detail__gallery {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.room-detail--compact .room-detail__gallery img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.room-detail--compact .room-detail__info h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 0.5rem;
}
.room-detail--compact .room-detail__price {
  font-size: 26px;
  margin-bottom: 1rem;
}
.room-detail--compact .room-detail__specs {
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0;
  border: 0;
}
.room-detail--compact .room-detail__specs div {
  text-align: left;
  padding: 0.45rem 0.85rem;
  background: var(--bg-light);
  border-radius: 999px;
}
.room-detail--compact .room-detail__specs strong {
  display: inline;
  font-size: 14px;
  margin-right: 0.35rem;
}
.room-detail--compact .room-detail__specs span {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.room-detail--compact .room-detail__desc {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.room-detail__gallery img { width: 100%; border-radius: 2px; }
.room-detail__info h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  margin: 0 0 1rem;
}
.room-detail__price { font-size: 32px; color: var(--primary); margin-bottom: 2rem; }
.room-detail__price small { font-size: 14px; color: var(--text-light); text-transform: uppercase; }
.room-detail__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-block: 1px solid var(--border);
}
.room-detail__specs div { text-align: center; }
.room-detail__specs strong { display: block; font-size: 20px; color: var(--accent); }
.room-detail__specs span {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.room-detail__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.room-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.room-card__body .btn { margin-top: 1rem; }

/* Google reviews */
.google-stars { color: var(--google-star); letter-spacing: 1px; line-height: 1; }
.google-stars--lg { font-size: 22px; }
.google-stars .star-empty { color: var(--google-star-empty); }
.g-review .google-stars { font-size: 14px; margin-bottom: 0.75rem; display: block; }

.google-reviews {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: stretch;
}

.google-reviews__summary {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.google-reviews__label {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.google-reviews__count {
  margin: 0;
  font-size: 14px;
  color: #5f6368;
  line-height: 1.4;
}

.google-reviews__brand {
  margin-top: auto;
  padding-top: 1rem;
  opacity: 0.9;
}
.google-reviews__brand:hover { opacity: 1; }

.google-reviews__slider {
  --carousel-gap: 20px;
  min-width: 0;
  padding-block: 0.25rem;
}

.g-review {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.g-review__platform {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.85;
}

.g-review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
  padding-right: 1.5rem;
}

.g-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.g-review__name {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
  line-height: 1.3;
}

.g-review__date {
  font-size: 12px;
  color: #5f6368;
  margin-top: 2px;
}

.g-review__text {
  font-size: 14px;
  line-height: 1.55;
  color: #3c4043;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.g-review.is-expanded .g-review__text {
  -webkit-line-clamp: unset;
  display: block;
}

.g-review__more {
  align-self: flex-start;
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: #1a73e8;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.g-review__more:hover { text-decoration: underline; }
.g-review--long .g-review__more { display: inline-block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-light);
}
.contact-card__icon {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.contact-card h3 { font-size: 18px; font-weight: 500; margin: 0 0 1rem; }
.contact-card p { color: var(--text-light); margin: 0; line-height: 1.6; }
.contact-form { max-width: 700px; margin: 4rem auto 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 16px;
  background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--accent);
  color: #fff;
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-logo img { height: 90px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-info {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 2rem;
  justify-content: end;
}
.footer-info h4 { font-size: 16px; font-weight: 500; margin: 0 0 2.5rem; }
.footer-info p { margin: 0; line-height: 1.8; opacity: 0.85; font-size: 15px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  opacity: 0.8;
}
.footer-social {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social a:hover { color: var(--primary); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #fff;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}
.mobile-nav ul { list-style: none; margin: 3rem 0 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-nav__booking {
  display: block;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: none;
  font-family: var(--font-body);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
}

/* Booking modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 65, 108, 0.55);
  backdrop-filter: blur(4px);
}
.booking-modal__dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 4px;
}
.booking-modal__dialog--dates-open {
  overflow: visible;
}
.booking-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--bg-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}
.booking-modal__close:hover { background: var(--border); }
.booking-modal__header { margin-bottom: 1rem; padding-right: 2rem; }
.booking-modal__header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--accent);
}
.booking-modal__subtitle {
  margin: 0 0 0.5rem;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.booking-modal__notice {
  margin: 0;
  padding: 0.6rem 0.85rem;
  background: #eef6fc;
  border-left: 3px solid var(--primary);
  font-size: 13px;
  color: var(--accent);
  line-height: 1.45;
}
.booking-modal__body {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .booking-modal__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}
.booking-summary {
  padding: 1rem 1.1rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.booking-summary__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
}
.booking-summary__list {
  margin: 0;
  padding: 0;
}
.booking-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.booking-summary__row:last-child { border-bottom: 0; }
.booking-summary__row dt {
  margin: 0;
  color: var(--text-light);
  flex-shrink: 0;
}
.booking-summary__row dd {
  margin: 0;
  text-align: right;
  color: var(--accent);
  font-weight: 500;
  word-break: break-word;
}
.booking-modal__panel.is-sent .booking-summary {
  background: #f3faf4;
  border-color: #c8e6c9;
}
.booking-sent-banner {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #e8f5e9;
  border-radius: 4px;
  text-align: center;
}
.booking-sent-banner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #2e7d32;
  margin-bottom: 0.35rem;
}
.booking-sent-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.booking-form .form-group { margin-bottom: 1rem; }
.booking-form .form-row { margin-bottom: 0; }
.booking-form .form-row .form-group { margin-bottom: 1rem; }
.booking-form .req { color: var(--primary); }
.booking-form__disclaimer {
  font-size: 12px;
  color: var(--text-light);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.booking-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 16px;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Date range picker (booking) */
.booking-dates-group { position: relative; z-index: 5; }
.date-range { position: relative; z-index: 5; }
.date-range__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.date-range__trigger::after {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A416C'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E");
}
.date-range--filled .date-range__trigger { color: var(--text); font-weight: 500; }
.date-range__trigger:hover,
.date-range__trigger:focus-visible {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(228, 153, 81, 0.15);
}
.date-range__popover {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}
.date-range__popover[hidden] {
  display: none !important;
}
.date-range__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.date-range__prev,
.date-range__next {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--bg-light);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: var(--accent);
}
.date-range__prev:hover,
.date-range__next:hover { border-color: var(--primary); }
.date-range__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.date-range__month-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin-bottom: 0.5rem;
}
.date-range__weekdays,
.date-range__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.date-range__weekdays span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  padding: 0.25rem 0;
}
.date-range__day {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.date-range__day--empty { pointer-events: none; }
.date-range__day--disabled {
  color: #c5c9cc;
  cursor: not-allowed;
}
.date-range__day:not(.date-range__day--disabled):not(.date-range__day--empty):hover {
  background: var(--bg-light);
}
.date-range__day--in-range {
  background: rgba(228, 153, 81, 0.18);
  border-radius: 0;
}
.date-range__day--start,
.date-range__day--end {
  background: var(--primary) !important;
  color: #fff;
  font-weight: 600;
}
.date-range__day--start { border-radius: 4px 0 0 4px; }
.date-range__day--end { border-radius: 0 4px 4px 0; }
.date-range__day--start.date-range__day--end { border-radius: 4px; }
.date-range__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.date-range__clear {
  border: 0;
  background: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.date-range__summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .attraction-card { grid-template-columns: 1fr; }
  .room-detail { grid-template-columns: 1fr; }
  .room-detail--compact .room-detail__gallery {
    position: static;
    max-height: none;
  }
  .room-detail--compact .room-detail__gallery img { max-height: 280px; }
  .rooms-grid .room-card--list {
    grid-template-columns: 1fr;
  }
  .rooms-grid .room-card--list .room-card__img {
    aspect-ratio: 16 / 9;
  }
  .date-range__months { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr 1fr; justify-content: start; }
  .google-reviews { grid-template-columns: 1fr; }
  .google-reviews__summary {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .google-reviews__brand { margin-top: 0; padding-top: 0; margin-left: auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .site-header .container { grid-template-columns: auto 1fr auto; }
  .header-phone, .main-nav { display: none; }
  .menu-toggle { display: block; }
  .site-logo img { height: 44px; }
  .hero { min-height: 70vh; }
  .amenities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .room-detail__specs { grid-template-columns: 1fr; }
  .carousel__nav--overlay { display: none; }
  .carousel__slide--review { flex: 0 0 min(100%, 280px); }
}
