:root {
  --bg: #efe5d9;
  --bg-soft: #f6eee2;
  --bg-deep: #e7d8c6;
  --paper: #fbf4ea;
  --ink: #281e15;
  --muted: #5f5143;
  --line: rgba(86, 64, 43, 0.24);
  --line-strong: rgba(86, 64, 43, 0.38);
  --accent: #a86b3d;
  --accent-soft: #bc8359;
  --accent-ink: #fff8ef;
  --danger: #a33b2f;
  --success: #255f43;
  --radius-lg: 1.75rem;
  --radius-md: 1.1rem;
  --radius-sm: 0.8rem;
  --radius-arch: clamp(4rem, 12vw, 9rem);
  --space-section: clamp(4rem, 7vw, 8rem);
  --space-section-bridge: clamp(2.5rem, 4vw, 4rem);
  --space-section-tail: clamp(2rem, 3.5vw, 3rem);
  --space-footer-shell: clamp(2rem, 4vw, 3rem);
  --space-grid: clamp(1.2rem, 2.5vw, 2rem);
  --shadow: 0 24px 52px -28px rgba(86, 58, 35, 0.34);
  --shadow-soft: 0 16px 34px -24px rgba(77, 52, 33, 0.34);
  --shadow-lift: 0 28px 58px -30px rgba(67, 45, 27, 0.48);
  --glass-border: rgba(130, 97, 66, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    linear-gradient(140deg, rgba(255, 251, 245, 0.84), rgba(238, 226, 212, 0.92)),
    linear-gradient(160deg, #f8f1e7 0%, var(--bg) 46%, var(--bg-deep) 100%);
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 10%, rgba(170, 104, 58, 0.2), transparent 34%),
    radial-gradient(circle at 89% 15%, rgba(160, 122, 86, 0.18), transparent 30%),
    radial-gradient(circle at 72% 86%, rgba(204, 170, 129, 0.16), transparent 35%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(120deg, rgba(132, 98, 69, 0.12) 1px, transparent 1px),
    linear-gradient(300deg, rgba(132, 98, 69, 0.09) 1px, transparent 1px);
  background-size: 38px 38px, 42px 42px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main img {
  cursor: zoom-in;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

main img:hover {
  transform: scale(1.04);
  filter: saturate(1.04);
}

main img:focus-visible {
  outline: 3px solid rgba(181, 106, 62, 0.42);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", "Outfit", "Times New Roman", serif;
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 0;
}

h1,
h2 {
  font-weight: 600;
}

p {
  margin: 0;
}

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

.container {
  width: min(1360px, calc(100% - 3rem));
  margin-inline: auto;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 60;
  background: linear-gradient(90deg, #8e4f2e, var(--accent));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 0.95rem;
  transition: padding-top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--glass-border);
  background: rgba(251, 245, 236, 0.86);
  backdrop-filter: blur(11px);
  border-radius: 2.35rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 24px 44px -28px rgba(96, 67, 44, 0.52);
  padding: 0.8rem 1.1rem 0.8rem 1.4rem;
  transition:
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-shell::before {
  content: "";
  position: absolute;
  inset: 0.32rem;
  border-radius: 2rem;
  border: 1px solid rgba(134, 101, 71, 0.18);
  pointer-events: none;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  padding-top: 0.45rem;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(124, 90, 61, 0.46);
  background: rgba(251, 245, 236, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 26px 50px -30px rgba(70, 48, 29, 0.58);
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-shell::before {
  border-color: rgba(134, 101, 71, 0.24);
}

.brand {
  display: grid;
  gap: 0.15rem;
  line-height: 1;
}

.brand-main {
  font-family: "Cormorant Garamond", "Outfit", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #2f241b;
}

.brand-sub {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7a6856;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.7);
  border-radius: 0.65rem;
  padding: 0.5rem 0.58rem;
  color: #3d3127;
  line-height: 1;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1rem;
  height: 1rem;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.nav-list a {
  font-size: 0.84rem;
  padding: 0.5rem 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 560;
  border-radius: 0.6rem;
  color: #3f3125;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
  color: var(--accent);
  background: rgba(181, 106, 62, 0.12);
}

.header-cta,
.button-accent,
.button-line,
.button-subtle,
.chip,
.filter-chip,
.shortlist-toggle,
.action-link {
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.74rem 1.08rem;
  line-height: 1;
  font-size: 0.82rem;
  letter-spacing: 0.055em;
  font-weight: 620;
  cursor: pointer;
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.header-cta,
.button-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow:
    0 15px 34px -22px rgba(108, 67, 38, 0.82),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-accent:hover,
.button-accent:focus-visible {
  background: var(--accent-soft);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 20px 40px -20px rgba(108, 67, 38, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-line,
.shortlist-toggle,
.action-link {
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.9);
  color: #2f241b;
}

.button-line:hover,
.button-line:focus-visible,
.shortlist-toggle:hover,
.shortlist-toggle:focus-visible,
.action-link:hover,
.action-link:focus-visible {
  color: var(--accent);
  border-color: rgba(181, 106, 62, 0.44);
  background: rgba(255, 251, 245, 0.98);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px -12px rgba(96, 67, 44, 0.2);
}

.button-subtle,
.filter-chip,
.chip {
  position: relative;
  border: 1px solid rgba(101, 81, 62, 0.22);
  background: rgba(246, 236, 224, 0.65);
  color: #4a3c2f;
  padding: 0.56rem 0.84rem;
  font-size: 0.82rem;
}

.filter-chip::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-chip.is-active::after {
  transform: translateX(-50%) scale(1);
}

.filter-chip.is-active,
.chip.is-active,
.shortlist-toggle.is-selected {
  border-color: rgba(181, 106, 62, 0.52);
  background: rgba(181, 106, 62, 0.14);
  color: #703f21;
}

.header-cta:active,
.button-accent:active,
.button-line:active,
.shortlist-toggle:active,
.filter-chip:active,
.action-link:active {
  transform: translateY(1px) scale(0.98);
}

.page-main {
  min-height: 100dvh;
  padding-bottom: clamp(2rem, 3.8vw, 3.2rem);
  position: relative;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7e6953;
}

.kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border: 1px solid rgba(131, 101, 73, 0.56);
  transform: rotate(45deg);
  background: linear-gradient(145deg, rgba(245, 227, 206, 0.72), rgba(235, 209, 182, 0.4));
}

.page-hero {
  position: relative;
  padding-top: clamp(4rem, 7vw, 7.4rem);
  padding-bottom: clamp(2.8rem, 6vw, 5.8rem);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 20%;
  width: clamp(90px, 14vw, 160px);
  height: clamp(170px, 25vw, 320px);
  border-radius: var(--radius-arch) var(--radius-arch) 1.3rem 1.3rem;
  border: 1px solid rgba(149, 117, 87, 0.2);
  background: linear-gradient(180deg, rgba(248, 236, 221, 0.36), rgba(225, 205, 180, 0.07));
  pointer-events: none;
  z-index: -1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.7vw, 3rem);
  align-items: end;
}

.page-hero-copy {
  max-width: 58ch;
}

.page-hero-copy h1 {
  margin-top: 0.86rem;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.96;
  font-weight: 580;
}

.lead {
  margin-top: 1.1rem;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.04rem;
  max-width: 60ch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-media-stack {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 238px 178px 178px;
  gap: 0.88rem;
}

.hero-media-stack figure,
.media-frame,
.room-media,
.venue-media,
.exp-media,
.well-media,
.map-media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(142, 109, 79, 0.36);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #efdecb;
  isolation: isolate;
}

.hero-media-stack figure::after,
.media-frame::after,
.room-media::after,
.venue-media::after,
.exp-media::after,
.well-media::after,
.map-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(255, 248, 238, 0.16), transparent 35%),
    linear-gradient(355deg, rgba(47, 31, 19, 0.22), rgba(47, 31, 19, 0.04) 34%);
}

.hero-media-stack .one {
  grid-column: 1 / span 8;
  grid-row: 1 / span 3;
  border-radius: var(--radius-arch) var(--radius-arch) 1.2rem 1.2rem;
  border-color: rgba(134, 101, 71, 0.42);
}

.hero-media-stack .two {
  grid-column: 9 / span 4;
  grid-row: 1 / span 1;
  transform: translateY(0.88rem);
  animation: float-signal 8s ease-in-out infinite;
}

.hero-media-stack .three {
  grid-column: 8 / span 5;
  grid-row: 2 / span 2;
  transform: translateY(0.34rem);
  animation: float-signal 10s ease-in-out infinite reverse;
}

.section {
  position: relative;
  padding-block: var(--space-section);
}

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

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

.section+.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 97, 70, 0.28), transparent);
}

.section-head {
  max-width: 78ch;
  position: relative;
}

.section-head h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.78rem, 3.2vw, 3.06rem);
  line-height: 1.01;
  font-weight: 560;
  max-width: 24ch;
}

