/* Base */
:root {
  --bg: #f3f4f6;
  --bg-elevated: #ffffff;
  --bg-soft: #e5f3ff;
  --accent: #16a34a;
  --accent-soft: rgba(22, 163, 74, 0.08);
  --accent-strong: #166534;
  --text: #0f172a;
  --muted: #6b7280;
  --border-subtle: rgba(148, 163, 184, 0.5);
  --danger: #f97373;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ── Page Loading Screen ───────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0f172a 0%, #1a2e1e 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.loader-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: loaderFadeIn 0.5s ease forwards;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loader-logo-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.loader-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: loaderSpin 1.2s linear infinite;
}

.loader-ring circle {
  fill: none;
  stroke: #22c55e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 100 126; /* visible arc vs gap */
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.loader-name {
  margin: 0.3rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0fdf4;
  letter-spacing: 0.04em;
}

.loader-tagline {
  margin: 0;
  font-size: 0.75rem;
  color: #86efac;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* ─────────────────────────────────────────────────────────────── */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* GPU-composited fixed background — avoids CPU repaint on every scroll frame */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.8)),
    url("7.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
}

/* Prevent accidental horizontal overflow on small devices */
html, body { overflow-x: hidden; }

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 96px;
}

/* Top Bar - REMOVED */
.top-bar {
  display: none;
}

.top-bar-inner {
  display: none;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 39;
  background: #ffffff;
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease-out;
  transform: translateY(0);
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

/* Hamburger styles */
.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    gap: 5px;
  }
  .bar {
    display: block;
    width: 24px;
    height: 3px;
    background: #222;
    border-radius: 2px;
  }
  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .mobile-nav-toggle {
    display: none;
  }
}
.nav {
  position: sticky;
  top: 0;
  z-index: 39;
  background: #ffffff;
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .nav {
    top: 0;
    z-index: 39;
  }

  .nav-inner {
    padding: 0.7rem 1rem;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0.6rem 0.8rem;
    gap: 0.6rem;
  }
}

/* Ensure nav-inner can anchor absolutely positioned mobile menu */
.nav-inner {
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #22c55e, #16a34a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ecfdf5;
}

.logo-text span {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
}

@media (max-width: 480px) {
  .logo {
    gap: 0.5rem;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .logo-text span {
    font-size: 0.75rem;
  }

  .logo-text small {
    font-size: 0.6rem;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    z-index: 40;
  }
}

.nav-links a {
  color: #4b5563;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease,
    color 0.14s ease, border-color 0.14s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ecfdf5;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.btn-outline {
  border: 1px solid var(--border-subtle);
  color: #111827;
  background: #ffffff;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: #f9fafb;
}

@media (max-width: 480px) {
  .btn-outline {
    display: none;
  }

  .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
}

.btn-full {
  width: 100%;
}

.ghost-link {
  border: none;
  background: none;
  color: var(--accent-strong);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0;
}

.ghost-link span {
  font-size: 1rem;
  transform: translateY(1px);
}

.ghost-link:hover {
  color: var(--accent-strong);
}

/* Hero */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 2.5rem 1.5rem 3rem;
  overflow: visible;
  z-index: 1;
}

.hero::before {
  /* scenic hillside background – bright, open and joyful */
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.4), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(45, 212, 191, 0.4), transparent 60%),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 0.9), transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 2.6rem;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 900ms ease-out forwards;
  animation-delay: 120ms;
}

