:root, html[data-theme="dark"] {
  color-scheme: dark;
  --night: #081015;
  --gulf: #101c22;
  --panel: #121c21;
  --line: rgba(236, 224, 198, 0.16);
  --foam: #f4efe6;
  --mute: #a8a093;
  /* Matches the header logo as rendered (brand img is brightness-boosted). */
  --gold: #ffd42f;
  --ink: #140f08;
  --header: rgba(8, 16, 21, .82);
  --nav-bg: rgba(8, 16, 21, .96);
  --hero-card: rgba(8, 16, 21, .42);
  --hero-card-line: rgba(243, 238, 228, .18);
  --lb: rgba(8, 16, 21, .94);
  --max: 1220px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
html[data-theme="light"] {
  color-scheme: light;
  --night: #f3efe6;
  --gulf: #e7e1d4;
  --panel: #fffcf6;
  --line: rgba(28, 24, 18, 0.12);
  --foam: #1a1714;
  --mute: #5e574c;
  /* Logo renders unfiltered in light mode, so this already matches it. */
  --gold: #fbad2a;
  --ink: #140f08;
  --header: rgba(243, 239, 230, .88);
  --nav-bg: rgba(243, 239, 230, .98);
  --hero-card: rgba(8, 16, 21, .48);
  --hero-card-line: rgba(243, 238, 228, .2);
  --lb: rgba(243, 239, 230, .96);
}
* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  font-family: Sora, system-ui, sans-serif;
  color: var(--foam);
  background: var(--night);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.018em;
}
h1 {
  font-size: clamp(44px, 8.2vw, 104px);
  line-height: 0.92;
  margin: 0 0 .28em;
  font-weight: 400;
}
h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  margin: 0 0 .35em;
  line-height: 1.05;
}
h3 { font-size: clamp(22px, 2vw, 30px); margin: .15em 0 .35em; line-height: 1.15 }
p { max-width: 38em }
a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px }
img, video { max-width: 100%; display: block }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px }
.skip { position: absolute; left: -999px }
.skip:focus { left: 10px; top: 10px; background: #fff; color: #111; padding: 8px; z-index: 50 }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px }

/* Header */
.top {
  position: fixed; inset: 0 0 auto; z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
/* Over the dark hero the bar is transparent, so its controls stay foam-white
   in both themes — light theme's dark ink would vanish against the video. */
.top:not(.scrolled):not(.open):not(.solid) nav a,
.top:not(.scrolled):not(.open):not(.solid) .menu-btn,
.top:not(.scrolled):not(.open):not(.solid) .theme-btn,
.top:not(.scrolled):not(.open):not(.solid) .lang { color: #f4efe6 }
/* The toggle only appears once the bar leaves the hero; visibility (not display)
   keeps the bar's layout identical either way. */
.theme-btn { transition: opacity .3s var(--ease), visibility .3s, border-color .3s var(--ease), color .3s var(--ease) }
.top:not(.scrolled):not(.open):not(.solid) .theme-btn { opacity: 0; visibility: hidden; pointer-events: none }
.top:not(.scrolled):not(.open):not(.solid) nav a[aria-current="page"] { color: var(--gold) }

/* Solid once scrolled past the hero's top, while the mobile menu is open, or on subpages. */
.top.scrolled, .top.open, .top.solid {
  background: var(--header);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.1);
}
.bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.brand { display: flex; align-items: center; justify-self: start; view-transition-name: brand }
.brand img { height: 48px; width: auto; filter: brightness(1.2) contrast(1.05) }
html[data-theme="light"] .brand img,
html[data-theme="light"] .intro-mark img { filter: none }
nav {
  display: flex;
  gap: 26px;
  margin: 0;
  justify-self: center;
  grid-column: 2;
}
.cta { justify-self: end; grid-column: 3 }
nav a {
  color: var(--foam);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .06em;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  /* Full strength so links read as foam-white, not grey. */
  opacity: 1;
}
nav a { transition: opacity .3s var(--ease), color .3s var(--ease) }
nav a:hover, nav a[aria-current="page"] { opacity: 1 }
nav a[aria-current="page"] { color: var(--gold) }
.cta { display: flex; gap: 12px; align-items: center }
.lang-wrap { position: relative }
.lang {
  color: var(--foam); text-decoration: none;
  border: 1px solid var(--line);
  background: none;
  height: 38px; padding: 0 7px 0 8px;
  gap: 3px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.lang:hover { border-color: var(--gold) }
.lang .flag { width: 21px; height: 14px; display: block }
.lang-caret { width: 13px; height: 13px; opacity: .7; transition: transform .25s var(--ease) }
.lang[aria-expanded="true"] .lang-caret { transform: rotate(180deg) }
/* Anchored to the button; the header itself never clips it. */
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 45;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--nav-bg);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px) saturate(1.1);
}
.lang-menu li { margin: 0 }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  color: var(--foam);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .02em;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-menu a:hover { background: color-mix(in srgb, var(--gold) 12%, transparent); color: var(--gold) }
.lang-menu a[aria-current="true"] { color: var(--gold) }
.lang-menu .flag { width: 22px; height: 15px; flex: none }
.cta .btn { min-height: 38px; --pad-x: 20px }
.theme-btn {
  color: var(--foam);
  background: none;
  border: 1px solid var(--line);
  width: 38px; height: 38px;
  padding: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.theme-btn:hover { border-color: var(--gold); color: var(--gold) }
.theme-btn svg { width: 16px; height: 16px; display: block }
html[data-theme="dark"] .theme-btn .icon-sun,
html[data-theme="light"] .theme-btn .icon-moon { display: none }

/* Buttons — thin gold frames, fill from below */
.btn {
  --pad-x: 26px;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 var(--pad-x);
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font: 400 11px/1 Sora, sans-serif;
  letter-spacing: .16em;
  text-transform: lowercase;
  cursor: pointer;
  overflow: hidden;
  transition: color .35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  z-index: -1;
  transform: translateY(100%);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}
.btn:hover { color: var(--ink) }
.btn:hover::before { transform: translateY(0) }
.menu-btn {
  display: none; background: none; border: 0; color: var(--foam); cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; width: 18px; height: 1px; background: currentColor; position: absolute; left: 11px;
}
.menu-btn span { top: 19px }
.menu-btn span::before { content: ""; top: -6px }
.menu-btn span::after { content: ""; top: 6px }

.text-link {
  color: var(--foam);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .12em;
  transition: color .3s var(--ease);
}
.text-link:hover { color: var(--gold) }

/* Hero */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center; justify-items: center;
  overflow: hidden; color: var(--foam);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; background: var(--night) }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 2.6s ease;
  overflow: hidden;
}
.hero-slide.is-on { opacity: 1; z-index: 1 }
.hero-media video, .hero-media img, .hero-slide img, .hero-slide video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media > video, .hero-media > img {
  opacity: 0; transition: opacity 2.6s ease;
}
.hero-media > .is-on { opacity: 1 }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,16,21,.2) 0%, transparent 40%, rgba(8,16,21,.35) 100%);
}
.hero .copy {
  position: relative; z-index: 2;
  padding: 40px 48px 36px;
  max-width: 720px; margin: 0 auto; width: calc(100% - 48px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  color: #f4efe6;
  background: var(--hero-card);
  border: 1px solid var(--hero-card-line);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}
.hero h1 {
  max-width: 12em;
  color: #f4efe6;
}
.hero .btn { color: var(--gold) }
.hero .btn:hover { color: var(--ink) }
.lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: #f6f1e8;
  max-width: 22em;
  margin: 0 0 28px;
  font-weight: 400;
  letter-spacing: 0;
}
.row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center }

