@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:wght@400;500&family=Libre+Caslon+Display&family=Marcellus&family=Outfit:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap");

:root {
  --ink: #171412;
  --ink-soft: #5d554d;
  --paper: #fbfaf6;
  --white: #ffffff;
  --warm: #eee7da;
  --line: rgba(23, 20, 18, 0.14);
  --line-strong: rgba(23, 20, 18, 0.24);
  --gold: #9b7a3e;
  --gold-soft: #d9c79c;
  --forest: #24372e;
  --stone: #ded8cc;
  --shadow: 0 24px 70px rgba(23, 20, 18, 0.14);
  --serif: "Libre Caslon Display", Georgia, serif;
  --elegant: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", Arial, sans-serif;
  --caps: "Cinzel", Georgia, serif;
  --brand: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10000;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  background: rgba(251, 250, 246, 0.98);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 20, 18, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid,
.site-header.is-open,
.site-header:focus-within {
  color: var(--ink);
  border-color: var(--line);
}

.nav-inner {
  width: min(1680px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 1.7vw, 28px);
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
  max-width: max-content;
  flex-shrink: 0;
}

.brand-logo,
.brand-mark-img {
  width: 82px;
  height: 58px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 5px;
  color: #01182d;
  line-height: 1;
}

.brand-mark {
  font-family: var(--brand);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub {
  color: #01182d;
  font-family: var(--caps);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-align: center;
  text-transform: uppercase;
}

.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;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0px, 0.25vw, 6px);
  min-width: 0;
}

.nav-links a {
  position: relative;
  padding: 38px clamp(6px, 0.62vw, 12px) 34px;
  font-family: var(--caps);
  font-size: clamp(10px, 0.62vw, 11px);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 27px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: max-content;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, width 220ms ease, background 180ms ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 5px));
}

.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 5px));
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.site-header.is-open .menu-toggle {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(155, 122, 62, 0.12);
}