.section-head::after {
  content: "";
  display: block;
  margin-top: 1rem;
  width: clamp(88px, 11vw, 150px);
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 113, 80, 0.24), rgba(151, 113, 80, 0.62), rgba(151, 113, 80, 0.24));
}

.section-copy {
  margin-top: 1.04rem;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.74;
}

.memory-grid {
  margin-top: calc(var(--space-grid) + 0.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-grid);
  align-items: stretch;
}

.heritage-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.88rem;
}

.heritage-panel {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.heritage-panel h3 {
  font-size: clamp(1.56rem, 2.2vw, 2.05rem);
  line-height: 0.98;
}

.heritage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.64rem;
}

.heritage-list li {
  position: relative;
  padding-left: 1rem;
  color: #4f4033;
  line-height: 1.66;
}

.heritage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.42rem;
  height: 0.42rem;
  transform: rotate(45deg);
  border: 1px solid rgba(130, 97, 67, 0.72);
  background: rgba(187, 139, 101, 0.24);
}

.card-surface {
  position: relative;
  border: 1px solid rgba(122, 94, 70, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(252, 246, 238, 0.94), rgba(245, 233, 218, 0.95)),
    linear-gradient(90deg, rgba(255, 251, 245, 0.08), transparent 40%);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2vw, 1.65rem);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-surface:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 64px -24px rgba(77, 52, 33, 0.4);
}

