:root {
  --bg: #f4f0e8;
  --text: #243544;
  --muted: #607078;
  --accent: #1f6496;
  --accent-deep: #174c73;
  --hero-height: min(78vh, 760px);
  --hero-nav-overlap: 1.25rem;
  --lightbox-edge-offset: clamp(1rem, 2.4vw, 1.5rem);
  --gallery-control-width: 3.5rem;
  --gallery-control-height: 4.125rem;
  --gallery-control-radius: 0.9rem;
  --type-meta-size: 0.72rem;
  --type-meta-spacing: 0.14em;
  --type-small-copy: 0.84rem;
  --type-compact-title: 1rem;
}

@supports (height: 1svh) {
  :root {
    --hero-height: min(78svh, 760px);
  }
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

/* Navigation */
.scroll-nav {
  display: flex;
  position: relative;
  justify-content: center;
  gap: 1rem;
  padding: 0.15rem 2.75rem;
  background: var(--bg);
}

.scroll-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(36, 53, 68, 0.34) 0%,
    rgba(36, 53, 68, 0.12) 30%,
    rgba(36, 53, 68, 0.02) 50%,
    rgba(36, 53, 68, 0.12) 70%,
    rgba(36, 53, 68, 0.34) 100%
  );
}

.scroll-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  padding: 0.75rem 3rem 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.scroll-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.scroll-nav a:hover {
  color: var(--accent-deep);
}

.scroll-nav a.is-active,
.scroll-nav a[aria-current="page"] {
  font-weight: 800;
}

/* Hero */
.hero {
  position: fixed;
  inset: 0 0 auto;
  min-height: var(--hero-height);
  background: var(--bg);
  z-index: 0;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--hero-height) - var(--hero-nav-overlap));
  background: var(--bg);
  overflow: hidden;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 13, 0.08), rgba(26, 18, 13, 0.18));
}

.hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-media img.is-active {
  opacity: 1;
}

.topbar,
.story-grid,
.story-copy-stack,
.gallery-mosaic {
  display: grid;
  gap: 1.25rem;
}

.topbar {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100vw;
  padding: 4rem 2.75rem 0.75rem;
  justify-items: center;
}

.brand {
  display: inline-grid;
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  place-items: center;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}

.brand-picture {
  display: block;
  position: relative;
  z-index: 1;
  line-height: 0;
}

.brand-logo {
  width: clamp(24rem, 32vw, 36rem);
  max-width: min(88vw, 36rem);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.2));
}

.hero-stage {
  min-height: var(--hero-height);
}

.site-scroll-content {
  position: relative;
  z-index: 2;
  padding-top: var(--hero-height);
}

main {
  position: relative;
  z-index: 2;
}

.eyebrow,
.amenity-group-label,
.house-rule span,
.contact-whatsapp-label {
  font-size: var(--type-meta-size);
  font-weight: 700;
  letter-spacing: var(--type-meta-spacing);
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.hero-intro-title {
  max-width: 52ch;
  font-size: clamp(1.2rem, 0.95rem + 0.9vw, 1.9rem);
  line-height: 1.16;
  text-wrap: pretty;
}

/* Shared sections */
.section {
  position: relative;
  z-index: 2;
  padding: 2rem 0 4.4rem;
  background: var(--bg);
  scroll-margin-top: 5rem;
}

.story {
  padding-top: 0;
  padding-bottom: 3rem;
}

.stay {
  padding-bottom: 0.5rem;
}

.story .section-heading {
  max-width: 760px;
  margin-bottom: 1.25rem;
  padding: 0 2.75rem 0 6.2rem;
}

.story .hero-intro-title,
.story-image-heading,
.story-side-note {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  font-size: clamp(1.2rem, 0.95rem + 0.9vw, 1.9rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: pretty;
}

.story .hero-intro-title {
  margin-top: 2.9rem;
  font-size: clamp(1.45rem, 1.05rem + 1vw, 2.25rem);
  font-weight: 600;
  line-height: 1.12;
}

.page-nav-wrap {
  position: sticky;
  top: 0;
  margin-top: calc(var(--hero-nav-overlap) * -1);
  z-index: 3;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.stay .section-heading {
  padding: 0 2.75rem 0 6.2rem;
}

.gallery-section .section-heading {
  padding: 0 2.75rem 0 6.2rem;
  margin-bottom: 1.25rem;
}

.gallery-section .eyebrow {
  color: #7b6654;
}

.gallery-section .section-heading h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  font-weight: 600;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 1.4rem;
  align-items: end;
  max-width: none;
}

.story .section-heading.split-heading {
  grid-template-columns: minmax(0, 1fr);
}

.section-heading h2,
.footer-panel h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.footer-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.stay-details {
  display: grid;
  gap: 0.5rem;
}

.stay-block {
  border: 1px solid rgba(36, 53, 68, 0.09);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.28);
  padding: clamp(1rem, 1.7vw, 1.45rem);
}

.stay-block-heading {
  margin-bottom: 0.7rem;
}

.stay-block-heading h3 {
  margin: 0;
  color: #1d2c38;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 1.02rem + 0.55vw, 1.55rem);
  font-weight: 700;
  line-height: 1.12;
}

.stay-overview {
  padding: 0.35rem 0 0.45rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.stay-overview .stay-home-type {
  margin-inline: clamp(1rem, 1.7vw, 1.45rem);
}

.stay-home-type {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: var(--type-small-copy);
  font-weight: 700;
}

.stay-home-type::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #9b8068;
  content: "";
}

.stay-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(36, 53, 68, 0.11);
  border-bottom: 1px solid rgba(36, 53, 68, 0.11);
}

