/* ============================================================
   VESPERA — Alpine Lakehouse & Spa
   Design system: warm charcoal / ivory / brass / spruce
   Display: Fraunces · Body: Hanken Grotesk
   ============================================================ */

:root {
  /* palette */
  --ink: #181510;
  --ink-2: #221E17;
  --ink-3: #2E2820;
  --ivory: #F6F1E7;
  --parchment: #EEE6D6;
  --parchment-2: #E5DAC6;
  --brass: #A87E48;
  --brass-bright: #C29A5F;
  --brass-deep: #8A6535;
  --spruce: #41503F;
  --spruce-deep: #303B2F;
  --taupe: #7C6F5C;
  --line: rgba(24, 21, 16, 0.14);
  --line-soft: rgba(24, 21, 16, 0.08);
  --line-inv: rgba(246, 241, 231, 0.16);

  /* type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", -apple-system, "Segoe UI", sans-serif;

  /* rhythm */
  --space-section: clamp(5.5rem, 11vw, 10rem);
  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --maxw: 1320px;
  --radius: 4px;
  --radius-lg: 8px;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.15, 1);
  --dur: 0.6s;

  /* shadows — warm-tinted, layered */
  --shadow-card: 0 1px 2px rgba(41, 32, 18, 0.05), 0 8px 24px -8px rgba(41, 32, 18, 0.14);
  --shadow-float: 0 2px 6px rgba(41, 32, 18, 0.07), 0 24px 60px -18px rgba(41, 32, 18, 0.28);
  --shadow-drawer: -24px 0 80px -20px rgba(20, 15, 8, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(168, 126, 72, 0.28); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 340;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-xl { font-size: clamp(2.9rem, 7.2vw, 6.2rem); letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2.2rem, 4.6vw, 3.9rem); letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.display-sm { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  color: rgba(24, 21, 16, 0.74);
  font-weight: 400;
  max-width: 56ch;
}

.on-dark .lede, .on-dark.lede { color: rgba(246, 241, 231, 0.72); }

em.accent { font-style: normal; font-weight: inherit; color: inherit; }

/* architectural level annotation — the site's structural motif */
.level-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  white-space: nowrap;
}
.level-tag .lvl { opacity: 0.55; font-weight: 500; }
.on-dark .level-tag { color: var(--brass-bright); }

/* hairline section divider */
.section-rule {
  height: 1px;
  background: var(--line-soft);
  margin: 0 var(--gutter);
}

/* ---------- layout ---------- */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: var(--space-section); padding-bottom: var(--space-section); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: clamp(2.6rem, 5vw, 4.4rem);
  max-width: 780px;
}

.section-head.split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: none;
  gap: 2rem;
}
.section-head.split > div { display: flex; flex-direction: column; gap: 1.4rem; max-width: 680px; }

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

.tinted-section { background: var(--parchment); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
}
.btn:active { opacity: 0.85; }
.btn .arr { transition: transform 0.35s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.btn-solid {
  background: var(--ink);
  color: var(--ivory);
}
.btn-solid:hover { background: var(--ink-3); }

.btn-brass {
  background: var(--brass);
  color: #211708;
}
.btn-brass:hover { background: var(--brass-bright); }

.btn-ghost { border-color: rgba(24, 21, 16, 0.3); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(24, 21, 16, 0.04); }

.on-dark .btn-ghost, .btn-ghost.inv { border-color: rgba(246, 241, 231, 0.35); color: var(--ivory); }
.on-dark .btn-ghost:hover, .btn-ghost.inv:hover { border-color: var(--ivory); background: rgba(246, 241, 231, 0.07); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease-out);
}
.btn-text .arr { transition: transform 0.35s var(--ease-out); }
.btn-text:hover { color: var(--ink); }
.btn-text:hover .arr { transform: translateX(4px); }
.on-dark .btn-text { color: var(--brass-bright); }
.on-dark .btn-text:hover { color: var(--ivory); }

/* ---------- header ---------- */

#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
              backdrop-filter 0.5s var(--ease-out);
}
#site-header .header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: padding 0.5s var(--ease-out);
}
#site-header.scrolled {
  background: rgba(246, 241, 231, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px -18px rgba(41, 32, 18, 0.25);
}
#site-header.scrolled .header-inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }

/* on dark hero, header text is ivory until scrolled */
#site-header.on-hero:not(.scrolled) { color: var(--ivory); }
#site-header.on-hero:not(.scrolled) .main-nav a::after { background: var(--ivory); }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-right: auto;
}
.wordmark .mark { color: var(--brass); }

.main-nav { display: flex; gap: clamp(1.1rem, 2vw, 2rem); }
.main-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.35rem 0;
  opacity: 0.82;
  transition: opacity 0.3s var(--ease-out);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.4s var(--ease-out);
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

.header-book { padding: 0.7rem 1.5rem; }
#site-header.on-hero:not(.scrolled) .header-book {
  background: rgba(246, 241, 231, 0.14);
  border: 1px solid rgba(246, 241, 231, 0.35);
  color: var(--ivory);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
#site-header.on-hero:not(.scrolled) .header-book:hover { background: rgba(246, 241, 231, 0.24); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang-switch button {
  padding: 0.3rem 0.45rem;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease-out);
  text-transform: uppercase;
}
.lang-switch button:hover { opacity: 0.85; }
.lang-switch button.active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--brass); }
.lang-switch .sep { opacity: 0.3; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 4px;
  z-index: 110;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.menu-btn.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(env(safe-area-inset-top) + 6.5rem) var(--gutter) 2.5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0s linear 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6.4vw, 2.1rem);
  font-weight: 340;
  letter-spacing: -0.015em;
  line-height: 1.15;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.09);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s var(--ease-out);
  transition-delay: 0s;
}
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu.open nav a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.06s + var(--i) * 0.045s);
}
.mobile-menu nav a.menu-book {
  color: #241A0C;
  background: var(--brass);
  border-bottom: none;
  border-radius: 2px;
  text-align: center;
  padding: 0.9rem 1rem;
  margin-top: 1.4rem;
  font-size: clamp(1.2rem, 4.6vw, 1.5rem);
}
.menu-foot {
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 2;
}

/* ---------- page curtain transition ---------- */

#curtain {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}
#curtain.animate-in { animation: curtainIn 0.45s var(--ease-soft) forwards; }
#curtain.animate-out { animation: curtainOut 0.55s var(--ease-soft) forwards; transform-origin: bottom; }
@keyframes curtainIn { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes curtainOut { from { transform: scaleY(1); } to { transform: scaleY(0); } }

#app > .page { animation: pageIn 0.7s var(--ease-out); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- hero (full-bleed photo) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ivory);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
/* photographic layer + slow ken-burns drift */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../brand_assets/images/hero.webp");
  background-size: cover;
  background-position: 70% 62%;
  transform: scale(1.06);
  animation: heroDrift 26s var(--ease-soft) 0.2s both alternate infinite;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.06) translate(-0.9%, -0.8%); }
}
/* legibility scrims: soft dark top for the nav, deeper bottom for the copy */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.34) 0%, rgba(20, 16, 10, 0) 20%),
    linear-gradient(98deg, rgba(14, 11, 7, 0.6) 0%, rgba(14, 11, 7, 0.16) 34%, rgba(14, 11, 7, 0) 58%),
    linear-gradient(to top, rgba(14, 11, 7, 0.52) 0%, rgba(14, 11, 7, 0.14) 24%, rgba(14, 11, 7, 0) 46%);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(7rem, 16vh, 11rem) var(--gutter) clamp(3rem, 7vh, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  gap: clamp(2.4rem, 6vh, 4.2rem);
  min-height: 100svh;
}
.hero-copy { max-width: 44rem; }
.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.9);
  margin-bottom: 1.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-kicker::before { content: ""; width: 2.4rem; height: 1px; background: var(--brass-bright); }
.hero h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); max-width: 14ch; margin-bottom: 1.9rem; text-shadow: 0 2px 34px rgba(10, 7, 4, 0.4); }
/* Lede füllt die volle Spaltenbreite, damit Text & Leiste als eine Spalte lesen */
.hero .lede { color: rgba(246, 241, 231, 0.86); max-width: none; }

/* Buchungsleiste: breit & luftig, links bündig mit der Headline */
.hero .booking-bar { margin: 0; max-width: 60rem; }
.hero .booking-bar .field { padding: 1.05rem 1.6rem; }

/* scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.62);
}
.hero-scroll .track { width: 1px; height: 34px; background: linear-gradient(rgba(246,241,231,0.5), transparent); overflow: hidden; }
.hero-scroll .track::after { content: ""; display: block; width: 1px; height: 12px; background: var(--brass-bright); animation: scrollCue 2.2s var(--ease-soft) infinite; }
@keyframes scrollCue { 0% { transform: translateY(-14px); } 60%,100% { transform: translateY(34px); } }
@media (max-width: 720px) { .hero-scroll { display: none; } }

.hero-load .hero-kicker,
.hero-load h1 .line span,
.hero-load .lede,
.hero-load .hero-ctas,
.hero-load .booking-bar {
  opacity: 0;
  transform: translateY(24px);
  animation: heroUp 1.1s var(--ease-out) forwards;
}
.hero-load .hero-kicker { animation-delay: 0.2s; }
h1 .line { display: block; overflow: hidden; }
h1 .line span { display: block; }
.hero-load h1 .line:nth-child(1) span { animation-delay: 0.32s; }
.hero-load h1 .line:nth-child(2) span { animation-delay: 0.44s; }
.hero-load .lede { animation-delay: 0.6s; }
.hero-load .booking-bar { animation-delay: 0.76s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* ---------- booking bar (widget) ---------- */

.booking-bar {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  align-items: stretch;
  background: #FDFBF5;
  color: var(--ink);
  text-align: left;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(41, 32, 18, 0.05), 0 20px 46px -22px rgba(20, 15, 8, 0.5);
  overflow: hidden;
  width: 100%;
  max-width: 980px;
}
.hero .booking-bar { margin-left: 0; margin-right: 0; }
.booking-bar .field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1.4rem;
  border-right: 1px solid var(--line-soft);
  min-width: 0;
}
.booking-bar .field label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}
.booking-bar .field input,
.booking-bar .field select {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0;
  outline: none;
  width: 100%;
  color: var(--ink);
}
.booking-bar .field input[type="date"] { font-family: var(--font-body); }
.booking-bar .submit { display: flex; align-items: stretch; }
.booking-bar .btn { height: 100%; border-radius: 0; padding: 0 1.9rem; white-space: nowrap; }

/* stepper inputs (guests etc.) */
.stepper { display: flex; align-items: center; gap: 0.7rem; }
.stepper button {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--taupe);
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  flex: none;
}
.stepper button:hover { border-color: var(--brass); color: var(--brass-deep); }
.stepper button:active { transform: scale(0.9); }
.stepper .val { font-size: 0.95rem; font-weight: 500; min-width: 1.2ch; text-align: center; }

/* ---------- art plates (image placeholder system) ---------- */