.card-surface::before {
  content: "";
  position: absolute;
  inset: 0.42rem;
  border-radius: calc(var(--radius-lg) - 0.45rem);
  border: 1px solid rgba(149, 114, 82, 0.16);
  pointer-events: none;
}

.card-surface,
.venue-card,
.exp-card,
.well-card,
.dept-card,
.travel-card,
.map-shell,
.inquiry-shell,
.transport-shell {
  --spot-x: 50%;
  --spot-y: 50%;
}

.card-surface::after,
.venue-card::after,
.exp-card::after,
.well-card::after,
.dept-card::after,
.travel-card::after,
.map-shell::after,
.inquiry-shell::after,
.transport-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(280px circle at var(--spot-x) var(--spot-y), rgba(255, 246, 234, 0.6), rgba(255, 246, 234, 0.08) 44%, transparent 72%);
  transition: opacity 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-surface.is-hot::after,
.venue-card.is-hot::after,
.exp-card.is-hot::after,
.well-card.is-hot::after,
.dept-card.is-hot::after,
.travel-card.is-hot::after,
.map-shell.is-hot::after,
.inquiry-shell.is-hot::after,
.transport-shell.is-hot::after {
  opacity: 1;
}

.copy-block {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.copy-block h3 {
  font-size: clamp(1.34rem, 2.1vw, 1.96rem);
  font-weight: 560;
}

.copy-block p {
  color: var(--muted);
  line-height: 1.7;
}

.copy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.64rem;
}

