@font-face {
  font-family: "Fraunces";
  src: url("./assets/fraunces.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

@font-face {
  font-family: "DM Sans";
  src: url("./assets/dm-sans.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

:root {
  --ink: #071b33;
  --ink-soft: #16304b;
  --paper: #f7f2e8;
  --paper-2: #eee4d4;
  --white: #fffdf8;
  --gold: #bf9750;
  --gold-bright: #ddb96f;
  --sea: #196f8f;
  --line: rgba(7, 27, 51, 0.16);
  --line-light: rgba(255, 253, 248, 0.28);
  --shadow: 0 24px 70px rgba(7, 27, 51, 0.14);
  --display: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 430;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(4rem, 9vw, 8.7rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.shell {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -90px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--sea);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.body-copy {
  max-width: 640px;
  color: #526170;
  font-size: 1.08rem;
  line-height: 1.85;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 180ms ease;
}

.button { background: var(--gold); color: var(--ink); }
.button:hover { background: var(--gold-bright); transform: translateY(-2px); }
.button-ghost { border-color: currentColor; }
.button-ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--gold-bright); }

.arrow { font-size: 1.05rem; line-height: 1; }

/* Shared header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--white);
}

.site-header.is-solid,
.site-header.interior-header {
  position: fixed;
  background: rgba(247, 242, 232, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line-light);
}

.is-solid .header-inner,
.interior-header .header-inner { border-color: transparent; }

.brand {
  display: inline-grid;
  width: max-content;
  gap: 2px;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 520;
  letter-spacing: -0.05em;
}

.brand small {
  color: currentColor;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.74;
}

.brand-mark { color: var(--gold-bright); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 0.83rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-cta { justify-self: end; }
.menu-toggle { display: none; }
.mobile-nav { display: none; }

/* Home hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay { position: absolute; inset: 0; z-index: -1; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  animation: slow-arrival 18s cubic-bezier(0.2, 0.4, 0.35, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 17, 33, 0.83) 0%, rgba(4, 17, 33, 0.38) 48%, rgba(4, 17, 33, 0.08) 72%),
    linear-gradient(180deg, rgba(4, 17, 33, 0.46) 0%, rgba(4, 17, 33, 0.05) 38%, rgba(4, 17, 33, 0.72) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 230px;
  align-items: end;
  min-height: 100svh;
  padding-top: 170px;
}

.hero-copy { padding: 0 0 10vh; }
.hero-copy .eyebrow { color: var(--gold-bright); }

.hero h1 { max-width: 980px; margin-bottom: 30px; }
.hero h1 em { color: var(--gold-bright); font-weight: 300; }

.hero-intro {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.12rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .button-ghost { color: var(--white); border-color: rgba(255,255,255,.62); }
.hero .button-ghost:hover { background: var(--white); color: var(--ink); }

.hero-rail {
  display: grid;
  align-self: stretch;
  align-content: end;
  padding: 150px 0 48px 32px;
  border-left: 1px solid var(--line-light);
}

.hero-rating {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.hero-rating strong {
  display: block;
  font-family: var(--display);
  font-size: 3.9rem;
  font-weight: 420;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-rating span,
.hero-address {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-address { margin-top: 44px; line-height: 1.7; }

@keyframes slow-arrival { from { transform: scale(1); } to { transform: scale(1.09); } }

/* Editorial intro */
.intro-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
  padding-block: 140px;
}

.arched-image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border-radius: 240px 240px 18px 18px;
  box-shadow: var(--shadow);
}

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

.image-seal {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.05;
  text-align: center;
}

.intro-copy h2 { max-width: 760px; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.fact-row strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 430;
  line-height: 1;
}

.fact-row span {
  display: block;
  margin-top: 8px;
  color: #61707e;
  font-size: 0.8rem;
}

/* Room switcher */
.rooms-preview {
  padding-block: 115px;
  background: var(--ink);
  color: var(--white);
}

.rooms-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}

.rooms-heading .eyebrow { color: var(--gold-bright); }
.rooms-heading p:last-child { color: rgba(255, 253, 248, 0.68); }

.room-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.room-tabs button {
  padding: 15px 20px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.56);
  cursor: pointer;
}

