:root {
  --soil: #3d3327;
  --soil-deep: #211b15;
  --olive: #59623f;
  --olive-dark: #323a28;
  --moss: #7c8058;
  --wheat: #d5bd83;
  --paper: #f3e9d8;
  --linen: #ebe0ce;
  --clay: #9d6f4b;
  --white: #fffaf0;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--soil);
  font-family: var(--sans);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--linen);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

p {
  max-width: 64ch;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, padding 240ms ease;
}

.site-header.scrolled,
.site-header.compact {
  background: rgba(245, 239, 227, 0.94);
  color: var(--soil);
  padding-top: 15px;
  padding-bottom: 15px;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 51, 39, 0.1);
}

/* backdrop-filter cria um novo containing block para descendentes com
   position: fixed, o que faz o menu mobile (.site-nav com inset: 0)
   se encaixar na caixa pequena do cabeçalho em vez da tela inteira.
   Suspende o blur enquanto o menu está aberto para evitar isso. */
.site-header:has(.site-nav.is-open) {
  backdrop-filter: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 40px;
  background: none;
  object-fit: contain;
}

.brand-logo.image-placeholder {
  width: 40px;
  height: 40px;
  min-height: 0;
  border-radius: 4px;
}

.brand span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 2vw, 28px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-reserve {
  color: var(--wheat);
}

.site-header.scrolled .nav-reserve,
.site-header.compact .nav-reserve {
  color: var(--olive);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero > img,
.hero > .image-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(24, 22, 12, 0.52), rgba(24, 22, 12, 0.16) 42%, rgba(20, 22, 13, 0.68)),
    radial-gradient(circle at 70% 32%, transparent, rgba(35, 38, 20, 0.3));
}

.hero-content {
  align-self: end;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 170px 0 76px;
}

.hero-content h1 {
  max-width: 900px;
  margin-bottom: 14px;
}

.hero-line {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.section-pad {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 132px) 0;
}

.section-kicker,
.eyebrow {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--wheat);
}

.intro-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.intro-copy h2 {
  margin-bottom: 0;
}

.intro-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-video-card {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(33, 27, 21, 0.2);
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--soil-deep);
}

.button-dark {
  background: var(--olive-dark);
  color: var(--white);
}

.button-outline {
  border-color: rgba(157, 111, 75, 0.55);
  color: var(--olive-dark);
}

.button-outline:hover {
  background: rgba(157, 111, 75, 0.1);
}

.text-link {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 3px;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 240ms ease;
}

.text-link:hover::before {
  transform: scaleX(1);
}

.text-link::after {
  display: inline-block;
  margin-left: 6px;
  content: "→";
  transition: transform 240ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.05fr);
}

.split-feature.reverse .feature-media {
  order: 2;
}

.feature-media,
.story-media {
  aspect-ratio: 8 / 9;
  overflow: hidden;
}

.feature-media.meal-media {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
}

.meal-media .photo-strip {
  height: 100%;
  padding: 0;
  grid-auto-columns: 100%;
  scroll-padding-inline: 0;
}

.meal-media .photo-strip img,
.meal-media .photo-strip .image-placeholder {
  height: 100%;
  aspect-ratio: auto;
}

.meal-media .carousel-dots {
  flex: none;
}

.meal-tag {
  display: inline-block;
  margin-top: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kitchen-tribute {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.kitchen-tribute h2 {
  max-width: 780px;
  margin: 0 auto 24px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.kitchen-tribute p:not(.section-kicker) {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.room-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carousel-frame {
  position: relative;
  aspect-ratio: 8 / 9;
  overflow: hidden;
}

.room-media .photo-strip {
  height: 100%;
  padding: 0;
  grid-auto-columns: 100%;
  scroll-padding-inline: 0;
}

.room-media .photo-strip img,
.room-media .photo-strip .image-placeholder {
  height: 100%;
  aspect-ratio: auto;
}

.room-media .carousel-dots {
  flex: none;
}

.feature-copy p {
  font-size: 1.05rem;
}

.accommodation-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 360px));
  gap: 22px;
  justify-content: center;
  padding-top: 0;
}

.stay-card {
  display: grid;
  gap: 20px;
}

.stay-card img,
.stay-card .image-placeholder {
  aspect-ratio: 4 / 5;
  height: auto;
}

.stay-card h3 {
  margin-bottom: 6px;
  font-size: 2rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  gap: clamp(36px, 8vw, 100px);
  align-items: center;
  border-top: 1px solid rgba(61, 51, 39, 0.12);
  border-bottom: 1px solid rgba(61, 51, 39, 0.12);
}

.editorial-band h2 {
  font-size: clamp(2.05rem, 4vw, 3.9rem);
}

.asym-gallery {
  position: relative;
  min-height: 650px;
}

.gallery-main {
  width: 78%;
  height: 560px;
  margin-left: auto;
}

.gallery-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  height: 260px;
  border: 12px solid var(--paper);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) 1fr;
  gap: clamp(38px, 8vw, 108px);
  align-items: center;
}