.copy-list li {
  position: relative;
  padding-left: 0.95rem;
  color: #4a3d31;
  line-height: 1.6;
}

.copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.42rem;
  height: 0.42rem;
  transform: rotate(45deg);
  border: 1px solid rgba(130, 97, 67, 0.72);
  background: rgba(187, 139, 101, 0.24);
}

.path-grid {
  margin-top: calc(var(--space-grid) + 0.44rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-grid);
}

.path-grid .path-column {
  display: grid;
  gap: var(--space-grid);
}

.path-item {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 0.72rem;
  align-items: stretch;
  min-height: 250px;
}

.path-item.alt {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.path-item .media-frame {
  min-height: 100%;
}

.path-content {
  display: grid;
  gap: 0.62rem;
  align-content: start;
}

.path-content h3 {
  font-size: clamp(1.28rem, 2vw, 1.82rem);
  font-weight: 560;
}

.path-content p {
  color: var(--muted);
  line-height: 1.65;
}

.notice {
  margin-top: 0.95rem;
  border-top: 1px solid rgba(97, 74, 55, 0.24);
  padding-top: 0.85rem;
  color: #4f4034;
  font-size: 0.87rem;
  line-height: 1.55;
}

.booking-shell {
  margin-top: calc(var(--space-grid) + 0.42rem);
  border: 1px solid rgba(117, 91, 70, 0.25);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(150deg, rgba(252, 247, 240, 0.92), rgba(244, 232, 218, 0.92));
  padding: clamp(1rem, 2vw, 1.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 0.78rem;
  align-content: start;
}

.form-row {
  display: grid;
  gap: 0.78rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.33rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 620;
  color: #3e3228;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(102, 81, 62, 0.35);
  background: rgba(255, 252, 247, 0.92);
  color: #2f251d;
  padding: 0.78rem 0.84rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(181, 106, 62, 0.72);
  box-shadow: 0 0 0 3px rgba(181, 106, 62, 0.16);
}

.helper,
.error-text {
  font-size: 0.78rem;
  line-height: 1.45;
}

.helper {
  color: #756759;
}

.error-text {
  color: var(--danger);
  min-height: 0.92rem;
}

.state-panel {
  border: 1px solid rgba(116, 91, 72, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.72);
  padding: 1rem;
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 0.78rem;
}

.state-panel h3 {
  font-size: 1.2rem;
  font-weight: 560;
}

.state-panel p {
  color: var(--muted);
  line-height: 1.64;
}

.skeleton-stack {
  margin-top: 0.2rem;
  display: grid;
  gap: 0.62rem;
}

.skeleton-line {
  height: 64px;
  border-radius: 0.72rem;
  background: rgba(193, 171, 149, 0.34);
  position: relative;
  overflow: hidden;
}

.skeleton-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  animation: shimmer 1.2s ease-in-out infinite;
}

.result-list {
  display: grid;
  gap: 0.58rem;
}

.result-item {
  border: 1px solid rgba(102, 81, 62, 0.24);
  border-radius: 0.72rem;
  background: rgba(255, 251, 245, 0.92);
  padding: 0.78rem;
  display: grid;
  gap: 0.22rem;
}

.result-item strong {
  font-family: "Cormorant Garamond", "Outfit", serif;
  font-size: 1.26rem;
  font-weight: 560;
}

.result-item span,
.result-item em {
  font-size: 0.84rem;
  color: #54473c;
  font-style: normal;
}

.result-error {
  color: #6f2e25;
}

.inline-status {
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(92, 72, 56, 0.25);
  font-size: 0.82rem;
  color: #56483b;
}

.rooms-layout {
  margin-top: calc(var(--space-grid) + 0.42rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 0.95rem;
  align-items: start;
}

.rooms-grid {
  display: grid;
  gap: var(--space-grid);
}

.room-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0.8rem;
  align-items: stretch;
}

.room-media {
  min-height: 230px;
}

.room-body {
  display: grid;
  gap: 0.48rem;
  align-content: start;
}

.room-body h3 {
  font-size: clamp(1.52rem, 2.1vw, 2.05rem);
  font-weight: 560;
  line-height: 1;
}

.room-meta {
  color: #5b4c3f;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-body p {
  color: var(--muted);
  line-height: 1.65;
}

.room-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.shortlist-panel {
  position: sticky;
  top: 6.15rem;
  display: grid;
  gap: 0.82rem;
}

.shortlist-panel h3 {
  font-size: 1.2rem;
  font-weight: 560;
}

.shortlist-count {
  display: inline-flex;
  margin-left: 0.35rem;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 105, 76, 0.34);
  font-size: 0.76rem;
  color: #58493d;
}