.page-hero {
  position: relative; min-height: 52svh; display: grid; align-items: end;
  overflow: hidden; margin-bottom: 40px; color: #f4efe6;
  background: var(--gulf);
}
.page-hero img, .page-hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero video { z-index: 0 }
.page-hero img { z-index: 0 }
.page-hero::after { z-index: 1 }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8,16,21,.94));
}
.page-hero .copy {
  position: relative; z-index: 2; padding: 0 28px 48px;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.page-hero .lead {
  color: #f6f1e8;
  text-shadow: none;
  margin-bottom: 0;
}

section { padding: 88px 0 }
.muted { color: var(--mute); font-weight: 300 }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 28px }
.sec-head p { margin: 0 }

/* Mosaic */
.mosaic {
  display: grid; grid-template-columns: 1.45fr 1fr; gap: 10px; min-height: 74vh;
}
.mosaic a, .mosaic article {
  position: relative; overflow: hidden; min-height: 300px; color: #f4efe6; text-decoration: none;
  display: flex; align-items: flex-end; padding: 28px;
}
.mosaic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease) }
.mosaic a:hover img { transform: scale(1.05) }
.mosaic article { background: var(--panel) }
.mosaic .cap { position: relative; z-index: 1 }
.mosaic .cap p { margin: 0; font-size: 15px; color: rgba(244, 239, 230, .8) }
.mosaic a::after, .mosaic article::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,16,21,.82));
}
.mosaic .stack { display: grid; gap: 10px }
.mosaic .stack a { min-height: 230px }

