/* ── Variables ──────────────────────────────────────── */
:root {
  /* Primary — logo navy */
  --navy: #2B3990;
  --navy-dark: #1E2A6E;
  --navy-light: #4D5DB8;

  /* Accent — logo orange */
  --terracotta: #E05A1E;
  --terracotta-light: #F07A3A;
  --terracotta-dark: #B84510;

  /* Warm neutrals */
  --sand: #E8B87A;
  --sand-light: #F2CFA0;
  --cream: #FBF5E8;
  --cream-dark: #F0E6D0;

  /* Deep tones — navy-based */
  --espresso: #1A1F4A;
  --espresso-mid: #2B3270;

  /* Text */
  --text-primary: #1A1F4A;
  --text-secondary: #4A5898;
  --text-muted: #7A86C0;

  --green: #4A6741;
  --green-light: #5E8253;
  --white: #FFFDF8;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26,31,74,0.10);
  --shadow-lg: 0 12px 48px rgba(26,31,74,0.15);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden; /* prevent horizontal scroll from any rogue wide element */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--text-secondary); }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--espresso);
  line-height: 1.2;
}

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-tinted {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn-nav {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--terracotta-dark); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

.btn-full { width: 100%; justify-content: center; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0.6rem 2rem;
  background: rgba(255,253,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,31,74,0.08);
  transition: box-shadow 0.3s;
  min-height: 72px;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(26,31,74,0.10); }

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
  /* JPEG logo has white bg — give it a clean pill container */
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
  box-shadow: 0 1px 6px rgba(26,31,74,0.10);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--espresso);
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-right: 2rem;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--espresso);
  margin-left: 1rem;
  padding: 0.4rem;
  align-items: center;
  justify-content: center;
}

.nav-toggle i,
.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--cream-dark);
  z-index: 99;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1.05rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

/* Photo hero variant */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27, 31, 74, 0.55) 0%,
    rgba(43, 57, 144, 0.30) 35%,
    rgba(10, 8, 20, 0.60) 70%,
    rgba(10, 8, 20, 0.80) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 7;
  max-width: 700px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F2CFA0;
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(232,184,122,0.6);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.7);
}

.hero-title em {
  color: #F07A3A;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 236, 215, 0.4);
  animation: bounce 2s infinite;
  z-index: 7;
}
.hero-scroll-hint i { width: 24px; height: 24px; }


/* ── About ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream);
  border-radius: var(--radius);
  border: 2px dashed var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.placeholder-note {
  font-size: 0.85rem;
  color: var(--text-muted) !important;
}

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.about-text .section-eyebrow { display: block; margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }

/* ── Amenities ────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}

.amenity-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  background: rgba(192,97,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.amenity-icon i { width: 22px; height: 22px; }

.amenity-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── Map ──────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}

.map-cta i { color: var(--terracotta); width: 22px; height: 22px; flex-shrink: 0; }

.map-cta div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.map-cta strong {
  font-size: 0.95rem;
  color: var(--espresso);
}

.map-cta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Reviews ──────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }

.review-stars { color: var(--sand); font-size: 1rem; letter-spacing: 2px; }

.review-text {
  font-style: italic;
  color: var(--text-secondary) !important;
  font-size: 0.97rem;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--espresso);
}
.review-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA Band ─────────────────────────────────────────── */
.cta-band {
  background: var(--green);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: rgba(245,236,215,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ── Inline prose links ──────────────────────────────── */
.inline-link {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(224, 90, 30, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.inline-link:hover {
  color: var(--terracotta-dark);
  text-decoration-color: var(--terracotta-dark);
}

.inline-link-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke-width: 2.5;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ── Utility: icon sizes ─────────────────────────────── */
.icon-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-xs {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Nav: disabled state (e.g. current page indicator) ── */
.btn-nav-disabled {
  cursor: default;
  opacity: 0.7;
  pointer-events: none;
}

/* ── Location detail: rooms mid-page CTA wrapper ─────── */
.rooms-cta-wrap {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Location detail: map directions button ──────────── */
.btn-map-directions {
  margin-top: 1rem;
}

/* ── CTA band: button group ──────────────────────────── */
.cta-band-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Booking: iframe hidden before JS loads it ───────── */
.booking-iframe-hidden {
  display: none;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: 2rem 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sand);
  margin-right: auto;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(245,236,215,0.4) !important;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,236,215,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sand); }

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: -1rem; right: -0.5rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 540px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .map-cta { flex-wrap: wrap; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-logo { margin-right: 0; }
}

/* ── Rooms ────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}

.rooms-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.room-card--main { height: 420px; }
.rooms-col .room-card { flex: 1; min-height: 180px; }

.room-slideshow {
  position: absolute;
  inset: 0;
}

.room-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.room-slide.active { opacity: 1; }

.room-placeholder { display: block; }

.room-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,74,0.85) 0%, rgba(26,31,74,0.1) 55%, transparent 100%);
  z-index: 1;
  border-radius: var(--radius);
}

.room-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.room-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(192,97,58,0.35);
  color: #E2B07A;
  margin-bottom: 0.5rem;
}

.room-badge--green {
  background: rgba(74,103,65,0.45);
  color: #9FE1CB;
}

.room-badge--sand {
  background: rgba(226,176,122,0.2);
  color: #EEC99A;
}

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #FFFDF8;
  margin-bottom: 0.25rem;
}

.rooms-col .room-name { font-size: 1.1rem; }

.room-detail {
  font-size: 0.85rem;
  color: rgba(245,236,215,0.65);
  margin-bottom: 0.5rem;
}

.room-price {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #E2B07A;
}

@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card--main { height: 300px; }
  .rooms-col { flex-direction: row; }
  .rooms-col .room-card { min-height: 220px; }
}

@media (max-width: 540px) {
  .rooms-col { flex-direction: column; }
}

/* ── Brewery Section ─────────────────────────────────── */
.brewery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brewery-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.brewery-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.brewery-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.brewery-icon {
  width: 48px;
  height: 48px;
  background: rgba(192,97,58,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.brewery-icon i {
  width: 22px;
  height: 22px;
}

.brewery-feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--espresso);
}

.brewery-feature p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .brewery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Events Section ──────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--cream-dark);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.event-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.event-icon {
  width: 56px;
  height: 56px;
  background: rgba(74,103,65,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 1rem;
}

.event-icon i {
  width: 24px;
  height: 24px;
}

.event-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--espresso);
}

.event-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Location Cards (Landing Page) ──────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.location-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.location-slideshow {
  position: absolute;
  inset: 0;
}

.location-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.location-slide.active {
  opacity: 1;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,74,0.95) 0%, rgba(26,31,74,0.4) 50%, rgba(26,31,74,0.1) 100%);
  z-index: 1;
}

