@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap");

:root {
  --ink: #3a2417;
  --ink-soft: #735c4d;
  --cream: #fff8ef;
  --sand: #f3e4d2;
  --warm-sand: #e8c8a3;
  --sunset: #eb984e;
  --sunset-soft: #f5b041;
  --river: #9fc8d5;
  --deep-river: #4f7f89;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(58, 36, 23, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

.nowrap {
  white-space: nowrap;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 248, 239, 0.12);
  background: rgba(58, 36, 23, 0.58);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.header-brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-brand-tagline {
  display: none;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--sand);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: var(--white);
  background: rgba(235, 152, 78, 0.78);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 248, 239, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(58, 36, 23, 0.42);
  box-shadow: 0 12px 28px rgba(58, 36, 23, 0.14);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 16px;
  right: 16px;
  display: none;
  padding: 10px;
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: var(--radius);
  background: rgba(58, 36, 23, 0.9);
  box-shadow: 0 20px 46px rgba(58, 36, 23, 0.26);
  backdrop-filter: blur(16px);
}

.mobile-menu a {
  display: block;
  padding: 14px 12px;
  border-radius: var(--radius);
  color: rgba(255, 248, 239, 0.92);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu a:hover {
  background: rgba(235, 152, 78, 0.16);
}

.is-menu-open .mobile-menu {
  display: block;
}

.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-bg-desktop-alt,
.hero-bg-mobile-alt {
  display: none;
}

@media (min-width: 621px) {
  .hero-bg-desktop-alt {
    display: block;
    opacity: 0;
    animation: desktopHeroSwap 13s ease-in-out infinite;
  }

  .hero .eyebrow {
    position: relative;
    top: 17px;
  }

  .brand-sub {
    position: relative;
    top: 10px;
  }

  .hero-copy {
    position: relative;
    top: 35px;
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(58, 36, 23, 0.62), rgba(58, 36, 23, 0.28) 48%, rgba(58, 36, 23, 0.04)),
    linear-gradient(0deg, rgba(58, 36, 23, 0.34), rgba(58, 36, 23, 0.02) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin-top: 2vh;
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 20px;
  padding-bottom: 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sunset);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 248, 240, 0.86);
}

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

h1 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.35rem, 8.2vw, 7rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0.04em;
}