.shortlist-empty {
  color: var(--muted);
  line-height: 1.64;
}

.shortlist-list {
  display: grid;
  gap: 0.55rem;
}

.shortlist-item {
  border: 1px solid rgba(101, 80, 61, 0.24);
  border-radius: 0.72rem;
  padding: 0.65rem;
  background: rgba(255, 251, 245, 0.86);
  display: grid;
  gap: 0.2rem;
}

.shortlist-item strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
}

.shortlist-item span {
  font-size: 0.8rem;
  color: #5f5144;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.summary-table td {
  border-top: 1px solid rgba(104, 81, 62, 0.2);
  padding: 0.42rem 0;
  color: #534538;
}

.summary-table td:first-child {
  width: 40%;
  color: #44372c;
}

.filter-bar {
  margin-top: calc(var(--space-grid) + 0.1rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.menu-library {
  margin-top: calc(var(--space-grid) + 0.36rem);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: var(--space-grid);
}

.menu-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.menu-meta {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #866e56;
}

.menu-card h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.86rem);
  font-weight: 560;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.65;
}

.venue-grid,
.experience-grid,
.wellbeing-grid,
.contact-grid,
.travel-grid {
  margin-top: calc(var(--space-grid) + 0.36rem);
  display: grid;
  gap: var(--space-grid);
}

.venue-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.venue-card,
.exp-card,
.well-card,
.dept-card,
.travel-card,
.map-shell,
.inquiry-shell {
  display: grid;
  gap: 0.92rem;
}