.plate {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--plate-bg, linear-gradient(160deg, #3A3126 0%, #6B5638 55%, #9B7B4C 100%));
  isolation: isolate;
}
.plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 70% 20%, rgba(255, 226, 178, 0.22), transparent 60%);
  z-index: 1;
}
.plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 6, 0.55), transparent 45%);
  z-index: 2;
}
.plate svg.motif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: rgba(246, 241, 231, 0.5);
}
.plate .grain { position: absolute; inset: 0; opacity: 0.22; mix-blend-mode: overlay; z-index: 3; }
.plate .plate-label {
  position: absolute;
  left: 1.1rem;
  bottom: 0.95rem;
  z-index: 4;
  color: rgba(246, 241, 231, 0.9);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.plate .plate-label::before { content: ""; width: 1.4rem; height: 1px; background: currentColor; opacity: 0.7; }
.plate .zoom {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.card:hover .plate .zoom, a:hover > .plate .zoom, .plate:hover .zoom { transform: scale(1.05); }

/* cross-section crops used as "photos" */
.xsect-crop {
  background-image: url("../brand_assets/Hotel_Queer.png");
  background-repeat: no-repeat;
  background-color: #EDE8DE;
}

/* ---------- generic card ---------- */

.card {
  background: #FDFBF5;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px -22px rgba(41, 32, 18, 0.3);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -24px rgba(41, 32, 18, 0.35); }

/* ---------- home: story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.story-figure { position: relative; }
.story-figure .plate { aspect-ratio: 4 / 5; }
.story-figure .plate.offset {
  position: absolute;
  right: -12%;
  bottom: -14%;
  width: 46%;
  aspect-ratio: 1;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-float);
}
.story-stats {
  display: flex;
  gap: 2.6rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.story-stats .stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 340;
  color: var(--brass-deep);
}
.story-stats .stat .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- home: explore cross-section (white) ---------- */

.explore-section { overflow: clip; background: #FFFFFF; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.explore-stage { position: relative; }
.explore-viewport { position: relative; overflow: hidden; }
.explore-canvas {
  position: relative;
  transition: transform 1.1s var(--ease-soft);
  transform-origin: center;
  will-change: transform;
}
.explore-canvas img { width: 100%; height: auto; }

.hotspot {
  position: absolute;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 5;
}
.hotspot .core {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(41, 32, 18, 0.35);
  transition: transform 0.35s var(--ease-out), background-color 0.35s var(--ease-out);
}
.hotspot .halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(168, 126, 72, 0.8);
  animation: haloPulse 2.6s var(--ease-soft) infinite;
}
.hotspot:nth-child(odd) .halo { animation-delay: 1.3s; }
@keyframes haloPulse {
  0% { transform: scale(0.45); opacity: 0.9; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}
.hotspot:hover .core, .hotspot.active .core { transform: scale(1.5); background: var(--brass-deep); }
.hotspot.active .halo { animation: none; opacity: 0; }
.hotspot .tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 4px);
  background: rgba(14, 11, 6, 0.92);
  color: var(--ivory);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.hotspot:hover .tip { opacity: 1; transform: translate(-50%, 0); }

.explore-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-top: 2rem;
  justify-content: center;
}
.explore-legend button {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(24, 21, 16, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.explore-legend button:hover { color: var(--ink); border-color: rgba(24, 21, 16, 0.4); }
.explore-legend button.active {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

/* explore drawer / bottom sheet */
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(14, 11, 6, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.drawer-scrim.in { opacity: 1; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 130;
  width: min(460px, 92vw);
  background: var(--ivory);
  box-shadow: var(--shadow-drawer);
  transform: translateX(100%);
  transition: transform 0.65s var(--ease-soft);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.in { transform: none; }
.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.92);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.drawer-close:hover { transform: rotate(90deg); }
.drawer-media { position: relative; aspect-ratio: 16 / 11; flex: none; overflow: hidden; }
.drawer-media .xsect-crop, .drawer-media .plate { position: absolute; inset: 0; border-radius: 0; }
.drawer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 6, 0.35), transparent 40%);
  pointer-events: none;
}
.drawer-body { padding: 1.8rem 2rem 2.2rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.drawer-body h3 { font-size: 1.75rem; }
.drawer-body .level-tag { font-size: 0.66rem; }
.drawer-body p { color: rgba(24, 21, 16, 0.74); font-size: 0.98rem; }
.drawer-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin: 0.4rem 0 0.6rem; }
.drawer-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.92rem;
  color: rgba(24, 21, 16, 0.8);
}
.drawer-list li::before {
  content: "";
  flex: none;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateY(-2px);
}
.drawer-body .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 720px) {
  .drawer {
    top: auto;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    max-height: 82svh;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
  }
  .drawer.in { transform: none; }
  .drawer::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 4px;
    border-radius: 2px;
    background: rgba(24, 21, 16, 0.25);
    z-index: 6;
  }
  .drawer-media { aspect-ratio: 16 / 9; }
}

/* ---------- home: rooms preview / room cards ---------- */

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.room-card { display: flex; flex-direction: column; }
.room-card .plate { aspect-ratio: 4 / 3; border-radius: 0; }
.room-card-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.room-card-body .meta {
  display: flex;
  gap: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}
.room-card-body h3 { font-size: 1.45rem; }
.room-card-body .desc { font-size: 0.94rem; color: rgba(24, 21, 16, 0.68); line-height: 1.65; }
.room-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.price { font-size: 0.8rem; color: var(--taupe); }
.price strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- home: venues (dining/spa/experiences preview) ---------- */

