:root {
  --bg: #f5f1e8;
  --bg-soft: #efe7da;
  --bg-alt: #ded3c2;
  --text: #4c4037;
  --strong: #22201e;
  --muted: #8e7d68;
  --line: rgba(76, 64, 55, 0.12);
  --accent: #b59663;
  --moss: #6f7b69;
  --shell: 1280px;
  --font-site: "Canela", "Cormorant Garamond", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(181, 150, 99, 0.12), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(111, 123, 105, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 46%, #f1e9dd 100%);
  color: var(--text);
  font-family: var(--font-site);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(76, 64, 55, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
}

.brand {
  display: grid;
  gap: 2px;
  flex: 0 0 auto;
  padding: 10px 18px 10px 4px;
}

.brand-title,
.footer-title {
  font-family: var(--font-site);
  color: var(--strong);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.brand-title {
  font-size: clamp(2rem, 2vw, 2.7rem);
}

.brand-meta,
.eyebrow,
.photo-meta,
.mini-index {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-meta,
.photo-meta {
  color: var(--muted);
}

.eyebrow,
.mini-index {
  color: var(--moss);
}

.eyebrow-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
}

.eyebrow-icon svg {
  width: 100%;
  height: 100%;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 10px 12px;
}

.nav-panel,
.site-nav,
.header-actions,
.button-row {
  display: flex;
  align-items: center;
}

.nav-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  flex: 1 1 auto;
  gap: 24px;
  min-width: 0;
}

.site-nav {
  grid-column: 2;
  gap: 18px;
  font-size: 0.93rem;
  justify-content: center;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  grid-column: 3;
  gap: 12px;
  justify-self: end;
  justify-content: flex-end;
  padding-right: 2px;
}

.lang-menu {
  position: relative;
}

.lang-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--strong);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.lang-menu__trigger:hover,
.lang-menu__trigger[aria-expanded="true"] {
  border-color: rgba(76, 64, 55, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.lang-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: rgba(251, 248, 242, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(34, 32, 30, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lang-menu.is-open .lang-menu__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.lang-menu__option:hover,
.lang-menu__option.is-active {
  background: rgba(34, 32, 30, 0.08);
  color: var(--strong);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  font-size: 1.1rem;
  line-height: 1;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button-row {
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  min-width: clamp(220px, 18vw, 272px);
  border: 1px solid var(--strong);
  background: var(--strong);
  color: #fff;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.text-link {
  color: var(--strong);
  border-bottom: 1px solid rgba(181, 150, 99, 0.5);
}

.text-link::after {
  content: "→";
  color: var(--accent);
}

.hero {
  padding: 24px 0 18px;
}

.hero-grid,
.editorial-grid,
.story-grid,
.asym-grid,
.facts-layout,
.location-grid,
.book-grid,
.split-copy {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 24px;
}

.hero-copy {
  padding: 18px 0 20px;
}

.hero-copy h1,
.section-intro h2,
.copy-block h2,
.split-copy h2,
.map-panel h2,
.form-panel h2,
.faq-item h3,
.room-card h3,
.mini-panel h3,
.destination-card h3 {
  font-family: var(--font-site);
  color: var(--strong);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.8rem, 6.2vw, 4.9rem);
  line-height: 0.94;
  max-width: 10.4ch;
}

.lead {
  margin: 0 0 22px;
  max-width: 34ch;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.35;
}

.hero-media img,
.image-large img,
.wide-image img,
.story-visual img {
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 1.28 / 1;
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 12px;
  padding-top: 18px;
  padding-bottom: 10px;
  border-top: 1px solid var(--line);
}

.fact {
  display: grid;
  gap: 6px;
}

.fact span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact strong {
  color: var(--strong);
  font-weight: 500;
}

body.page-home .hero {
  padding: 10px 0 6px;
}

body.page-home .hero-grid {
  gap: 16px;
}

body.page-home .hero-copy {
  padding: 4px 0 4px;
}

body.page-home .hero-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.4rem, 4.9vw, 4rem);
  max-width: 11.2ch;
}

body.page-home .lead {
  margin-bottom: 14px;
  max-width: 40ch;
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
}

body.page-home .hero-media img {
  aspect-ratio: 1.62 / 1;
}

body.page-home .fact-bar {
  gap: 12px;
  margin-top: 16px;
  padding-top: 10px;
  padding-bottom: 14px;
}

body.page-home .fact {
  gap: 3px;
}

body.page-home .fact span {
  font-size: 0.66rem;
}

body.page-home .fact strong {
  font-size: 0.9rem;
}

body.page-home .section:first-of-type {
  padding-top: 18px;
}

body.page-home .section:first-of-type .section-intro {
  margin-bottom: 14px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(222, 211, 194, 0.32), rgba(222, 211, 194, 0.14));
}

.section-intro {
  max-width: 660px;
  margin-bottom: 28px;
}

.section-intro h2 {
  margin: 12px 0 14px;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 0.98;
}

.section-intro p,
.copy-stack p,
.copy-block p,
.story-column p,
.book-copy p,
.faq-item p {
  margin: 0 0 16px;
}

.editorial-grid,
.story-grid,
.location-grid,
.book-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-home .editorial-grid {
  align-items: stretch;
}

body.page-home .editorial-grid > .reveal:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  min-height: 100%;
}

.copy-stack {
  max-width: 620px;
}

body.page-home .editorial-grid .copy-stack {
  display: block;
  flex: 0 0 auto;
}

.image-composition {
  display: grid;
  gap: 16px;
}

body.page-home .image-composition {
  max-width: 88%;
  margin-left: auto;
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.page-home .image-large img {
  aspect-ratio: 1.22 / 1;
}

body.page-home .image-pair img {
  aspect-ratio: 1.08 / 1;
}

.image-pair img,
.stacked-photos img,
.room-card img,
.destination-card img,
.photo-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.three-up,
.detail-strip,
.destination-row,
.featured-gallery,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-panel {
  display: grid;
  grid-template-rows: auto minmax(108px, auto) minmax(0, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  align-content: start;
}

.mini-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.mini-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.mini-carousel__slide {
  display: none;
  width: 100%;
  height: 100%;
}

.mini-carousel__slide.is-active {
  display: block;
}

.mini-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 32, 30, 0.72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.mini-carousel__control:hover {
  background: rgba(34, 32, 30, 0.88);
}

.mini-carousel__control--prev {
  left: 12px;
}

.mini-carousel__control--next {
  right: 12px;
}

.mini-panel h3,
.destination-card h3,
.room-card h3,
.faq-item h3 {
  margin: 6px 0 8px;
  font-size: 1.9rem;
  line-height: 1;
}

.mini-panel p,
.destination-card p,
.room-card p {
  margin: 0;
}

.mini-panel > div:nth-child(2) {
  display: grid;
  align-content: start;
  min-height: 108px;
}

.mini-panel > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.wide-image img {
  aspect-ratio: 2.2 / 1;
}

.split-copy-tight {
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  padding-top: 20px;
}

.featured-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-gallery .photo-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.featured-gallery .photo-card:first-child img {
  aspect-ratio: 1.4 / 1;
  object-position: center;
}

.photo-card {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}

.photo-card img {
  display: block;
  object-position: center;
  transition: transform 380ms ease;
}

.photo-meta {
  position: relative;
  z-index: 1;
  padding-top: 2px;
  background: var(--bg);
}

.photo-card:hover img {
  transform: scale(1.025);
}

.centered {
  justify-content: center;
  margin-top: 28px;
}

.story-column,
.copy-block,
.book-copy,
.facts-text {
  max-width: 620px;
}

.story-visual img {
  aspect-ratio: 1 / 1.15;
}

.asym-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.stacked-photos {
  display: grid;
  gap: 18px;
}

.stacked-photos img:first-child {
  aspect-ratio: 1.15 / 1;
}

.stacked-photos img:last-child {
  aspect-ratio: 1 / 0.8;
}

.detail-strip,
.destination-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.facts-layout {
  grid-template-columns: 0.78fr 1.22fr;
}

.clean-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li + li,
.footer-list li + li {
  margin-top: 10px;
}

.room-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.room-card {
  display: grid;
  gap: 12px;
}

.map-panel {
  padding: 18px 18px 16px;
  background: transparent;
  border: 0;
}

.map-embed {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(76, 64, 55, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.map-actions {
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px;
  border-top: 1px solid rgba(76, 64, 55, 0.08);
}

.map-address {
  margin: 8px 0 0;
  color: var(--strong);
  font-weight: 500;
}

.route-panel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(76, 64, 55, 0.08);
}

.destination-card {
  display: grid;
  gap: 14px;
}

.route-form {
  display: grid;
  gap: 10px;
}

.route-actions {
  align-items: center;
}

.route-link-button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.gallery-group + .gallery-group {
  margin-top: 52px;
}

.gallery-head {
  margin-bottom: 18px;
}

.gallery-head h2 {
  margin: 0;
  font-family: var(--font-site);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--strong);
}

.book-grid {
  grid-template-columns: 1fr 0.92fr;
}

.summary-list {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.summary-row strong {
  color: var(--strong);
}

.faq-block {
  margin-top: 38px;
}

.faq-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq-map {
  max-width: 540px;
  margin-top: 16px;
}

.form-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(76, 64, 55, 0.08);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(76, 64, 55, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

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

.form-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgba(239, 231, 218, 0.6);
}

.cta-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cta-band > div:first-child {
  max-width: 720px;
}

.cta-band .button-row {
  gap: 28px;
  justify-content: flex-end;
}

.cta-band h2 {
  margin: 10px 0 12px;
  font-family: var(--font-site);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--strong);
  line-height: 0.98;
}

.site-footer {
  padding: 56px 0 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  width: 100%;
  border-top: 1px solid rgba(76, 64, 55, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-credit a {
  color: var(--strong);
  text-decoration: underline;
  text-decoration-color: rgba(181, 150, 99, 0.5);
  text-underline-offset: 3px;
}

.footer-map {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(76, 64, 55, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.footer-address-link {
  color: var(--strong);
  text-decoration: underline;
  text-decoration-color: rgba(181, 150, 99, 0.5);
  text-underline-offset: 3px;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}

.footer-map__actions {
  display: flex;
  justify-content: flex-end;
  padding: 10px 12px;
  border-top: 1px solid rgba(76, 64, 55, 0.08);
}

.footer-title {
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(24, 22, 20, 0.94);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-frame {
  position: relative;
  width: min(100%, 1320px);
  height: calc(100dvh - 36px);
  max-height: calc(100dvh - 36px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  overflow: hidden;
}

.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px 78px 18px;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lightbox-stage img {
  display: block;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 32, 30, 0.7);
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 32, 30, 0.72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav--prev {
  left: 12px;
}

.lightbox-nav--next {
  right: 12px;
}

.lightbox-dock {
  display: grid;
  gap: 10px;
  min-height: 0;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  background: rgba(24, 22, 20, 0.6);
  color: #f5f1e8;
}

.lightbox-count {
  flex: 0 0 auto;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-caption {
  flex: 1 1 auto;
  text-align: right;
  font-size: 0.92rem;
}

.lightbox-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72px;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.lightbox-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid rgba(245, 241, 232, 0.2);
  background: transparent;
  opacity: 0.68;
  cursor: pointer;
}

.lightbox-thumb.is-active {
  border-color: rgba(245, 241, 232, 0.78);
  opacity: 1;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .hero-grid,
  .editorial-grid,
  .story-grid,
  .asym-grid,
  .facts-layout,
  .location-grid,
  .book-grid,
  .split-copy-tight,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .fact-bar,
  .three-up,
  .detail-strip,
  .destination-row,
  .featured-gallery,
  .room-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-gallery .photo-card:first-child {
    grid-column: span 2;
  }

  body.page-home .hero {
    width: 100%;
    padding: 0;
  }

  body.page-home .hero > .shell.hero-grid {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  body.page-home .hero-grid {
    min-height: calc(100svh - 92px);
    min-height: calc(100dvh - 92px);
    position: relative;
    align-items: stretch;
    gap: 0;
  }

  body.page-home .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  body.page-home .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(34, 32, 30, 0.18) 0%, rgba(34, 32, 30, 0.38) 38%, rgba(34, 32, 30, 0.72) 100%),
      linear-gradient(90deg, rgba(34, 32, 30, 0.54) 0%, rgba(34, 32, 30, 0.26) 48%, rgba(34, 32, 30, 0.12) 100%);
  }

  body.page-home .hero-media img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  body.page-home .hero-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    align-self: stretch;
    max-width: min(640px, 100%);
    min-height: 100%;
    padding: 48px 36px;
    margin: 0;
    background: transparent;
  }

  body.page-home .hero-copy .button-row {
    order: -1;
    gap: 18px 24px;
    margin-bottom: 6px;
  }

  body.page-home .hero-copy .eyebrow,
  body.page-home .hero-copy h1,
  body.page-home .hero-copy .lead {
    margin: 0;
  }

  body.page-home .hero-copy h1,
  body.page-home .hero-copy .lead,
  body.page-home .hero-copy .text-link {
    color: #f8f4ed;
  }

  body.page-home .hero-copy .eyebrow {
    color: rgba(245, 241, 232, 0.78);
  }

  body.page-home .hero-copy .text-link {
    border-bottom-color: rgba(245, 241, 232, 0.45);
  }

  body.page-home .hero-copy .text-link::after {
    color: #dcb98a;
  }

  body.page-home .fact-bar {
    width: min(calc(100% - 40px), var(--shell));
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 0;
  }
}

@media (max-width: 820px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    padding: 8px 12px 8px 2px;
  }

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

  .nav-panel {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(245, 241, 232, 0.98);
    border: 1px solid var(--line);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    gap: 14px;
  }

  .lang-menu {
    align-self: flex-end;
  }

  .lang-menu__dropdown {
    right: 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    padding: 8px 0 12px;
  }

  body.page-home .hero-copy {
    gap: 20px;
    padding: 44px 24px 36px;
  }

  body.page-home .hero-copy .button-row {
    gap: 14px 20px;
    margin-bottom: 2px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 2.6rem;
  }

  .lead {
    margin-bottom: 18px;
  }

  .fact-bar,
  .three-up,
  .detail-strip,
  .destination-row,
  .featured-gallery,
  .room-grid,
  .gallery-grid,
  .field-grid,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .featured-gallery,
  .gallery-grid {
    gap: 14px;
  }

  .gallery-group + .gallery-group {
    margin-top: 36px;
  }

  body.page-gallery .featured-gallery,
  body.page-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-gallery .section,
  body.page-gallery .section.section-alt {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  body.page-gallery .section-intro {
    margin-bottom: 20px;
  }

  .featured-gallery .photo-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .mini-carousel__control {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 72px 0;
  }

  .button {
    min-width: min(100%, 272px);
  }

  .lightbox {
    padding: 0;
  }

  .lightbox-frame {
    width: 100%;
    height: 100dvh;
    padding: 18px 14px 14px;
    gap: 10px;
  }

  .lightbox-stage {
    padding: 18px 56px 10px;
  }

  .lightbox-nav {
    top: 50%;
    width: 48px;
    height: 48px;
  }

  .lightbox-nav--prev {
    left: 8px;
  }

  .lightbox-nav--next {
    right: 8px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-dock {
    gap: 8px;
  }

  .lightbox-meta {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 12px;
  }

  .lightbox-caption {
    text-align: left;
    font-size: 0.88rem;
  }

  .lightbox-thumbs {
    grid-auto-columns: 56px;
  }

  .lightbox-thumb {
    width: 56px;
    height: 56px;
  }

  body.page-home .hero {
    width: 100%;
    padding: 0;
  }

  body.page-home .hero-grid {
    min-height: calc(100svh - 78px);
    min-height: calc(100dvh - 78px);
  }

  body.page-home .hero-media {
  }

  body.page-home .hero-media::after {
    background:
      linear-gradient(180deg, rgba(34, 32, 30, 0.16) 0%, rgba(34, 32, 30, 0.42) 34%, rgba(34, 32, 30, 0.72) 100%),
      linear-gradient(90deg, rgba(34, 32, 30, 0.42) 0%, rgba(34, 32, 30, 0.18) 56%, rgba(34, 32, 30, 0.08) 100%);
  }

  body.page-home .hero-media img {
  }

  body.page-home .hero-copy {
    padding: 28px 20px 20px;
  }

  body.page-home .fact-bar {
  }

  body.page-home .section:first-of-type {
    padding-top: 24px;
  }
}