.stay-fact {
  min-height: 4.9rem;
  padding: 0.72rem clamp(0.8rem, 1.3vw, 1.05rem);
  border-left: 1px solid rgba(36, 53, 68, 0.09);
}

.stay-fact:first-child {
  border-left: 0;
}

.stay-fact strong {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 2.65rem;
  margin-bottom: 0.2rem;
  color: #1d2c38;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 1.55rem + 1.4vw, 2.8rem);
  font-weight: 700;
  line-height: 0.95;
}

.stay-fact strong img {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.88;
}

.guest-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.guest-icons > span {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.stay-fact > span {
  color: var(--muted);
  font-size: var(--type-small-copy);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.house-rules {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 1.2rem 0.35rem;
  border: 1px solid rgba(36, 53, 68, 0.18);
  border-inline: 0;
  border-radius: 0;
  background: transparent;
}

.house-rules .stay-block-heading {
  margin-bottom: 0;
}

.house-rules .stay-block-heading h3 {
  color: #243544;
}

.house-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.house-rule {
  padding: 0.2rem clamp(0.75rem, 1.5vw, 1.35rem);
  border-left: 1px solid rgba(36, 53, 68, 0.1);
}

.house-rule span {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(36, 53, 68, 0.5);
}

.house-rule strong {
  display: flex;
  align-items: flex-end;
  min-height: 2.1rem;
  color: #243544;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 600;
  line-height: 1.35;
}

.house-rule time {
  display: block;
  line-height: inherit;
}

.house-rule time b {
  font-size: 1.35em;
}

.amenity-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.stay-amenities {
  margin-top: 0.45rem;
}

.amenity-column {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.amenity-group {
  padding: 0.15rem 0 0.4rem;
  border-top: 1px solid rgba(36, 53, 68, 0.09);
}

.amenity-column .amenity-group:first-child {
  border-top: 0;
}

.amenity-group-label {
  margin: 0 0 0.4rem;
  color: #1d2c38;
}

.amenity-group ul,
.stay-access-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-group li {
  position: relative;
  padding: 0.2rem 0 0.2rem 0.9rem;
  color: var(--muted);
  font-size: var(--type-small-copy);
  line-height: 1.5;
}

.amenity-group li::before {
  position: absolute;
  top: 0.69rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: rgba(123, 102, 84, 0.56);
  content: "";
}

.amenity-group-safety {
  width: 70%;
}

.connectivity-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.55rem 0 0;
  padding: 0.55rem 0 0;
  border-top: 1px solid rgba(36, 53, 68, 0.1);
  color: var(--muted);
  font-size: var(--type-small-copy);
  line-height: 1.5;
}

.connectivity-note span {
  flex: 0 0 auto;
  color: #1d2c38;
  font-weight: 800;
}

.stay-access-note {
  display: grid;
  margin-top: 0.45rem;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(0.85rem, 1.4vw, 1.1rem) clamp(1rem, 1.7vw, 1.35rem);
  border-left: 2px solid rgba(123, 102, 84, 0.4);
  background: rgba(255, 253, 249, 0.2);
}

.stay-access-note .stay-block-heading {
  margin-bottom: 0;
}

.stay-access-note ul {
  display: grid;
  gap: 0.5rem;
}

.stay-access-note li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: var(--type-small-copy);
  line-height: 1.5;
}

.stay-access-note li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: rgba(123, 102, 84, 0.65);
  content: "";
}