/* Mobile first approach - ensure mobile shows stacked layout */
@media (max-width: 375px) {
  .hero-inner {
    display: block !important;
    grid: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    display: block !important;
    grid: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    display: block !important;
    grid: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    display: block !important;
    grid: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  margin: 0.55rem 0 0.7rem;
  transform-origin: left center;
}

.hero-subtitle {
  margin: 0;
  color: #e5e7eb;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent-strong);
}

.hero-emotion {
  margin-top: 1.1rem;
  max-width: 30rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-quote {
  margin-top: 0.8rem;
  padding: 0.7rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 0.6rem;
  font-size: 0.82rem;
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent-strong);
}

.quote-author {
  grid-column: 2 / 3;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-highlights {
  display: flex;
  gap: 2.1rem;
  margin: 1.5rem 0 1.3rem;
}

.hero-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
}

.hero-label {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-card {
  background: linear-gradient(145deg, rgba(11, 17, 25, 0.96), rgba(10, 13, 18, 0.98));
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
  align-self: flex-start;
}

.hero-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.booking-note {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  color: var(--muted);
}

/* Hero visual */
.hero-visual {
  display: grid;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 920ms ease-out forwards;
  animation-delay: 220ms;
}

.hero-main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.8);
}

.hero-main-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transform: scale(1.03) translateY(0);
  transition: transform 700ms ease-out;
}

.hero-main-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
}

.badge-heading {
  display: block;
  font-weight: 500;
}

.badge-sub {
  display: inline-block;
  font-size: 0.72rem;
  color: #bbf7d0;
  background: rgba(15, 23, 42, 0.9);
  padding: 0.03rem 0.1rem;
  border-radius: 999px;
}

.hero-secondary-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-secondary-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(4, 7, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 260ms ease-out, box-shadow 260ms ease-out, border-color 260ms ease-out;
}

.hero-secondary-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  left: 0.6rem;
  bottom: 0.5rem;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  color: #bbf7d0;
}

.hero-secondary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.9);
  border-color: rgba(208, 161, 91, 0.7);
}

/* Booking section after hero */
.booking-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.hero-floating-card {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 213, 219, 0.5);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 1.8rem;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out, box-shadow 600ms ease-out;
}

.hero-floating-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.hero-floating-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.booking-form-inline {
  margin-top: 0;
}

/* Scroll reveal state for floating card */
.hero-floating-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Booking Modal Popup */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}

.booking-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal-content {
  position: relative;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 300ms ease-out;
}

.booking-modal-overlay.is-open .booking-modal-content {
  transform: scale(1) translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  color: #6b7280;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  z-index: 10;
}

.booking-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1f2937;
  transform: rotate(90deg);
}

.booking-modal-close span {
  display: block;
  margin-top: -2px;
}

.booking-modal-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: #1f2937;
  font-family: "Playfair Display", serif;
}

