:root {
  --background: 200 20% 98%;
  --foreground: 200 15% 8%;
  --card: 0 0% 100%;
  --card-foreground: 200 15% 8%;
  --primary: 195 100% 35%;
  --primary-foreground: 0 0% 98%;
  --secondary: 190 60% 92%;
  --secondary-foreground: 195 100% 25%;
  --muted: 190 60% 95%;
  --muted-foreground: 200 15% 40%;
  --accent: 180 100% 85%;
  --accent-foreground: 195 100% 25%;
  --border: 190 30% 88%;
  --thermal-pink: 312 37% 55%;
  --thermal-rose: 319 27% 69%;
  --thermal-light: 312 20% 95%;
  --thermal-gold: 45 100% 60%;
  --thermal-dark: 312 15% 20%;
  --gradient-thermal: linear-gradient(135deg, hsl(var(--thermal-pink)), hsl(var(--thermal-rose)));
  --gradient-hero: linear-gradient(135deg, hsl(var(--thermal-pink) / .9), hsl(var(--thermal-rose) / .8));
  --gradient-card: linear-gradient(145deg, hsl(var(--card)), hsl(var(--thermal-light) / .5));
  --shadow-thermal: 0 10px 30px -10px hsl(var(--thermal-pink) / .3);
  --shadow-card: 0 4px 20px -4px hsl(var(--thermal-pink) / .15);
  --radius: .75rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header (desktop) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 42px;
}
.logo img {
  height: 130px;
  width: auto;
  margin: -18px 0 -48px;
  position: relative;
  top: 5px;
  z-index: 5;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: hsl(var(--foreground));
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: hsl(var(--thermal-light)); }
.main-nav a.active {
  background: hsl(var(--thermal-pink) / .1);
  color: hsl(var(--thermal-pink));
  border: 1.5px solid hsl(var(--thermal-pink) / .35);
  box-shadow: none;
}
.main-nav a svg { width: 16px; height: 16px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }

.btn-call {
  background: var(--gradient-thermal);
  color: #fff;
  box-shadow: var(--shadow-thermal);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-reserve {
  background: linear-gradient(135deg, #f7941d, #f15a29);
  color: #fff;
}
.btn-support {
  background: var(--gradient-thermal);
  color: #fff;
  box-shadow: var(--shadow-thermal);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 42px;
  font-weight: 300;
}
.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-top: -12px;
  max-width: 700px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
}
.hero-badge .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.8);
}
.hero-badge svg { width: 15px; height: 15px; }

@media (min-width: 901px) {
  .hero-badges { gap: 24px; }
  .hero-badge {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 17px;
  }
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.hero-dots span.active { background: #fff; }

/* ---------- Reservation ---------- */
.reservation {
  background: linear-gradient(180deg, hsl(var(--thermal-light)), hsl(var(--background)) 70%);
  padding: 80px 24px;
}
.reservation-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.reservation-heading h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 4px 0;
  line-height: 1.2;
}
.reservation-heading h2.pink { color: hsl(var(--thermal-pink)); }
.reservation-heading h2.dark { color: hsl(var(--thermal-dark)); }
.reservation-heading p {
  margin: 16px 0 0;
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.6;
}

.reservation-card {
  max-width: 1100px;
  margin: 0 auto;
  background: hsl(var(--card));
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 36px 40px;
}
.reservation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: hsl(var(--foreground));
}
.field label svg { width: 15px; height: 15px; color: hsl(var(--thermal-pink)); }
.input-wrap,
.field select {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid hsl(var(--border));
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  color: hsl(var(--foreground));
  font-family: inherit;
}
.input-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.input-wrap input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: hsl(var(--foreground));
  font-family: inherit;
}
.input-wrap svg { width: 16px; height: 16px; color: hsl(var(--muted-foreground)); flex-shrink: 0; margin-left: 8px; }
.field select { appearance: none; cursor: pointer; }

.input-wrap input[type="date"] { cursor: pointer; }
.input-wrap:has(input[type="date"]) { cursor: pointer; }
.input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.btn-reserve-submit {
  background: var(--gradient-thermal);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: var(--shadow-thermal);
}
.btn-reserve-submit svg { width: 16px; height: 16px; }

/* ---------- Scroll to top ---------- */
.scroll-top-btn {
  position: fixed;
  right: 16px;
  bottom: 150px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-thermal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-thermal);
  border: none;
  cursor: pointer;
  z-index: 45;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top-btn svg { width: 20px; height: 20px; }