.venue-card,
.exp-card,
.well-card,
.dept-card,
.travel-card,
.map-shell,
.inquiry-shell,
.transport-shell {
  position: relative;
  border: 1px solid rgba(115, 89, 67, 0.24);
  border-radius: var(--radius-md);
  background: rgba(252, 246, 238, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.06rem;
  overflow: hidden;
}

.venue-card::before,
.exp-card::before,
.well-card::before,
.dept-card::before,
.travel-card::before,
.map-shell::before,
.inquiry-shell::before,
.transport-shell::before {
  content: "";
  position: absolute;
  inset: 0.36rem;
  border-radius: calc(var(--radius-md) - 0.38rem);
  border: 1px solid rgba(152, 116, 84, 0.16);
  pointer-events: none;
}

.venue-card {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.venue-media,
.exp-media,
.well-media {
  min-height: 220px;
}

.venue-copy,
.exp-copy,
.well-copy {
  display: grid;
  gap: 0.64rem;
  align-content: start;
}

.venue-copy h3,
.exp-copy h3,
.well-copy h3,
.dept-card h3,
.travel-card h3 {
  font-size: 1.56rem;
  font-weight: 560;
  line-height: 0.98;
}

.venue-copy p,
.exp-copy p,
.well-copy p,
.dept-card p,
.travel-card p,
.map-shell p {
  color: var(--muted);
  line-height: 1.72;
}

[data-page="culinary"] .section-head {
  max-width: 68ch;
}

[data-page="culinary"] .section-head h2 {
  max-width: 16ch;
  font-size: clamp(2.06rem, 3.5vw, 3.22rem);
}

[data-page="culinary"] .page-hero-copy h1 {
  max-width: 17ch;
  font-size: clamp(1.98rem, 4vw, 3.8rem);
}

[data-page="culinary"] .section-copy {
  max-width: 58ch;
}

.section-culinary-venues .venue-grid--airy {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.05rem, 2.2vw, 1.6rem);
}

.section-culinary-venues .venue-grid--airy .venue-card {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(1rem, 1.8vw, 1.32rem);
}

.section-culinary-venues .venue-grid--airy .venue-card:nth-child(even) .venue-media {
  order: 2;
}

.section-culinary-venues .venue-grid--airy .venue-card:nth-child(even) .venue-copy {
  order: 1;
}

.section-culinary-venues .venue-grid--airy .venue-media {
  min-height: 300px;
}

.section-culinary-venues .venue-grid--airy .venue-card::before,
.section-culinary-experiences .exp-card::before {
  opacity: 0.5;
}

.section-menu-library .menu-library {
  grid-template-columns: minmax(0, 1fr);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(101, 80, 61, 0.24);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-size: 0.78rem;
  color: #534435;
}

.experience-grid {
  grid-template-columns: 1fr 1fr;
}

.exp-card {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.wellbeing-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.well-card {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.dept-list {
  display: grid;
  gap: 0.7rem;
}

.dept-card a {
  display: block;
  color: #4e3f31;
  font-size: 0.9rem;
  margin-top: 0.14rem;
}

.dept-card small {
  font-size: 0.78rem;
  color: #6a5c4f;
}

.map-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.map-media {
  min-height: 230px;
}

.travel-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.travel-card {
  min-height: 220px;
}

.travel-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.transport-shell {
  margin-top: 0.9rem;
}

.inquiry-shell {
  margin-top: 0.85rem;
}

.inquiry-shell h3 {
  font-size: 1.24rem;
}

.form-message {
  margin-top: 0.72rem;
  font-size: 0.83rem;
  color: #59493d;
}

.form-message.is-success {
  color: var(--success);
}

.form-message.is-error {
  color: var(--danger);
}

.cta-band {
  margin-top: 0.9rem;
  border: 1px solid rgba(114, 90, 69, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(246, 236, 223, 0.8);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.cta-band p {
  color: #55473b;
  line-height: 1.62;
}

.section--tail .cta-band,
.section--tail .transport-shell,
.section--tail .inquiry-shell {
  margin-top: 0.4rem;
}

.concierge-dock {
  position: fixed;
  right: clamp(1rem, 2.4vw, 1.8rem);
  bottom: clamp(1rem, 2.8vw, 1.9rem);
  z-index: 45;
  width: min(360px, calc(100vw - 2rem));
  display: grid;
  gap: 0.58rem;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.concierge-dock.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.concierge-chip {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(119, 89, 61, 0.28);
  background: rgba(251, 245, 236, 0.9);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    var(--shadow-lift);
  padding: 0.72rem 0.88rem;
  display: grid;
  gap: 0.22rem;
  line-height: 1.2;
}

.concierge-chip span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5e4f42;
}

.concierge-chip strong {
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2f241b;
}

.concierge-chip--accent {
  border-color: rgba(155, 99, 58, 0.42);
  background: linear-gradient(160deg, rgba(174, 115, 73, 0.94), rgba(148, 93, 54, 0.94));
}

.concierge-chip--accent span,
.concierge-chip--accent strong {
  color: #fff7ef;
}

.concierge-chip:hover,
.concierge-chip:focus-visible {
  transform: translateY(-2px);
}

body.is-lightbox-open .concierge-dock {
  opacity: 0;
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(24, 18, 13, 0.86);
  backdrop-filter: blur(10px);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  padding: clamp(1rem, 4vw, 2rem);
}

.lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  width: min(1120px, 100%);
  border: 1px solid rgba(216, 190, 166, 0.35);
  border-radius: 1.25rem;
  background: rgba(250, 240, 229, 0.95);
  box-shadow: 0 32px 70px -30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.lightbox-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.95rem;
  border-bottom: 1px solid rgba(130, 98, 73, 0.26);
}

.lightbox-copy {
  display: grid;
  gap: 0.24rem;
}

.lightbox-copy strong {
  font-family: "Outfit", sans-serif;
  font-weight: 560;
  font-size: 1.02rem;
}

.lightbox-copy span {
  font-size: 0.8rem;
  color: #66584a;
}

.lightbox-close {
  border: 1px solid rgba(109, 82, 61, 0.26);
  background: rgba(255, 250, 244, 0.9);
  color: #3d3025;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.lightbox-media {
  margin: 0;
  background: rgba(245, 234, 220, 0.7);
  border-top: 1px solid rgba(129, 98, 73, 0.15);
  border-bottom: 1px solid rgba(129, 98, 73, 0.15);
  max-height: 76vh;
}

.lightbox-media img {
  width: 100%;
  height: min(76vh, 780px);
  object-fit: contain;
  cursor: default;
}

.lightbox-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.86rem 0.95rem 1rem;
}

.lightbox-controls button {
  border: 1px solid rgba(107, 82, 60, 0.24);
  background: rgba(255, 250, 244, 0.9);
  color: #3f3228;
  border-radius: 999px;
  padding: 0.56rem 0.88rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

body.is-lightbox-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(100, 79, 61, 0.24);
  padding: clamp(1.1rem, 2.4vw, 1.8rem) 0 clamp(2rem, 4vw, 3rem);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(137, 103, 74, 0.48), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2vw, 2rem);
  border: 1px solid rgba(130, 100, 75, 0.35);
  border-radius: calc(var(--radius-lg) + 0.5rem);
  background:
    linear-gradient(150deg, rgba(255, 251, 245, 0.96), rgba(248, 238, 225, 0.96)),
    linear-gradient(90deg, rgba(255, 251, 245, 0.12), transparent 48%);
  box-shadow: var(--shadow);
  padding: var(--space-footer-shell);
}

.footer-grid>div {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-grid>div:last-child {
  justify-self: end;
  min-width: min(320px, 100%);
}

.footer-grid p,
.footer-grid a,
.footer-grid small {
  color: #54463a;
  line-height: 1.55;
  font-size: 0.9rem;
}

.footer-grid small {
  display: block;
  margin-top: 0.72rem;
  color: #6f6154;
}

.footer-grid a {
  transition: color 0.24s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-hidden {
  display: none !important;
}

/* Immersive Ecstatic CTA */
.ecstatic-cta {
  position: relative;
  margin-top: 4rem;
  padding: 6rem 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: #1a1512;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.6);
}

.ecstatic-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ecstatic-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.8) brightness(0.7);
  transition: transform 12s linear;
}

.ecstatic-cta:hover .ecstatic-cta-bg img {
  transform: scale(1.1);
}

.ecstatic-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(20, 16, 13, 0.85) 100%);
  z-index: 1;
}

