:root {
  --ivory: #f7f3f0;
  --cream: #f1edea;
  --pine: #58514d;
  --pine-soft: #49423f;
  --walnut: #9d7f70;
  --gold: #c5aa9b;
  --gold-soft: #e4d7d0;
  --charcoal: #302c2a;
  --muted: #6f6460;
  --line: #d8cbc4;
  --mist: #eee7e3;
  --white: #fbf8f6;
  --shadow: 0 18px 50px rgba(88, 81, 77, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--ivory), var(--cream));
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.is-scrolled .site-header {
  background: rgba(241, 237, 234, 0.97);
  box-shadow: 0 12px 34px rgba(88, 81, 77, 0.1);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.75rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--pine);
  font-size: 2.8rem;
  line-height: 1.08;
}

h3 {
  color: var(--pine);
  font-size: 1.35rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(197, 170, 155, 0.72);
  background: rgba(241, 237, 234, 0.93);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(1220px, calc(100% - 32px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  transition: min-height 220ms ease;
}

body.is-scrolled .nav-shell {
  min-height: 68px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pine);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 48px;
  border: 1px solid rgba(197, 170, 155, 0.72);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 8px 22px rgba(88, 81, 77, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--charcoal);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--pine);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--pine);
  border-radius: var(--radius);
  background: var(--pine);
  color: var(--cream);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 18%, rgba(241, 237, 234, 0.22) 45%, transparent 72%);
  content: "";
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--pine-soft);
  background: var(--pine-soft);
  box-shadow: 0 12px 28px rgba(88, 81, 77, 0.2);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%) skewX(-18deg);
}

.button-secondary {
  border-color: rgba(241, 237, 234, 0.82);
  background: rgba(241, 237, 234, 0.12);
  color: var(--cream);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--cream);
  background: rgba(241, 237, 234, 0.22);
}

.button-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.92rem;
}

.button-full {
  width: 100%;
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--pine);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--pine);
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  align-items: end;
  color: var(--cream);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(88, 81, 77, 0.84), rgba(88, 81, 77, 0.46) 48%, rgba(88, 81, 77, 0.14)),
    linear-gradient(0deg, rgba(88, 81, 77, 0.42), rgba(88, 81, 77, 0.02) 48%);
  content: "";
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  animation: heroDrift 18s ease-in-out infinite alternate;
  transform: scale(1.04);
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 82px;
}

.hero-content h1,
.hero-content p {
  max-width: 720px;
  color: var(--cream);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.hero-copy {
  margin-bottom: 30px;
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--walnut);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--gold-soft);
}

.quick-highlights {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highlight-item,
.amenity-card,
.location-card,
.room-card,
.inquiry-panel,
.inquiry-form {
  border: 1px solid rgba(197, 170, 155, 0.82);
  border-radius: var(--radius);
  background: var(--cream);
}

.highlight-item {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  color: var(--pine);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.highlight-item:hover {
  border-color: rgba(197, 170, 155, 0.48);
  box-shadow: 0 18px 38px rgba(88, 81, 77, 0.14);
  transform: translateY(-3px);
}

.icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-sprite {
  display: none;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--mist);
}

.split-layout,
.page-hero-grid,
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-copy p {
  max-width: 62ch;
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--pine);
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  color: var(--gold);
  content: "→";
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0)) scale(var(--image-scale, 1.03));
  transform-origin: center;
  transition: transform 420ms ease;
  will-change: transform;
}

.image-frame:hover {
  --image-scale: 1.07;
}

.scroll-story {
  background: #49423f;
}

.story-panel {
  position: relative;
  display: grid;
  min-height: 84vh;
  overflow: clip;
  align-items: center;
  color: var(--cream);
}

.story-panel + .story-panel {
  border-top: 1px solid rgba(241, 237, 234, 0.18);
}

.story-image {
  position: absolute;
  inset: -7% 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0)) scale(1.05);
  transform-origin: center;
  will-change: transform;
}