.venue-rows { display: flex; flex-direction: column; }
.venue-row {
  display: grid;
  grid-template-columns: 88px 1fr 1.1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
  transition: background-color 0.4s var(--ease-out);
}
.venue-row:last-child { border-bottom: 1px solid var(--line); }
.venue-row .plate { width: 88px; aspect-ratio: 1; border-radius: 50%; }
.venue-row .plate .plate-label { display: none; }
.venue-row h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); transition: color 0.4s var(--ease-out); }
.venue-row .sub { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 0.35rem; }
.venue-row p { font-size: 0.95rem; color: rgba(24, 21, 16, 0.6); max-width: 44ch; }
.venue-row .go {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.venue-row:hover .go { background: var(--ink); border-color: var(--ink); color: var(--ivory); transform: rotate(-45deg); }
.venue-row:hover h3 { color: var(--brass-deep); }

.on-dark .venue-row, .on-dark .venue-row:last-child { border-color: var(--line-inv); }
.on-dark .venue-row .sub { color: var(--brass-bright); }
.on-dark .venue-row p { color: rgba(246, 241, 231, 0.6); }
.on-dark .venue-row .go { border-color: var(--line-inv); }
.on-dark .venue-row:hover .go { background: var(--brass-bright); border-color: var(--brass-bright); color: #241A0C; }
.on-dark .venue-row:hover h3 { color: var(--brass-bright); }

/* ---------- testimonials & awards ---------- */

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.quote-card {
  background: #FDFBF5;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote-card .stars { display: flex; gap: 3px; color: var(--brass); }
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 340;
  line-height: 1.55;
  color: rgba(24, 21, 16, 0.85);
}
.quote-card cite {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: auto;
}

.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  padding: 2.4rem 0 0;
  margin-top: 3.4rem;
  border-top: 1px solid var(--line);
}
.award {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}
.award svg { color: var(--brass); flex: none; }

/* ---------- gallery ---------- */

.gallery-masonry {
  columns: 3;
  column-gap: 1.4rem;
}
.gallery-masonry .g-item {
  break-inside: avoid;
  margin-bottom: 1.4rem;
  cursor: zoom-in;
  border: none;
  padding: 0;
  width: 100%;
  display: block;
}
.gallery-masonry .plate { width: 100%; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(14, 11, 6, 0.92);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 4rem);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.lightbox.in { opacity: 1; }
.lightbox .lb-media { width: min(1000px, 100%); }
.lightbox .plate { aspect-ratio: 16 / 10; box-shadow: var(--shadow-float); }
.lightbox .lb-cap {
  color: rgba(246, 241, 231, 0.7);
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- booking flow ---------- */

.booking-page { padding-top: clamp(6.5rem, 12vh, 8.5rem); }

.book-steps {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.book-steps .step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(24, 21, 16, 0.38);
}
.book-steps .step .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  transition: all 0.3s var(--ease-out);
}
.book-steps .step.current { color: var(--ink); }
.book-steps .step.current .dot { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.book-steps .step.done { color: var(--spruce); }
.book-steps .step.done .dot { background: var(--spruce); border-color: var(--spruce); color: var(--ivory); }
.book-steps .sep { width: 2rem; height: 1px; background: var(--line); }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: start;
}

/* filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0 1.6rem;
}
.chip {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: rgba(24, 21, 16, 0.66);
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.chip:hover { border-color: var(--brass); color: var(--brass-deep); }
.chip.active { background: var(--spruce); border-color: var(--spruce); color: var(--ivory); }
.filter-bar .sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}
.filter-bar .sort select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* result cards */
.result-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: #FDFBF5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 1.6rem;
  transition: box-shadow 0.5s var(--ease-out);
}
.result-card:hover { box-shadow: var(--shadow-float); }
.result-card .media { position: relative; min-height: 260px; }
.result-card .media .plate { position: absolute; inset: 0; border-radius: 0; }
.result-card .body { padding: 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.7rem; }
.result-card .body .meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }
.result-card h3 { font-size: 1.6rem; }
.result-card .desc { font-size: 0.93rem; color: rgba(24, 21, 16, 0.68); max-width: 60ch; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(65, 80, 63, 0.1);
  color: var(--spruce-deep);
}
.tag.gold { background: rgba(168, 126, 72, 0.14); color: var(--brass-deep); }
.result-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}
.result-foot .cancel-note { font-size: 0.78rem; color: var(--spruce); display: flex; align-items: center; gap: 0.4rem; }

/* rate selector */
.rate-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.rate-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.4rem;
  align-items: center;
  text-align: left;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: transparent;
  transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.rate-option:hover { border-color: var(--brass); }