.room-tabs button[aria-selected="true"] {
  border-color: var(--gold-bright);
  color: var(--white);
}

.room-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px 110px 4px 4px;
}

.room-panel figure {
  min-height: 580px;
  margin: 0;
  overflow: hidden;
}

.room-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 76px);
  background: #0c2340;
}

.room-kicker { color: var(--gold-bright); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.room-panel-copy h3 { margin: 14px 0 20px; font-size: clamp(2.4rem, 4vw, 4rem); }
.room-panel-copy p { color: rgba(255,255,255,.68); }

.room-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 30px;
  padding-block: 22px;
  border-block: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.84);
  font-size: .84rem;
}

/* Price band */
.price-band {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
  padding-block: 100px;
}

.price-card {
  position: relative;
  padding: 48px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.price-card::after {
  content: "VR";
  position: absolute;
  right: -18px;
  bottom: -48px;
  color: rgba(191, 151, 80, .14);
  font-family: var(--display);
  font-size: 12rem;
  line-height: 1;
}

.price-card span { position: relative; z-index: 1; display: block; }
.price-from { color: #65717c; font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; }
.price-value { margin: 10px 0; font-family: var(--display); font-size: clamp(3.8rem, 7vw, 6.8rem); letter-spacing: -.07em; line-height: 1; }
.price-note { max-width: 380px; color: #5a6974; font-size: .85rem; }

/* Location / quote */
.location-strip {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.location-strip > img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .48; }
.location-strip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,51,.91), rgba(7,27,51,.3)); }
.location-content { position: relative; z-index: 1; display: grid; align-content: center; min-height: 620px; }
.location-content .eyebrow { color: var(--gold-bright); }
.location-content h2 { max-width: 770px; }
.location-content p { max-width: 550px; color: rgba(255,255,255,.76); }

.review-bar {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 70px;
  padding-block: 110px;
}