.location-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.location-city {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.5rem;
}

.location-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.location-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sand);
  transition: color 0.2s;
}

.location-cta i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.location-card:hover .location-cta {
  color: #fff;
}

.location-card:hover .location-cta i {
  transform: translateX(4px);
}

/* Coming Soon Card */
.coming-soon-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1.5rem;
}

.coming-soon-icon {
  width: 56px;
  height: 56px;
  background: rgba(192,97,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.coming-soon-icon i {
  width: 24px;
  height: 24px;
}

.coming-soon-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--espresso);
}

.coming-soon-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 540px) {
  .location-card {
    height: 350px;
  }
  
  .coming-soon-card {
    flex-direction: column;
    text-align: center;
  }
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE REFINEMENTS — applied on top of existing breakpoints
   640px covers most phones in landscape + small tablets in portrait
   420px covers typical phones in portrait (iPhone SE through Pixel)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Safety: allow buttons to wrap their text so they never overflow ── */
@media (max-width: 640px) {
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}

/* ── Nav: tighter padding and smaller logo on phones ── */
@media (max-width: 640px) {
  .nav {
    padding: 0.5rem 1rem;
    min-height: 64px;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-logo-img {
    height: 50px;
    padding: 3px 6px;
  }
  .nav-toggle {
    margin-left: 0.5rem;
  }
  /* Mobile menu sits under the nav */
  .mobile-menu {
    top: 64px;
    padding: 1.25rem 1rem;
  }
}

/* ── Container: reduce side padding so content fits on narrow screens ── */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 4rem 0;
  }
}

/* ── Hero: less vertical padding so content fits above the fold ── */
@media (max-width: 640px) {
  .hero {
    padding: 6rem 1rem 4rem;
    min-height: 100svh;
  }
  .hero-scroll-hint {
    bottom: 1.5rem;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ── Amenities: 1 column on phones (2 was too cramped at 360px) ── */
@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Rooms: force vertical stacking on all phone widths (the 900px
   rule above uses flex-direction:row which crushes cards on phones) ── */
@media (max-width: 640px) {
  .rooms-col {
    flex-direction: column;
  }
  .room-card--main {
    height: 260px;
  }
  .rooms-col .room-card {
    min-height: 200px;
  }
}

/* ── Locations grid: enforce single column on narrow phones
   (auto-fit minmax(320px, 1fr) can still squeeze on 360px) ── */
@media (max-width: 420px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Footer: stack cleanly on phones ── */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-right: 0;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* ── CTA Band: constrain buttons inside it on phones ── */
@media (max-width: 640px) {
  .cta-inner .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   LOCATION DETAIL PAGE — sticky booking bar and hero actions
   (These override inline styles from location_detail.html template)
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  /* Hero actions stack full-width */
  .location-hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .location-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Sticky booking bar: hide quick-nav (not enough room for both
     booking CTAs AND in-page nav). Stack info above buttons. */
  .booking-bar {
    top: 58px;
    padding: 0.75rem 0;
  }
  .booking-bar-inner {
    gap: 0.75rem;
  }
  .booking-bar-info {
    justify-content: center;
    width: 100%;
  }
  .quick-nav {
    display: none;
  }
  .booking-bar-actions {
    width: 100%;
  }
  .booking-bar-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   BOOKING PAGE — iframe header and help card
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  .booking-page {
    padding-top: 72px;
  }
  .booking-header {
    padding: 1.5rem 0;
  }
  .booking-iframe-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
  .booking-iframe {
    height: 600px;
  }
  .location-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }
  .location-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}