@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/bodoni-moda-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Bodoni Moda";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/bodoni-moda-latin-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
}

:root {
  --ink: #17130f;
  --espresso: #241d17;
  --espresso-soft: rgba(36, 29, 23, 0.84);
  --cream: #f6efe2;
  --parchment: #e8dcc5;
  --terracotta: #b5622e;
  --terracotta-dark: #8c4526;
  --gold: #c9a15a;
  --sage: #8fbf7a;
  --shell: min(1440px, calc(100vw - 40px));
  --shell-wide: min(1320px, calc(100vw - 40px));
  --shell-narrow: min(980px, calc(100vw - 40px));
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-round: 999px;
  --shadow-card: 0 30px 60px rgba(0, 0, 0, 0.45);
  --shadow-modal: 0 40px 100px rgba(0, 0, 0, 0.6);
  --section-space: clamp(64px, 11vw, 140px);
  --transition-smooth: 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--cream);
  font-family: "Jost", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

figure {
  margin: 0;
}

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

a {
  color: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--terracotta);
  color: var(--cream);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.shell--wide {
  width: var(--shell-wide);
}

.shell--narrow {
  width: var(--shell-narrow);
}

.page {
  overflow: clip;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: clamp(24px, 4vw, 48px);
}

.section-head--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-title,
h1,
h2,
h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.section-copy,
.body-copy {
  color: var(--parchment);
  font-size: 0.975rem;
  line-height: 1.85;
  font-weight: 300;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.95rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  font-weight: 600;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

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

.button.solid {
  background: var(--terracotta);
  color: var(--cream);
}

.button.solid:hover,
.button.solid:focus-visible {
  background: var(--terracotta-dark);
}

.button.ghost {
  border-color: rgba(246, 239, 226, 0.35);
  color: var(--cream);
  background: transparent;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(246, 239, 226, 0.08);
}

.button.whatsapp {
  background: #3da857;
  color: #fff;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 239, 226, 0.3);
  border-radius: 50%;
  text-decoration: none;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.icon-button svg,
.social-link svg,
.mobile-book-bar__call svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(246, 239, 226, 0.08);
  border-color: rgba(246, 239, 226, 0.55);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease,
    transform 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-overlay {
  background: transparent;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(23, 19, 15, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(246, 239, 226, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1.5rem;
  transition: min-height 0.4s ease;
}

.site-header.is-scrolled .nav-shell,
.site-header.is-solid .nav-shell {
  min-height: 70px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-mark span {
  font-family: "Bodoni Moda", serif;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}

.brand-mark--footer img {
  width: 38px;
  height: 38px;
}

.brand-mark--footer span {
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
}

.desktop-nav a {
  position: relative;
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.82;
  transition:
    opacity 0.35s ease,
    color 0.35s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  opacity: 1;
  color: var(--gold);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-book {
  min-height: 48px;
  padding-inline: 1.6rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--cream);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(23, 19, 15, 0.96);
  backdrop-filter: blur(16px);
}

.menu-panel__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  gap: 1.5rem;
  padding: 1.5rem;
}

.menu-panel__inner a {
  text-decoration: none;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.menu-panel__button {
  margin-top: 1rem;
  min-width: 220px;
}

.menu-close {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  font-size: 2rem;
  line-height: 1;
}

.mobile-book-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 1100;
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(23, 19, 15, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(246, 239, 226, 0.15);
}

.mobile-book-bar__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 239, 226, 0.3);
  border-radius: 50%;
}

.mobile-book-bar__call svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
  stroke: none;
}

.mobile-book-bar__button {
  flex: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 1s cubic-bezier(0.16, 0.8, 0.3, 1);
}

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

.stagger-list > * {
  transition-delay: var(--delay, 0s);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #120e0b;
}

.hero-slides,
.hero-slide,
.hero-slide::before,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: kenburns 9s ease-out forwards;
}

.hero-slide::before {
  content: "";
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(8, 6, 4, 0.18) 0%,
      rgba(8, 6, 4, 0.52) 42%,
      rgba(8, 6, 4, 0.76) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 12, 9, 0.82) 0%,
      rgba(15, 12, 9, 0.42) 26%,
      rgba(15, 12, 9, 0.58) 58%,
      rgba(15, 12, 9, 0.94) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 9rem 1.25rem 8rem;
  text-align: center;
}