.rating-large { font-family: var(--display); font-size: clamp(6rem, 12vw, 11rem); letter-spacing: -.1em; line-height: .8; }
.rating-large small { font-family: var(--sans); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.review-copy blockquote { margin: 0 0 20px; font-family: var(--display); font-size: clamp(1.9rem, 4vw, 3.5rem); line-height: 1.2; letter-spacing: -.035em; }
.review-copy p { color: #61707e; }

/* Interior pages */
.page-main { padding-top: 104px; }

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero > img,
.page-hero::after { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.page-hero > img { object-fit: cover; }
.page-hero::after { content: ""; background: linear-gradient(90deg, rgba(7,27,51,.85), rgba(7,27,51,.18)), linear-gradient(0deg, rgba(7,27,51,.68), transparent 55%); }
.page-hero-copy { padding-bottom: 70px; }
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 { max-width: 1000px; margin-bottom: 18px; font-size: clamp(4.1rem, 8vw, 8rem); }
.page-hero p { max-width: 590px; color: rgba(255,255,255,.78); }

.room-detail {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7vw;
  align-items: center;
  padding-block: 120px;
  border-bottom: 1px solid var(--line);
}

.room-detail:nth-child(even) .room-gallery { order: 2; }
.room-detail:nth-child(even) .room-detail-copy { order: 1; }

.room-gallery {
  display: grid;
  grid-template-columns: 1.6fr .8fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
}

.room-gallery button {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.room-gallery button:first-child { grid-row: 1 / 3; }
.room-gallery img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-gallery button:hover img { transform: scale(1.035); }
.room-detail-copy .eyebrow { margin-bottom: 16px; }
.room-detail-copy h2 { margin-bottom: 25px; }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin: 30px 0;
  padding: 25px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.feature-list li { position: relative; padding-left: 20px; color: #536271; font-size: .9rem; }
.feature-list li::before { content: "◇"; position: absolute; left: 0; color: var(--gold); }

.room-price-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.room-price-line strong { font-family: var(--display); font-size: 1.55rem; font-weight: 450; }

.amenities {
  padding-block: 110px;
  background: var(--paper-2);
}

.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 46px; background: rgba(7,27,51,.14); border: 1px solid rgba(7,27,51,.14); }
.amenity { min-height: 180px; padding: 28px; background: var(--paper-2); }
.amenity .icon { display: block; margin-bottom: 32px; color: var(--gold); font-family: var(--display); font-size: 2rem; }
.amenity strong { display: block; margin-bottom: 8px; }
.amenity p { margin: 0; color: #66727c; font-size: .86rem; }

.info-note {
  margin-top: 36px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.45);
  color: #5e6a75;
  font-size: .88rem;
}

.destination-intro {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 9vw;
  padding-block: 125px;
}

.dropcap::first-letter { float: left; margin: 10px 12px 0 0; color: var(--gold); font-family: var(--display); font-size: 5rem; line-height: .65; }

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

.distance-card { min-height: 210px; padding: 34px; background: var(--paper); }
.distance-card strong { display: block; margin-bottom: 28px; font-family: var(--display); font-size: 2.8rem; font-weight: 430; letter-spacing: -.06em; }
.distance-card span { color: #64717b; }

.map-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin-block: 110px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.map-visual { position: relative; min-height: 520px; overflow: hidden; }
.map-visual img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .7; }
.map-visual::after { content: "63"; position: absolute; inset: 50% auto auto 50%; display: grid; width: 88px; height: 88px; place-items: center; transform: translate(-50%, -50%); border-radius: 50% 50% 50% 0; background: var(--gold); color: var(--ink); font-family: var(--display); font-size: 2rem; box-shadow: var(--shadow); }
.map-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 84px); }
.map-copy .eyebrow { color: var(--gold-bright); }
.map-copy p { color: rgba(255,255,255,.7); }

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
  padding-block: 125px;
}

.logo-card {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background: #e7dac6;
}

.logo-card img { width: min(95%, 650px); }

.contact-lines { margin-top: 44px; border-top: 1px solid var(--line); }
.contact-line { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; align-items: center; padding-block: 25px; border-bottom: 1px solid var(--line); }
.contact-line span { color: #6a7580; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-line strong { font-size: 1.03rem; font-weight: 550; overflow-wrap: anywhere; }
.contact-line a:hover { color: var(--sea); }

.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.rule { padding: 24px; background: var(--white); border: 1px solid var(--line); }
.rule strong { display: block; margin-bottom: 5px; }
.rule span { color: #697580; font-size: .86rem; }

/* CTA and footer */
.contact-cta { padding-block: 110px; background: var(--gold); color: var(--ink); }
.contact-cta-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: end; }
.contact-cta h2 { margin-bottom: 0; }
.contact-cta .button-ghost { justify-self: end; }

.site-footer { padding: 70px 0 30px; background: #041426; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.1fr .55fr .7fr; gap: 70px; }
.footer-brand .brand { margin-bottom: 25px; }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.6); }
.footer-nav, .footer-contact { display: grid; align-content: start; gap: 12px; }
.footer-nav strong, .footer-contact strong { margin-bottom: 7px; color: var(--gold-bright); font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.7); font-size: .88rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.48); font-size: .72rem; }

