:root {
  color-scheme: light dark;
  --page: #eee1d1;
  --page-soft: #f4eadf;
  --surface: #f9f2e9;
  --surface-strong: #e0c9af;
  --ink: #29231f;
  --muted: #675d55;
  --accent: #6e4f3d;
  --accent-hover: #563b2d;
  --accent-text: #fffaf4;
  --line: rgba(68, 48, 38, .18);
  --shadow: 0 24px 70px rgba(79, 56, 42, .16);
  --radius: 16px;
  --container: min(1320px, calc(100% - 48px));
  --nav-height: 72px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #1f1a17;
    --page-soft: #27201c;
    --surface: #302722;
    --surface-strong: #47362c;
    --ink: #f3e8dc;
    --muted: #c8b9ab;
    --accent: #c69c7f;
    --accent-hover: #d9b397;
    --accent-text: #241b17;
    --line: rgba(235, 214, 196, .16);
    --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: var(--accent-text);
  background: var(--accent);
}

.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--nav-height);
  border-bottom: 1px solid var(--line);
  background: var(--page);
  background: color-mix(in srgb, var(--page) 90%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--nav-height);
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 190px; height: auto; }

@media (prefers-color-scheme: dark) {
  .brand img { filter: invert(1) brightness(1.5); }
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a[aria-current="page"] { color: var(--ink); }

.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-text);
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}

.nav-contact:hover { background: var(--accent-hover); }
.nav-contact:active, .button:active, .filter-button:active { transform: translateY(1px) scale(.98); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--page);
}

.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: grid; padding: 12px 24px 24px; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-text);
  background: var(--accent);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { background: var(--accent-hover); }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--line); }
.button.secondary:hover { color: var(--accent-text); background: var(--accent); border-color: var(--accent); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.03;
}
h3 { margin-bottom: 10px; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.18; }
p { color: var(--muted); }
.lead { max-width: 62ch; font-size: clamp(1.08rem, 1.6vw, 1.28rem); }

.hero {
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(520px, 1.15fr);
  align-items: center;
  min-height: calc(100dvh - var(--nav-height));
  gap: clamp(32px, 6vw, 88px);
  padding-block: clamp(42px, 7vh, 76px);
  padding-left: max(24px, calc((100vw - 1320px) / 2));
  padding-right: clamp(18px, 2.5vw, 44px);
}

.hero-copy { padding-right: 12px; }
.hero-copy h1 { font-size: clamp(2.7rem, 4.3vw, 4.7rem); }
.hero-copy .lead { max-width: 41ch; margin-bottom: 28px; }
.hero-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
  align-items: center;
  min-height: min(66vh, 680px);
}
.hero-media::after { display: none; }
.hero-main,
.hero-secondary {
  position: static;
  width: 100%;
  height: min(66vh, 680px);
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-main { object-position: center; }
.hero-secondary { height: min(58vh, 600px); object-position: 62% center; }

.stat-ribbon {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-ribbon > div { min-height: 150px; padding: 28px clamp(18px, 3vw, 44px); border-right: 1px solid var(--line); }
.stat-ribbon > div:last-child { border-right: 0; }
.stat-ribbon strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1; letter-spacing: -.04em; }
.stat-ribbon span { color: var(--muted); font-size: 14px; }

.section { padding-block: clamp(78px, 11vw, 150px); }
.section.compact { padding-block: clamp(62px, 8vw, 104px); }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 6vw, 72px); }
.section-head p { max-width: 60ch; margin-bottom: 0; }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .55fr);
  gap: clamp(36px, 9vw, 130px);
  align-items: start;
}
.intro-grid .pull { color: var(--ink); font-size: clamp(1.35rem, 2.8vw, 2.55rem); line-height: 1.24; letter-spacing: -.03em; }
.intro-grid .detail-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.detail-list li { padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); }
.detail-list strong { display: block; color: var(--ink); }

.photo-story {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}
.photo-story img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.photo-story .tall { grid-row: 1 / 3; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 16px;
}
.feature {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.feature p { margin-bottom: 0; }
.feature.image { min-height: 350px; padding: 0; overflow: hidden; }
.feature.image img { width: 100%; height: 100%; object-fit: cover; }
.feature.large { display: flex; flex-direction: column; grid-row: span 2; }
.feature.accent { color: var(--accent-text); background: var(--accent); border-color: var(--accent); }
.feature.accent p, .feature.accent h3 { color: inherit; }
.feature-number { display: block; margin-bottom: 18px; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .9; letter-spacing: -.06em; }
.feature-details { display: grid; gap: 10px; margin: auto 0 0; padding: 28px 0 0; border-top: 1px solid color-mix(in srgb, var(--accent-text) 28%, transparent); list-style: none; }
.feature-details li { color: inherit; font-size: 15px; }

.parking-band { padding-block: clamp(68px, 9vw, 112px); background: var(--surface-strong); }
.parking-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 8vw, 120px); align-items: center; }
.parking-inner img { width: 100%; height: clamp(320px, 32vw, 460px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.teaser-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 260px; gap: 14px; }
.teaser-grid a { overflow: hidden; border-radius: var(--radius); }
.teaser-grid a:first-child { grid-row: span 2; }
.teaser-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.teaser-grid a:hover img { transform: scale(1.035); }

.location-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.location-panel > div { padding: clamp(30px, 5vw, 64px); background: var(--surface); }
.address { color: var(--ink); font-size: clamp(1.35rem, 3vw, 2.45rem); line-height: 1.22; letter-spacing: -.025em; }

.page-hero { padding-block: clamp(72px, 10vw, 126px); }
.page-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: clamp(36px, 8vw, 110px); }
.page-hero h1 { max-width: 14ch; font-size: clamp(2.65rem, 5vw, 5rem); }
.page-hero .lead { margin-bottom: 0; }
.page-hero-image { width: 100%; max-height: 650px; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius); margin-top: 50px; }