.brand-sub {
  margin-bottom: 22px;
  color: rgba(255, 248, 240, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
}

.hero-note {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  text-align: left;
  text-shadow: 0 2px 12px rgba(58, 36, 23, 0.45);
}

@media (max-height: 760px) and (min-width: 760px) {
  .brand-mark img {
    width: 64px;
    height: 64px;
  }

  .hero-content {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  h1 {
    font-size: clamp(3rem, 7vw, 5.35rem);
  }

  .brand-sub {
    margin-bottom: 16px;
  }

  .hero-copy {
    max-width: 700px;
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .hero-strip {
    bottom: 16px;
  }

  .hero-strip span {
    min-height: 48px;
  }
}

.hero-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--sunset);
  color: var(--white);
  border-color: var(--sunset);
  box-shadow: 0 14px 30px rgba(235, 152, 78, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 7vw, 96px);
  right: clamp(18px, 7vw, 96px);
  bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 248, 239, 0.34);
  border-radius: 999px;
  color: rgba(255, 248, 239, 0.92);
  background: rgba(58, 36, 23, 0.42);
  box-shadow: 0 14px 34px rgba(58, 36, 23, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.desktop-only {
  display: none !important;
}

@media (min-width: 621px) {
  .desktop-only {
    display: inline-flex !important;
  }
}

.section-band {
  padding: clamp(44px, 5vw, 68px) clamp(18px, 5vw, 64px);
}

.muted-band {
  background: #f8ecdf;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-grid,
.story-grid,
.location-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.intro-grid {
  align-items: start;
}

.intro-showcase {
  display: grid;
  gap: clamp(32px, 5vw, 54px);
}

.intro-rotator {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.intro-rotator img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  cursor: zoom-in;
  pointer-events: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.intro-rotator img:nth-of-type(9) {
  object-position: center 82%;
}

.intro-rotator img:nth-of-type(3) {
  object-position: center 78%;
}

.intro-rotator img.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1.01);
}

.gallery-arrow,
.lightbox-arrow,
.lightbox-close {
  border: 1px solid rgba(255, 248, 239, 0.4);
  border-radius: 999px;
  color: var(--white);
  background: rgba(58, 36, 23, 0.48);
  box-shadow: 0 14px 32px rgba(58, 36, 23, 0.2);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-arrow:hover,
.lightbox-arrow:hover,
.lightbox-close:hover {
  transform: translateY(-1px);
  background: rgba(235, 152, 78, 0.82);
}

.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-arrow:hover {
  transform: translateY(-50%) translateY(-1px);
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.gallery-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(24, 16, 12, 0.82);
  backdrop-filter: blur(10px);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  width: min(1120px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-arrow:hover {
  transform: translateY(-50%) translateY(-1px);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.intro-grid p:last-child,
.split-heading p:not(.section-kicker),
.location-copy p:not(.section-kicker),
.booking-grid p:not(.section-kicker),
.benefit-panel p,
.story-copy p {
  color: var(--ink-soft);
}

h2 {
  margin-bottom: 20px;
  font-family: "Cormorant SC", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 em {
  color: var(--sunset);
  font-style: italic;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.22;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.compact-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 48px);
  max-width: none;
  align-items: end;
}

.compact-heading p:last-child {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 30px;
}

.amenity-card {
  min-height: auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  align-items: start;
}

.amenity-icon {
  grid-row: span 2;
  display: inline-flex;
  margin-bottom: 0;
  color: var(--sunset);
  padding-top: 2px;
}

.amenity-icon svg {
  width: 30px;
  height: 30px;
}

.amenity-card h3 {
  grid-column: 2;
  margin-bottom: 0;
}

.amenity-card p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 275px;
  gap: 12px;
}

.photo-grid figure,
.owner-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.photo-grid img,
.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid img {
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-grid figure:hover img,
.photo-grid img:focus-visible {
  filter: brightness(1.04);
  transform: scale(1.025);
}

.photo-grid img:focus-visible {
  outline: 2px solid var(--sunset);
  outline-offset: -4px;
}

.photo-grid figure:first-child img {
  object-position: center 68%;
}

.photo-large {
  grid-row: span 2;
}

.photo-grid--4 {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 300px;
}

.house-gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.house-gallery-actions .button {
  min-width: min(100%, 270px);
}

.story-grid {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.owner-photo {
  aspect-ratio: 4 / 5;
}

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

.benefit-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 410px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius);
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.benefit-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(110deg, rgba(58, 36, 23, 0.76) 0%, rgba(79, 127, 137, 0.45) 52%, rgba(58, 36, 23, 0.12) 100%);
}

.benefit-rotator,
.benefit-rotator img {
  position: absolute;
  inset: 0;
}

.benefit-rotator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: benefitImageSwap 20s ease-in-out infinite;
}

.benefit-rotator img:nth-child(2) {
  animation-delay: 5s;
}

.benefit-rotator img:nth-child(3) {
  animation-delay: 10s;
}

.benefit-rotator img:nth-child(4) {
  animation-delay: 15s;
}

.benefit-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.benefit-note {
  position: relative;
  z-index: 2;
}

.benefit-panel .section-kicker {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 24px;
}

.benefit-panel p {
  color: rgba(255, 248, 240, 0.88);
}

.benefit-panel h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 4.2vw, 3.8rem);
  line-height: 1.1;
}

.benefit-cta {
  width: fit-content;
}

@keyframes benefitImageSwap {

  0%,
  18% {
    opacity: 1;
  }

  25%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.termas-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.discount-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 20px 24px;
  border: 2px solid var(--sunset);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(235, 152, 78, 0.06);
}

.discount-callout strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-style: italic;
  font-weight: 600;
  color: var(--sunset);
  line-height: 1;
  margin-bottom: 6px;
}

.discount-callout span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.discount-callout small {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.map-frame {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand);
}

.map-frame iframe {
  width: 100%;
  height: 430px;
  border: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--deep-river);
  font-weight: 600;
  border-bottom: 1px solid rgba(79, 127, 137, 0.34);
}