.ecstatic-cta-content {
  position: relative;
  z-index: 2;
  max-width: 60ch;
  display: grid;
  gap: 1.5rem;
}

.ecstatic-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 0.95;
  color: #f7ede2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ecstatic-cta p {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: rgba(247, 237, 226, 0.9);
  max-width: 50ch;
  margin-inline: auto;
}

.ecstatic-cta .button-accent {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  background: var(--accent);
  border: none;
  box-shadow: 0 15px 35px -10px rgba(142, 79, 46, 0.8);
}

.ecstatic-cta .button-accent:hover {
  background: #f7ede2;
  color: var(--accent);
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 768px) {
  .ecstatic-cta {
    padding: 4rem 1.5rem;
  }
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes float-signal {

  0%,
  100% {
    transform: translateY(0.9rem);
  }

  50% {
    transform: translateY(0.4rem);
  }
}

@media (max-width: 1160px) {
  .page-hero::after {
    display: none;
  }

  .page-hero-grid,
  .memory-grid,
  .heritage-grid,
  .path-grid,
  .booking-shell,
  .menu-library,
  .rooms-layout,
  .venue-grid,
  .experience-grid,
  .wellbeing-grid,
  .contact-grid,
  .map-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .room-card,
  .venue-card,
  .exp-card,
  .well-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .shortlist-panel {
    position: static;
  }

  .travel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .container {
    width: min(1400px, calc(100% - 2rem));
  }

  .page-main {
    padding-bottom: clamp(5.8rem, 12vw, 7.2rem);
  }

  .site-header {
    padding-top: 0.72rem;
  }

  .header-shell {
    grid-template-columns: auto auto 1fr;
    border-radius: 1rem;
    padding: 0.72rem;
    gap: 0.62rem;
  }

  .header-shell::before {
    border-radius: 0.7rem;
  }

  .site-header.is-scrolled {
    padding-top: 0.35rem;
  }

  .brand-main {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    margin-inline: 0.25rem;
    display: grid;
    gap: 0.4rem;
    border: 1px solid rgba(130, 103, 77, 0.36);
    background: rgba(252, 246, 240, 0.97);
    border-radius: 0.9rem;
    padding: 0.55rem;
    transform: scale(0.98) translateY(-8px);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 6;
  }

  .nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .header-cta {
    justify-self: end;
  }

  .concierge-dock {
    left: 1rem;
    right: 1rem;
    bottom: 0.75rem;
    width: auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.5rem;
  }

  .concierge-chip {
    border-radius: 0.9rem;
    padding: 0.66rem 0.72rem;
  }

  .concierge-chip strong {
    font-size: 0.74rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.05rem, 8.2vw, 4rem);
    line-height: 0.98;
  }

  .hero-media-stack {
    grid-template-rows: 220px 170px;
  }

  .hero-media-stack .one {
    grid-column: 1 / span 8;
    grid-row: 1 / span 2;
  }

  .hero-media-stack .two {
    grid-column: 9 / span 4;
    grid-row: 1 / span 1;
    transform: none;
    animation: none;
  }

  .hero-media-stack .three {
    grid-column: 8 / span 5;
    grid-row: 2 / span 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 720px) {
  .section--bridge {
    padding-bottom: clamp(1.4rem, 6.4vw, 2.1rem);
  }

  .section--tail {
    padding-top: clamp(1.1rem, 5.8vw, 1.9rem);
    padding-bottom: clamp(1rem, 4.2vw, 1.5rem);
  }

  .header-cta {
    padding: 0.68rem 0.82rem;
  }

  .page-main {
    padding-bottom: clamp(6.2rem, 14vw, 7.8rem);
  }

  .hero-actions,
  .room-actions {
    width: 100%;
  }

  .hero-actions a,
  .hero-actions button,
  .room-actions a,
  .room-actions button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .path-item,
  .path-item.alt {
    grid-template-columns: minmax(0, 1fr);
    min-height: unset;
  }

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

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 1rem;
    gap: 0.85rem;
  }

  .footer-grid>div:last-child {
    justify-self: stretch;
    min-width: 0;
  }

  .page-hero-copy h1 {
    font-size: clamp(1.96rem, 10.5vw, 3.06rem);
    line-height: 1.02;
  }

  [data-page="culinary"] .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.72rem, 8.8vw, 2.34rem);
    line-height: 1.04;
  }

  .lightbox {
    padding: 0.55rem;
  }

  .lightbox-top {
    flex-direction: column;
    align-items: stretch;
  }

  .lightbox-close {
    width: 100%;
  }

  .lightbox-media img {
    height: min(62vh, 560px);
  }

  .lightbox-controls {
    flex-direction: column;
  }

  .concierge-dock {
    bottom: 0.62rem;
  }

  .concierge-chip span {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .concierge-chip strong {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