.booking-modal-content > p {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.booking-modal-content .booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Parallax-like subtle motion on hover for hero main image */
.hero-main-image:hover img {
  transform: scale(1.06) translateY(-6px);
}

/* Keyframes */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Forms */
.booking-form,
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field-inline {
  flex-direction: row;
  gap: 0.6rem;
}

.field-inline > div {
  flex: 1;
}

label {
  font-size: 0.76rem;
  color: var(--muted);
}

input,
select,
textarea {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.48rem 0.7rem;
  font-size: 0.8rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(208, 161, 91, 0.6);
}

textarea {
  resize: vertical;
}

.form-footnote {
  margin: 0.4rem 0 0;
  font-size: 0.7rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .enquiry-form {
    font-size: 0.75rem;
  }

  .field-inline {
    flex-direction: column;
    gap: 0.5rem;
  }

  .field-inline > div {
    width: 100%;
  }

  .field {
    margin-bottom: 0.5rem;
  }

  input,
  select,
  textarea {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }

  label {
    font-size: 0.7rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* Floating Form */
.floating-form-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  max-height: 80vh;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  display: flex;
  flex-direction: column;
}

.floating-form-container.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-form-content {
  padding: 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

.floating-form-content h3 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
  padding-right: 2rem;
}

.floating-form-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 42;
  flex-shrink: 0;
}

.floating-form-close:hover {
  background: var(--accent-strong);
}

.floating-enquiry-form .field {
  margin-bottom: 0.6rem;
}

.floating-enquiry-form .btn {
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  .floating-form-container {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 10px;
    max-height: calc(100vh - 80px);
  }

  .floating-form-content {
    padding: 1.2rem;
  }

  .floating-form-content h3 {
    font-size: 0.95rem;
    margin: 0 0 0.8rem 0;
  }

  .floating-enquiry-form .field {
    margin-bottom: 0.5rem;
  }

  .floating-enquiry-form .field label {
    font-size: 0.7rem;
  }

  .floating-enquiry-form input,
  .floating-enquiry-form select,
  .floating-enquiry-form textarea {
    font-size: 0.75rem;
    padding: 0.4rem 0.55rem;
  }

  .floating-form-close {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }

  .floating-enquiry-form .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.6rem 1.5rem 3.4rem;
  background: rgba(255, 255, 255, 0.92); /* opaque enough — backdrop-filter removed (expensive GPU layer per section) */
  border-radius: 32px;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

/* Mobile: Make dining section use full viewport width - BREAK OUT OF CONTAINER */
@media (max-width: 960px) {
  /* Override ALL .section properties for dining - MAXIMUM SPECIFICITY */
  body section#dining.section,
  html body section#dining.section,
  section#dining.section {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
    padding: 1rem 0.8rem 0.9rem !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    display: block !important;
    float: none !important;
    clear: both !important;
    position: relative !important;
  }
  
  /* Ensure body and html don't constrain width */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Ensure all children use full width */
  #dining.section > * {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .dining-section-wrapper,
  .dining-main-content,
  .dining-panel-mobile-wrapper,
  .dining-panel-mobile {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Override any inherited padding */
  .dining-panel-mobile-wrapper .dining-panel-mobile {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
}

.section-alt {
  background: rgba(249, 250, 251, 0.92); /* opaque enough — backdrop-filter removed (expensive GPU layer per section) */
  border-radius: 32px;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.section-header {
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin: 0.4rem 0 0.6rem;
}

.section-header p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 2.4rem;
}

.section-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

/* Overview */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.overview-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 1.2rem 1.1rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  font-size: 0.86rem;
  color: var(--muted);
  backdrop-filter: blur(8px);
}

.overview-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* Rooms */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

@media (max-width: 768px) {
  .room-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Dining section mobile - show mobile panel, hide desktop */
  .dining-panel-mobile-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 1rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .dining-panel-mobile {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .dining-panel-desktop {
    display: none !important;
    visibility: hidden !important;
  }

  /* Reduce dining section spacing on 768px - BREAK OUT */
  #dining.section {
    padding: 1rem 0.8rem 0.9rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dining-section-wrapper {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0.8rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dining-panel-mobile-wrapper {
    margin: 0.8rem 0 !important;
  }

  .dining-panel-mobile-wrapper .dining-panel-mobile {
    padding: 1rem 0.8rem 0.9rem !important;
  }

  .room-card {
    animation: roomFadeUp 0.6s ease-out forwards;
    opacity: 0;
  }

  .room-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .room-card:nth-child(2) {
    animation-delay: 0.25s;
  }

  .room-card:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes roomFadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.room-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 0, rgba(34, 197, 94, 0.06), transparent 60%);
  z-index: 0;
}

.room-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  position: relative;
  background: #f3f4f6;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-card > *:not(.room-image) {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  position: relative;
  z-index: 1;
}

.room-card > .room-tag {
  margin-top: 1rem;
  padding-left: 0;
  padding-right: 0;
}

.room-card > h3 {
  padding-top: 0;
}

.room-card > .room-features {
  padding-bottom: 1.3rem;
}

.room-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.18rem 0.7rem;
  font-size: 0.7rem;
  color: var(--muted);
  background: #f9fafb;
}

.room-tag-highlight {
  border-color: rgba(34, 197, 94, 0.7);
  background: rgba(22, 163, 74, 0.08);
  color: var(--accent-strong);
}

.room-card h3 {
  margin-top: 0.65rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.room-copy {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.room-features {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: grid;
  gap: 0.18rem;
}

/* Lists */
.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.bullet-list li + li {
  margin-top: 0.2rem;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 1rem 0 0;
}

.tag-list li {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.73rem;
  padding: 0.25rem 0.7rem;
}

/* Panels */
.panel {
  border-radius: 20px;
  padding: 1.3rem 1.2rem 1.2rem;
  font-size: 0.85rem;
}

.panel-soft {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.4);
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.panel-soft h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
  color: var(--text);
}

.dining-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dining-panel-mobile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dining-panel-content {
  margin-bottom: 1.2rem;
}

.dining-images {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: auto;
}

.dining-image {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dining section wrapper - desktop: grid layout */
.dining-section-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.dining-main-content {
  display: flex;
  flex-direction: column;
}

/* Mobile panel - hidden on desktop */
.dining-panel-mobile-wrapper {
  display: none;
}

.dining-panel-mobile {
  display: none;
}

/* Desktop panel - visible on desktop */
.dining-panel-desktop {
  display: flex;
  flex-direction: column;
}

.panel-outline {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.4);
  backdrop-filter: blur(10px);
}

.panel-outline h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.panel-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1.1rem;
}

/* Experiences */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .experience-card {
    animation: expFadeUp 0.6s ease-out forwards;
    opacity: 0;
  }

  .experience-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .experience-card:nth-child(2) {
    animation-delay: 0.25s;
  }

  .experience-card:nth-child(3) {
    animation-delay: 0.4s;
  }

  .experience-card:nth-child(4) {
    animation-delay: 0.55s;
  }

  @keyframes expFadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.experience-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  font-size: 0.86rem;
  backdrop-filter: blur(8px);
  color: var(--muted);
  display: flex;
  overflow: hidden;
}