/* Filmstrip */
.film {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 28px 36px;
  margin: 0 calc(50% - 50vw);
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
}
.film::-webkit-scrollbar { display: none }
.film.is-drag { cursor: grabbing }
.film a {
  color: inherit;
  text-decoration: none;
  flex: 0 0 clamp(240px, 28vw, 380px);
  min-width: clamp(240px, 28vw, 380px);
}
.film figure { margin: 0; overflow: hidden; aspect-ratio: 3 / 4 }
.film img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease) }
.film a:hover img { transform: scale(1.04) }
.film h3 { margin: 16px 0 6px }
.film .muted { font-size: 13px; margin: 0 }
.price {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 48px }
.facts article {
  background: var(--panel); border: 1px solid var(--line); padding: 28px 24px;
}
.facts h3, .facts p { padding: 0; margin: 0 }
.facts p { color: var(--mute); margin-top: 8px }
.rooms-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch }
.rooms-grid .card { display: flex; flex-direction: column; height: 100% }
.rooms-grid .card h3 { min-height: calc(2 * 1.15em); transition: color .3s var(--ease) }
.rooms-grid .card > p:not(.price) { flex: 1 }
.cards a.card { color: inherit; text-decoration: none }
.cards .card:hover h3 { color: var(--gold) }
.card { background: var(--panel); border: 1px solid var(--line); padding: 0 0 22px }
.card figure { margin: 0 0 16px; overflow: hidden }
.card figure img { width: 100%; height: 240px; object-fit: cover; transition: transform .9s var(--ease) }
.card:hover img { transform: scale(1.04) }
.card h3, .card p, .card ul, .card .price { padding: 0 20px }
.card p { color: var(--mute) }
.card h3 a { color: inherit; text-decoration: none }
.card h3 a:hover { color: var(--gold) }
.room-meta {
  display: flex; gap: 18px; flex-wrap: wrap; color: var(--mute);
  list-style: none; padding: 0; font-size: 13px; letter-spacing: .04em;
}

.photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photos figure { margin: 0; cursor: zoom-in }
.photos img { width: 100%; height: 260px; object-fit: cover }
.photos figcaption { padding: 8px 2px 4px; font-size: 12px; color: var(--mute); letter-spacing: .03em }
.note { margin-top: 28px }
a[href^="tel:"] { white-space: nowrap }

.room-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px }
.room-gallery figure { margin: 0; overflow: hidden; cursor: zoom-in }
.room-gallery figure:first-child { grid-row: span 2 }
.room-gallery img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; transition: transform .9s var(--ease) }
.room-gallery figure:hover img { transform: scale(1.04) }

/* Room detail: measured prose, icon amenity grid, booking panel. */
.room-desc { max-width: 62ch }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 28px; list-style: none; padding: 0; margin: 0 0 44px }
.amen-grid li { display: flex; align-items: center; gap: 12px; padding: 12px 2px; border-bottom: 1px solid var(--line) }
.amen-grid svg { flex: none; color: var(--gold) }
.room-book { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border: 1px solid var(--line); background: var(--panel); padding: 22px 26px; margin: 0 0 56px }
.room-book .price { margin: 0 }
.room-gallery figure:first-child img { min-height: 380px }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center }
.contact-split { align-items: start; padding-bottom: 48px }
.contact-split iframe { min-height: 100% }
.split img { width: 100%; height: 480px; object-fit: cover }