dialog.lightbox {
  width: min(1080px, calc(100% - 28px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

dialog.lightbox::backdrop { background: rgba(2, 10, 20, .9); backdrop-filter: blur(6px); }
.lightbox img { max-height: 82vh; object-fit: contain; }
.lightbox-close { position: fixed; top: 22px; right: 22px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(7,27,51,.65); color: #fff; cursor: pointer; font-size: 1.4rem; }

/* Booking demo */
.booking-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 560px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.booking-hero > img,
.booking-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.booking-hero > img { object-fit: cover; object-position: 50% 57%; }
.booking-hero::after { content: ""; background: linear-gradient(90deg, rgba(7,27,51,.92) 0%, rgba(7,27,51,.52) 48%, rgba(7,27,51,.2) 100%), linear-gradient(0deg, rgba(7,27,51,.66), transparent 62%); }
.booking-hero-copy { padding-bottom: 68px; }
.booking-hero .eyebrow { color: var(--gold-bright); }
.booking-hero h1 { margin-bottom: 20px; font-size: clamp(3.8rem, 7.5vw, 7.5rem); }
.booking-hero h1 em { color: var(--gold-bright); font-weight: 300; }
.booking-hero p:last-child { max-width: 590px; margin-bottom: 0; color: rgba(255,255,255,.76); }

.demo-notice { background: var(--gold); color: var(--ink); }
.demo-notice .shell { display: flex; gap: 22px; align-items: center; padding-block: 16px; }
.demo-notice strong { flex: 0 0 auto; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.demo-notice span { font-size: .86rem; }

.booking-section { padding-block: 105px 125px; }
.booking-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 70px; align-items: end; margin-bottom: 60px; }
.booking-heading h2 { margin-bottom: 0; }
.booking-heading > p { margin-bottom: 10px; color: #5e6b77; }

.booking-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 52px; padding: 0; border-bottom: 1px solid var(--line); list-style: none; }
.booking-steps li { position: relative; }
.booking-steps li::after { content: ""; position: absolute; right: 100%; bottom: -1px; left: 0; height: 2px; background: var(--gold); transition: right .25s ease; }
.booking-steps li.is-current::after,
.booking-steps li.is-complete::after { right: 0; }
.booking-steps button { display: flex; width: 100%; align-items: center; gap: 13px; padding: 0 0 20px; border: 0; background: transparent; color: #6b7680; cursor: pointer; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-align: left; text-transform: uppercase; }
.booking-steps button:disabled { cursor: default; opacity: .48; }
.booking-steps button span { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); font-size: .69rem; }
.booking-steps .is-current button { color: var(--ink); }
.booking-steps .is-current button span { border-color: var(--ink); background: var(--ink); color: var(--white); }
.booking-steps .is-complete button span { border-color: var(--gold); background: var(--gold); }

.booking-layout { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr); gap: clamp(45px, 7vw, 95px); align-items: start; }
.booking-main { min-width: 0; }
.booking-panel[hidden] { display: none; }
.booking-panel h3 { margin-bottom: 18px; font-size: clamp(2.3rem, 4vw, 4.2rem); }
.step-label { margin-bottom: 14px; color: var(--sea); font-size: .71rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.booking-description { max-width: 690px; color: #5d6a75; }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-block: 34px; }
.booking-fields-dates { grid-template-columns: 1fr 1fr .8fr; }
.booking-fields label { display: grid; gap: 9px; color: var(--ink); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booking-fields input,
.booking-fields select,
.booking-fields textarea { width: 100%; min-width: 0; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink); font: 500 1rem/1.4 var(--sans); letter-spacing: normal; text-transform: none; }
.booking-fields input,
.booking-fields select { min-height: 58px; padding: 13px 15px; }
.booking-fields textarea { resize: vertical; padding: 15px; }
.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus { border-color: var(--sea); outline: 2px solid rgba(25,111,143,.15); outline-offset: 0; }
.booking-fields .optional { color: #7b858d; font-size: .65rem; font-weight: 500; }
.booking-fields .field-wide { grid-column: 1 / -1; }
.booking-fields .consent-field { grid-template-columns: 22px 1fr; align-items: start; gap: 12px; color: #526170; font-size: .82rem; font-weight: 500; letter-spacing: normal; line-height: 1.6; text-transform: none; }
.consent-field input { width: 20px; min-height: 20px; margin-top: 2px; accent-color: var(--ink); }
.booking-next { margin-top: 2px; }
.booking-actions { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 28px; }
.text-action,
.summary-edit { padding: 6px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--ink); cursor: pointer; font-size: .8rem; font-weight: 700; }
.text-action:hover,
.summary-edit:hover { color: var(--sea); }
.booking-error { margin: 24px 0; padding: 14px 17px; border-left: 3px solid #a23d32; background: #f6e5df; color: #782d25; font-size: .87rem; }
.booking-error:empty { display: none; }

.booking-room-list { display: grid; gap: 18px; margin-top: 34px; }
.booking-room-option { position: relative; display: grid; grid-template-columns: 190px 1fr; min-height: 150px; overflow: hidden; border: 1px solid var(--line); background: var(--white); cursor: pointer; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.booking-room-option:hover { transform: translateY(-2px); border-color: rgba(7,27,51,.36); box-shadow: 0 14px 36px rgba(7,27,51,.08); }
.booking-room-option:has(input:checked) { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.booking-room-option > input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.booking-room-option > input:focus-visible + img { outline: 3px solid var(--sea); outline-offset: -3px; }
.booking-room-option > img { width: 100%; height: 100%; min-height: 150px; object-fit: cover; }
.booking-room-content { display: grid; align-content: center; gap: 7px; padding: 22px 25px; }
.room-choice-top { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.room-choice-top strong { font-family: var(--display); font-size: 1.7rem; font-weight: 460; letter-spacing: -.04em; }
.choice-check { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: transparent; font-size: .76rem; }
.booking-room-option:has(input:checked) .choice-check { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.booking-room-content > span:not(.room-choice-top) { color: #5b6975; font-size: .84rem; }
.booking-room-content small { color: var(--sea); font-size: .76rem; }
.booking-room-option.is-unavailable { cursor: not-allowed; filter: grayscale(.35); opacity: .5; }
.booking-room-option.is-unavailable:hover { transform: none; box-shadow: none; }
.booking-room-content .capacity-note { color: #8b342d; font-weight: 700; }

.booking-summary { position: sticky; top: 126px; overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: 0 24px 65px rgba(7,27,51,.08); }
.summary-image { height: 225px; overflow: hidden; }
.summary-image img { height: 100%; object-fit: cover; transition: opacity .2s ease; }
.summary-body { padding: 31px; }
.summary-body .eyebrow { margin-bottom: 11px; font-size: .63rem; }
.summary-body h3 { margin-bottom: 24px; font-size: 2.05rem; }
.summary-body dl { margin: 0; border-top: 1px solid var(--line); }
.summary-body dl div { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding-block: 13px; border-bottom: 1px solid var(--line); }
.summary-body dt { color: #73808a; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.summary-body dd { margin: 0; font-size: .86rem; font-weight: 600; text-align: right; }
.summary-price { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-top: 23px; }
.summary-price > span { display: grid; }
.summary-price > span > span { font-size: .82rem; font-weight: 700; }
.summary-price small { color: #74808a; font-size: .68rem; }
.summary-price strong { font-family: var(--display); font-size: 2.15rem; font-weight: 460; letter-spacing: -.05em; }
.summary-note { margin: 23px 0 15px; color: #76818a; font-size: .72rem; line-height: 1.6; }
.summary-edit { font-size: .72rem; }

.booking-success { padding: 45px; border: 1px solid var(--line); background: var(--white); }
.success-mark { display: grid; width: 64px; height: 64px; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--gold); font-family: var(--display); font-size: 1.8rem; }
.booking-success > p:not(.step-label) { max-width: 620px; color: #5d6a75; }
.booking-reference { display: flex; justify-content: space-between; gap: 30px; margin-block: 34px; padding: 22px 0; border-block: 1px solid var(--line); }
.booking-reference span { color: #73808a; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.booking-reference strong { font-family: var(--display); font-size: 1.4rem; font-weight: 500; }
.success-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.booking-help { padding-block: 90px; background: var(--paper-2); }
.booking-help > .shell { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; }
.booking-help h2 { margin-bottom: 0; }
.booking-help p { color: #5f6c77; }
.booking-help .button-ghost { margin-top: 15px; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 90px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; cursor: pointer; }
  .menu-toggle .close-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .close-icon { display: block; }
  .mobile-nav { position: fixed; inset: 90px 0 auto; display: grid; padding: 28px 24px 36px; transform: translateY(-140%); background: var(--paper); color: var(--ink); box-shadow: 0 20px 40px rgba(7,27,51,.2); transition: transform .25s ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.65rem; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-rail { display: none; }
  .hero-copy { padding-bottom: 7vh; }
  .intro-section, .room-detail, .destination-intro, .contact-layout { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) .room-gallery, .room-detail:nth-child(even) .room-detail-copy { order: initial; }
  .arched-image { min-height: 520px; max-width: 650px; }
  .rooms-heading, .price-band, .map-card { grid-template-columns: 1fr; }
  .room-panel { grid-template-columns: 1fr; border-radius: 4px 80px 4px 4px; }
  .room-panel figure { min-height: 460px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta-inner, .footer-top { grid-template-columns: 1fr; }
  .contact-cta .button-ghost { justify-self: start; }
  .review-bar { grid-template-columns: 1fr; gap: 50px; }
  .rating-large { font-size: 8rem; }
  .distance-grid { grid-template-columns: repeat(2, 1fr); }
  .map-visual { min-height: 400px; }
  .booking-heading { grid-template-columns: 1fr; gap: 20px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; order: -1; display: grid; grid-template-columns: .8fr 1.2fr; }
  .summary-image { height: 100%; min-height: 330px; }
  .booking-help > .shell { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 1320px); }
  h1 { font-size: clamp(3.6rem, 18vw, 6rem); }
  h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .brand strong { font-size: 1.42rem; }
  .brand small { font-size: .51rem; }
  .hero { min-height: 760px; }
  .hero-layout { min-height: 760px; padding-top: 150px; }
  .hero-copy { padding-bottom: 48px; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 300px; }
  .hero-actions a { width: 100%; }
  .intro-section, .rooms-preview, .price-band, .review-bar, .amenities, .destination-intro, .contact-layout, .contact-cta { padding-block: 80px; }
  .arched-image { min-height: 450px; border-radius: 150px 150px 14px 14px; }
  .fact-row { grid-template-columns: 1fr; }
  .rooms-heading { gap: 20px; }
  .room-tabs { overflow-x: auto; }
  .room-tabs button { flex: 0 0 auto; }
  .room-panel figure { min-height: 350px; }
  .room-panel-copy { padding: 34px 24px 42px; }
  .price-card { padding: 34px 24px; }
  .price-value { font-size: 4.5rem; }
  .page-main { padding-top: 90px; }
  .page-hero { min-height: 570px; }
  .page-hero-copy { padding-bottom: 46px; }
  .page-hero h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .room-detail { padding-block: 80px; }
  .room-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 170px; }
  .room-gallery button:first-child { grid-row: auto; grid-column: 1 / 3; }
  .feature-list, .rules-grid { grid-template-columns: 1fr; }
  .room-price-line { align-items: flex-start; flex-direction: column; }
  .amenity-grid, .distance-grid { grid-template-columns: 1fr; }
  .amenity { min-height: auto; }
  .location-strip, .location-content { min-height: 560px; }
  .review-copy blockquote { font-size: 2.1rem; }
  .contact-line { grid-template-columns: 1fr auto; }
  .contact-line span { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; }
  .booking-hero { min-height: 590px; }
  .booking-hero-copy { padding-bottom: 48px; }
  .booking-hero h1 { font-size: clamp(3.4rem, 15vw, 5.7rem); }
  .demo-notice .shell { align-items: flex-start; flex-direction: column; gap: 4px; }
  .booking-section { padding-block: 75px 85px; }
  .booking-heading { margin-bottom: 42px; }
  .booking-steps { margin-bottom: 36px; }
  .booking-steps button { align-items: flex-start; flex-direction: column; gap: 8px; padding-bottom: 14px; font-size: .61rem; }
  .booking-steps button span { width: 30px; height: 30px; }
  .booking-fields,
  .booking-fields-dates { grid-template-columns: 1fr; }
  .booking-fields .field-wide { grid-column: auto; }
  .booking-room-option { grid-template-columns: 112px 1fr; min-height: 150px; }
  .booking-room-content { padding: 18px 16px; }
  .room-choice-top strong { font-size: 1.4rem; }
  .booking-summary { display: block; }
  .summary-image { min-height: 0; height: 200px; }
  .summary-body { padding: 25px; }
  .booking-actions { align-items: stretch; flex-direction: column-reverse; }
  .booking-actions .button { width: 100%; }
  .booking-actions .text-action { align-self: flex-start; }
  .booking-success { padding: 32px 24px; }
  .booking-help { padding-block: 70px; }
}

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