@media (min-width: 901px) { .scroll-top-btn { display: none; } }

/* ---------- Services ---------- */
.services {
  padding: 90px 24px;
  background: hsl(var(--background));
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.section-badge {
  display: inline-block;
  background: hsl(var(--thermal-pink) / .1);
  color: hsl(var(--thermal-pink));
  border: 1.5px solid hsl(var(--thermal-pink) / .35);
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
}

.services-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 32px;
}
.services-title span { display: block; }
.services-title .dark { color: hsl(var(--thermal-dark)); }
.services-title .pink { color: hsl(var(--thermal-pink)); }
.services-title .gold { color: hsl(var(--thermal-gold)); }

.check-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: 40px;
  row-gap: 18px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: hsl(var(--foreground));
  line-height: 1.4;
}
.check-list li svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--thermal-pink));
  flex-shrink: 0;
  margin-top: 1px;
}

.highlight-card {
  background: var(--gradient-thermal);
  color: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: var(--shadow-thermal);
}
.highlight-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
}
.highlight-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.services-gallery {
  display: flex;
  gap: 16px;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.gallery-col img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.gallery-col:first-child img:first-child { height: 260px; }
.gallery-col:first-child img:last-child { height: 200px; }
.gallery-col:last-child img:first-child { height: 170px; }
.gallery-col:last-child img:last-child { height: 250px; }

@media (max-width: 900px) {
  .services { padding: 48px 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-title { font-size: 30px; }
  .check-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    row-gap: 14px;
  }
  .highlight-card { padding: 22px; }
  .gallery-col:first-child img:first-child { height: 180px; }
  .gallery-col:first-child img:last-child { height: 140px; }
  .gallery-col:last-child img:first-child { height: 120px; }
  .gallery-col:last-child img:last-child { height: 170px; }
}

/* ---------- Rooms & Activities ---------- */
.rooms, .activities {
  padding: 90px 24px;
  background: hsl(var(--background));
}
.activities { background: hsl(var(--thermal-light) / .5); }

.rooms-header {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.rooms-header .section-badge { margin-bottom: 20px; }
.rooms-title {
  font-size: 44px;
  font-weight: 800;
  color: hsl(var(--thermal-dark));
  margin: 0 0 20px;
}
.rooms-header p {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.rooms-grid, .activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.room-card, .activity-card {
  background: hsl(var(--card));
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.room-card-image {
  position: relative;
  height: 260px;
}
.room-card-image img { width: 100%; height: 100%; object-fit: cover; }
.room-discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: hsl(var(--thermal-gold));
  color: #4a3600;
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 999px;
}

.js-mini-gallery {
  cursor: pointer;
}
.js-mini-gallery img { transition: transform .3s ease; }
.js-mini-gallery:hover img { transform: scale(1.05); }

.photo-count-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.photo-count-badge svg { width: 14px; height: 14px; }

.room-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.room-card-body h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: hsl(var(--foreground));
}
.room-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: hsl(var(--muted-foreground));
}
.room-meta svg { width: 16px; height: 16px; color: hsl(var(--thermal-pink)); flex-shrink: 0; }
.room-desc {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 4px 0 0;
}

.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 8px 16px;
  padding: 14px 0;
  margin-top: 4px;
  border-top: 1px solid hsl(var(--border));
}
.room-amenities span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: hsl(var(--foreground));
}
.room-amenities span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--thermal-pink));
  flex-shrink: 0;
}

.room-price-row {
  border-top: 1px solid hsl(var(--border));
  padding-top: 14px;
}
.room-price-old {
  text-decoration: line-through;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
}
.room-price-new {
  font-size: 24px;
  font-weight: 800;
  color: hsl(var(--thermal-pink));
}
.room-price-unit {
  font-size: 12.5px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 4px;
}

.room-card .btn-reserve-submit {
  width: 100%;
  margin-top: 6px;
}

.activity-image {
  position: relative;
  height: 220px;
}
.activity-image img { width: 100%; height: 100%; object-fit: cover; }
.activity-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: hsl(var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  color: hsl(var(--thermal-pink));
}
.activity-icon svg { width: 22px; height: 22px; }

.activity-body { padding: 22px 24px 26px; }
.activity-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: hsl(var(--thermal-pink));
}
.activity-body p {
  margin: 0;
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1280px;
  margin: 50px auto 0;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-card);
}
.feature-pill svg { width: 20px; height: 20px; color: hsl(var(--thermal-pink)); flex-shrink: 0; }