.experience-content {
  flex: 1;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
}

.experience-image {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-left: 1rem;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-card h3 {
  margin-top: 0;
  margin-bottom: 0.2rem;
  font-size: 0.97rem;
  color: var(--text);
}

.experience-card .meta {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: var(--accent-strong);
}

@media (max-width: 768px) {
  .experience-card {
    flex-direction: column;
  }

  .experience-content {
    padding: 1.1rem;
  }

  .experience-image {
    width: 100%;
    height: 160px;
    margin-left: 0;
    order: -1;
    border-radius: 12px 12px 0 0;
  }
}

/* Attractions */
/* attractions-list: mobile-first — pill chip style by default */
.attractions-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.attractions-list > div {
  padding: 0.85rem 0 0.85rem 1rem;
  border-left: 3px solid var(--accent);
}

.attractions-list > div + div {
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.attractions-list h3 {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

.attractions-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--text);
}

.attractions-list li {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text);
}

/* Desktop: restore 3-column grid layout */
@media (min-width: 961px) {
  .attractions-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    margin-top: 1.1rem;
  }

  .attractions-list > div {
    padding: 0;
    border-left: none;
  }

  .attractions-list > div + div {
    border-top: none;
  }

  .attractions-list h3 {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text);
    background: none;
    padding: 0;
    border-radius: 0;
  }

  .attractions-list ul {
    list-style: disc;
    padding-left: 1.1rem;
    display: block;
    color: var(--muted);
  }

  .attractions-list li {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: inherit;
    color: inherit;
  }
}

/* Maps Section */
.maps-container {
  width: 100%;
}

.maps-content {
  width: 100%;
}

.maps-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  backdrop-filter: blur(10px);
}

.maps-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maps-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}

.maps-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.maps-info p strong {
  color: var(--text);
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
}

.maps-info .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.maps-embed {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.maps-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .maps-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .maps-embed {
    height: 300px;
  }

  .maps-info h3 {
    font-size: 1.1rem;
  }

  .maps-info p {
    font-size: 0.85rem;
  }
}