/* Restaurant: long-form sections, highlight checklist, poetic sign-off. */
.rest-intro { font-size: 18px; max-width: 46em }
.rest h2 { margin-top: 60px }
.highlights {
  list-style: none;
  margin: 24px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.highlights li { position: relative; padding-left: 22px; color: var(--foam) }
.highlights li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; background: var(--gold);
}
.rest-outro {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  text-align: center;
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}
.rest-hours + .rest-outro { margin-top: 48px }
@media (max-width: 760px) {
  .highlights { grid-template-columns: 1fr }
}

/* Experiences: alternating editorial rows. */
.exp-intro { max-width: 46em; font-size: 17px }
.split.exp-row { margin-top: 64px; align-items: center }
.split.exp-row.flip > :first-child { order: 2 }
.exp-outro { max-width: 46em; margin: 80px auto 0 }
@media (max-width: 760px) {
  .split.exp-row { grid-template-columns: 1fr }
  .split.exp-row.flip > :first-child { order: 0 }
}

/* Homepage: about panel beside the frames carousel */
.about-frames { display: grid; grid-template-columns: 1.02fr 1fr; gap: 28px; align-items: stretch }
.about-panel { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: flex-end }
.about-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover }
.about-panel::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,16,21,.04) 30%, rgba(8,16,21,.84)),
    linear-gradient(90deg, rgba(8,16,21,.5), transparent 65%);
}
.about-copy { position: relative; z-index: 1; padding: 36px 32px; max-width: 26em }
.about-copy h2 { color: #f4efe6 }
.about-copy p { color: rgba(244,239,230,.84); margin: 0 0 20px }
.about-copy p:last-child { margin-bottom: 0 }
.frames-col { min-width: 0; display: flex; flex-direction: column }
.frames-stage {
  position: relative; flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
@media (max-width: 860px) {
  .about-frames { grid-template-columns: 1fr }
  .about-panel { min-height: 440px }
}


.faq details { border-bottom: 1px solid var(--line); padding: 0 }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  padding: 20px 36px 20px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 14px; height: 14px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(225deg) }
.faq details p { padding: 0 8% 22px 0; margin: 0 }
.home-center { text-align: center }
.home-center h2 { margin-left: auto; margin-right: auto }
.faq.home-center { max-width: 720px }
.faq.home-center summary { padding: 20px 40px; text-align: center }
.faq.home-center details p {
  padding: 0 24px 22px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* Homepage FAQ: two balanced columns (five questions each on desktop). */
.faq-cols { columns: 2; column-gap: 56px }
.faq-cols > h2 { column-span: all; text-align: center }
.faq-cols details { break-inside: avoid }
@media (max-width: 760px) {
  .faq-cols { columns: 1 }
}

form.book { display: grid; gap: 22px; max-width: 480px }
.inquiry, .call-form { display: grid; gap: 18px }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.field { display: grid; gap: 6px }
.field span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: lowercase;
  color: var(--mute);
}
input, select, textarea {
  font: inherit;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--foam);
  border-radius: 0;
  width: 100%;
  color-scheme: dark;
}
select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background:
    transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ffd42f' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E")
    right 2px center / 12px no-repeat;
}
html[data-theme="light"] select {
  color-scheme: light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23fbad2a' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
}
select option, select optgroup {
  background: var(--panel);
  color: var(--foam);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold) }

.ss-select {
  position: relative;
  width: 100%;
}
.ss-select select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.ss-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--foam);
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
}
.ss-select-btn:focus,
.ss-select-btn:focus-visible { outline: none; }
.ss-select-btn::after {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ffd42f' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform .2s var(--ease);
}
html[data-theme="light"] .ss-select-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23fbad2a' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
}
.ss-select.is-open .ss-select-btn { border-color: var(--gold) }
.ss-select.is-open .ss-select-btn::after { transform: rotate(180deg) }
.ss-select-list {
  position: fixed;
  z-index: 80;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--panel);
  color: var(--foam);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(8, 16, 21, .45);
  max-height: 240px;
  overflow: auto;
  display: none;
}
.ss-select-list.is-open { display: block }
.ss-select-list [role="option"] {
  padding: 9px 12px;
  color: var(--foam);
  font-size: 14px;
  cursor: pointer;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  font: inherit;
}
.ss-select-list [role="option"]:hover,
.ss-select-list [role="option"]:focus-visible {
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  color: var(--gold);
  outline: none;
}
.ss-select-list [role="option"][aria-selected="true"] {
  color: var(--gold);
}
.hh-field .ss-select { width: auto; }
.hh-field .ss-select-btn {
  padding: 0;
  border: 0;
  width: auto;
  gap: 8px;
  font: 300 15px/1.4 Sora, sans-serif;
  color: #f4efe6;
}
.hh-field .ss-select-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ffd42f' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
}