.stay .section-heading h2,
.guest-reviews-heading h3 {
  color: #1d2c38;
  font-weight: 700;
}

.guest-reviews-heading {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guest-reviews-heading h3 {
  font-size: clamp(1.35rem, 1.1rem + 0.7vw, 1.9rem);
  line-height: 1.08;
}

.guest-reviews-controls {
  display: flex;
  position: absolute;
  right: 0;
  align-items: center;
  gap: 0.45rem;
}

.review-progress {
  display: none;
  min-width: 3.2rem;
  color: var(--muted);
  font-size: var(--type-meta-size);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  text-align: center;
}

.review-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.55rem;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 253, 250, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(36, 53, 68, 0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.review-arrow span {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.review-arrow:hover:not(:disabled) {
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 13px 28px rgba(36, 53, 68, 0.13);
  transform: translateY(-1px);
}

.review-arrow:active:not(:disabled) {
  background: rgba(238, 233, 224, 0.95);
  box-shadow: 0 5px 12px rgba(36, 53, 68, 0.1);
  transform: translateY(1px) scale(0.94);
  transition-duration: 80ms;
}

.review-arrow:focus {
  outline: none;
}

.review-arrow:focus-visible {
  box-shadow:
    0 0 0 3px rgba(36, 53, 68, 0.14),
    0 10px 24px rgba(36, 53, 68, 0.08);
}

.review-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.8rem) / 3);
  align-items: start;
  height: 16.5rem;
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0.2rem 0.3rem 0.85rem;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scroll-padding-inline: 0.3rem 1.05rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 1.4rem,
    #000 calc(100% - 1.4rem),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 1.4rem,
    #000 calc(100% - 1.4rem),
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 13.5rem;
  padding: 1.15rem;
  border: 1px solid rgba(36, 53, 68, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 1px 2px rgba(20, 36, 61, 0.05),
    0 8px 20px rgba(20, 36, 61, 0.08);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  touch-action: pan-x pan-y;
  contain: layout paint;
  transition: height 180ms ease;
}

.review-card.is-expanded {
  height: 15.75rem;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review-card-head > div {
  min-width: 0;
}

.review-source {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  margin-left: auto;
  padding: 0.22rem 0.5rem;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.review-source-airbnb {
  color: #a64b48;
}

.review-source-google {
  color: #3973c9;
}

.review-card-google .review-avatar {
  background: #1784c7;
  color: #fff;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(94, 116, 129, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.review-card h4 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.review-card-head p {
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: var(--type-meta-size);
  line-height: 1.4;
}

.review-stars {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.review-copy {
  margin-top: 0.65rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-card.is-expanded .review-copy {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  padding-right: 0.35rem;
  overflow-y: auto;
  scrollbar-width: thin;
}

.review-toggle {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.35rem 0 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: var(--type-meta-size);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.review-card.is-expanded .review-toggle {
  margin-top: 0.75rem;
}

.review-toggle:hover,
.review-toggle:focus-visible {
  color: var(--accent);
}

.review-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.story-grid {
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  align-items: stretch;
  gap: 5rem;
  direction: rtl;
}

.story-copy-stack {
  grid-template-columns: 1fr;
  align-content: start;
  height: 100%;
  gap: 1.25rem;
  direction: ltr;
}

.story-side-note {
  margin: 0 0 0 100px;
}

.story-image-stack {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  min-width: 0;
  direction: ltr;
}

.story-image-heading {
  max-width: 52ch;
  margin: 0;
  padding-left: 6.2rem;
}

.story-card-image3,
.story-card-image4 {
  overflow: hidden;
}

.story-card-image3 img,
.story-card-image4 img {
  height: 100%;
  object-fit: cover;
}

.story-card-image3 img {
  object-fit: contain;
}

.story-card-image3 {
  min-height: 340px;
  margin-right: 100px;
  direction: ltr;
}

.gallery-carousel {
  position: relative;
  padding: 0.5rem 0 0.75rem;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--gallery-control-width);
  height: var(--gallery-control-height);
  border: 1px solid rgba(36, 53, 68, 0.12);
  border-radius: var(--gallery-control-radius);
  background: rgba(244, 240, 232, 0.88);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(36, 53, 68, 0.07);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.gallery-arrow:hover:not(:disabled) {
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 10px 24px rgba(36, 53, 68, 0.1);
  transform: translateY(calc(-50% - 1px));
}

.gallery-arrow:active:not(:disabled) {
  background: rgba(238, 233, 224, 0.95);
  box-shadow: 0 5px 12px rgba(36, 53, 68, 0.1);
  transform: translateY(calc(-50% + 1px)) scale(0.94);
  transition-duration: 80ms;
}

.gallery-arrow:focus {
  outline: none;
}

.gallery-arrow:focus-visible {
  box-shadow:
    0 0 0 3px rgba(36, 53, 68, 0.14),
    0 10px 24px rgba(36, 53, 68, 0.08);
}

.gallery-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.gallery-arrow-left {
  left: 1.5rem;
}

.gallery-arrow-right {
  right: 1.5rem;
}

.gallery-arrow span {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-mosaic {
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 28vw);
  gap: clamp(1rem, 1.6vw, 1.5rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem 1.25rem 1rem 0;
  align-items: stretch;
  scroll-behavior: auto;
  scroll-padding-inline: 0 1.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.gallery-section {
  padding-top: 3rem;
  border-top: 1px solid rgba(36, 53, 68, 0.11);
  border-bottom: 1px solid rgba(36, 53, 68, 0.11);
}

.gallery-mosaic::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  overflow: hidden;
  background: #d8d9d5;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(36, 53, 68, 0.55);
  outline-offset: -3px;
}

.gallery-item img {
  height: clamp(440px, 38vw, 560px);
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x pan-y;
  transition: transform 550ms ease;
}

.gallery-item:hover img {
  transform: scale(1.012);
}

body.lightbox-open {
  overflow: hidden;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  place-items: center;
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 1.5rem;
  border: 0;
  background: rgba(13, 20, 26, 0.92);
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y pinch-zoom;
  z-index: 1000;
}

.gallery-lightbox[open] {
  display: grid;
}

.gallery-lightbox::backdrop {
  background: transparent;
}

.gallery-lightbox-frame {
  position: relative;
  display: inline-grid;
  padding-top: 3.35rem;
  max-width: calc(100vw - 9rem);
  max-height: calc(100vh - 3rem);
  max-height: calc(100dvh - 3rem);
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-x pan-y pinch-zoom;
}

.gallery-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 6.35rem);
  max-height: calc(100dvh - 6.35rem);
  object-fit: contain;
  cursor: default;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-x pan-y pinch-zoom;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: scale(var(--gallery-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.gallery-lightbox-count {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: max(1rem, env(safe-area-inset-top));
  left: max(var(--lightbox-edge-offset), env(safe-area-inset-left));
  margin: 0;
  height: clamp(2.75rem, 4vw, 3.25rem);
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.04em;
  z-index: 1;
  box-sizing: border-box;
}

.gallery-lightbox-nav,
.gallery-lightbox-close {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.75rem, 4vw, 3.25rem);
  height: clamp(2.75rem, 4vw, 3.25rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.gallery-lightbox-close {
  top: max(1rem, env(safe-area-inset-top));
  right: max(var(--lightbox-edge-offset), env(safe-area-inset-right));
  gap: 0.38rem;
  width: auto;
  min-width: 0;
  height: 2.15rem;
  padding: 0 0.75rem;
  border: 0;
  border-radius: 7px;
  background: rgba(88, 88, 88, 0.94);
  box-shadow: none;
}

.gallery-lightbox-nav {
  top: 50%;
  width: var(--gallery-control-width);
  height: var(--gallery-control-height);
  border-radius: var(--gallery-control-radius);
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: max(var(--lightbox-edge-offset), env(safe-area-inset-left));
}

.gallery-lightbox-next {
  right: max(var(--lightbox-edge-offset), env(safe-area-inset-right));
}

.gallery-lightbox-nav span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-0.06em);
  user-select: none;
  -webkit-user-select: none;
}

.gallery-lightbox-close-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.gallery-lightbox-close-text-el,
:lang(el) .gallery-lightbox-close-text-en {
  display: none;
}

:lang(el) .gallery-lightbox-close-text-el {
  display: inline;
}

.gallery-lightbox-close-icon {
  font-family: Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-0.02em);
}

.gallery-lightbox-nav:focus,
.gallery-lightbox-close:focus {
  outline: none;
}

.gallery-lightbox-nav:focus-visible,
.gallery-lightbox-close:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 253, 250, 0.3),
    0 10px 24px rgba(36, 53, 68, 0.08);
}

.gallery-lightbox-nav:active,
.gallery-lightbox-nav.is-tapped {
  background: rgba(238, 233, 224, 0.95);
  color: var(--text);
  box-shadow: 0 5px 12px rgba(36, 53, 68, 0.1);
}

.gallery-lightbox-close:active,
.gallery-lightbox-close.is-tapped {
  background: rgba(238, 233, 224, 0.95);
  color: var(--text);
  box-shadow: 0 5px 12px rgba(36, 53, 68, 0.1);
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg);
  scroll-margin-top: 5rem;
}

.footer-panel {
  display: grid;
  padding: 1.4rem 6.2rem 2.2rem;
  background: var(--bg);
}

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

.availability-card::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  bottom: 25%;
  width: 1px;
  background: rgba(36, 53, 68, 0.12);
}

.site-legal {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding: 1.1rem 6.2rem max(3rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(36, 53, 68, 0.1);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.availability-card {
  display: grid;
  position: relative;
  gap: 1.15rem;
  height: 100%;
  padding: 1.5rem;
}

.availability-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.availability-controls {
  display: none;
}

.availability-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.25rem;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 253, 250, 0.92);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(36, 53, 68, 0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.availability-arrow span {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
}

.availability-arrow:hover:not(:disabled) {
  background: #fffdfa;
  box-shadow: 0 11px 24px rgba(36, 53, 68, 0.13);
  transform: translateY(-1px);
}

.availability-arrow:active:not(:disabled) {
  transform: translateY(1px) scale(0.94);
}

.availability-arrow:focus {
  outline: none;
}

.availability-arrow:focus-visible {
  box-shadow:
    0 0 0 3px rgba(36, 53, 68, 0.14),
    0 8px 20px rgba(36, 53, 68, 0.08);
}

.availability-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.availability-calendars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 16rem));
  justify-content: center;
  gap: 2rem;
}

.availability-calendars.is-single-month {
  grid-template-columns: 1fr;
  height: 14.25rem;
  align-items: start;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.availability-calendars.is-single-month .availability-month {
  max-width: 15.25rem;
}

.availability-calendars.is-single-month .availability-day {
  min-height: 1.65rem;
}

.availability-month {
  width: 100%;
  max-width: 16rem;
  min-width: 0;
  justify-self: center;
}

.availability-month h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: var(--type-compact-title);
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.availability-month-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.25rem;
  margin: 0 0 0.7rem;
}

.availability-month-heading .availability-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 0;
  background: transparent;
  color: #000;
  box-shadow: none;
}

