:root {
  --cream: #f8eee0;
  --cream-strong: #f2e0cb;
  --sand: #dfb48d;
  --terracotta: #cf6f38;
  --olive: #516d40;
  --olive-soft: #729261;
  --ink: #2c2118;
  --muted: #715e4f;
  --line: rgba(72, 46, 26, 0.12);
  --danger: #b35240;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(71, 43, 23, 0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { scroll-behavior: smooth; }
body {
  color: var(--ink);
  font: 16px/1.55 "Avenir Next", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(207, 111, 56, 0.14), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(81, 109, 64, 0.16), transparent 18%),
    linear-gradient(180deg, #f8efe3 0%, #f4e5d1 42%, #f1e2ce 100%);
  padding-bottom: 118px;
}
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
main { overflow: hidden; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  padding: 0;
  margin-bottom: 0;
  pointer-events: none;
}
.site-header-inner {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(248, 238, 224, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(72, 46, 26, 0.10);
  box-shadow: 0 18px 36px rgba(71, 43, 23, 0.10);
  pointer-events: auto;
}
.site-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(72, 46, 26, 0.08);
  background: rgba(255,255,255,0.42);
  color: var(--muted);
  position: relative;
  gap: 4px;
  flex-direction: column;
}
.site-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.site-brand {
  color: var(--ink);
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(72, 46, 26, 0.08);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.68);
  color: var(--ink);
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.language-switch-btn {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(113, 94, 79, 0.58);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.language-switch-btn.is-active,
.language-switch-btn:hover {
  color: var(--ink);
}
.band {
  position: relative;
  padding: 0;
}
.band-light {
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.82), rgba(244, 230, 208, 0.88));
}
.band-warm {
  background:
    linear-gradient(180deg, rgba(241, 222, 196, 0.92), rgba(232, 204, 170, 0.9)),
    linear-gradient(90deg, rgba(207, 111, 56, 0.08), rgba(255, 255, 255, 0));
}
.band-olive {
  background:
    linear-gradient(180deg, rgba(73, 103, 61, 0.94), rgba(55, 79, 46, 0.98)),
    linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  color: #f8f1e7;
}
.band-dark {
  background:
    linear-gradient(180deg, #2d241c 0%, #3a2c22 100%);
  color: #fbf3e7;
}

.content-width {
  width: min(1320px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  padding-top: 110px;
  background:
    linear-gradient(180deg, rgba(23, 16, 10, 0.06), rgba(23, 16, 10, 0.44)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.hero-section {
  position: relative;
  min-height: calc(84vh - 110px);
  display: flex;
  align-items: end;
  padding: 0 0 34px;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 18, 12, 0.48) 0%, rgba(24, 18, 12, 0.12) 56%, rgba(24, 18, 12, 0.38) 100%),
    linear-gradient(180deg, rgba(207, 111, 56, 0.18), rgba(81, 109, 64, 0.18));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fffaf2;
  display: grid;
  gap: 18px;
}
.hero-content h1,
.section-heading h2,
.intro-copy h2,
.story-layout h2,
.room-top h3 {
  margin: 0;
  font-family: Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.hero-content h1 { font-size: clamp(3.4rem, 8vw, 7.2rem); max-width: 840px; }
.hero-copy { max-width: 760px; font-size: 1.18rem; color: rgba(255, 245, 231, 0.88); }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
}
.eyebrow { background: rgba(248, 238, 224, 0.18); color: #fff1df; border: 1px solid rgba(255,255,255,0.14); }
.eyebrow.warm { background: rgba(207, 111, 56, 0.14); color: #a95125; border: 1px solid rgba(207, 111, 56, 0.18); }
.eyebrow.olive { background: rgba(81, 109, 64, 0.12); color: var(--olive); border: 1px solid rgba(81, 109, 64, 0.12); }

.booking-bar {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(247, 238, 225, 0.9);
  color: var(--muted);
  box-shadow: var(--shadow);
}
.booking-bar-compact {
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) auto;
  align-items: end;
}
.booking-bar-period {
  border: 0;
  text-align: left;
  display: grid;
  gap: 8px;
  padding: 0;
  background: transparent;
}
.booking-bar-period span {
  font-size: 0.92rem;
  color: var(--muted);
}
.booking-bar-period strong {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 1px solid rgba(72, 46, 26, 0.10);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.booking-bar-period.is-active strong {
  border-color: rgba(207, 111, 56, 0.28);
  box-shadow: 0 0 0 3px rgba(207, 111, 56, 0.08);
}
.booking-bar label,
.booking-form label {
  display: grid;
  gap: 8px;
}
.booking-bar input,
.booking-form input,
.booking-form textarea {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(72, 46, 26, 0.12);
  padding: 0 16px;
  background: rgba(255,255,255,0.74);
  color: var(--ink);
}
.booking-form textarea { min-height: 120px; padding: 14px 16px; resize: vertical; }
.primary-btn,
.chip-btn {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  transition: transform 160ms ease, opacity 160ms ease;
}
.primary-btn {
  background: linear-gradient(135deg, var(--terracotta), #c25a2d);
  color: #fff7f1;
  font-weight: 700;
}
.chip-btn {
  background: rgba(81, 109, 64, 0.12);
  color: var(--olive);
  border: 1px solid rgba(81, 109, 64, 0.16);
}
.primary-btn:hover,
.chip-btn:hover,
.close-btn:hover { transform: translateY(-1px); }
.full-width { width: 100%; }
.hero-calendar-shell {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(247, 238, 225, 0.88);
  color: var(--ink);
  box-shadow: var(--shadow);
  width: min(920px, 100%);
  margin-top: 10px;
}
.hero-calendar-shell.is-hidden {
  display: none;
}
.hero-calendar-toolbar {
  margin-top: 2px;
}
.hero-calendar-status {
  color: var(--olive);
  min-height: 24px;
}
.hero-calendar-status.is-error {
  color: var(--danger);
}
.hero-calendar-grid {
  margin-top: 0;
}

.rooms-section,
.story-section .content-width {
  padding: 64px 0;
}
.feature-section {
  padding: 0;
}
.lead-copy { color: var(--muted); font-size: 1.08rem; max-width: 760px; }
.meta-row,
.amenities-cloud,
.room-meta,
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.meta-chip,
.amenity-pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}
.meta-chip {
  background: rgba(81, 109, 64, 0.09);
  color: var(--olive);
}
.amenity-pill {
  background: rgba(207, 111, 56, 0.12);
  color: #8f4827;
}
.amenity-pill.strong { background: rgba(81, 109, 64, 0.14); color: var(--olive); }

.section-heading.wide {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}
.section-heading h2,
.story-layout h2 { font-size: clamp(2.2rem, 4vw, 4.8rem); }
.feature-stage-shell {
  display: grid;
  gap: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  width: 100%;
}
.feature-stage {
  height: 640px;
  width: 100%;
}
.feature-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.72), rgba(255, 247, 237, 0.86));
  overflow: hidden;
  border: 0;
  box-shadow: none;
  position: relative;
  animation: slideReveal 520ms ease both;
}
.room-card,
.modal-card {
  box-shadow: var(--shadow);
}
.feature-slide-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: imageReveal 900ms ease both;
}
.feature-slide-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 54px 60px 94px 52px;
  background: linear-gradient(180deg, rgba(250, 242, 232, 0.98), rgba(255, 249, 241, 0.99));
  position: relative;
  height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(72, 46, 26, 0.08);
}
.feature-slide-copy h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  animation: copyReveal 700ms ease both;
  animation-delay: 120ms;
}
.feature-slide-copy .lead-copy {
  margin: 0;
  max-width: 560px;
  animation: copyReveal 700ms ease both;
  animation-delay: 220ms;
}
.story-indicators {
  position: absolute;
  right: 52px;
  bottom: 28px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
}
.story-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(143, 72, 39, 0.22);
  transition: transform 160ms ease, background 160ms ease, width 160ms ease;
}
.story-dot.is-active {
  width: 42px;
  background: linear-gradient(135deg, var(--terracotta), #b65c2f);
}
.feature-points {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.feature-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(143, 72, 39, 0.16);
  animation: copyReveal 700ms ease both;
}
.feature-point-index {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(207, 111, 56, 0.12);
  color: #8f4827;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rooms-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(560px, 720px);
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 6px 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.room-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(250, 242, 230, 0.14), rgba(255, 248, 240, 0.18));
  border: 1px solid rgba(255, 244, 231, 0.18);
  scroll-snap-align: start;
}
.rooms-grid::-webkit-scrollbar {
  height: 10px;
}
.rooms-grid::-webkit-scrollbar-track {
  background: rgba(255, 244, 231, 0.10);
  border-radius: 999px;
}
.rooms-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 228, 201, 0.34);
  border-radius: 999px;
}
.room-visual {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}
.room-body {
  padding: 28px;
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100%;
}
.room-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}
.room-top h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
.room-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.room-copy,
.status-copy,
.muted,
.small-copy { color: var(--muted); }
.band-olive .section-heading h2,
.band-olive .room-top h3,
.band-olive .status-copy,
.band-olive .muted,
.band-olive .small-copy,
.band-olive .room-copy,
.band-dark .section-heading h2,
.band-dark .lead-copy,
.band-dark .story-layout h2 {
  color: inherit;
}
.band-olive .room-copy,
.band-olive .status-copy,
.band-olive .muted,
.band-olive .small-copy,
.band-dark .lead-copy {
  color: rgba(248, 241, 231, 0.76);
}
.band-olive .section-heading .eyebrow.warm {
  background: rgba(207, 111, 56, 0.22);
  color: #ffd8b3;
  border-color: rgba(255, 220, 186, 0.24);
}
.band-olive .section-heading .status-copy {
  color: rgba(255, 241, 223, 0.84);
}
.band-olive .section-heading .status-copy.is-success {
  color: #ffe8c9;
}
.band-olive .section-heading .status-copy.is-error {
  color: #ffd0c5;
}
.band-olive .room-card {
  background: linear-gradient(180deg, rgba(176, 149, 119, 0.62), rgba(147, 122, 96, 0.68));
  border-color: rgba(255, 236, 214, 0.22);
}
.band-olive .room-top h3 {
  color: #fff7ef;
}
.band-olive .room-copy {
  color: rgba(255, 243, 230, 0.88);
}
.band-olive .room-price {
  background: rgba(255, 223, 190, 0.22);
  color: #fff3e2;
  border: 1px solid rgba(255, 229, 205, 0.24);
}
.band-olive .meta-chip {
  background: rgba(255, 248, 240, 0.16);
  color: #fff1dd;
}
.band-olive .amenity-pill {
  background: rgba(207, 111, 56, 0.22);
  color: #fff1dd;
}
.band-olive .room-actions .primary-btn {
  background: linear-gradient(135deg, #f2d0a9, #dca16e);
  color: #3c291d;
  box-shadow: 0 18px 30px rgba(28, 20, 12, 0.16);
}
.band-olive .room-actions .primary-btn:hover {
  background: linear-gradient(135deg, #f7dbc0, #e2ae7d);
}
.band-olive .room-actions .chip-btn {
  background: rgba(255, 236, 214, 0.18);
  color: #fff6ec;
  border: 1px solid rgba(255, 228, 201, 0.26);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.band-olive .room-actions .chip-btn:hover {
  background: rgba(255, 236, 214, 0.24);
}
.small-copy { margin: 4px 0 0; font-size: 0.9rem; }
.room-price {
  white-space: nowrap;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 214, 172, 0.16);
  color: #ffe1bf;
  font-weight: 700;
}
.calendar-shell {
  margin-top: 8px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 246, 234, 0.14), rgba(255, 246, 234, 0.09));
  border: 1px solid rgba(255, 244, 231, 0.10);
}
.inline-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.compact-head h2,
.compact-head strong { margin: 0; }
.calendar-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
.calendar-day strong { font-size: 1.05rem; }
.calendar-price {
  font-size: 0.78rem;
  color: inherit;
  opacity: 0.82;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.story-section {
  padding: 0;
}
.story-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  align-items: stretch;
  min-height: 620px;
  width: 100%;
}
.story-intro {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 58px 48px 58px 84px;
}
.story-visual {
  min-height: 100%;
  height: 100%;
  width: 100%;
  border-radius: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: none;
  transition: background-image 360ms ease, transform 360ms ease;
  display: flex;
  align-items: end;
  overflow: hidden;
  align-self: stretch;
  justify-self: stretch;
}
.story-layout h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
}
.story-visual-copy {
  width: 100%;
  padding: 34px 36px 38px;
  background: linear-gradient(180deg, rgba(22, 15, 10, 0.02), rgba(22, 15, 10, 0.78));
}
.story-visual-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 232, 208, 0.82);
  font-weight: 700;
}
.story-visual-text {
  margin: 0;
  max-width: 34ch;
  color: #fff4e7;
  font-size: 1.1rem;
  line-height: 1.6;
}
.story-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.story-offer {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 244, 231, 0.10);
  color: #f7e9d6;
  border: 1px solid rgba(255, 244, 231, 0.12);
  font-size: 0.92rem;
}
.subtle-copy {
  color: rgba(251, 243, 231, 0.66);
}