.room-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 8vw, 110px); align-items: center; margin-bottom: clamp(80px, 12vw, 160px); }
.room-section.reverse { grid-template-columns: .9fr 1.1fr; }
.room-section.reverse .room-copy { order: -1; }
.room-section img { width: 100%; height: min(34vw, 500px); object-fit: cover; border-radius: var(--radius); }
.room-copy ul { display: grid; gap: 10px; padding-left: 20px; color: var(--muted); }

.amenity-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.amenity-group { padding: clamp(26px, 4vw, 46px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.amenity-group:nth-child(2) { background: var(--surface-strong); }
.amenity-group ul { columns: 2; gap: 24px; padding-left: 20px; color: var(--muted); }

.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-button { padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-weight: 800; cursor: pointer; }
.filter-button[aria-pressed="true"] { color: var(--accent-text); background: var(--accent); border-color: var(--accent); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--surface); cursor: zoom-in; }
.gallery-item:nth-child(11n + 1), .gallery-item:nth-child(11n + 7) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; min-height: 220px; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .2s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item.is-hidden { display: none; }

.gallery-status { min-height: 1.5em; color: var(--muted); margin-bottom: 18px; }
.gallery-loader { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-loader span { min-height: 220px; border-radius: var(--radius); background: linear-gradient(110deg, var(--surface) 30%, var(--surface-strong) 50%, var(--surface) 70%); background-size: 200% 100%; animation: shimmer 1.4s infinite linear; }

@keyframes shimmer { to { background-position-x: -200%; } }

.lightbox { width: min(1180px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: var(--radius); background: #171310; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(20, 16, 13, .86); backdrop-filter: blur(8px); }
.lightbox figure { display: grid; grid-template-rows: 1fr auto; height: min(88dvh, 820px); margin: 0; }
.lightbox img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { padding: 12px 70px 14px 18px; color: #f5ede5; background: #171310; }
.lightbox-close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: #fff; background: rgba(23,19,16,.8); cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: #fff; background: rgba(23,19,16,.76); cursor: pointer; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.attraction-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 5vw, 72px) 18px; }
.attraction-card { display: grid; grid-template-rows: auto 1fr; gap: 20px; }
.attraction-card:nth-child(4n + 2) { margin-top: 90px; }
.attraction-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: var(--radius); }
.attraction-card p { max-width: 52ch; }
.travel-note {
  display: grid;
  grid-template-columns: minmax(150px, .3fr) minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--line);
}
.travel-note-label { display: grid; gap: 4px; align-self: start; }
.travel-note-label span { color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.travel-note-label strong { font-size: clamp(1.15rem, 2vw, 1.45rem); }
.travel-note-copy h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 3.15rem); }
.travel-note-copy p { max-width: 66ch; margin-bottom: 0; }
.travel-note .button { justify-self: end; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.contact-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.contact-list li { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; color: var(--muted); }
.contact-list a { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 750; }
.contact-visual { position: relative; }
.contact-visual img { width: 100%; height: clamp(320px, 32vw, 480px); object-fit: cover; border-radius: var(--radius); }
.contact-note { position: relative; width: 78%; margin: -70px 0 0 auto; padding: 28px; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.contact-form-card { padding: clamp(28px, 5vw, 56px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-form-card h2 { margin-bottom: 10px; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.contact-form-card > p { max-width: 58ch; margin-bottom: 28px; }
.contact-form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: 14px; font-weight: 800; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  border-radius: 10px;
  color: var(--ink);
  background: var(--page-soft);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: color-mix(in srgb, var(--muted) 82%, transparent); opacity: 1; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--accent); outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent); outline-offset: 1px; }
.form-consent { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 14px; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.form-status { grid-column: 1 / -1; padding: 14px 16px; border-radius: 10px; font-weight: 700; }
.form-status[hidden] { display: none; }
.form-status.success { color: #173c2a; background: #d9efe2; border: 1px solid #7fb598; }
.form-status.error { color: #552118; background: #f4ddd7; border: 1px solid #c48d81; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-wide-image { width: var(--container); height: clamp(280px, 34vw, 470px); margin: 0 auto; object-fit: cover; object-position: center 54%; border-radius: var(--radius); }

.rules { counter-reset: rules; }
.rule-group { position: relative; padding: 34px 0 34px 90px; border-bottom: 1px solid var(--line); }
.rule-group::before { counter-increment: rules; content: counter(rules, decimal-leading-zero); position: absolute; left: 0; top: 34px; color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.rule-group p:last-child { margin-bottom: 0; }

.cta-section { padding-block: clamp(80px, 12vw, 150px); }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: end; padding: clamp(34px, 7vw, 82px); border-radius: var(--radius); color: var(--accent-text); background: var(--accent); }
.cta-box h2 { max-width: 12ch; margin-bottom: 14px; }
.cta-box p { max-width: 50ch; margin-bottom: 0; color: inherit; opacity: .85; }
.cta-box .button { border-color: var(--accent-text); color: var(--accent); background: var(--accent-text); }
.cta-box .button:hover { color: var(--accent-text); background: transparent; }

.site-footer { padding: 64px 0 30px; color: #f2e7dc; background: #27201c; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 50px; }
.footer-brand img { width: 210px; height: auto; margin-bottom: 22px; }
.footer-brand p { max-width: 38ch; color: #cdbfb3; }
.site-footer h2 { margin-bottom: 18px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer nav { display: grid; gap: 10px; }
.site-footer a { color: #eee2d6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #bcaea2; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --container: min(100% - 36px, 920px); }
  .desktop-nav, .nav-contact { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; padding: 46px 18px 60px; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-media { min-height: 520px; }
  .hero-main { height: 520px; }
  .hero-secondary { height: 460px; }
  .stat-ribbon { grid-template-columns: repeat(2, 1fr); }
  .stat-ribbon > div:nth-child(2) { border-right: 0; }
  .stat-ribbon > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature.large { grid-row: auto; }
  .travel-note { grid-template-columns: minmax(130px, .28fr) 1fr; }
  .travel-note .button { grid-column: 2; justify-self: start; }
  .gallery-grid, .gallery-loader { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(11n + 1), .gallery-item:nth-child(11n + 7) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 767px) {
  :root { --container: calc(100% - 32px); --nav-height: 64px; }
  body { font-size: 16px; }
  .brand img { width: 158px; }
  .section, .section.compact { padding-block: 72px; }
  .hero { display: block; min-height: auto; padding: 44px 16px 52px; }
  .hero-copy { margin-bottom: 34px; }
  .hero-media { grid-template-columns: 1fr 1fr; min-height: 340px; gap: 8px; }
  .hero-main { width: 100%; height: 340px; }
  .hero-secondary { width: 100%; height: 300px; }
  .stat-ribbon > div { min-height: 120px; padding: 24px 18px; }
  .intro-grid, .parking-inner, .location-panel, .page-hero-grid, .room-section, .room-section.reverse, .contact-layout, .cta-box, .footer-grid { grid-template-columns: 1fr; }
  .room-section.reverse .room-copy { order: initial; }
  .photo-story { grid-template-columns: 1fr; grid-template-rows: 340px 230px 230px; }
  .photo-story .tall { grid-row: auto; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature.image { min-height: 310px; }
  .teaser-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .teaser-grid a:first-child { grid-column: span 2; grid-row: auto; }
  .page-hero { padding-block: 64px; }
  .page-hero-image { margin-top: 34px; aspect-ratio: 4/3; }
  .room-section img { height: 330px; }
  .parking-inner img { height: 330px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-consent, .form-actions, .form-status { grid-column: auto; }
  .amenity-groups, .attraction-grid { grid-template-columns: 1fr; }
  .travel-note { grid-template-columns: 1fr; gap: 18px; }
  .travel-note .button { grid-column: auto; justify-self: start; }
  .amenity-group ul { columns: 1; }
  .attraction-card:nth-child(4n + 2) { margin-top: 0; }
  .gallery-grid, .gallery-loader { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img, .gallery-loader span { min-height: 165px; }
  .contact-note { width: calc(100% - 24px); margin-top: -40px; }
  .rule-group { padding-left: 52px; }
  .cta-box { align-items: start; }
  .footer-bottom { display: grid; }
}

@media (max-width: 430px) {
  .stat-ribbon { grid-template-columns: 1fr; }
  .stat-ribbon > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .teaser-grid { grid-template-columns: 1fr; }
  .teaser-grid a:first-child { grid-column: auto; }
  .gallery-grid, .gallery-loader { gap: 6px; }
  .gallery-item img, .gallery-loader span { min-height: 135px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-section, .button-row { display: none !important; }
  :root { color-scheme: light; }
  body { background: #fff; color: #111; }
  p { color: #333; }
  .section { padding-block: 30px; }
}