.availability-month-heading .availability-chevron {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.availability-month-heading .availability-arrow:hover:not(:disabled),
.availability-month-heading .availability-arrow:focus-visible {
  background: transparent;
  color: #000;
  box-shadow: none;
  transform: none;
}

.availability-weekdays,
.availability-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.availability-weekdays {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.availability-day {
  display: grid;
  place-items: center;
  min-height: 1.85rem;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1;
}

.availability-day.is-available {
  color: #34815a;
  font-weight: 700;
}

.availability-day.is-unavailable {
  color: rgba(168, 66, 59, 0.68);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: var(--muted);
  font-size: var(--type-meta-size);
  font-weight: 600;
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.availability-legend i {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #34815a;
}

.availability-legend i.is-unavailable {
  background: #b84d45;
}

.contact-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, min(20rem, calc(50% - 0.75rem)))) minmax(0, 1fr);
  grid-template-areas:
    "heading heading heading heading"
    ". whatsapp email .";
  justify-content: center;
  gap: 1.5rem;
  align-items: start;
  padding: 1.35rem 0;
}

.contact-heading {
  grid-area: heading;
}

.contact-heading .eyebrow {
  margin-bottom: 0.45rem;
  color: #7b6654;
}

.contact-heading h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.contact-location-card {
  display: grid;
  gap: 0.2rem;
  align-self: stretch;
  align-content: start;
  padding: 1.5rem;
}