.hero-content__inner {
  position: relative;
  max-width: 1120px;
  padding: clamp(1.4rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.4rem)
    clamp(1.8rem, 4vw, 2.9rem);
}

.hero-content__inner::before {
  content: "";
  position: absolute;
  inset: -2rem -2.4rem -2.6rem;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(11, 8, 6, 0.8) 0%,
    rgba(11, 8, 6, 0.66) 32%,
    rgba(11, 8, 6, 0.38) 60%,
    rgba(11, 8, 6, 0.08) 100%
  );
  filter: blur(18px);
}

.hero-content__inner > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.98;
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.58),
    0 2px 8px rgba(0, 0, 0, 0.42);
}

.hero-title em {
  display: inline-block;
  color: var(--parchment);
  font-style: italic;
}

.hero-subcopy {
  max-width: 620px;
  margin: 1.6rem auto 0;
  color: var(--parchment);
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  font-weight: 300;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 54px;
  padding: 0.85rem 0.4rem;
  color: var(--cream);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-video-trigger span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 239, 226, 0.55);
  border-radius: 50%;
}

.hero-video-trigger svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.hero-scroll {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--parchment);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 16px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.home-float-wrap {
  position: relative;
  z-index: 4;
  width: min(1100px, calc(100vw - 40px));
  margin: -64px auto 0;
}

.floating-widget {
  background: rgba(36, 29, 23, 0.55);
  border: 1px solid rgba(246, 239, 226, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  padding: 1.55rem 1.9rem;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: end;
}

.field-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floating-widget input,
.floating-widget select,
.panel input,
.panel select {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: var(--radius-xs);
  background: rgba(246, 239, 226, 0.05);
  color: var(--cream);
  outline: none;
}

.floating-widget input::placeholder,
.panel input::placeholder {
  color: rgba(246, 239, 226, 0.55);
}

.floating-widget select option,
.panel select option {
  background: var(--espresso);
}

.guest-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.guest-stepper button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(246, 239, 226, 0.35);
  border-radius: 50%;
}

.guest-stepper span {
  min-width: 16px;
  text-align: center;
  font-size: 1rem;
}

