:root {
  --bg: #fbf9f9;
  --surface: #ffffff;
  --muted: #f0eeee;
  --text: #1b1c1c;
  --soft: #444748;
  --line: #c4c7c7;
  --gold: #d4af37;
  --gold-dark: #735c00;
  --charcoal: #1c1b1b;
  --max: 1280px;
  --gutter: clamp(24px, 5vw, 64px);
  --section: clamp(72px, 10vw, 120px);
  --motion-fast: 160ms;
  --motion-med: 260ms;
  --elevated-shadow: 0 22px 70px rgba(23, 23, 22, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 16px var(--gutter);
  background: rgba(251, 249, 249, .86);
  border-bottom: 1px solid rgba(196, 199, 199, .45);
  backdrop-filter: blur(16px);
  transition: padding .25s ease, background .25s ease;
}
.site-header.scrolled { padding-block: 10px; background: rgba(251, 249, 249, .95); }
.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
}
.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}
.site-nav a, .eyebrow, .button, .text-link, label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  padding: 8px 0;
}
.site-nav a::after, .text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: width .25s ease;
}
.site-nav a:hover::after, .site-nav a.active::after, .text-link:hover::after { width: 100%; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--charcoal); color: #fff; }
.button-dark:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.button-outline { background: transparent; color: var(--charcoal); }
.button-outline:hover { background: var(--charcoal); color: #fff; }
.button-gold { background: var(--gold); border-color: var(--gold); color: #241a00; }

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}
.full-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.38));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  max-width: 1120px;
  padding: 120px var(--gutter);
  color: #fff;
}
.hero-content.center { text-align: center; }
.hero-content h1, h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
}
.hero-content h1, h1 { font-size: clamp(44px, 7vw, 86px); }
h2 { font-size: clamp(34px, 5vw, 54px); }
h3 { font-size: clamp(24px, 3vw, 34px); }
p { margin: 0; color: var(--soft); }
.hero-content p { color: rgba(255,255,255,.88); font-size: 18px; }
.eyebrow { margin-bottom: 14px; color: var(--gold-dark); }
.eyebrow.light { color: var(--gold); }

.booking-bar {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 3;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1040px, calc(100% - 48px));
  background: var(--line);
  border: 1px solid rgba(196,199,199,.65);
}
.booking-bar label {
  background: var(--bg);
  padding: 18px;
}
.booking-bar .button-dark {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
  margin: 0;
}
.booking-bar .button-dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
label { display: grid; gap: 6px; }
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 0;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold-dark); }

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: var(--section) var(--gutter);
}
.section.muted {
  width: 100%;
  max-width: none;
  background: var(--muted);
}
.section.muted > * {
  width: min(var(--max), 100%);
  margin-inline: auto;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}
.copy-block { max-width: 560px; }
.copy-block p { margin-top: 24px; font-size: 18px; }
.text-link {
  position: relative;
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 4px;
}
.image-frame { position: relative; overflow: hidden; background: var(--muted); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.image-frame:hover img, .suite-card:hover img, .experience-row article:hover img { transform: scale(1.045); }
.portrait { aspect-ratio: 4 / 5; }
.wide { aspect-ratio: 16 / 9; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}
.suite-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.suite-card {
  background: var(--surface);
  overflow: hidden;
  border: 1px solid rgba(196,199,199,.45);
}
.suite-card.large { grid-row: span 2; }
.suite-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s ease;
}
.suite-card.large img { aspect-ratio: 16 / 10; }
.suite-card-body { padding: 26px; }
.suite-card-body p { margin-top: 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chips span {
  border: 1px solid var(--line);
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
}

.experience-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.experience-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .7s ease;
}
.experience-row article { overflow: hidden; }
.experience-row h3 { margin-top: 22px; }
.experience-row p { margin-top: 8px; }