textarea { min-height: 120px; resize: vertical }
.form-ok { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; margin: 0 }

.call-fab {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 32;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.call-fab:hover { filter: brightness(1.06) }
.call-fab svg { width: 22px; height: 22px }
/* WhatsApp sits directly above the contact button, in the brand's own green. */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 32;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: filter .25s var(--ease), transform .25s var(--ease);
}
.wa-fab:hover { filter: brightness(1.06); transform: translateY(-2px) }
.wa-fab svg { width: 28px; height: 28px }
/* Opposite corner from the contact stack; appears after the first screen. */
.to-top {
  position: fixed;
  left: 28px;
  bottom: 24px;
  z-index: 32;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--foam);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), border-color .25s, color .25s;
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto }
.to-top:hover { border-color: var(--gold); color: var(--gold) }
.to-top svg { width: 18px; height: 18px }
@media (max-width: 860px) {
  .to-top { left: 16px; bottom: 78px }
}
.call-modal {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--foam);
  padding: 0;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: visible;
}
.call-modal::backdrop { background: rgba(8,16,21,.72) }
.call-sheet { padding: 32px 32px 28px }
.call-sheet h2 { margin-bottom: 6px }
.call-sheet .lead { color: var(--mute); font-size: 18px; max-width: none; margin-bottom: 18px }
.call-x {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: 0; color: var(--foam);
  font-size: 22px; cursor: pointer; line-height: 1;
  /* Above the sheet, which is positioned and follows it in the DOM. */
  z-index: 5;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 64px 0 110px;
  color: var(--mute);
}
footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--foam);
  display: block;
  margin-bottom: 12px;
}
footer a { color: var(--foam); text-decoration: none }
footer a:hover { color: var(--gold) }
.grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px }
.fine { opacity: .55; font-size: 12px; letter-spacing: .04em }
.sticky-book {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 30;
  display: none;
  min-height: 50px;
}

#lb {
  border: 0; padding: 0; margin: 0;
  background: var(--lb);
  max-width: none; max-height: none;
  width: 100vw; height: 100vh;
  inset: 0;
}
#lb[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
#lb::backdrop { background: rgba(0,0,0,.88) }
#lb img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  width: auto; height: auto;
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  z-index: 2;
  min-height: 48px;
}
.lb-close { top: 20px; right: 20px }
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
}
.lb-prev { left: 20px }
.lb-next { right: 20px }

/* Intro: logo hold, gold seam, horizontal split */
html.introing, html.introing body { overflow: hidden }
html.introing .top, html.introing .sticky-book { opacity: 0; pointer-events: none }
html.introing .hero,
html.intro-done .hero { transform: none }
html.introing .hero .copy { opacity: 0; transform: translateY(12px) }
html.intro-done .hero .copy {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease) .2s, transform .9s var(--ease) .2s;
}

.intro {
  display: none;
  position: fixed; inset: 0; z-index: 80;
  pointer-events: none;
}
html.introing .intro { display: block }
.intro-pane {
  position: absolute; top: 0; bottom: 0; width: 50%;
  overflow: hidden;
  background: var(--night);
  transition: transform 2s cubic-bezier(.45, 0, .15, 1);
  will-change: transform;
}
.intro-pane-l { left: 0 }
.intro-pane-r { right: 0 }
.intro.opening .intro-pane-l { transform: translateX(-100%) }
.intro.opening .intro-pane-r { transform: translateX(100%) }
.intro-mark {
  position: absolute;
  top: 50%;
  width: min(46vw, 700px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: introLogo 1.1s ease both;
}
.intro-pane-l .intro-mark { left: 100%; transform: translate(-50%, -50%) }
.intro-pane-r .intro-mark { left: 0; transform: translate(-50%, -50%) }
.intro-mark picture,
.intro-mark img {
  display: block;
  width: min(46vw, 700px);
  max-height: 36vh;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: brightness(1.25) contrast(1.08);
}
.intro-mark p {
  margin: 2px 0 0;
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--gold);
  text-align: center;
  max-width: none;
}
@keyframes introLogo {
  from { opacity: 0; filter: blur(8px) }
  to { opacity: 1; filter: blur(0) }
}
html.intro-done .intro { display: none }