.widget-submit {
  width: 100%;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  color: rgba(246, 239, 226, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.trust-row span.dot {
  color: rgba(246, 239, 226, 0.28);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.stat-card {
  border-left: 1px solid rgba(246, 239, 226, 0.15);
  padding: 1.4rem 0.7rem;
  text-align: center;
}

.stat-card__value {
  color: var(--gold);
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
}

.stat-card__label {
  margin-top: 0.55rem;
  color: rgba(246, 239, 226, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-grid,
.why-grid,
.conservation-wrap,
.journey-map,
.room-section,
.callout-band,
.calendar-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.story-media {
  position: relative;
}

.story-media img,
.story-photo,
.full-height-photo,
.staggered-photo,
.map-card iframe {
  border-radius: var(--radius-xs);
}

.story-media img,
.story-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.story-quote {
  position: absolute;
  bottom: -24px;
  left: -24px;
  max-width: 250px;
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius-xs);
  background: var(--terracotta);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  color: var(--cream);
  font-family: "Bodoni Moda", serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.55;
}

.feature-list {
  display: flex;
  flex-direction: column;
}

.feature-row {
  display: flex;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(246, 239, 226, 0.1);
}

.feature-numeral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 161, 90, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Bodoni Moda", serif;
  font-size: 0.82rem;
}

.feature-row h3,
.activity-preview-card h3,
.room-preview-card h3,
.timeline-step h3,
.review-card h3,
.activity-card h3,
.room-copy h2 {
  margin: 0;
}

.feature-row p,
.activity-preview-card p,
.room-preview-card p,
.timeline-step p,
.review-card p,
.activity-card p,
.footer-brand p,
.footer-column p,
.placeholder-card p {
  margin: 0.35rem 0 0;
  color: var(--parchment);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.9;
}

.full-height-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.full-height-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-preview-grid,
.room-preview-grid,
.activities-grid {
  display: grid;
  gap: 1.6rem;
}

.activity-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.room-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.activities-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.activity-preview-card,
.room-preview-card,
.activity-card,
.room-card,
.panel,
.subnav,
.info-panel,
.quote-panel,
.review-card,
.stepper__item.is-current .stepper__dot,
.timeline-step,
.callout-band,
.calendar-panel {
  border-radius: var(--radius-sm);
}

.activity-preview-card,
.room-preview-card,
.activity-card,
.room-card {
  position: relative;
  overflow: hidden;
}

.activity-preview-card {
  min-height: 380px;
  color: var(--cream);
  text-decoration: none;
}

.activity-preview-card__media,
.activity-card__media,
.room-preview-card__media,
.room-hero,
.photo-cta__media,
.cta-band__media {
  position: relative;
  overflow: hidden;
}

.activity-preview-card__media img,
.activity-card__media img,
.room-preview-card__media img,
.room-hero img,
.gallery-tile img,
.staggered-photo img,
.room-thumb img,
.cta-band__media img,
.photo-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.activity-preview-card:hover .activity-preview-card__media img,
.activity-card:hover .activity-card__media img,
.gallery-tile:hover img {
  transform: scale(1.08);
}

.activity-preview-card__media {
  position: absolute;
  inset: 0;
}

.activity-preview-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 19, 15, 0.05) 32%,
    rgba(23, 19, 15, 0.92) 100%
  );
}

.activity-preview-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1.45rem;
}