@media (max-width: 1100px) {
  .rooms-grid, .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .rooms-grid, .activities-grid { grid-template-columns: 1fr; }
  .rooms, .activities { padding: 48px 16px; }
  .rooms-title { font-size: 30px; }
  .feature-pill { flex: 1 1 calc(50% - 16px); justify-content: center; }
}

/* ---------- Gallery ---------- */
.gallery { padding: 90px 24px; background: hsl(var(--background)); }

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-grid-full img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery-grid-full img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .gallery { padding: 48px 16px; }
  .gallery-grid-full { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  object-fit: contain;
  animation: lightbox-zoom .2s ease;
}
@keyframes lightbox-zoom {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, .25);
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; }
}

/* ---------- Contact ---------- */
.contact { padding: 90px 24px; background: hsl(var(--thermal-light) / .4); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 60px;
  align-items: start;
  text-align: left;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  gap: 16px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: hsl(var(--thermal-pink) / .12);
  color: hsl(var(--thermal-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  margin: 0 0 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.contact-value {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: hsl(var(--thermal-pink));
  margin-bottom: 4px;
}
.contact-value-static { color: hsl(var(--foreground)); }
.contact-card p { margin: 0; font-size: 13px; color: hsl(var(--muted-foreground)); }

.contact-form-card {
  background: hsl(var(--card));
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 32px;
}
.contact-form-card h3 {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 800;
  color: hsl(var(--thermal-dark));
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: hsl(var(--foreground));
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid hsl(var(--border));
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: hsl(var(--card));
}
.contact-form textarea { resize: vertical; }
.contact-submit { width: 100%; justify-content: center; margin-top: 4px; }

.contact-divider {
  border-top: 1px solid hsl(var(--border));
  padding-top: 18px;
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.contact-whatsapp-btn { width: 100%; justify-content: center; margin-top: 14px; }

.quick-reserve-banner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--gradient-thermal);
  border-radius: 10px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-thermal);
}
.quick-reserve-banner h3 { margin: 0 0 12px; font-size: 28px; font-weight: 800; }
.quick-reserve-banner p { margin: 0 0 26px; font-size: 15px; color: rgba(255,255,255,.9); }
.quick-reserve-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.btn-gold {
  background: hsl(var(--thermal-gold));
  color: #4a3600;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.btn-gold svg { width: 18px; height: 18px; }
.quick-reserve-tags { color: rgba(255,255,255,.85); font-size: 14px; }

@media (max-width: 900px) {
  .contact { padding: 48px 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 700px) {
  .contact-form-row { grid-template-columns: 1fr; }
  .quick-reserve-banner { padding: 32px 20px; }
  .quick-reserve-actions { flex-direction: column; gap: 12px; }
}

/* ---------- Mobile card layout ---------- */
.mobile-header,
.mobile-cta-row,
.bottom-nav {
  display: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: hsl(var(--thermal-dark));
  color: #fff;
  text-align: center;
  padding: 24px;
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-inner { display: none; }

  .site-header {
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    overflow: visible;
  }
  .mobile-header .logo img {
    height: 100px;
    margin: -10px 0 -34px;
    position: relative;
    z-index: 5;
  }

  .hero {
    height: 520px;
    margin: 0;
    border-radius: 0;
  }
  body { padding-top: 0; }

  .hero-content {
    padding: 130px 20px 0;
    justify-content: flex-start;
    gap: 14px;
  }
  .hero-eyebrow { font-size: 26px; }
  .hero-title { font-size: 32px; max-width: 100%; margin-top: -6px; }
  .hero-badges { gap: 10px; }
  .hero-badge { font-size: 12px; padding: 8px 12px; }
  .hero-badge .icon-circle { width: 24px; height: 24px; }

  .reservation { padding: 40px 4px 24px; }
  .reservation-heading h2 { font-size: 24px; }
  .reservation-heading p { font-size: 14px; }
  .reservation-card { padding: 20px; border-radius: 10px; margin: 0 8px; }
  .reservation-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .btn-reserve-submit { width: 100%; justify-content: center; }

  .mobile-cta-row {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 64px;
    background: transparent;
    box-shadow: none;
    z-index: 44;
  }
  .mobile-cta-row .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 8px;
    font-size: 13px;
  }

  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,.08);
    z-index: 50;
  }
  .bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px 8px;
    font-size: 11px;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
  }
  .bottom-nav a svg { width: 20px; height: 20px; }
  .bottom-nav a.active { color: hsl(var(--thermal-pink)); }

  body { padding-bottom: 132px; }
}