/* CTA Section */
.section-cta {
  background: #f9fafb;
  border-radius: 32px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  margin-bottom: 2.4rem;
}

.section-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0.4rem 0 0.4rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(209, 213, 219, 0.3);
  background: rgba(15, 23, 42, 0.7);
  padding: 1.8rem 1.5rem 1rem;
  backdrop-filter: blur(8px);
  margin-top: 1.2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  font-size: 0.85rem;
  color: #e5e7eb;

.footer-brand {
  color: #e5e7eb;
}

.footer-brand h3 {
  margin: 0 0 0.6rem 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-brand p {
  color: #e5e7eb;
  margin: 0.4rem 0;
  line-height: 1.4;
  font-size: 0.8rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: #e5e7eb;
}

.footer-section h4 {
  margin: 0 0 0.3rem 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d1d5db;
}

.footer-section p {
  margin: 0;
  color: #e5e7eb;
  font-size: 0.8rem;
  line-height: 1.5;
}

.check-times {
  display: flex;
  gap: 1.5rem;
  color: #e5e7eb;
  font-size: 0.8rem;
}

.check-times span {
  display: block;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Mobile hero gallery - shows after hero on small screens */
.mobile-hero-gallery {
  display: none;
}


@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.6rem;
  }
}

/* Make mobile/tablet breakpoint more forgiving — collapse earlier to single column */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
}