.site-header.is-open .menu-toggle span {
  width: 23px;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.button,
.text-button,
.rate-button,
.outline-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  font-family: var(--caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button,
.rate-button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.rate-button {
  padding-inline: 20px;
  flex-shrink: 0;
}

.button:hover,
.button:focus-visible,
.rate-button:hover,
.rate-button:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.outline-button {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.outline-button:hover,
.outline-button:focus-visible {
  border-color: var(--ink);
}

.text-button {
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(860px, 92vh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #171412;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.74)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.02) 58%);
}

.hero.compact {
  min-height: 620px;
}

.hero-content {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 180px 0 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section .eyebrow {
  color: var(--gold);
}

.section.dark .eyebrow,
.hero .eyebrow,
.split-panel .eyebrow,
.booking-head .eyebrow {
  color: var(--gold-soft);
}

.hero h1,
.page-title {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--elegant);
  font-size: clamp(24px, 2.45vw, 34px);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

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

.hero-meta {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-meta a,
.hero-meta div {
  min-height: 76px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta span {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.luxury-bar {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 64px));
  margin: -38px auto 0;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 24px 70px rgba(23, 20, 18, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.luxury-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) minmax(168px, 0.72fr);
  gap: 1px;
  background: var(--line);
}

.luxury-bar-item {
  min-width: 0;
  padding: 18px 20px;
  background: var(--paper);
}

.luxury-bar-item span {
  display: block;
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.luxury-bar-item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--elegant);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 500;
  line-height: 1.05;
}

.luxury-bar-action {
  display: grid;
  align-items: stretch;
  min-width: 168px;
  background: var(--paper);
}

.luxury-bar-action .button {
  width: 100%;
  min-height: 100%;
}

.section {
  padding: 104px 0;
}

.section.tight {
  padding: 74px 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.warm {
  background: var(--warm);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head.single {
  display: block;
  max-width: 760px;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.section-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}

.dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--elegant);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.45;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--stone);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.content-stack > * + * {
  margin-top: 24px;
}

.lead {
  max-width: 780px;
  color: #403a34;
  font-family: var(--elegant);
  font-size: clamp(24px, 2.15vw, 32px);
  font-weight: 400;
  line-height: 1.52;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.85fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.signature-card {
  position: relative;
  min-height: 340px;
  display: grid;
  align-content: end;
  overflow: hidden;
  isolation: isolate;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--signature-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 500ms ease;
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.signature-card:hover::before {
  transform: scale(1.06);
}

.signature-card.large {
  grid-row: span 2;
  min-height: 681px;
}

.signature-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 0.98;
}

.signature-card p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  padding: 28px;
  background: var(--paper);
}

.service-item span {
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  padding: 28px;
  background: var(--paper);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-grid,
.feature-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.collection-card,
.feature-card,
.offer-card {
  min-width: 0;
  background: var(--paper);
}

.collection-card img,
.offer-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.collection-body,
.feature-card,
.offer-body {
  padding: 30px;
}

.collection-card h3,
.feature-card h3,
.offer-card h3,
.room-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.06;
}

.room-card h3 {
  min-height: 54px;
}

.card-kicker {
  margin: 10px 0 0;
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card p,
.feature-card p,
.offer-card p,
.room-card p,
.footer p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.room-card p {
  margin: 0;
  min-height: 112px;
}

.feature-card,
.offer-card,
.collection-card,
.room-card,
.contact-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.offer-card:hover,
.collection-card:hover,
.room-card:hover {
  border-color: rgba(155, 122, 62, 0.34);
  box-shadow: 0 18px 46px rgba(23, 20, 18, 0.08);
  transform: translateY(-2px);
}

.link-row {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-row::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.split-band .split-image {
  min-height: 520px;
  background-position: center;
  background-size: cover;
}

.split-panel {
  display: grid;
  align-content: center;
  padding: 80px max(48px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: var(--white);
}

.split-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.filter-panel {
  position: sticky;
  top: 92px;
  z-index: 20;
  margin-top: 0;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 20px 54px rgba(23, 20, 18, 0.1);
  backdrop-filter: blur(18px);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(140px, 1fr)) auto;
  gap: 1px;
  background: var(--line);
}

.amenity-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.92);
}

.amenity-filter > span {
  margin-right: 6px;
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.amenity-filter button {
  min-height: 38px;
  border: 1px solid rgba(23, 20, 18, 0.18);
  background: transparent;
  color: var(--ink);
  padding: 0 14px;
  cursor: pointer;
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.amenity-filter button:hover,
.amenity-filter button:focus-visible,
.amenity-filter button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.field {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--paper);
}

.field label {
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--elegant);
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  outline: none;
}

.field input::placeholder {
  color: rgba(93, 85, 77, 0.72);
}

.field.date-field {
  position: relative;
  overflow: visible;
}

.field input.is-enhanced-date {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.date-display {
  position: relative;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(155, 122, 62, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(238, 231, 218, 0.34));
  color: var(--ink);
  cursor: pointer;
  padding: 0 14px 0 16px;
  text-align: left;
}

.date-display span {
  font-family: var(--elegant);
  font-size: 22px;
  line-height: 1;
}

.date-display::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  background:
    linear-gradient(var(--gold), var(--gold)) 4px 6px / 10px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 4px 10px / 10px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 4px 14px / 6px 1px no-repeat;
  opacity: 0.86;
}

.date-display:hover,
.date-display:focus-visible,
.date-display.is-open {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(155, 122, 62, 0.12);
}

.booking-calendar {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  z-index: 30;
  width: min(340px, calc(100vw - 64px));
  transform: translateX(-50%);
  border: 1px solid rgba(155, 122, 62, 0.28);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(23, 20, 18, 0.2);
  padding: 18px;
}

.booking-calendar[hidden] {
  display: none;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.calendar-month {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.calendar-nav {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-weekday {
  color: var(--gold);
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day,
.calendar-empty {
  min-height: 38px;
}

.calendar-day {
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  border-color: rgba(155, 122, 62, 0.42);
  background: rgba(155, 122, 62, 0.08);
}

.calendar-day.is-today {
  border-color: rgba(155, 122, 62, 0.36);
}

.calendar-day.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.calendar-day:disabled {
  color: rgba(93, 85, 77, 0.36);
  cursor: not-allowed;
}

.filter-action {
  display: grid;
  align-items: end;
  padding: 16px;
  background: var(--paper);
}

.results-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  gap: 20px;
  margin: 46px 0 26px;
}

.results-count {
  color: var(--ink-soft);
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sort-field {
  width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.88);
}

.sort-field span {
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sort-field select {
  min-height: 34px;
  font-size: 24px;
}

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

.room-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.room-media {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.room-media img {
  width: 100%;
  aspect-ratio: 1.26;
  object-fit: cover;
  transition: transform 500ms ease;
}

.room-card:hover .room-media img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  left: 18px;
  top: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  background: rgba(23, 20, 18, 0.78);
  color: var(--white);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.room-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
}

.room-meta {
  min-height: 86px;
}

.tag-list {
  min-height: 74px;
}

.room-meta span,
.tag-list span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
}

.room-actions .button,
.room-actions .outline-button {
  min-width: 168px;
  min-height: 58px;
}

.empty-state {
  display: none;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--white);
}

.empty-state.is-visible {
  display: block;
}

.video-wrap,
.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-wrap iframe,
.map-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.weather-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.4fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 24px 70px rgba(23, 20, 18, 0.1);
}

.weather-current,
.weather-day {
  background: rgba(251, 250, 246, 0.94);
}

.weather-current {
  min-width: 0;
  padding: 34px;
}

.weather-current h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.92;
}

.weather-current p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.weather-stats {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.weather-stats span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.weather-stats strong {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.weather-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  min-width: 0;
  background: var(--line);
}

.weather-day {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 240px;
  padding: 24px 20px;
}

.weather-day span {
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.weather-day strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.95;
}

.weather-day p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.weather-day.is-loading strong,
.weather-day.is-loading p {
  color: rgba(93, 85, 77, 0.48);
}

.weather-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.weather-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--gold);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0 16px;
}

.form-grid textarea {
  min-height: 160px;
  padding-top: 16px;
  resize: vertical;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(23, 20, 18, 0.14);
  background: rgba(155, 122, 62, 0.1);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(128, 44, 35, 0.28);
  background: rgba(128, 44, 35, 0.1);
}

.site-footer {
  background: #12100f;
  color: var(--white);
}

.footer {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 42px;
}

.footer h2,
.footer h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 400;
}

.footer h2 {
  font-size: 36px;
}

.footer h3 {
  color: var(--gold-soft);
  font-size: 22px;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
}

.booking-overlay.is-open {
  display: block;
}

.booking-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.booking-panel {
  position: absolute;
  top: 108px;
  right: max(24px, calc((100vw - 1240px) / 2));
  width: min(860px, calc(100vw - 48px));
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.24);
}

.booking-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.booking-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.booking-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

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

.booking-form .field {
  padding: 18px;
}

.booking-form .field select {
  font-family: var(--elegant);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

.booking-form .field:nth-child(1) {
  order: 1;
}

.booking-form .field:nth-child(2) {
  order: 3;
}

.booking-form .field:nth-child(3) {
  order: 4;
}

.booking-form .field:nth-child(4) {
  order: 2;
}

.booking-form .submit-cell {
  display: grid;
  order: 5;
  grid-column: 1 / -1;
  align-items: end;
  padding: 18px;
  background: var(--paper);
}

.booking-note {
  padding: 18px 30px 30px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.booking-error {
  display: none;
  margin: 0 30px 20px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(155, 122, 62, 0.1);
  color: var(--ink);
}

.booking-error.is-visible {
  display: block;
}

@media (max-width: 1340px) {
  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: max(20px, calc((100vw - 1680px) / 2 + 20px));
    display: none;
    width: min(360px, calc(100vw - 40px));
    padding: 22px 28px;
    background: rgba(251, 250, 246, 0.98);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: 0 26px 70px rgba(23, 20, 18, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    justify-content: stretch;
    align-items: stretch;
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 20, 18, 0.1);
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    bottom: 12px;
    left: 0;
    right: 0;
  }

  .section-head,
  .intro-grid,
  .split-band,
  .weather-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .weather-days {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
  }

  .collection-grid,
  .feature-grid,
  .offer-grid,
  .room-grid,
  .signature-grid,
  .service-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-card.large {
    grid-row: span 1;
    min-height: 420px;
  }

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

@media (max-width: 980px) {
  .luxury-bar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .luxury-bar-action {
    grid-column: 1 / -1;
    min-height: 54px;
  }
}

@media (max-width: 720px) {
  .nav-inner,
  .container,
  .footer,
  .hero-content,
  .hero-meta {
    width: min(100% - 32px, 1240px);
  }

  .nav-inner {
    min-height: 78px;
    gap: 12px;
  }

  .brand-mark {
    font-size: 24px;
  }

  .brand-logo {
    width: 58px;
    height: 42px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    font-size: 17px;
    letter-spacing: 0.13em;
  }

  .brand-sub {
    font-size: 8px;
    letter-spacing: 0.26em;
  }

  .rate-button {
    min-width: 0;
    padding: 0 14px;
  }

  .hero,
  .hero.compact {
    min-height: 680px;
  }

  .hero-content {
    padding: 150px 0 42px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(46px, 16vw, 72px);
  }

  .hero-meta,
  .stats,
  .collection-grid,
  .feature-grid,
  .offer-grid,
  .room-grid,
  .signature-grid,
  .service-row,
  .luxury-bar-grid,
  .footer-grid,
  .form-grid,
  .filter-grid,
  .weather-days,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .luxury-bar {
    width: min(100% - 32px, 1240px);
    margin-top: -28px;
  }

  .luxury-bar-action {
    min-width: 0;
  }

  .weather-current,
  .weather-day {
    padding: 24px;
  }

  .weather-day {
    min-height: 180px;
  }

  .room-card h3,
  .room-card p,
  .room-meta,
  .tag-list {
    min-height: 0;
  }

  .room-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .room-actions .button,
  .room-actions .outline-button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 52px;
    padding: 0 12px;
    font-size: 10px;
  }

  .signature-card,
  .signature-card.large {
    min-height: 390px;
    padding: 28px;
  }

  .section {
    padding: 74px 0;
  }

  .section-title {
    font-size: clamp(36px, 12vw, 54px);
  }

  .lead {
    font-size: 22px;
    line-height: 1.45;
  }

  .image-frame {
    min-height: 360px;
  }

  .filter-panel {
    position: static;
    margin-top: 0;
  }

  .results-bar,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-bar {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    inset: 0;
    width: 100%;
    max-height: 100dvh;
    overflow: auto;
  }

  .booking-head {
    position: sticky;
    top: 0;
    z-index: 10;
    align-items: center;
    padding: 14px 18px;
    background: var(--paper);
  }

  .booking-head .eyebrow {
    margin: 0 0 4px;
    font-size: 9px;
  }

  .booking-head h2 {
    font-size: 28px;
  }

  .booking-close {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .booking-form .field {
    padding: 12px 16px;
    gap: 6px;
  }

  .booking-form .field select,
  .booking-form .field input,
  .date-display span {
    font-size: 21px;
  }

  .booking-form .field input,
  .booking-form .field select,
  .date-display {
    min-height: 42px;
  }

  .date-display {
    padding: 0 12px;
  }

  .booking-form .submit-cell {
    padding: 14px 16px;
  }

  .booking-form .submit-cell .button {
    min-height: 52px;
  }

  .booking-note {
    padding: 14px 20px 22px;
    font-size: 13px;
  }

  .booking-calendar {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(330px, calc(100vw - 28px));
    max-height: calc(100dvh - 96px);
    overflow: auto;
    transform: translate(-50%, -50%);
    padding: 14px;
  }

  .calendar-head {
    margin-bottom: 10px;
  }

  .calendar-month {
    font-size: 22px;
  }

  .calendar-nav {
    width: 34px;
    height: 34px;
  }

  .calendar-day,
  .calendar-empty {
    min-height: 34px;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand-wordmark {
    display: none;
  }

  .brand-logo {
    width: 62px;
    height: 48px;
  }

  .nav-actions {
    gap: 8px;
    justify-self: end;
  }

  .rate-button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }
}