.contact-location-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.contact-location-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.contact-location-pin img {
  height: 100%;
  object-fit: contain;
}

.contact-location-head h3 {
  font-family: "Manrope", sans-serif;
  font-size: var(--type-compact-title);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-location-name,
.contact-location-preview,
.contact-location-address-card {
  margin-left: calc(2rem + 0.85rem);
}

.contact-location-name {
  color: var(--text);
  font-size: clamp(0.84rem, 0.7rem + 0.56vw, 1.33rem);
  font-weight: 600;
  line-height: 1.1;
}

.contact-location-preview {
  position: relative;
  overflow: hidden;
  width: 70%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: 1px solid rgba(36, 53, 68, 0.08);
  background: #eef2f7;
  box-shadow:
    0 1px 2px rgba(20, 36, 61, 0.06),
    0 10px 28px rgba(20, 36, 61, 0.1);
}

.contact-location-map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-location-cta {
  position: absolute;
  left: 0.6rem;
  right: auto;
  top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(31, 102, 209, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: #1f66d1;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 3px 8px rgba(20, 36, 61, 0.16),
    0 12px 30px rgba(20, 36, 61, 0.24);
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

.contact-location-address-card {
  color: var(--muted);
  font-size: clamp(0.84rem, 0.7rem + 0.56vw, 1.33rem);
  font-weight: 600;
  line-height: 1.35;
}

.contact-whatsapp {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: center;
  width: 100%;
  height: 4.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(36, 53, 68, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 1px 2px rgba(20, 36, 61, 0.06),
    0 10px 28px rgba(20, 36, 61, 0.1);
  -webkit-tap-highlight-color: transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-copy > .contact-whatsapp:first-of-type {
  grid-area: whatsapp;
  justify-self: center;
}

.contact-copy > .contact-whatsapp-email {
  grid-area: email;
  justify-self: center;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
  border-color: rgba(36, 53, 68, 0.18);
  background: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 1px 2px rgba(20, 36, 61, 0.08),
    0 12px 30px rgba(20, 36, 61, 0.14);
}

.contact-whatsapp:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(36, 53, 68, 0.12),
    0 1px 2px rgba(20, 36, 61, 0.08),
    0 12px 30px rgba(20, 36, 61, 0.14);
}

.contact-whatsapp:active {
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 1px 2px rgba(20, 36, 61, 0.05),
    0 7px 18px rgba(20, 36, 61, 0.09);
}

.contact-whatsapp-copy {
  display: grid;
  min-width: 0;
  gap: 0.28rem;
}

.contact-whatsapp-label {
  color: var(--muted);
  line-height: 1;
}

.contact-whatsapp-number {
  min-width: 0;
  max-width: 100%;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  overflow-wrap: anywhere;
  user-select: all;
  -webkit-user-select: all;
}

.contact-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
}

.contact-whatsapp-logo img {
  height: 100%;
  object-fit: contain;
}

.contact-whatsapp:not(.contact-whatsapp-email) .contact-whatsapp-number {
  font-size: clamp(0.84rem, 0.64rem + 0.65vw, 1.05rem);
  line-height: 1.2;
}

.contact-whatsapp-email .contact-whatsapp-number {
  font-size: clamp(0.78rem, 0.58rem + 0.65vw, 1.05rem);
  letter-spacing: 0;
  line-height: 1.2;
  overflow-wrap: normal;
}

.contact-email-icon {
  border-radius: 50%;
  background: var(--text);
  color: #fff;
}

.contact-email-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* Keep the About information compact and centered */
.stay-details,
.guest-reviews {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.guest-reviews {
  margin-top: 1.75rem;
}

/* Keep large-monitor layouts composed without affecting smaller screens */
@media (min-width: 2201px) {
  .story-grid,
  .footer-panel,
  .site-legal {
    width: min(100%, 2200px);
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-mosaic {
    grid-auto-columns: 640px;
  }
}

@media (min-width: 981px) {
  .gallery-lightbox-count {
    padding: 0 1.17rem;
    font-size: 1.235rem;
  }
}

/* Responsive */
@media (min-width: 721px) and (max-width: 1400px) {
  .contact-copy {
    align-items: stretch;
    min-height: 0;
  }

  .contact-heading {
    grid-column: 1 / -1;
  }

}

@media (max-width: 980px) {
  .split-heading {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-auto-columns: minmax(300px, 38vw);
    gap: 1.5rem;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 0.9rem) / 2);
  }

  .contact-suite {
    grid-template-columns: 1fr;
  }

  .availability-card::after {
    display: none;
  }

  .contact-location-preview {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 801px) and (max-width: 980px) {
  .story-grid {
    gap: 2rem;
  }

  .story-image-heading {
    padding-left: 2.25rem;
  }

  .story-card-image3 {
    margin-right: 1.5rem;
  }

  .story-side-note {
    margin-left: 1.5rem;
  }
}

@media (max-width: 800px) {
  .topbar {
    padding: 4rem 1.25rem 0.75rem;
    justify-items: center;
  }

  .brand {
    transform: translateX(-50%);
  }

  .story-grid,
  .story-copy-stack {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .story-copy-stack {
    gap: 1.5rem;
  }

  .story-image-heading {
    padding-left: 1.25rem;
  }

  .story-image-stack {
    margin-top: 0;
  }

  .story-card-image3 {
    margin-right: 0;
  }

  .story-side-note {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --hero-height: 82vh;
  }

  .story .section-heading,
  .stay .section-heading {
    padding: 0 1.25rem;
  }

  .gallery-section .section-heading {
    padding: 0 1.25rem;
  }

  .stay-details {
    gap: 0.4rem;
    padding: 0 1.25rem;
  }

  .contact-copy {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, min(20rem, calc(50% - 0.75rem)))) minmax(0, 1fr);
    justify-content: center;
    align-items: stretch;
    min-height: 0;
  }

  .contact-heading {
    grid-column: 1 / -1;
  }

  .stay .section-heading {
    margin-bottom: 0.9rem;
  }

  .stay .section-heading h2 {
    max-width: 19rem;
    font-size: clamp(1.3rem, 6vw, 1.55rem);
    line-height: 1.12;
  }

  .stay .eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .stay-block,
  .stay-access-note {
    border-radius: 16px;
  }

  .stay-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(36, 53, 68, 0.1);
    border-radius: 12px;
  }

  .stay-fact {
    min-height: 4.75rem;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(36, 53, 68, 0.09);
  }

  .stay-fact > span {
    font-size: 0.78rem;
  }

  .stay-fact strong {
    gap: 0.55rem;
    min-height: 2.2rem;
    font-size: 1.7rem;
  }

  .stay-fact strong img {
    width: 1.2rem;
    height: 1.2rem;
  }

  .guest-icons > span {
    font-size: 0.9rem;
  }

  .stay-fact:nth-child(odd) {
    border-left: 0;
  }

  .stay-fact:nth-child(n + 3) {
    border-bottom: 0;
  }

  .house-rules,
  .stay-access-note {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .house-rule {
    padding: 0.45rem 0.2rem;
    border-left: 1px solid rgba(36, 53, 68, 0.11);
  }

  .house-rule:first-child {
    border-left: 0;
  }

  .house-rule span {
    margin-bottom: 0.25rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .house-rule strong {
    font-size: clamp(0.98rem, 3vw, 1.1rem);
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .amenity-groups {
    gap: 0.85rem;
  }

  .amenity-group {
    padding: 0.45rem 0;
    border-top: 1px solid rgba(36, 53, 68, 0.09);
  }

  .amenity-column .amenity-group:first-child {
    border-top: 0;
  }

  .amenity-group li {
    padding-block: 0.18rem;
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .amenity-group li::before {
    top: 0.62rem;
  }

  .stay-access-note li {
    font-size: 0.8rem;
  }

  .guest-reviews {
    margin-top: 1.8rem;
    padding: 0 1.25rem;
  }

  .guest-reviews-heading h3 {
    font-size: 1.35rem;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 0.75rem) / 2);
    gap: 0.75rem;
  }

  .review-card {
    height: 13rem;
    padding: 1rem;
  }

  .scroll-nav {
    justify-content: space-evenly;
    gap: 0;
    padding: 0.15rem 0.35rem;
  }

  .scroll-nav a {
    min-height: 3rem;
    padding: 0.75rem clamp(0.45rem, 2.7vw, 1rem) 0.85rem;
    font-size: clamp(0.68rem, 2.8vw, 0.9rem);
    letter-spacing: 0.05em;
  }

  .brand {
    justify-items: center;
    width: auto;
    max-width: calc(100vw - 1rem);
  }

  .hero-stage {
    min-height: auto;
    padding-block: 5rem;
  }

  .story-card-image3 {
    min-height: 0;
  }

  .story-card-image3 img {
    height: auto;
  }

  .story-image-heading,
  .story-side-note {
    overflow-wrap: anywhere;
  }

  .story-side-note {
    padding: 0 1.25rem;
  }

  .gallery-mosaic {
    grid-auto-columns: 82vw;
    gap: 1.2rem;
    padding: 0.5rem 1.25rem 0.85rem 0;
  }

  .gallery-arrow-left {
    left: 1.25rem;
  }

  .gallery-arrow-right {
    right: 1.25rem;
  }

  .footer-panel {
    padding: 1.25rem;
  }

  .site-legal {
    padding: 1.1rem 1.25rem max(5rem, calc(env(safe-area-inset-bottom) + 3rem));
  }

  .contact-copy {
    padding: 0 0.25rem;
  }

  .contact-heading {
    grid-column: 1 / -1;
  }

  .contact-location-card {
    padding: 1.15rem;
  }

  .contact-location-cta {
    left: 0.6rem;
    top: 0.6rem;
    min-height: 2.6rem;
    padding: 0.6rem 0.95rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .hero-intro-title {
    max-width: none;
  }

  .topbar {
    padding: 3rem 1.25rem 0.75rem;
  }

  .brand {
    top: 0.5rem;
  }

  .brand-logo {
    width: min(22rem, calc(100vw - 1rem));
    max-width: 22rem;
    filter: none;
  }

  .gallery-lightbox {
    padding: 0.85rem;
  }

  .gallery-lightbox-count {
    font-size: 0.88rem;
  }

  .gallery-lightbox-frame {
    padding-top: 3rem;
    max-width: calc(100vw - 1.7rem);
    max-height: calc(100vh - 1.7rem);
    max-height: calc(100dvh - 1.7rem);
  }

  .gallery-lightbox-image {
    max-height: calc(100vh - 7.5rem);
    max-height: calc(100dvh - 7.5rem);
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom));
    transform: none;
  }

  .gallery-lightbox-prev {
    left: calc(50% - 5rem);
  }

  .gallery-lightbox-next {
    right: calc(50% - 5rem);
  }

  .gallery-lightbox-nav:active,
  .gallery-lightbox-nav.is-tapped {
    transform: scale(0.94);
  }

  .contact-whatsapp,
  .contact-whatsapp-number {
    min-width: 0;
    max-width: 100%;
  }

  .contact-whatsapp-number {
    overflow-wrap: anywhere;
  }

  .contact-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "whatsapp"
      "email";
    gap: 1rem;
    padding: 1.15rem;
  }

  .contact-whatsapp {
    height: 4.75rem;
  }

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

  .availability-card {
    padding: 1.15rem;
  }

  .contact-location-card {
    justify-items: center;
    padding-inline: 0;
    text-align: center;
  }

  .contact-location-head {
    justify-content: center;
    width: 100%;
  }

  .contact-location-name,
  .contact-location-preview,
  .contact-location-address-card {
    margin-left: 0;
  }

  .contact-location-preview {
    justify-self: center;
    width: 100%;
    max-width: 22rem;
  }

  .contact-location-cta {
    left: 0.6rem;
    right: auto;
    top: 0.6rem;
    transform: none;
    white-space: nowrap;
  }

  .site-legal {
    flex-direction: column;
    padding: 1rem 1.25rem max(5rem, calc(env(safe-area-inset-bottom) + 3rem));
  }
}

/* Keep review cards wide enough for their header and three-line preview. */
@media (max-width: 600px) {
  .guest-reviews-heading {
    flex-direction: column;
    gap: 0.75rem;
  }

  .guest-reviews-controls {
    position: static;
  }

  .reviews-track {
    grid-auto-columns: calc(100% - 2rem);
  }

  .review-card {
    height: 15rem;
  }

  .review-progress {
    display: inline-block;
  }
}

@media (max-width: 315px) {
  .stay-facts {
    grid-template-columns: 1fr;
  }

  .stay-fact > span {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(36, 53, 68, 0.1);
  }

  .stay-fact:last-child > span {
    border-bottom: 0;
  }
}

@media (hover: none) {
  .gallery-item:hover img {
    transform: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  }

  .gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  }
}

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

  .gallery-item img,
  .hero-media img,
  .gallery-arrow,
  .gallery-lightbox-nav,
  .review-arrow,
  .review-card,
  .availability-arrow,
  .gallery-lightbox-close {
    transition: none;
  }
}