.rate-option.selected {
  border-color: var(--spruce);
  background: rgba(65, 80, 63, 0.06);
  box-shadow: inset 0 0 0 1px var(--spruce);
}
.rate-option .rname { font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.6rem; }
.rate-option .rdetail { grid-column: 1; font-size: 0.8rem; color: rgba(24, 21, 16, 0.6); }
.rate-option .rprice { grid-row: 1 / 3; align-self: center; text-align: right; }
.badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  background: rgba(168, 126, 72, 0.16);
  color: var(--brass-deep);
}
.badge.green { background: rgba(65, 80, 63, 0.14); color: var(--spruce-deep); }

/* addons */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.addon-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  text-align: left;
  padding: 1.4rem;
  background: #FDFBF5;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.addon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.addon-card.selected { border-color: var(--spruce); box-shadow: inset 0 0 0 1px var(--spruce), var(--shadow-card); }
.addon-card .icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(168, 126, 72, 0.12);
  color: var(--brass-deep);
  display: grid;
  place-items: center;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.addon-card.selected .icon { background: var(--spruce); color: var(--ivory); }
.addon-card h4 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; }
.addon-card p { font-size: 0.83rem; color: rgba(24, 21, 16, 0.62); line-height: 1.55; margin: 0.2rem 0 0.5rem; }
.addon-card .aprice { font-size: 0.85rem; font-weight: 600; color: var(--brass-deep); }
.addon-card .check {
  margin-left: auto;
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all 0.3s var(--ease-out);
}
.addon-card.selected .check { background: var(--spruce); border-color: var(--spruce); color: var(--ivory); }

/* forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--taupe);
}
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FDFBF5;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(168, 126, 72, 0.16);
}
.form-field input.invalid { border-color: #A34B2E; box-shadow: 0 0 0 3px rgba(163, 75, 46, 0.12); }
.form-field .err { font-size: 0.75rem; color: #A34B2E; }
.form-field textarea { min-height: 110px; resize: vertical; }

/* summary panel */
.summary-panel {
  position: sticky;
  top: 96px;
  background: #FDFBF5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.summary-panel .sp-head {
  background: var(--ink);
  color: var(--ivory);
  padding: 1.3rem 1.6rem;
}
.summary-panel .sp-head .level-tag { color: var(--brass-bright); font-size: 0.62rem; }
.summary-panel .sp-head h3 { font-size: 1.3rem; margin-top: 0.3rem; }
.summary-panel .sp-body { padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.75rem; }
.sline { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.88rem; color: rgba(24, 21, 16, 0.75); }
.sline .lbl { color: rgba(24, 21, 16, 0.55); }
.sline.minor { font-size: 0.8rem; }
.sline.total {
  padding-top: 0.9rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.sline.total .amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.sp-note { font-size: 0.74rem; color: var(--taupe); line-height: 1.6; }

/* confirmation */
.confirm-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.confirm-seal {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-bright);
  display: grid;
  place-items: center;
  animation: sealPop 0.9s var(--ease-out) 0.2s backwards;
}
@keyframes sealPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.booking-ref {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  border: 1px dashed rgba(168, 126, 72, 0.5);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
}

/* empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--taupe);
}
.empty-state h3 { margin-bottom: 0.6rem; color: var(--ink); }

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(8.5rem, 18vh, 12rem) 0 clamp(2.8rem, 6vh, 4.5rem);
}
.page-hero .lede { margin-top: 1.4rem; }
.page-hero .level-tag { margin-bottom: 1.4rem; }

/* ---------- detail rows (dining / spa / experiences) ---------- */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line-soft); }
.feature-row .plate { aspect-ratio: 4 / 3; }
.feature-row.flip .media { order: 2; }
.feature-row .content { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; }
.feature-row .content h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.feature-row .facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* experience cards */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.exp-card { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; }
.exp-card .plate { aspect-ratio: 3 / 4; border-radius: 0; }
.exp-card .exp-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  padding: 1.6rem;
  color: var(--ivory);
}
.exp-card .exp-body .sub { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-bright); }
.exp-card .exp-body h3 { font-size: 1.4rem; margin: 0.3rem 0 0.2rem; }
.exp-card .exp-body .dur { font-size: 0.8rem; opacity: 0.75; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.contact-list { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item .clabel {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.3rem;
}
.contact-item .cvalue { font-size: 1.05rem; line-height: 1.6; }
.contact-item .cvalue a { color: var(--brass-deep); border-bottom: 1px solid rgba(168, 126, 72, 0.35); transition: border-color 0.3s; }
.contact-item .cvalue a:hover { border-color: var(--brass-deep); }
.map-plate { aspect-ratio: 1 / 1.05; }

/* ---------- footer ---------- */

#site-footer {
  background: var(--ink);
  color: var(--ivory);
  margin-top: 0;
}
.footer-cta {
  padding-top: var(--space-section);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.footer-cta h2 { max-width: 16ch; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid var(--line-inv);
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.45);
  margin-bottom: 1.1rem;
}
.footer-grid a, .footer-grid p { font-size: 0.92rem; color: rgba(246, 241, 231, 0.75); line-height: 2.1; }
.footer-grid a { display: block; transition: color 0.3s var(--ease-out); }
.footer-grid a:hover { color: var(--brass-bright); }
.footer-brand .wordmark { font-size: 1.1rem; margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; }
.newsletter { display: flex; margin-top: 0.9rem; border-bottom: 1px solid var(--line-inv); }
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 0;
  color: var(--ivory);
  font-size: 0.92rem;
  outline: none;
}
.newsletter input::placeholder { color: rgba(246, 241, 231, 0.4); }
.newsletter button { color: var(--brass-bright); padding: 0.7rem 0.2rem; transition: transform 0.3s var(--ease-out); }
.newsletter button:hover { transform: translateX(4px); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line-inv);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(246, 241, 231, 0.4);
}