.activity-preview-card__meta,
.activity-card__meta,
.room-preview-card__meta {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.activity-preview-card__content h3,
.activity-card__title,
.room-preview-card__content h3,
.timeline-step h3 {
  margin-top: 0.45rem;
  font-size: 1.45rem;
}

.room-preview-card {
  background: var(--espresso);
}

.room-preview-card__media {
  height: 260px;
}

.room-preview-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-xs);
  background: rgba(23, 19, 15, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-preview-card__content {
  padding: 1.45rem;
}

.room-preview-card__occupancy {
  margin-top: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.conservation-wrap {
  align-items: center;
}

.stat-callouts {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-callout strong {
  display: block;
  color: var(--gold);
  font-family: "Bodoni Moda", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

.stat-callout span {
  display: block;
  color: rgba(246, 239, 226, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.staggered-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.staggered-photo {
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.staggered-photo.is-shift-down {
  margin-top: 60px;
}

.staggered-photo.is-shift-up {
  margin-top: -60px;
}

.staggered-photo img {
  height: 280px;
}

.gallery-masonry {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  columns: 4 240px;
  column-gap: 1.1rem;
  column-fill: balance;
}

.gallery-tile {
  display: block;
  width: 100%;
  position: relative;
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.gallery-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-xs);
  background: rgba(23, 19, 15, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 8, 6, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: var(--shadow-modal);
}

.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 2rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 8, 6, 0.92);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__panel,
.accommodation-modal__panel {
  position: relative;
  width: min(960px, 100%);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--espresso);
  box-shadow: var(--shadow-modal);
}

.video-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: 2rem;
  background:
    radial-gradient(circle at top, rgba(201, 161, 90, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(181, 98, 46, 0.22), rgba(23, 19, 15, 0.92));
}

.video-placeholder__copy {
  max-width: 520px;
  text-align: center;
}

.video-placeholder__copy h3 {
  margin: 0.6rem 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.video-placeholder__copy p {
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(23, 19, 15, 0.72);
  font-size: 1.25rem;
}

.journey-map {
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.map-card iframe {
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

.journey-route {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  min-height: 460px;
  padding: 2rem;
  background: var(--espresso);
}

.journey-route__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 1rem;
  align-items: start;
}

.journey-route__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  font-family: "Bodoni Moda", serif;
  font-size: 0.9rem;
}

.journey-route__item strong,
.timeline-step h3,
.review-card h3,
.room-copy h2,
.activity-card__title,
.panel-title {
  font-weight: 500;
}

.journey-route__item p {
  margin: 0.3rem 0 0;
  color: rgba(246, 239, 226, 0.76);
  font-size: 0.88rem;
  line-height: 1.65;
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(246, 239, 226, 0.15);
}

.timeline-step {
  position: relative;
  padding: 0 1rem;
  text-align: center;
}

.timeline-step__num {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 1.2rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: "Bodoni Moda", serif;
}

.review-shell {
  position: relative;
  min-height: 230px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.review-card.is-active {
  opacity: 1;
  pointer-events: auto;
}

.review-stars {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.review-copy {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-style: italic;
  line-height: 1.5;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(246, 239, 226, 0.58);
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  background: rgba(246, 239, 226, 0.3);
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.review-dot.is-active {
  width: 22px;
  background: var(--gold);
}

.faq-list {
  border-top: 1px solid rgba(246, 239, 226, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(246, 239, 226, 0.15);
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.35rem 0.25rem;
  color: var(--cream);
  text-align: left;
  font-size: 1rem;
}

.faq-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 0.25rem 1.35rem;
}

.cta-band,
.photo-cta {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.cta-band {
  margin-top: var(--section-space);
  min-height: 520px;
}

.cta-band__media,
.photo-cta__media {
  position: absolute;
  inset: 0;
}

.cta-band__media::after,
.photo-cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 15, 0.8);
}

.cta-band__content,
.photo-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 2rem 1.25rem;
  text-align: center;
}

.cta-band__content h2,
.photo-cta__content h2 {
  margin: 0 0 1.6rem;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
}

.cta-band__actions,
.photo-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  background: #100d0a;
  padding: 5rem 0 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1.1fr;
  gap: 2.6rem;
}

.footer-brand p,
.footer-column p {
  max-width: 280px;
  color: rgba(246, 239, 226, 0.68);
}

.footer-title {
  display: block;
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-column a,
.footer-contact__meta span {
  color: rgba(232, 220, 197, 0.86);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.7;
  text-decoration: none;
}

.newsletter-form {
  display: flex;
  margin: 1rem 0 1.35rem;
}

.newsletter-form input {
  flex: 1;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-right: 0;
  background: rgba(246, 239, 226, 0.06);
  color: var(--cream);
}

.newsletter-form button {
  min-width: 52px;
  background: var(--terracotta);
  color: var(--cream);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(246, 239, 226, 0.25);
  border-radius: 50%;
  color: var(--cream);
}

.social-link svg {
  width: 15px;
  height: 15px;
}

.social-link svg rect,
.social-link svg circle {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.footer-contact__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 3.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 239, 226, 0.1);
  color: rgba(246, 239, 226, 0.5);
  font-size: 0.76rem;
}

.inner-hero {
  position: relative;
  min-height: 56vh;
  overflow: hidden;
  padding-top: 80px;
}

.inner-hero__media,
.inner-hero__overlay {
  position: absolute;
  inset: 0;
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(23, 19, 15, 0.55),
    rgba(23, 19, 15, 0.9)
  );
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 3rem 1.25rem 2rem;
  text-align: center;
}

.inner-hero__content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.1rem);
}

.inner-hero__content p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: var(--parchment);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.subnav {
  position: sticky;
  top: 70px;
  z-index: 900;
  margin-top: 0;
  background: #1d1712;
  border-bottom: 1px solid rgba(246, 239, 226, 0.1);
}

.subnav__track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.subnav__track a {
  white-space: nowrap;
  color: rgba(232, 220, 197, 0.86);
  font-size: 0.84rem;
  text-decoration: none;
}

.rooms-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 9vw, 120px);
}

.room-section {
  align-items: start;
}

.room-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.room-hero {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-xs);
}