.location-section {
  max-width: 920px;
  text-align: center;
}

.location-section p {
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.6fr;
  gap: 28px;
  padding: 48px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--soil-deep);
  border-top: 1px solid rgba(213, 189, 131, 0.28);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 250, 240, 0.78);
  transition: color 200ms ease;
}

.site-footer a:hover {
  color: var(--wheat);
}

.footer-brand {
  color: var(--white) !important;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.page-main {
  padding-top: 94px;
}

.back-button {
  position: fixed;
  z-index: 12;
  top: 104px;
  left: clamp(16px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(61, 51, 39, 0.22);
  border-radius: 999px;
  color: var(--soil);
  background: rgba(245, 239, 227, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.back-button:hover {
  background: var(--white);
  border-color: rgba(61, 51, 39, 0.38);
  transform: translateY(-1px);
}

.page-hero {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: clamp(78px, 12vw, 150px) 0 clamp(36px, 7vw, 82px);
}

.page-hero h1,
.contact-copy h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.about-cover h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
}

.about-copy p {
  margin: 18px 0 28px;
  max-width: 42ch;
  font-size: 1.05rem;
}

.room-list {
  display: grid;
  gap: clamp(62px, 9vw, 112px);
}

.room-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  column-gap: clamp(32px, 6vw, 82px);
  row-gap: 26px;
  align-items: center;
}

.room-row:nth-child(even) {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.05fr);
}

.room-row:nth-child(even) .room-media {
  order: 2;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.amenities li {
  padding: 7px 11px;
  border: 1px solid rgba(157, 111, 75, 0.35);
  color: var(--olive-dark);
  font-size: 0.92rem;
}

.photo-strip {
  display: grid;
  grid-auto-columns: minmax(240px, min(88%, 460px));
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 6% 14px;
  scroll-padding-inline: 6%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.photo-strip::-webkit-scrollbar {
  display: none;
}

.photo-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.photo-strip img,
.photo-strip .image-placeholder {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  border-radius: 3px;
  scroll-snap-align: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(157, 111, 75, 0.3);
  transition: background 200ms ease, transform 200ms ease;
}

.carousel-dots span.is-active {
  background: var(--olive);
  transform: scale(1.35);
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  color: var(--soil-deep);
  background: rgba(245, 239, 227, 0.82);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  transition: background 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.carousel-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow.arrow-prev {
  left: 14px;
}

.carousel-arrow.arrow-next {
  right: 14px;
}

.carousel-arrow[disabled] {
  opacity: 0;
  pointer-events: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.experience-large img,
.experience-large .image-placeholder {
  aspect-ratio: 5 / 4;
  margin-bottom: 26px;
}

.experience-large img {
  height: auto;
}

.experience-stack {
  display: grid;
  gap: 32px;
  padding-top: 88px;
}

.quiet-card {
  display: grid;
  align-content: start;
}

.quiet-card img,
.quiet-card .image-placeholder {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.quiet-card img {
  height: auto;
}

.quiet-card h3 {
  margin-bottom: 6px;
  font-size: 2rem;
}

.quiet-card p {
  margin-bottom: 0;
}

.center-note {
  max-width: 820px;
  text-align: center;
}

.center-note h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
}

.center-note p {
  margin-right: auto;
  margin-left: auto;
}

.experience-group {
  display: grid;
  gap: clamp(44px, 6vw, 78px);
}

.region-group {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--linen);
}

.group-heading {
  max-width: 820px;
}

.group-heading h2 {
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.group-heading p {
  margin-bottom: 0;
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.activity-row:nth-of-type(even) {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.05fr);
}

.activity-row:nth-of-type(even) .activity-media {
  order: 2;
}

.activity-media {
  overflow: hidden;
}

.activity-media img,
.activity-media .image-placeholder {
  aspect-ratio: 5 / 4;
  height: auto;
}

.activity-media.activity-carousel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-carousel .carousel-frame {
  aspect-ratio: 5 / 4;
}

.activity-carousel .photo-strip {
  height: 100%;
  padding: 0;
  grid-auto-columns: 100%;
  scroll-padding-inline: 0;
}

.activity-carousel .photo-strip img,
.activity-carousel .photo-strip .image-placeholder {
  height: 100%;
  aspect-ratio: auto;
}

.activity-carousel .carousel-dots {
  flex: none;
}

.activity-copy h2,
.activity-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.activity-copy p {
  margin-bottom: 0;
}

.about-cover,
.contact-layout,
.memory-grid {
  display: grid;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.hero-food {
  min-height: 66svh;
  margin-top: -94px;
}

.hero-food h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.about-cover {
  grid-template-columns: 1fr 0.9fr;
  padding: clamp(72px, 10vw, 130px) 0 60px;
}

.about-cover img,
.about-cover .image-placeholder {
  aspect-ratio: 8 / 9;
}

.long-story {
  max-width: 850px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.long-story p {
  max-width: none;
}

.memory-grid {
  grid-template-columns: 1fr 0.7fr;
}

.memory-grid h2 {
  font-size: clamp(2.15rem, 4vw, 3.9rem);
}

.memory-grid img,
.memory-grid .image-placeholder {
  aspect-ratio: 4 / 5;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  padding-top: clamp(72px, 10vw, 130px);
}

.service-list {
  display: grid;
  gap: clamp(64px, 9vw, 118px);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.service-row:nth-child(even) {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.05fr);
}

.service-row:nth-child(even) .service-media {
  order: 2;
}

.service-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-media .photo-strip {
  height: 100%;
  padding: 0;
  grid-auto-columns: 100%;
  scroll-padding-inline: 0;
}

.service-media .photo-strip img,
.service-media .photo-strip .image-placeholder {
  height: 100%;
  aspect-ratio: auto;
}

.service-media .carousel-dots {
  flex: none;
}

.service-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.service-copy p {
  margin-bottom: 0;
}

.service-gallery {
  overflow-y: hidden;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--olive-dark);
  font-weight: 700;
}

.contact-whatsapp {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: clamp(32px, 5vw, 56px);
  background: var(--linen);
  text-align: left;
}

.contact-whatsapp p:not(.section-kicker) {
  color: var(--soil);
  max-width: 32ch;
}

.button-whatsapp {
  min-height: 60px;
  padding: 16px 34px;
  font-size: 0.9rem;
}

.map-placeholder {
  display: grid;
  min-height: 340px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto clamp(72px, 10vw, 130px);
  place-items: center;
  border: 1px solid rgba(61, 51, 39, 0.18);
  color: var(--olive-dark);
  background:
    linear-gradient(90deg, rgba(61, 51, 39, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(61, 51, 39, 0.08) 1px, transparent 1px),
    var(--linen);
  background-size: 42px 42px;
  text-align: center;
}

.map-placeholder p {
  max-width: 420px;
  margin: 0;
}

.image-placeholder {
  display: grid;
  min-height: 240px;
  background:
    linear-gradient(rgba(33, 27, 21, 0.22), rgba(33, 27, 21, 0.34)),
    repeating-linear-gradient(135deg, var(--olive) 0 16px, var(--moss) 16px 32px);
}

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

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

.video-placeholder {
  display: grid;
  place-items: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 24px;
  background:
    linear-gradient(rgba(33, 27, 21, 0.22), rgba(33, 27, 21, 0.34)),
    repeating-linear-gradient(135deg, var(--olive) 0 16px, var(--moss) 16px 32px);
}

.video-placeholder::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 13px 0 13px 20px;
  border-color: transparent transparent transparent rgba(255, 250, 240, 0.92);
}

.video-placeholder::after {
  content: attr(data-label);
  max-width: 22ch;
  color: rgba(255, 250, 240, 0.9);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 880px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 16px 20px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 25;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    background: var(--paper);
    color: var(--soil);
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .hero {
    min-height: 92svh;
  }

  .hero-food {
    min-height: 56svh;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .intro-section,
  .split-feature,
  .split-feature.reverse,
  .editorial-band,
  .story-section,
  .room-row,
  .room-row:nth-child(even),
  .experience-grid,
  .activity-row,
  .activity-row:nth-of-type(even),
  .about-cover,
  .contact-layout,
  .memory-grid,
  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse .feature-media,
  .room-row:nth-child(even) .room-media,
  .activity-row:nth-of-type(even) .activity-media,
  .service-row:nth-child(even) .service-media {
    order: 0;
  }

  .story-media,
  .asym-gallery,
  .memory-grid img,
  .memory-grid .image-placeholder {
    order: -1;
  }

  .asym-gallery {
    min-height: auto;
  }

  .gallery-main {
    width: 100%;
    height: 390px;
  }

  .gallery-small {
    position: relative;
    width: 58%;
    height: 180px;
    margin-top: -64px;
    border-width: 10px;
  }

  .experience-stack {
    padding-top: 0;
  }

  .photo-strip {
    grid-auto-columns: minmax(200px, min(84%, 380px));
    padding-right: 8%;
    padding-left: 8%;
    scroll-padding-inline: 8%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .page-hero h1,
  .contact-copy h1,
  .hero-food h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .hero-content {
    padding-top: 120px;
  }

  .brand strong {
    font-size: 1.55rem;
  }

  .brand span {
    font-size: 0.62rem;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-logo.image-placeholder {
    width: 32px;
    height: 32px;
  }

  .section-pad {
    width: min(100% - 32px, var(--max));
    padding: 68px 0;
  }

  .page-hero,
  .about-cover,
  .contact-layout,
  .memory-grid,
  .map-placeholder {
    width: calc(100% - 32px);
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  .button {
    width: 100%;
  }

  .back-button {
    top: 82px;
    left: 16px;
  }

  .carousel-arrow {
    display: none;
  }

  .accommodation-preview {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stay-card {
    gap: 10px;
  }

  .stay-card img,
  .stay-card .image-placeholder {
    aspect-ratio: 3 / 4;
  }

  .stay-card h3 {
    margin-bottom: 4px;
    font-size: 1.15rem;
  }

  .stay-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }
}