.newsletter {
  padding: var(--section) var(--gutter);
  text-align: center;
  background: var(--charcoal);
  color: #fff;
}
.newsletter p { color: rgba(255,255,255,.72); }
.newsletter form {
  display: flex;
  gap: 14px;
  width: min(620px, 100%);
  margin: 38px auto 0;
}
.newsletter input { color: #fff; border-color: rgba(255,255,255,.3); }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(260px, .7fr);
  gap: 40px 80px;
  align-items: start;
  width: 100%;
  padding: 76px max(var(--gutter), calc((100vw - var(--max)) / 2)) 36px;
  background: var(--charcoal);
  color: #fff;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 34px;
  justify-self: end;
}
.footer-brand { display: inline-block; margin-bottom: 18px; color: #fff; }
.copyright {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

.page-hero {
  padding: 140px var(--gutter) 48px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.page-hero p { max-width: 680px; font-size: 18px; margin-top: 22px; }
.page-hero + .section {
  padding-top: 40px;
}

.site-page {
  --page-bg: #f7f5f1;
  --page-ink: #171716;
  --page-muted: #62605a;
  --page-surface: #fffdf8;
  --page-surface-soft: #ebe7df;
  --page-border: rgba(29, 28, 26, .14);
  --page-accent: #8a6a16;
  --page-shadow: var(--elevated-shadow);
  background: var(--page-bg);
  color: var(--page-ink);
}

.site-page .page-hero {
  position: relative;
  display: grid;
  gap: 20px;
  padding-top: 152px;
  padding-bottom: 56px;
}

.site-page .page-hero::after {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--page-accent);
}

.site-page .page-hero h1 {
  max-width: 1060px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: .96;
  font-weight: 600;
  text-wrap: balance;
}

.site-page .page-hero p {
  max-width: 760px;
  color: var(--page-muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.site-page .section {
  padding-block: clamp(64px, 8vw, 104px);
}

.site-page .section.muted {
  background: var(--page-surface-soft);
}

.site-page .filter-row {
  gap: 10px;
  padding: 10px;
  margin-bottom: 46px;
  border: 1px solid var(--page-border);
  background: rgba(255,253,248,.72);
}

.site-page .filter-row button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  color: var(--page-muted);
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.site-page .filter-row button.active,
.site-page .filter-row button:hover {
  border-color: var(--page-border);
  background: var(--page-surface);
  color: var(--page-ink);
}

.site-page .room-card,
.site-page .feature-panel,
.site-page .contact-card,
.site-page .sticky-card,
.site-page .amenity-grid div {
  border-color: var(--page-border);
  background: var(--page-surface);
}

.site-page .room-card {
  padding-bottom: 24px;
  transition: transform var(--motion-med) ease, box-shadow var(--motion-med) ease, border-color var(--motion-med) ease;
}

.site-page .room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--page-shadow);
  border-color: rgba(138, 106, 22, .28);
}

.site-page .room-card img {
  background: var(--page-surface-soft);
}

.site-page .room-meta,
.site-page .room-card .button,
.site-page .room-card .text-link {
  margin-inline: 24px;
}

.site-page .two-column {
  background: var(--page-bg);
}

.site-page .feature-panel {
  border-top: 1px solid var(--page-border);
}

.site-page .feature-copy {
  background: var(--page-surface);
}

.site-page .gallery-grid .image-frame,
.site-page .map-panel,
.site-page .contact-strip img {
  border: 1px solid var(--page-border);
}

.site-page .detail-hero .hero-content {
  padding-bottom: 92px;
}

.site-page .spec-bar {
  padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--page-surface);
  border-color: var(--page-border);
}

.site-page .detail-layout,
.site-page .contact-grid {
  align-items: start;
}

.site-page .contact-card,
.site-page .sticky-card,
.site-page .amenity-grid div {
  box-shadow: 0 18px 48px rgba(23, 23, 22, .06);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--page-surface-soft);
}

.contact-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 58px;
}
.filter-row button {
  border: 0;
  background: transparent;
  padding: 0 0 8px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.filter-row button.active { border-color: var(--charcoal); }
.room-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 70px 32px;
}
.room-card { grid-column: span 6; }
.room-card.featured { grid-column: span 12; }
.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.room-card.featured img { aspect-ratio: 21 / 9; }
.room-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}
.room-card .button { margin-top: 22px; }

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-panel img { width: 100%; height: 560px; object-fit: cover; }
.feature-copy { padding: clamp(32px, 5vw, 64px); }
.feature-copy .button {
  margin-top: 32px;
}
.menu-list { display: grid; gap: 24px; margin-top: 34px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-stack { display: grid; gap: 32px; }

.detail-hero { min-height: 92vh; display: flex; align-items: end; }
.spec-bar {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.specs { display: flex; gap: clamp(24px, 5vw, 72px); }
.specs strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 30px; line-height: 1.2; }
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
}
.sticky-card {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 32px;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.amenity-grid div {
  border: 1px solid var(--line);
  padding: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
}
.contact-card {
  border: 1px solid var(--line);
  padding: 34px;
  background: var(--surface);
}
.contact-form { display: grid; gap: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.map-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--muted);
}
.map-panel img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.map-card {
  position: absolute;
  left: var(--gutter);
  bottom: var(--gutter);
  width: min(360px, calc(100% - 48px));
  background: rgba(251,249,249,.94);
  border: 1px solid var(--line);
  padding: 28px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 360px;
  padding: 16px 18px;
  background: var(--charcoal);
  color: #fff;
  border-left: 3px solid var(--gold);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.visible { opacity: 1; transform: translateY(0); }

/* Homepage redesign */
.home-page {
  --home-bg: #f7f5f1;
  --home-ink: #171716;
  --home-muted: #62605a;
  --home-surface: #fffdf8;
  --home-surface-soft: #ebe7df;
  --home-border: rgba(29, 28, 26, .14);
  --home-accent: #c8a64c;
  --home-accent-strong: #8a6a16;
  --home-shadow: var(--elevated-shadow);
  --motion-med: 260ms;
  background: var(--home-bg);
}

.home-page section {
  color: var(--home-ink);
}

.home-hero {
  min-height: 100svh;
  background: var(--charcoal);
}

.home-hero > img {
  transform: scale(1.03);
  filter: saturate(.92) contrast(1.02);
  will-change: transform;
}

.home-hero .hero-scrim {
  background:
    linear-gradient(180deg, rgba(15, 16, 15, .28), rgba(15, 16, 15, .54)),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.18), transparent 38%);
}