.room-hero__availability,
.room-hero__price,
.activity-card__season {
  position: absolute;
  top: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-xs);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-hero__availability {
  left: 1rem;
  color: var(--ink);
}

.room-hero__availability.is-available {
  background: var(--sage);
}

.room-hero__availability.is-limited {
  background: var(--gold);
}

.room-hero__price {
  right: 1rem;
  background: rgba(23, 19, 15, 0.72);
}

.room-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.room-thumb {
  min-height: 82px;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.room-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.35rem);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0;
}

.fact-box {
  border: 1px solid rgba(246, 239, 226, 0.15);
  border-radius: var(--radius-xs);
  padding: 0.95rem 1rem;
}

.fact-box span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(246, 239, 226, 0.56);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-list,
.chip-list {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.pill-list span,
.chip-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: var(--radius-round);
  color: rgba(246, 239, 226, 0.86);
  font-size: 0.8rem;
}

.room-actions,
.booking-actions,
.contact-actions,
.photo-cta__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.room-actions {
  margin: 1.6rem 0 1.3rem;
}

.room-actions .button,
.booking-actions .button {
  flex: 1;
}

.placeholder-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 2rem;
  border: 1px dashed rgba(246, 239, 226, 0.22);
  background:
    radial-gradient(circle at top, rgba(201, 161, 90, 0.14), transparent 40%),
    linear-gradient(160deg, rgba(181, 98, 46, 0.12), rgba(23, 19, 15, 0.92));
  text-align: center;
}

.placeholder-card > div {
  max-width: 460px;
}

.placeholder-card h3 {
  margin: 0.65rem 0 0.6rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.placeholder-action {
  margin-top: 1rem;
}

.callout-band {
  padding: clamp(32px, 5vw, 50px);
  background: var(--espresso);
}

.callout-band__photo {
  min-height: 260px;
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.callout-band__photo .placeholder-card {
  min-height: 260px;
}

.accommodation-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 8, 6, 0.92);
}

.accommodation-modal[hidden] {
  display: none;
}

.accommodation-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid rgba(246, 239, 226, 0.12);
}

.accommodation-modal__header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.accommodation-modal__header button {
  font-size: 1.35rem;
}

.accommodation-modal__body {
  min-height: 380px;
}

.activity-card {
  background: var(--espresso);
}

.activity-card__media {
  height: 300px;
}

.activity-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 19, 15, 0) 52%,
    rgba(23, 19, 15, 0.85) 100%
  );
}

.activity-card__season {
  left: 1rem;
  background: rgba(23, 19, 15, 0.72);
}

.activity-card__title {
  position: absolute;
  bottom: 1.1rem;
  left: 1.3rem;
  right: 1.3rem;
  z-index: 2;
  font-size: 1.55rem;
}

.activity-card__body {
  padding: 1.45rem;
}

.activity-facts {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.activity-fact span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(246, 239, 226, 0.55);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-fact strong {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
}

.activity-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.activity-card__actions .button {
  flex: 1;
}

.activity-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  border: 1px solid rgba(246, 239, 226, 0.25);
  border-radius: var(--radius-xs);
}

.activity-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.activity-whatsapp svg path {
  fill: none;
}

.calendar-panel {
  padding: clamp(32px, 5vw, 50px);
  background: var(--espresso);
  align-items: start;
}

.calendar-list {
  display: flex;
  flex-direction: column;
}

.calendar-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(246, 239, 226, 0.1);
  font-size: 0.88rem;
}

.calendar-row strong {
  font-weight: 400;
}

.calendar-row span:last-child {
  max-width: 65%;
  color: var(--gold);
  text-align: right;
}

.booking-intro {
  padding-top: 122px;
}

.booking-intro__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.booking-intro__inner h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.7rem);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: rgba(246, 239, 226, 0.62);
}

.stepper__item button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.stepper__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(246, 239, 226, 0.3);
  border-radius: 50%;
  color: var(--cream);
  font-family: "Bodoni Moda", serif;
}

.stepper__item.is-current,
.stepper__item.is-done {
  color: var(--cream);
}