/* Mobile hero section - text first, images below */
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 0.9rem 2.5rem;
    min-height: auto;
  }

  .hero-inner {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    align-items: auto !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
    margin: 0.5rem 0 0.8rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  /* Hide all decorative elements on mobile */
  .hero-highlights,
  .hero-quote,
  .hero-emotion {
    display: none !important;
  }

  .hero-actions {
    margin-top: 0.8rem;
    gap: 0.6rem;
  }

  .btn {
    width: 100%;
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
  }

  .ghost-link {
    width: 100%;
    justify-content: center;
  }

  /* HIDE IMAGES - Multiple methods to ensure it works */
  .hero-visual {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
  }

  .hero-secondary-images {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
  }

  .hero-main-badge {
    display: none !important;
  }

  .hero-main-image {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .nav-inner {
    flex-wrap: wrap;
    padding: 0.6rem 1rem;
  }

  /* hide desktop links to keep header compact */
  .nav-links {
    display: none;
  }

  /* mobile nav toggle */
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }

  .mobile-nav-toggle .hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: #111827;
    position: relative;
  }

  .mobile-nav-toggle .hamburger::before,
  .mobile-nav-toggle .hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #111827;
  }

  .mobile-nav-toggle .hamburger::before { top: -6px; }
  .mobile-nav-toggle .hamburger::after { top: 6px; }

  /* show a full-width dropdown menu when toggled */
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 56px;
    background: #ffffff;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
    border-radius: 0;
    z-index: 120;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border-bottom: 1px solid rgba(209, 213, 219, 0.6);
  }

  .nav-links.is-open li { 
    padding: 0;
    border-bottom: 1px solid rgba(209, 213, 219, 0.4);
  }
  .nav-links.is-open a { 
    padding: 0.7rem 1rem;
    display: block;
    font-size: 0.8rem;
  }
  /* add a slight overlay when menu is open */
  .nav-links.is-open::before {
    content: "";
    position: fixed;
    left: 0;
    top: 56px;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 110;
  }

  /* collapse hero to single column; simplify visuals */
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .hero-secondary-images,
  .hero-main-badge {
    display: none;
  }

  .hero-copy h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 0.85rem;
  }

  .hero-emotion,
  .hero-quote,
  .hero-highlights {
    display: none;
  }

  .section-grid,
  .section-two-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem;
  }

  /* Reduce section padding on mobile for dining section - BREAK OUT */
  #dining.section {
    padding: 1rem 0.8rem 0.9rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-two-column > div:last-child {
    margin-top: 0;
  }

  /* Dining section mobile layout - reduce spacing AGGRESSIVELY */
  #dining .dining-section-wrapper,
  #dining .section-two-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  #dining .dining-main-content {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  #dining .dining-main-content > * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile panel - show on mobile - MUST be visible */
  .dining-panel-mobile-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0.8rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 0 !important;
  }

  .dining-panel-mobile-wrapper .dining-panel-mobile {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1rem 0.8rem 0.9rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
  }

  .dining-panel-mobile {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .dining-panel-mobile .dining-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Desktop panel - hide on mobile */
  .dining-panel-desktop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .dining-image {
    height: auto;
    max-height: 400px;
    min-height: 250px;
  }

  .dining-image img {
    object-fit: cover;
  }

  .overview-grid,
  .room-grid,
  .experience-grid,
  .attractions-list {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .attractions-list > div {
    background: none;
    border-radius: 0;
    padding: 0.85rem 0 0.85rem 1rem;
    border: none;
    border-left: 3px solid var(--accent);
    margin-bottom: 0;
  }

  .attractions-list > div + div {
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    margin-top: 0;
  }

  .attractions-list h3 {
    display: inline-block !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--accent-strong) !important;
    background: var(--accent-soft) !important;
    padding: 0.15rem 0.55rem !important;
    border-radius: 999px !important;
    margin-bottom: 0.6rem !important;
  }

  .attractions-list ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
  }

  .attractions-list li {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 999px !important;
    padding: 0.25rem 0.7rem !important;
    font-size: 0.78rem !important;
    color: var(--text) !important;
    white-space: normal !important;
    word-break: break-word !important;
    list-style: none !important;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 1.8rem 0.9rem 2rem;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  /* compact top bar */
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    font-size: 0.68rem;
    padding: 0.3rem 0.8rem;
  }
  
  .top-contact {
    display: none;
  }

  /* Ensure dining panel order is correct on mobile */
  .dining-order-3 {
    margin: 1.2rem 0 !important;
  }

  /* Optimize dining section spacing on smaller mobile - BREAK OUT */
  #dining.section {
    padding: 0.8rem 0.6rem 0.7rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dining-section-wrapper {
    gap: 0.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .dining-main-content {
    padding: 0 !important;
    margin: 0 !important;
  }

  .dining-panel-mobile-wrapper {
    margin: 0.5rem 0 !important;
    padding: 0 !important;
  }

  .dining-panel-mobile-wrapper .dining-panel-mobile {
    padding: 0.9rem 0.6rem 0.8rem !important;
    margin: 0 !important;
  }

  .dining-image {
    height: 250px;
    max-height: 250px;
  }

  /* mobile hero: keep ONLY heading + button */
  .hero-copy h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0.3rem 0 0.5rem;
  }

  .hero-subtitle,
  .hero-emotion,
  .hero-highlights,
  .hero-quote {
    display: none;
  }

  .hero-visual {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
  }

  .hero-secondary-images {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
  }

  .hero-main-badge {
    display: none !important;
  }

  .hero-main-image {
    display: none !important;
  }

  /* compact hero */
  .hero {
    min-height: auto;
    padding: 1.8rem 0.9rem 2.5rem;
  }

  .hero-inner {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
    align-items: stretch;
  }

  .hero-copy {
    order: 1;
    width: 100%;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .ghost-link {
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  /* reduce section padding and remove large radius to use space efficiently */
  .section,
  .section-alt {
    padding: 1.2rem 0.85rem;
    border-radius: 10px;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
  }

  /* OVERRIDE: Dining section must be full width - override general .section rule */
  body section#dining.section,
  html body section#dining.section,
  section#dining.section,
  #dining.section {
    padding: 0.8rem 0.5rem 0.7rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .check-times {
    flex-direction: column;
    gap: 0.3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
    font-size: 0.65rem;
  }

  .room-image {
    height: 140px;
  }

  .logo-text small {
    display: none;
  }

  /* Modal responsiveness */
  .booking-modal-content {
    max-width: 96%;
    padding: 1rem 0.8rem;
  }

  .booking-modal-content h2 {
    font-size: 1.15rem;
    padding-right: 1.2rem;
  }

  .booking-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .section-header p {
    font-size: 0.8rem;
  }

  /* Simplify overview cards on small screens */
  .overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-card h3 {
    font-size: 0.9rem;
  }

  .overview-card {
    padding: 0.9rem 0.8rem;
  }

  /* Simplify room cards */
  .room-card h3 {
    font-size: 0.95rem;
  }

  .room-copy {
    font-size: 0.78rem;
  }

  .room-features {
    font-size: 0.75rem;
    padding-left: 0.8rem;
  }

  /* Simplify experience cards */
  .experience-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-card {
    padding: 0.9rem 0.8rem;
  }

  .experience-card h3 {
    font-size: 0.9rem;
  }

  .experience-card .meta {
    font-size: 0.7rem;
  }

  /* Attractions on mobile */
  .attractions-list {
    grid-template-columns: 1fr !important;
    gap: 0;
    margin-top: 1rem;
  }

  .attractions-list > div {
    background: none;
    border-radius: 0;
    padding: 0.85rem 0 0.85rem 1rem;
    border: none;
    border-left: 3px solid var(--accent);
  }

  .attractions-list > div + div {
    border-top: 1px solid rgba(226, 232, 240, 0.7);
  }

  .attractions-list h3 {
    display: inline-block !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--accent-strong) !important;
    background: var(--accent-soft) !important;
    padding: 0.15rem 0.55rem !important;
    border-radius: 999px !important;
    margin-bottom: 0.6rem !important;
  }

  .attractions-list ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
  }

  .attractions-list li {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 999px !important;
    padding: 0.25rem 0.7rem !important;
    font-size: 0.78rem !important;
    color: var(--text) !important;
    word-break: break-word !important;
    list-style: none !important;
  }

  .panel-outline h2 {
    font-size: 1.15rem;
  }
}