/* ---------- toast ---------- */

#toast-root { position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.toast {
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.85rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-float);
  animation: toastIn 0.5s var(--ease-out), toastOut 0.4s var(--ease-out) 2.8s forwards;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(16px); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px); } }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .menu-btn { display: flex; }
  .room-grid, .quote-grid, .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .booking-layout { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
  .booking-bar, .hero .booking-bar { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .booking-bar .field { border-bottom: 1px solid var(--line-soft); }
  .hero .booking-bar .field { padding: 0.9rem 1.1rem; }
  .hero .booking-bar .field input, .hero .booking-bar .field select { font-size: 0.95rem; }
  .booking-bar .submit, .hero .booking-bar .submit { grid-column: 1 / -1; padding: 0; }
  .booking-bar .btn, .hero .booking-bar .btn { width: 100%; padding: 1.1rem; border-radius: 0; }
  .venue-row { grid-template-columns: 64px 1fr auto; }
  .venue-row .plate { width: 64px; }
  .venue-row p { display: none; }
}

@media (max-width: 720px) {
  .room-grid, .quote-grid, .exp-grid, .addon-grid, .form-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-grid .form-field { grid-column: 1 / -1; }
  .story-grid, .feature-row { grid-template-columns: 1fr; }
  .feature-row.flip .media { order: 0; }
  .story-figure { margin-bottom: 2.5rem; }
  .story-figure .plate.offset { right: 4%; bottom: -10%; }
  .result-card { grid-template-columns: 1fr; }
  .result-card .media { min-height: 0; aspect-ratio: 16 / 10; }
  .gallery-masonry { columns: 1; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
  .header-book { display: none; }
  .venue-row { grid-template-columns: 52px 1fr auto; gap: 1rem; }
  .venue-row .plate { width: 52px; }
  .venue-row .go { width: 42px; height: 42px; }
  .story-stats { gap: 1.6rem; flex-wrap: wrap; }
  .hero-photo { background-position: 64% 58%; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 16, 10, 0.5) 0%, rgba(20, 16, 10, 0) 20%),
      linear-gradient(to top, rgba(14, 11, 7, 0.82) 0%, rgba(14, 11, 7, 0.45) 40%, rgba(14, 11, 7, 0.12) 70%);
  }
  .book-steps .step .txt { display: none; }
  .book-steps .step.current .txt { display: inline; }
  .book-steps .sep { width: 1rem; }
  /* footer stack */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.6rem; padding-top: 3rem; padding-bottom: 3rem; }
  .footer-brand, .footer-news { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .footer-grid a, .footer-grid p { line-height: 1.9; }
  .newsletter { max-width: 26rem; }
  .footer-base { font-size: 0.72rem; gap: 0.6rem; }
  /* explore legend a touch tighter */
  .explore-legend button { font-size: 0.7rem; padding: 0.4rem 0.85rem; }
}

/* very small phones */
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
  .book-steps { gap: 0.5rem; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hotspot .halo { animation: none; opacity: 0.5; }
}