.stepper__item.is-current .stepper__dot,
.stepper__item.is-done .stepper__dot {
  border-color: var(--terracotta);
  background: var(--terracotta);
}

.stepper__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
  padding-bottom: 7.5rem;
}

.panel,
.quote-panel {
  background: var(--espresso);
  padding: clamp(24px, 4vw, 40px);
}

.panel-title {
  margin: 0 0 1.6rem;
  font-size: 1.5rem;
}

.panel-intro {
  margin: -0.55rem 0 1.45rem;
  color: rgba(246, 239, 226, 0.72);
  font-size: 0.86rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

.field label {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.room-select-card {
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}

.room-select-card.is-selected {
  border-color: rgba(181, 98, 46, 0.8);
  transform: translateY(-2px);
}

.room-select-card__media {
  position: relative;
  height: 120px;
}

.room-select-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-select-card__check {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.8rem;
}

.room-select-card__body {
  padding: 0.85rem;
}

.room-select-card__body strong {
  display: block;
  font-size: 0.92rem;
}

.room-select-card__body span {
  color: var(--gold);
  font-size: 0.78rem;
}

.activity-select-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.activity-select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(246, 239, 226, 0.1);
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.activity-select-item.is-selected {
  border-color: rgba(181, 98, 46, 0.8);
  background: rgba(181, 98, 46, 0.08);
}

.activity-select-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.activity-select-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(246, 239, 226, 0.35);
  border-radius: 4px;
  font-size: 0.75rem;
}

.activity-select-item.is-selected .activity-select-check {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.activity-select-price {
  color: var(--gold);
  font-size: 0.86rem;
}

.booking-actions {
  margin-top: 1.6rem;
}

.message-note {
  margin-top: 0.75rem;
  color: var(--sage);
  font-size: 0.8rem;
}

.message-note.is-error {
  color: #ffb37a;
}

.quote-panel {
  position: sticky;
  top: 100px;
  background: rgba(36, 29, 23, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(246, 239, 226, 0.15);
}

.quote-label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-stack,
.quote-totals {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(246, 239, 226, 0.12);
}

.quote-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
}

.quote-row span:first-child {
  color: rgba(246, 239, 226, 0.68);
}

.quote-row--discount {
  color: var(--sage);
}

.quote-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.3rem 0 1.6rem;
}

.quote-total strong {
  font-family: "Bodoni Moda", serif;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 500;
}

.quote-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(246, 239, 226, 0.1);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span:first-child {
  color: rgba(246, 239, 226, 0.7);
}

.summary-row span:last-child {
  max-width: 60%;
  text-align: right;
}

.panel-copy {
  color: rgba(246, 239, 226, 0.78);
  font-size: 0.88rem;
  line-height: 1.7;
}

@keyframes kenburns {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.16) translate(-1.5%, -1%);
  }
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@media (max-width: 1240px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 1100px) {
  .why-grid,
  .conservation-wrap,
  .journey-map,
  .booking-layout,
  .room-section {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: relative;
    top: 0;
  }

  #quote-panel {
    order: -1;
  }

  .timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem 0;
  }

  .gallery-masonry {
    columns: 3 220px;
  }

  .timeline-grid::before {
    display: none;
  }

  .staggered-photo.is-shift-up,
  .staggered-photo.is-shift-down {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-book,
  .nav-cta .icon-button {
    display: none;
  }

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

  .site-header.is-scrolled .nav-shell,
  .site-header.is-solid .nav-shell,
  .nav-shell {
    min-height: 74px;
  }

  .subnav {
    top: 74px;
  }

  .widget-grid,
  .story-grid,
  .callout-band,
  .calendar-panel,
  .footer-grid,
  .form-grid,
  .room-select-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .mobile-book-bar {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .home-float-wrap {
    margin-top: -40px;
  }
}

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .story-photo,
  .full-height-photo,
  .room-hero {
    min-height: 360px;
    height: 360px;
  }

  .story-quote {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .stats-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-left: 0;
    border-top: 1px solid rgba(246, 239, 226, 0.15);
  }

  .gallery-masonry {
    columns: 2 160px;
  }

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

  .activity-card__actions,
  .cta-band__actions,
  .photo-cta__actions,
  .hero-actions,
  .room-actions,
  .booking-actions {
    flex-direction: column;
  }

  .activity-card__actions .button,
  .room-actions .button,
  .booking-actions .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.95rem;
  }

  .section {
    margin-top: clamp(48px, 10vw, 72px);
  }

  .shell,
  .shell--wide,
  .shell--narrow {
    width: min(100vw - 24px, 100%);
  }

  .nav-shell {
    gap: 0.85rem;
  }

  .brand-mark {
    gap: 0.6rem;
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .brand-mark span {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

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

  .menu-toggle svg {
    width: 21px;
    height: 21px;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .hero-content {
    padding-top: 7.3rem;
    padding-right: 0.75rem;
    padding-bottom: 6.2rem;
    padding-left: 0.75rem;
  }

  .hero-content__inner {
    max-width: 560px;
    padding: 0.75rem 0.25rem 1.1rem;
  }

  .hero-content__inner::before {
    inset: -1.1rem -0.9rem -1.5rem;
    background: radial-gradient(
      circle at 50% 42%,
      rgba(11, 8, 6, 0.86) 0%,
      rgba(11, 8, 6, 0.74) 32%,
      rgba(11, 8, 6, 0.46) 62%,
      rgba(11, 8, 6, 0.12) 100%
    );
    filter: blur(16px);
  }

  .hero-title {
    font-size: clamp(2.45rem, 10.8vw, 3.95rem);
  }

  .hero-subcopy,
  .body-copy,
  .section-copy {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-subcopy {
    max-width: 28rem;
    margin-top: 1rem;
  }

  .button {
    min-height: 48px;
    padding: 0.82rem 1.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .icon-button,
  .social-link {
    width: 34px;
    height: 34px;
  }

  .icon-button svg,
  .social-link svg {
    width: 14px;
    height: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
    max-width: 390px;
    margin-top: 1.7rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 0.82rem 0.72rem;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .hero-actions .hero-video-trigger {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.55rem 0.25rem;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .hero-video-trigger span:first-child {
    width: 32px;
    height: 32px;
  }

  .hero-video-trigger svg {
    width: 11px;
    height: 11px;
  }

  .home-float-wrap {
    width: min(100vw - 24px, 100%);
    margin-top: -24px;
  }

  .widget-grid {
    gap: 1rem;
  }

  .floating-widget,
  .panel,
  .quote-panel,
  .callout-band,
  .calendar-panel {
    padding: 1.1rem;
  }

  .field-label {
    margin-bottom: 0.45rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .floating-widget input,
  .floating-widget select,
  .panel input,
  .panel select {
    min-height: 48px;
    padding: 0.72rem 0.8rem;
    font-size: 0.92rem;
  }

  .guest-stepper {
    gap: 0.65rem;
  }

  .guest-stepper button {
    width: 26px;
    height: 26px;
  }

  .guest-stepper span {
    font-size: 0.94rem;
  }

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

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

  .gallery-masonry {
    columns: 1;
  }

  .journey-route,
  .map-card iframe {
    min-height: 380px;
    height: 380px;
  }

  .stepper {
    gap: 0.25rem;
  }

  .stepper__dot {
    width: 30px;
    height: 30px;
  }

  .stepper__label {
    font-size: 0.54rem;
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    bottom: 14px;
  }

  .shell,
  .shell--wide,
  .shell--narrow {
    width: min(100vw - 20px, 100%);
  }

  .brand-mark span {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10.6vw, 3.35rem);
  }

  .hero-subcopy {
    font-size: 0.88rem;
  }

  .hero-actions {
    max-width: 100%;
    gap: 0.5rem;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0.78rem 0.62rem;
    font-size: 0.6rem;
  }

  .hero-actions .hero-video-trigger {
    min-height: 38px;
    font-size: 0.6rem;
  }

  .section-head--split {
    align-items: flex-start;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link svg {
    width: 13px;
    height: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