.intro-link {
  margin-top: 0;
  border-bottom: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.booking-form {
  display: grid;
  gap: 17px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(103, 83, 72, 0.14);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
}

.form-heading strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.form-heading span {
  color: var(--sunset);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(103, 83, 72, 0.2);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: 400 1rem/1.2 "Inter", Arial, sans-serif;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid rgba(235, 152, 78, 0.28);
  border-color: rgba(235, 152, 78, 0.64);
}

.booking-form .button {
  width: 100%;
  border-radius: var(--radius);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--sunset);
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px calc(clamp(16px, 3vw, 28px) + 80px) 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 248, 240, 0.78);
  background: var(--ink);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sunset);
  border: 1px solid rgba(255, 248, 239, 0.46);
  box-shadow: 0 16px 38px rgba(235, 152, 78, 0.28), 0 6px 18px rgba(58, 36, 23, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--sunset-soft);
  box-shadow: 0 18px 44px rgba(235, 152, 78, 0.34), 0 8px 22px rgba(58, 36, 23, 0.2);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  flex: 0 0 auto;
}

.floating-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (min-width: 901px) {
  .section-inner {
    width: min(1100px, 100%);
  }

  .location-grid,
  .booking-grid {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 42px);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .intro-showcase {
    gap: clamp(14px, 1.8vw, 22px);
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .location-copy p,
  .booking-grid>div>p {
    max-width: 580px;
  }

  .intro-grid>p,
  .compact-heading>p {
    max-width: none;
  }

  .split-heading>p {
    max-width: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
  }

  .compact-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
  }
}

.site-footer strong,
.site-footer span {
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer strong {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
}

.site-footer span,
.site-footer a {
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .main-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
  }

  .intro-grid,
  .story-grid,
  .location-grid,
  .booking-grid,
  .split-heading,
  .compact-heading,
  .benefit-panel,
  .termas-heading {
    grid-template-columns: 1fr;
  }

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

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

  .photo-large {
    grid-column: span 2;
    grid-row: span 1;
  }

}

@media (max-width: 620px) {
  .hero-bg {
    object-position: center 65%;
  }

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

  .brand-mark {
    gap: 8px;
  }

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

  .header-brand-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .hero .eyebrow {
    margin-top: 4vh;
    margin-bottom: -4px;
  }

  .header-brand-tagline {
    display: none;
  }

  .hero .brand-sub {
    margin-bottom: 6px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 104vh;
    align-items: start;
    padding-bottom: 0;
  }

  .hero-bg-mobile-alt {
    display: block;
    top: 0;
    bottom: 0;
    height: 100%;
    object-position: center top;
    opacity: 0;
    animation: mobileHeroSwap 11s ease-in-out infinite;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 0;
    padding-top: 88px;
    padding-bottom: calc(190px + 8vh);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 4rem);
    letter-spacing: 0.06em;
  }

  .brand-sub {
    margin-top: 10px;
    letter-spacing: 0.24em;
  }

  .hero-copy {
    max-width: 94%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 8vh;
    margin-bottom: 32px;
    font-size: clamp(2rem, 8.5vw, 2.6rem);
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-actions {
    gap: 10px;
    margin-top: auto;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
    padding: 11px 16px;
    font-size: 0.72rem;
  }

  .hero-note {
    margin-top: 14px;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1.35;
    text-align: center;
  }

  .hero-strip {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .hero-strip span {
    flex: 1 1 calc(50% - 10px);
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .section-band {
    padding: 66px 16px;
  }

  .intro-rotator {
    min-height: 360px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.9rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .compact-heading p:last-child {
    margin-bottom: 0;
  }

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

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
    gap: 10px;
  }

  .photo-large {
    grid-column: span 2;
  }

  .photo-grid figure:nth-child(n + 6) {
    display: none;
  }

  .house-gallery-actions {
    margin-top: 18px;
  }

  .house-gallery-actions .button {
    width: 100%;
    min-height: 54px;
    font-size: 0.72rem;
  }

  .amenity-card {
    min-height: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
    height: 330px;
  }

  .benefit-panel {
    min-height: 430px;
  }

  .form-heading {
    display: grid;
    gap: 4px;
  }

  .site-footer {
    display: grid;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@keyframes mobileHeroSwap {

  0%,
  42% {
    opacity: 0;
  }

  52%,
  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes desktopHeroSwap {

  0%,
  44% {
    opacity: 0;
  }

  54%,
  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}