.home-hero-content {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 132px;
  padding-bottom: 188px;
}

.home-hero-content h1 {
  max-width: 980px;
  font-size: clamp(58px, 9vw, 124px);
  font-weight: 600;
  line-height: .94;
  text-wrap: balance;
}

.home-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-scroll-cue {
  position: relative;
  display: block;
  width: 1px;
  height: 54px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.28);
}

.hero-scroll-cue::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 22px;
  background: #fff;
  animation: scrollCue 1.8s cubic-bezier(.22, 1, .36, 1) infinite;
}

.home-page .booking-bar {
  width: min(1120px, calc(100% - 48px));
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.28);
  box-shadow: var(--home-shadow);
}

.home-page .booking-bar label {
  background: rgba(255,253,248,.96);
  padding: 20px 22px;
}

.home-page .booking-bar .button-dark {
  min-height: 100%;
  letter-spacing: .1em;
}

.home-story {
  grid-template-columns: minmax(0, .85fr) 210px minmax(340px, .95fr);
  gap: clamp(28px, 5vw, 72px);
}

.home-story .copy-block h2,
.home-suites h2,
.home-experiences h2,
.home-newsletter h2 {
  text-wrap: balance;
}

.story-panel {
  align-self: stretch;
  display: grid;
  align-items: end;
  border-left: 1px solid var(--home-border);
}

.story-note {
  padding-left: 24px;
}

.story-note span {
  display: block;
  margin-bottom: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  color: var(--home-accent-strong);
}

.story-note p {
  color: var(--home-muted);
  font-size: 14px;
}

.home-suites.section.muted {
  background: #ebe7df;
}

.home-suites .suite-grid {
  align-items: stretch;
}

.home-suites .suite-card {
  border-color: rgba(29, 28, 26, .12);
  background: var(--home-surface);
  transition: transform var(--motion-med) ease, box-shadow var(--motion-med) ease, border-color var(--motion-med) ease;
}

.home-suites .suite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow);
  border-color: rgba(138, 106, 22, .28);
}

.home-suites .suite-card-body {
  display: grid;
  gap: 8px;
  padding: 28px;
}

.home-experiences .experience-row article {
  border-top: 1px solid var(--home-border);
  padding-top: 18px;
}

.home-experiences .experience-row img {
  margin-bottom: 22px;
}

.home-newsletter {
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 44%),
    var(--charcoal);
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition:
    opacity 700ms cubic-bezier(.22, 1, .36, 1),
    transform 700ms cubic-bezier(.22, 1, .36, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.booking-bar[data-animate] {
  transform: translateX(-50%) translateY(28px);
}

.booking-bar[data-animate].is-visible {
  transform: translateX(-50%) translateY(0);
}

.suite-grid [data-animate]:nth-child(2),
.experience-row [data-animate]:nth-child(2) {
  transition-delay: 80ms;
}

.suite-grid [data-animate]:nth-child(3),
.experience-row [data-animate]:nth-child(3) {
  transition-delay: 150ms;
}

@keyframes scrollCue {
  0% { transform: translateY(-120%); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: transparent;
  }
  .nav-toggle span { display: block; width: 22px; height: 1px; background: var(--text); }
  .site-nav {
    position: fixed;
    top: 76px;
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    grid-column: 1 / -1;
    padding: 22px;
    background: var(--bg);
    border: 1px solid var(--line);
  }
  .site-nav.open { display: grid; gap: 12px; }
  .full-hero {
    display: block;
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 48px;
  }
  .full-hero .hero-content {
    width: 100%;
    max-width: 760px;
    padding-top: 54px;
    padding-bottom: 132px;
  }
  .booking-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    grid-template-columns: 1fr;
    margin: -96px auto 0;
  }
  .split, .suite-grid, .experience-row, .two-column, .gallery-grid, .detail-layout, .contact-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .suite-card.large { grid-row: auto; }
  .room-card, .room-card.featured { grid-column: span 12; }
  .room-card.featured img { aspect-ratio: 4 / 3; }
  .feature-panel img { height: 420px; }
  .site-footer { grid-template-columns: 1fr; }
  .spec-bar, .specs { flex-direction: column; }
}

@media (max-width: 620px) {
  .newsletter form, .form-grid { grid-template-columns: 1fr; display: grid; }
  .page-hero { padding-top: 130px; }
  .hero-content { padding-inline: 24px; }
  .section, .page-hero { padding-inline: 24px; }
  .site-header, .site-footer, .spec-bar { padding-inline: 24px; }
  .filter-row { overflow-x: auto; flex-wrap: nowrap; }
}