.reviews-section {
  padding: 68px 0 84px;
}
.reviews-layout {
  display: grid;
  gap: 28px;
}
.reviews-intro {
  display: grid;
  gap: 16px;
  max-width: 940px;
}
.reviews-intro h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 4.3vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.reviews-score {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.52);
  border: 1px solid rgba(143, 72, 39, 0.12);
  color: var(--muted);
}
.reviews-score strong {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
}
.reviews-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 22px 22px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.reviews-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  will-change: transform;
  animation: reviewsMarquee 30s linear infinite;
}
.reviews-group {
  display: flex;
  align-items: stretch;
  gap: 22px;
  flex: 0 0 auto;
  padding-right: 22px;
}
.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}
.review-card {
  display: grid;
  gap: 24px;
  flex: 0 0 min(360px, 78vw);
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.72), rgba(249, 235, 215, 0.84));
  border: 1px solid rgba(143, 72, 39, 0.12);
  box-shadow: 0 22px 44px rgba(71, 43, 23, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}
.review-card:hover {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 30px 58px rgba(71, 43, 23, 0.16);
  border-color: rgba(207, 111, 56, 0.24);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.86), rgba(248, 231, 208, 0.92));
}
.review-quote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5d4a3d;
}
.review-meta {
  display: grid;
  gap: 6px;
  margin-top: auto;
}
.review-meta strong {
  color: var(--ink);
}
.review-meta span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-section {
  padding: 72px 0 88px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 245, 232, 0.62), rgba(247, 230, 206, 0.58));
}
.contact-form-block {
  padding: 42px 0 42px 72px;
}
.contact-info-block {
  padding: 42px 56px 42px 22px;
}
.contact-form-block,
.contact-info-block {
  display: grid;
  gap: 20px;
}
.contact-form-block h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 0;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form input,
.contact-form textarea {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(72, 46, 26, 0.12);
  padding: 0 16px;
  background: rgba(255,255,255,0.78);
  color: var(--ink);
}
.contact-form textarea {
  min-height: 146px;
  padding: 14px 16px;
  resize: vertical;
}
.contact-form .primary-btn {
  width: fit-content;
}
.contact-info-block {
  border-left: 1px solid rgba(143, 72, 39, 0.10);
}
.contact-map-shell {
  overflow: hidden;
  border-radius: 0;
  min-height: 420px;
}
.contact-map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.contact-area-copy {
  display: grid;
  gap: 10px;
  max-width: 58ch;
}
.contact-area-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  justify-items: start;
  margin-top: 2px;
}
.contact-detail {
  display: grid;
  gap: 0;
  padding: 2px 0;
}
.contact-detail strong,
.contact-detail a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.floating-whatsapp {
  position: fixed;
  right: max(54px, env(safe-area-inset-right) + 54px);
  bottom: 154px;
  z-index: 30;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  animation: whatsappPulse 2s infinite;
  transform-origin: center;
  will-change: transform;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
}
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(34, 24, 17, 0.94);
  color: #f8eee0;
  box-shadow: 0 20px 50px rgba(20, 14, 10, 0.30);
  border: 1px solid rgba(255, 234, 210, 0.12);
  backdrop-filter: blur(14px);
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-banner-copy {
  display: grid;
  gap: 6px;
}
.cookie-banner-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cookie-banner-copy p {
  margin: 0;
  max-width: 760px;
  color: rgba(248, 238, 224, 0.84);
}
.cookie-banner-copy a {
  color: #f7c58f;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .chip-btn {
  min-height: 48px;
  background: rgba(255,255,255,0.08);
  color: #f8eee0;
  border-color: rgba(255,255,255,0.12);
}
.cookie-banner .primary-btn {
  min-height: 48px;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.30);
  }
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  background: #0f0d0b;
  color: rgba(255, 245, 231, 0.82);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer-inner {
  width: min(1380px, calc(100vw - 32px));
  margin: 0 auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 20px;
}
.site-footer-brand {
  display: grid;
  gap: 4px;
}
.site-footer-brand strong {
  color: #fff8ef;
  font-size: 1rem;
}
.site-footer-brand span {
  color: rgba(255, 245, 231, 0.62);
  font-size: 0.92rem;
}
.site-footer-links,
.site-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-footer-links a,
.site-footer-socials a {
  color: rgba(255, 245, 231, 0.82);
  text-decoration: none;
}
.site-footer-links a:hover,
.site-footer-socials a:hover {
  color: #fff8ef;
}
.site-footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.site-footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.modal {
  border: 0;
  padding: 18px;
  width: min(100%, 760px);
  background: transparent;
}
.modal::backdrop { background: rgba(39, 26, 18, 0.38); }
.modal-card {
  background: linear-gradient(180deg, rgba(252, 245, 235, 0.98), rgba(255, 249, 241, 0.98));
  border-radius: 28px;
  padding: 26px;
}
.room-gallery-modal {
  width: min(100%, 960px);
}
.room-gallery-stage {
  margin: 12px 0 16px;
}
.room-gallery-hero {
  min-height: 460px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
}
.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.room-gallery-thumb {
  min-height: 110px;
  border-radius: 18px;
  border: 2px solid transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.room-gallery-thumb.is-active {
  border-color: rgba(207, 111, 56, 0.48);
  box-shadow: 0 0 0 4px rgba(207, 111, 56, 0.10);
}
.close-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(72, 46, 26, 0.10);
  background: rgba(255,255,255,0.72);
  font-size: 1.4rem;
}
.booking-summary {
  margin: 10px 0 20px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(207, 111, 56, 0.08);
  border: 1px solid rgba(207, 111, 56, 0.10);
}
.booking-flow.is-hidden {
  display: none;
}
.booking-room-result {
  margin: 12px 0 18px;
}
.booking-room-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 248, 240, 0.84);
  border: 1px solid rgba(72, 46, 26, 0.08);
}
.booking-room-visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.booking-room-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
}
.booking-room-copy h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.booking-room-copy p {
  margin: 0;
  color: var(--muted);
}
.booking-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(207, 111, 56, 0.10);
  border: 1px solid rgba(207, 111, 56, 0.12);
}
.booking-total-label {
  color: var(--muted);
  font-weight: 600;
}
.booking-total-box strong {
  color: var(--ink);
  font-size: 1.08rem;
}
.booking-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  color: var(--muted);
  font-size: 0.96rem;
}
.booking-form .consent-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 1px solid rgba(72, 46, 26, 0.26);
  border-radius: 4px;
  background: #fffdf8;
  margin: 3px 0 0;
  accent-color: var(--terracotta);
}
.booking-form .consent-check label {
  display: block;
  margin: 0;
  color: var(--muted);
}
.booking-selection {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.booking-selection-head {
  display: grid;
  gap: 6px;
}
.booking-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.month-nav-btn {
  min-height: 44px;
  min-width: 44px;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1;
}
.booking-month-label {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: var(--ink);
}
.booking-calendar-grid {
  margin-top: 0;
}
.calendar-weekday {
  padding: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(72, 46, 26, 0.6);
  text-align: center;
}
.calendar-day {
  min-height: 88px;
  border: 0;
  border-radius: 18px;
  padding: 10px 8px;
  background: rgba(207, 111, 56, 0.08);
  color: var(--ink);
  display: grid;
  align-content: space-between;
  gap: 8px;
  text-align: left;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.calendar-day:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(207, 111, 56, 0.14);
}
.calendar-day.is-selected {
  background: linear-gradient(135deg, var(--terracotta), #c25a2d);
  color: #fff7f1;
}
.calendar-day.is-range {
  background: rgba(81, 109, 64, 0.16);
  color: var(--olive);
}
.calendar-day.is-unavailable {
  background: rgba(123, 120, 116, 0.12);
  color: rgba(72, 46, 26, 0.42);
  border: 1px solid rgba(123, 120, 116, 0.12);
}
.calendar-day.is-unavailable strong {
  color: rgba(72, 46, 26, 0.54);
}
.calendar-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(123, 120, 116, 0.12);
  color: rgba(72, 46, 26, 0.58);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.calendar-day-empty {
  background: transparent;
  min-height: 88px;
  pointer-events: none;
}
.status-copy.is-error { color: var(--danger); }
.status-copy.is-success { color: var(--olive); }

@media (max-width: 1080px) {
  .feature-slide,
  .story-layout,
  .booking-bar,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .rooms-grid {
    grid-auto-columns: minmax(440px, 88vw);
  }
  .room-card {
    grid-template-columns: 1fr;
  }
  .room-visual { min-height: 320px; }
  .story-intro {
    padding: 32px 22px 24px;
  }
  .story-visual {
    min-height: 420px;
  }
  .reviews-track {
    animation-duration: 24s;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-form-block,
  .contact-info-block {
    padding-left: 22px;
    padding-right: 22px;
  }
  .contact-info-block {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .content-width { width: min(100vw - 22px, 100%); }
  .hero-shell {
    padding-top: 96px;
  }
  .site-header {
    padding: 0;
  }
  .site-header-inner {
    width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 26px;
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }
  .site-brand {
    font-size: 1.26rem;
  }
  .site-header-actions {
    display: contents;
  }
  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    grid-row: 1;
  }
  .site-nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }
  .site-header-inner.is-open .site-nav {
    display: flex;
  }
  .site-nav a {
    width: 100%;
    justify-content: center;
    padding-inline: 12px;
    min-width: 0;
  }
  .language-switch {
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    white-space: nowrap;
  }
  .hero-section { min-height: calc(72vh - 96px); padding-bottom: 20px; }
  .hero-content h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .booking-bar-compact {
    grid-template-columns: 1fr;
  }
  .hero-calendar-shell {
    width: 100%;
  }
  .calendar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-room-card { grid-template-columns: 1fr; }
  .booking-room-visual { min-height: 180px; }
  .hero-calendar-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
  .room-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .room-actions .primary-btn,
  .room-actions .chip-btn {
    width: 100%;
  }
  .room-gallery-hero {
    min-height: 260px;
  }
  .room-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-total-box {
    flex-direction: column;
    align-items: start;
  }
  .booking-calendar-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
  .rooms-grid {
    grid-auto-columns: minmax(82vw, 82vw);
    gap: 16px;
    padding-inline: 2px;
  }
  .calendar-day,
  .calendar-day-empty { min-height: 74px; padding: 8px 6px; border-radius: 14px; }
  .calendar-price {
    font-size: 0.56rem;
    letter-spacing: -0.04em;
  }
  .inline-head,
  .room-top { flex-direction: column; }
  .feature-section,
  .rooms-section,
  .story-section .content-width { padding-top: 42px; padding-bottom: 42px; }
  .feature-section { padding-top: 0; }
  .reviews-section {
    padding: 44px 0 56px;
  }
  .contact-section {
    padding: 44px 0 56px;
  }
  body {
    padding-bottom: 0;
  }
  .site-footer {
    position: static;
  }
  .site-footer-inner {
    width: calc(100vw - 24px);
    min-height: 126px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }
  .site-footer-links,
  .site-footer-socials {
    flex-wrap: wrap;
  }
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: max(40px, env(safe-area-inset-right) + 40px);
    bottom: 24px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
  }
  .cookie-banner-actions .chip-btn,
  .cookie-banner-actions .primary-btn {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }
  .feature-slide-copy {
    padding: 28px 22px 74px;
  }
  .feature-slide-image,
  .feature-stage {
    height: auto;
    min-height: 280px;
  }
  .feature-slide-image {
    min-height: 280px;
  }
  .feature-stage-shell {
    border-radius: 0;
  }
  .story-indicators {
    right: 22px;
    bottom: 22px;
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes copyReveal {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reviewsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