@media (max-width: 860px) {
  nav { display: none }
  .top.open nav {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--nav-bg); padding: 22px 28px 28px; gap: 16px;
  }
  .bar { display: flex; max-width: var(--max) }
  .menu-btn { display: block; margin-left: auto }
  .cta { justify-self: auto }
  .mosaic, .split, .grid, .room-gallery, .rooms-grid, .facts, .photos { grid-template-columns: 1fr }
  .amen-grid { grid-template-columns: repeat(2, 1fr) }
  .room-gallery figure:first-child { grid-row: auto }

  .sticky-book { display: inline-flex }
  .call-fab { bottom: 78px; right: 16px; left: auto }
  .wa-fab { bottom: 146px; right: 16px }
  .grid-2 { grid-template-columns: 1fr }
  .hero { min-height: 92svh }
  .hero .copy { padding: 28px 22px 24px }
  .sec-head { flex-direction: column; align-items: flex-start }
  .split img { height: 320px }
  .bar { padding: 12px 18px }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .rooms-grid, .facts, .photos { grid-template-columns: repeat(2, 1fr) }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .hero-media video { display: none }
  .hero-slide img { animation: none !important }
  .hero-media img, .hero-slide { opacity: 1 }
  .intro { display: none }
  html.introing .hero, html.introing .hero .copy, html.introing .top { opacity: 1; transform: none }
  * { transition: none !important; animation: none !important }
}
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .6s }

/* Spotlight — cursor-tracking radial glow on cards/panels */
:root, html[data-theme="dark"] { --spot: rgba(255, 212, 47, .18); --spot-line: rgba(255, 212, 47, .28) }
html[data-theme="light"] { --spot: rgba(251, 173, 42, .16); --spot-line: rgba(251, 173, 42, .34) }
.spot {
  position: relative;
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 50%;
  --spot-o: 0;
}
.spot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: var(--spot-o);
  transition: opacity .5s ease-in-out;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), var(--spot), transparent 80%);
}
.spot { transition: border-color .5s ease-in-out }
.spot.is-spot { border-color: var(--spot-line) }
/* keep captions/content above the glow where cards stack their own overlays */
.mosaic .cap, .card h3, .card p, .card ul, .card .price { position: relative; z-index: 4 }
/* Glow sits under the dialog's own content rather than over it. */
.call-modal.spot::before { z-index: 1 }
.call-sheet { position: relative; z-index: 4 }
.call-x { z-index: 5 }
.film a.spot::before, .photos figure.spot::before { border-radius: inherit }
@media (prefers-reduced-motion: reduce) {
  .spot::before { display: none }
}
@media (hover: none) {
  .spot::before { display: none }
}

/* Header CTA — gold fill with a slow sheen sweep */
.cta .btn.sheen {
  letter-spacing: .18em;
}
.cta .btn.sheen .sheen-label { position: relative; z-index: 2 }
.cta .btn.sheen::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -60%;
  width: 45%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, color-mix(in srgb, var(--gold) 50%, transparent) 50%, transparent 80%);
  animation: sheen-sweep 4.8s var(--ease) infinite;
}
.cta .btn.sheen:hover::after { animation-play-state: paused; opacity: 0 }
@keyframes sheen-sweep {
  0%, 55% { transform: translateX(0) }
  100% { transform: translateX(380%) }
}
@media (prefers-reduced-motion: reduce) {
  .cta .btn.sheen::after { display: none }
}

/* Gallery hero — taller, so the drifting wall has room to read */
.page-hero--wall { min-height: 68svh }
.page-hero--wall .dw { z-index: 0 }
.page-hero--wall::after { background: linear-gradient(180deg, rgba(8,16,21,.45) 0%, transparent 35%, rgba(8,16,21,.92) 100%) }