.story-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(88, 81, 77, 0.86), rgba(88, 81, 77, 0.45) 46%, rgba(88, 81, 77, 0.1)),
    linear-gradient(0deg, rgba(88, 81, 77, 0.66), rgba(88, 81, 77, 0.08) 42%, rgba(88, 81, 77, 0.22));
}

.story-panel-right .story-shade {
  background:
    linear-gradient(270deg, rgba(88, 81, 77, 0.88), rgba(88, 81, 77, 0.44) 48%, rgba(88, 81, 77, 0.1)),
    linear-gradient(0deg, rgba(88, 81, 77, 0.68), rgba(88, 81, 77, 0.1) 48%, rgba(88, 81, 77, 0.2));
}

.story-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 110px 0;
}

.story-panel-right .story-copy {
  margin-left: auto;
}

.story-copy h2 {
  max-width: 620px;
  color: var(--cream);
  font-size: 3.45rem;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.story-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(241, 237, 234, 0.86);
  font-size: 1.08rem;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.story-copy .eyebrow {
  color: var(--gold-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading p {
  font-size: 1.04rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.room-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(88, 81, 77, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.room-card > img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.room-card:hover > img {
  transform: scale(1.045);
}

.room-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.room-card-body h3 {
  margin-bottom: 16px;
}

.room-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.room-facts div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(228, 215, 208, 0.56);
}

.room-facts dt {
  color: var(--walnut);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.room-facts dd {
  margin: 4px 0 0;
  color: var(--charcoal);
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.room-card .button {
  margin-top: auto;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.amenity-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.amenity-card:hover {
  border-color: rgba(197, 170, 155, 0.48);
  box-shadow: 0 14px 30px rgba(88, 81, 77, 0.08);
  transform: translateY(-3px);
}

.amenity-card .icon {
  color: var(--gold);
  transition: transform 220ms ease, color 220ms ease;
}

.amenity-card:hover .icon {
  color: var(--pine);
  transform: translateY(-2px) scale(1.08);
}

.amenity-card h3 {
  margin: 18px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.mini-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.mini-feature-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--pine);
  font-size: 0.92rem;
  font-weight: 800;
}

.visual-band {
  background: var(--ivory);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.location-card {
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.location-card:hover {
  border-color: rgba(197, 170, 155, 0.5);
  box-shadow: 0 14px 32px rgba(88, 81, 77, 0.08);
  transform: translateY(-3px);
}

.location-card span {
  display: block;
  color: var(--walnut);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  margin-top: 8px;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.map-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 16px 42px rgba(88, 81, 77, 0.1);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  aspect-ratio: 1.9 / 1;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

.map-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.map-frame figcaption span {
  color: var(--pine);
  font-weight: 800;
}

.cta-band {
  padding: 58px 0;
  background: var(--pine);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--cream);
}

.site-footer {
  padding: 58px 0 0;
  background: #302c2a;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.85fr));
  gap: 40px;
}

.footer-brand,
.site-footer h2 {
  color: var(--cream);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  color: rgba(241, 237, 234, 0.76);
  font-style: normal;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a:not(.footer-brand) {
  color: rgba(241, 237, 234, 0.82);
  overflow-wrap: anywhere;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 44px;
  padding: 18px 20px;
  border-top: 1px solid rgba(241, 237, 234, 0.14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.floating-inquire {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--pine);
  box-shadow: 0 16px 34px rgba(88, 81, 77, 0.3);
  color: var(--cream);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-inquire:hover,
.floating-inquire:focus-visible {
  box-shadow: 0 18px 40px rgba(88, 81, 77, 0.36);
  transform: translateY(-2px);
}

.page-hero {
  padding: 76px 0 64px;
  background: linear-gradient(180deg, var(--cream), var(--ivory));
}

.page-hero-copy h1 {
  color: var(--pine);
  font-size: 4rem;
}

.page-hero-copy p {
  max-width: 58ch;
  font-size: 1.08rem;
}

.inquiry-section {
  padding-top: 54px;
}

.inquiry-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.inquiry-panel,
.inquiry-form {
  padding: 28px;
  box-shadow: 0 14px 34px rgba(88, 81, 77, 0.08);
}

.inquiry-panel {
  position: sticky;
  top: 104px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list p {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-list strong {
  display: block;
  color: var(--pine);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--pine);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 170, 155, 0.18);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.success-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(88, 81, 77, 0.24);
  border-radius: var(--radius);
  background: #eee7e3;
  color: var(--pine);
  font-weight: 800;
}

.error-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(128, 51, 43, 0.26);
  border-radius: var(--radius);
  background: #f5e8e4;
  color: #80332b;
  font-weight: 800;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-scale {
  transform: translateY(18px) scale(0.97);
}

.reveal-hero {
  transform: translateY(28px);
  transition-duration: 900ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-item:nth-child(2),
.room-card:nth-child(2),
.location-card:nth-child(2) {
  --reveal-delay: 90ms;
}

.highlight-item:nth-child(3),
.room-card:nth-child(3),
.location-card:nth-child(3) {
  --reveal-delay: 180ms;
}

.highlight-item:nth-child(4),
.location-card:nth-child(4) {
  --reveal-delay: 270ms;
}

.amenity-card:nth-child(4n + 2) {
  --reveal-delay: 70ms;
}

.amenity-card:nth-child(4n + 3) {
  --reveal-delay: 140ms;
}

.amenity-card:nth-child(4n + 4) {
  --reveal-delay: 210ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media {
    animation: none;
    transform: none;
  }

  .image-frame img,
  .story-image,
  .map-frame iframe {
    transform: none !important;
  }
}

@media (max-width: 1050px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .room-grid,
  .amenity-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-copy h2 {
    font-size: 2.85rem;
  }

  .split-layout,
  .split-layout-reverse,
  .page-hero-grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 120px 0 74px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 72px;
  }

  .container,
  .hero-content,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  h1,
  .page-hero-copy h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 590px;
  }

  .scroll-progress {
    height: 2px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(88, 81, 77, 0.82), rgba(88, 81, 77, 0.22)),
      linear-gradient(90deg, rgba(88, 81, 77, 0.74), rgba(88, 81, 77, 0.18));
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .hero-actions,
  .cta-band-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-band-inner .button {
    width: 100%;
  }

  .quick-highlights {
    margin-top: 0;
    padding-top: 16px;
    background: var(--ivory);
  }

  .highlight-grid,
  .room-grid,
  .amenity-grid,
  .location-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .story-panel {
    min-height: 560px;
  }

  .story-image {
    inset: 0;
    height: 100%;
    transform: scale(1.04);
  }

  .story-shade,
  .story-panel-right .story-shade {
    background:
      linear-gradient(0deg, rgba(88, 81, 77, 0.86), rgba(88, 81, 77, 0.22)),
      linear-gradient(90deg, rgba(88, 81, 77, 0.76), rgba(88, 81, 77, 0.22));
  }

  .story-copy,
  .story-panel-right .story-copy {
    max-width: 100%;
    margin-left: 0;
    padding: 78px 0;
  }

  .story-copy h2 {
    font-size: 2.18rem;
  }

  .page-hero {
    padding: 54px 0 44px;
  }

  .room-card-body,
  .inquiry-panel,
  .inquiry-form {
    padding: 22px;
  }

  .room-facts {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    min-height: 300px;
  }

  .map-frame figcaption {
    align-items: stretch;
    flex-direction: column;
  }

  .map-frame figcaption .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .floating-inquire {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .container,
  .hero-content,
  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

  h1,
  .page-hero-copy h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero {
    min-height: 560px;
  }

  .button {
    padding-right: 16px;
    padding-left: 16px;
  }

  .highlight-item {
    min-height: 78px;
    padding: 15px;
  }
}