/* Avoid fixed background on small screens for performance and layout issues */
@media (max-width: 960px) {
  body {
    background-attachment: scroll;
  }
}

@media (max-width: 420px) {
  .mobile-nav-toggle { width: 36px; height: 36px; }

  .hero {
    padding-top: 1.2rem;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .nav-inner {
    padding: 0.35rem 0.6rem;
    gap: 0.8rem;
  }

  .btn.btn-outline {
    display: none;
  }

  .hero-copy h1 {
    font-size: 1.4rem;
  }

  .section {
    padding: 1rem 0.7rem;
  }

  /* Maximum space utilization for dining section - BREAK OUT - MUST OVERRIDE .section */
  body section#dining.section,
  html body section#dining.section,
  section#dining.section,
  #dining.section {
    padding: 0.7rem 0.4rem 0.6rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .dining-section-wrapper {
    gap: 0.4rem !important;
  }

  .dining-panel-mobile-wrapper {
    margin: 0.4rem 0 !important;
  }

  .dining-panel-mobile-wrapper .dining-panel-mobile {
    padding: 0.8rem 0.5rem 0.7rem !important;
  }

  .footer-bottom {
    font-size: 0.6rem;
  }

  input,
  select,
  textarea {
    font-size: 16px;
    padding: 0.5rem 0.6rem;
  }

  label {
    font-size: 0.7rem;
  }
}

/* FINAL OVERRIDE: Ensure dining section uses full width on ALL mobile devices */
/* This must come last to override all previous rules */
@media (max-width: 960px) {
  section#dining.section,
  body section#dining.section,
  html body section#dining.section {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  
  section#dining.section .dining-section-wrapper,
  section#dining.section .section-two-column {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  section#dining.section .dining-main-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

