/* ==========================================================================
   RAINFOREST SOUL VILLA — Design tokens
   Palette: canopy / parchment / moss / bark / lichen
   Type: Fraunces (display) + Inter (body/UI)
   ========================================================================== */

:root {
  --canopy:        #1F2E1C;
  --canopy-deep:    #131E11;
  --parchment:      #EDE6D6;
  --parchment-soft: #F5F1E7;
  --moss:           #5C7A52;
  --moss-light:     #7C9A6C;
  --bark:           #A8895A;
  --bark-deep:      #8A6D42;
  --lichen:         #C9D4B5;

  --ink:            #1B1F16;
  --ink-soft:       rgba(27, 31, 22, 0.66);

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--parchment-soft);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--bark);
  outline-offset: 3px;
  border-radius: 4px;
}

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss);
}
.label-tag--light { color: var(--lichen); }

/* ==========================================================================
   GRAIN OVERLAY
   ========================================================================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(237, 230, 214, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(31, 46, 28, 0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__mark {
  font-family: var(--font-display);
  line-height: 1;
  color: var(--parchment);
  display: flex;
  flex-direction: column;
  font-weight: 500;
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav__mark { color: var(--canopy); }
.nav__mark-line1 { font-size: 0.95rem; font-style: italic; opacity: 0.85; }
.nav__mark-line2 { font-size: 1.3rem; }

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 0.88rem;
  color: var(--parchment);
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav__links { color: var(--ink); }
.nav__links a {
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.35s var(--ease);
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  border: 1px solid var(--parchment);
  color: var(--parchment);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
}
.nav.scrolled .nav__cta {
  border-color: var(--canopy);
  color: var(--canopy);
}
.nav__cta:hover {
  background: var(--parchment);
  color: var(--canopy);
}
.nav.scrolled .nav__cta:hover {
  background: var(--canopy);
  color: var(--parchment);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 22px; height: 1.5px;
  background: var(--parchment);
  transition: background 0.4s var(--ease), transform 0.3s var(--ease);
}
.nav.scrolled .nav__burger span { background: var(--canopy); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--parchment);
  padding: 12px 32px 24px;
  gap: 4px;
}
.nav__mobile a {
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--canopy);
  border-bottom: 1px solid rgba(31,46,28,0.08);
}
.nav__mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* symmetric cool wave color wash - visible on BOTH left and right */
  background:
    radial-gradient(ellipse 75% 70% at 10% 18%, rgba(124,154,108,0.32) 0%, transparent 58%),
    radial-gradient(ellipse 75% 70% at 90% 18%, rgba(124,154,108,0.32) 0%, transparent 58%),
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(201,212,181,0.14) 0%, transparent 65%),
    linear-gradient(180deg, var(--canopy-deep) 0%, var(--canopy) 55%, #24361F 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__canopy {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.canopy-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 55%;
  display: block;
}
.canopy-layer path { }
.canopy-layer--back path { fill: #263A21; opacity: 0.55; }
.canopy-layer--mid path { fill: #1C2B18; opacity: 0.75; }
.canopy-layer--front path { fill: #131E11; opacity: 0.9; }

.hero__mist {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  background: radial-gradient(ellipse at center, rgba(237,230,214,0.18), transparent 70%);
}
/* balanced left / right - wave wash now mirrors on both sides */
.mist--1 { width: 55vw; height: 300px; top: 18%; left: -8%; animation: drift1 34s ease-in-out infinite; }
.mist--2 { width: 55vw; height: 300px; top: 18%; right: -8%; animation: drift2 40s ease-in-out infinite; }
.mist--3 { width: 50vw; height: 240px; bottom: 8%; left: 25%; animation: drift3 28s ease-in-out infinite reverse; }

@keyframes drift1 {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(60px) translateY(-20px); }
}
@keyframes drift2 {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-70px) translateY(15px); }
}
@keyframes drift3 {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(40px) translateY(-12px); }
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 780px;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lichen);
  margin-bottom: 22px;
  font-weight: 500;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.04;
  color: var(--parchment);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.3s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--lichen);
  font-weight: 400;
}
.hero__sub {
  margin: 28px auto 0;
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(237,230,214,0.78);
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.5s forwards;
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.68s forwards;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--lichen);
  color: var(--canopy-deep);
}
.btn--solid:hover {
  background: var(--parchment);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: rgba(237,230,214,0.4);
  color: var(--parchment);
}
.btn--ghost:hover {
  border-color: var(--parchment);
  background: rgba(237,230,214,0.08);
  transform: translateY(-2px);
}
.btn--wa {
  margin-top: 32px;
  background: var(--moss);
  color: var(--parchment-soft);
}
.btn--wa:hover { background: var(--moss-light); transform: translateY(-2px); }

/* Small variant for reach actions - matches WhatsApp button size */
.reach__actions .btn {
  padding: 11px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.reach__actions .btn--wa {
  margin-top: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,230,214,0.6);
}
.hero__scroll span {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(237,230,214,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* ==========================================================================
   STAY / INTRO
   ========================================================================== */
.stay {
  padding: 130px 24px;
  background: var(--parchment-soft);
}
.stay__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.stay__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.label-rule {
  flex: 1;
  height: 1px;
  background: rgba(92,122,82,0.25);
}
.stay__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.stay__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.18;
  color: var(--canopy);
}
.stay__heading em { font-style: italic; color: var(--moss); }
.stay__text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.stay__text p:last-child { margin-bottom: 0; }

.stay__facts {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(92,122,82,0.2);
  border: 1px solid rgba(92,122,82,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fact {
  background: var(--parchment-soft);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fact__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--bark);
  line-height: 1;
}
.fact__num small { font-size: 1.1rem; font-weight: 400; margin-left: 2px; }
.fact__label {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .stay__grid { grid-template-columns: 1fr; gap: 32px; }
  .stay__facts { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   ROOMS
   ========================================================================== */
.rooms {
  background: var(--canopy);
  padding: 130px 24px 100px;
}
.rooms__header {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
}
.rooms__header .label-tag { display: block; margin-bottom: 20px; }
.rooms__header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--parchment);
  margin-bottom: 20px;
}
.rooms__header p {
  color: rgba(237,230,214,0.68);
  font-size: 1.02rem;
  line-height: 1.7;
}

.rooms__list {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.room-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.room-card--rev { direction: rtl; }
.room-card--rev > * { direction: ltr; }

.room-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0F1810;
}
.room-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.room-card:hover .room-card__media img { transform: scale(1.05); }

.room-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 600;
  margin-bottom: 14px;
}
.room-card__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--parchment);
  margin-bottom: 16px;
}
.room-card__body p {
  color: rgba(237,230,214,0.68);
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.room-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.room-card__specs li {
  font-size: 0.8rem;
  color: var(--lichen);
  border: 1px solid rgba(201,212,181,0.3);
  padding: 7px 14px;
  border-radius: 999px;
}

@media (max-width: 800px) {
  .room-card, .room-card--rev { grid-template-columns: 1fr; direction: ltr; }
}

/* Amenity marquee */
.amenity-strip {
  margin-top: 100px;
  border-top: 1px solid rgba(237,230,214,0.14);
  border-bottom: 1px solid rgba(237,230,214,0.14);
  padding: 26px 0;
  overflow: hidden;
}
.amenity-strip__track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(237,230,214,0.55);
}
.amenity-strip__track span:nth-child(2n) { color: var(--bark); font-style: normal; font-family: var(--font-body); font-size: 0.9rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SURROUNDS
   ========================================================================== */
.surrounds {
  background: var(--parchment-soft);
  padding: 130px 24px;
}
.surrounds__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.surrounds__text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--canopy);
  margin: 18px 0 22px;
  line-height: 1.16;
}
.surrounds__text h2 em { font-style: italic; color: var(--moss); }
.surrounds__text > p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 44px;
}
.surrounds__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.surrounds__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.surrounds__icon {
  font-size: 1.3rem;
  color: var(--bark);
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(168,137,90,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.surrounds__item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--canopy);
  margin-bottom: 4px;
}
.surrounds__item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.surrounds__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.surrounds__media img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 900px) {
  .surrounds__inner { grid-template-columns: 1fr; }
  .surrounds__media { order: -1; aspect-ratio: 16/10; }
}

/* ==========================================================================
   BOAT TOUR
   ========================================================================== */
.boat {
  background: var(--canopy);
  padding: 110px 24px;
}
.boat__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.boat__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: #0F1810;
}
.boat__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.boat__media:hover img { transform: scale(1.04); }
.boat__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--canopy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.boat__text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--parchment);
  margin: 18px 0 18px;
  line-height: 1.16;
}
.boat__text h2 em { font-style: italic; color: var(--lichen); }
.boat__text > p {
  color: rgba(237,230,214,0.72);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 24px;
}
.boat__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.boat__features li {
  font-size: 0.92rem;
  color: rgba(237,230,214,0.82);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.boat__features li::before {
  content: "›";
  position: absolute;
  left: 6px; top: 0;
  color: var(--bark);
  font-weight: 700;
}
.boat__features li strong { color: var(--parchment); font-weight: 600; }
.boat__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.boat__actions .btn--sm {
  padding: 11px 18px;
  font-size: 0.84rem;
  font-weight: 600;
}
.boat__actions .btn--wa { margin-top: 0; }
.boat__actions .btn--maps {
  border-color: rgba(237,230,214,0.35);
  color: var(--parchment);
}
.boat__actions .btn--maps:hover {
  border-color: var(--parchment);
  background: rgba(237,230,214,0.08);
}
.boat__note {
  margin-top: 16px;
  font-size: 0.84rem;
  color: rgba(237,230,214,0.5);
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .boat__inner { grid-template-columns: 1fr; }
  .boat__media { aspect-ratio: 16/10; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: var(--canopy);
  padding: 120px 24px 100px;
}
.gallery__header {
  max-width: var(--container);
  margin: 0 auto 48px;
}
.gallery__header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--parchment);
  margin-top: 16px;
}
.gallery__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__note {
  max-width: var(--container);
  margin: 40px auto 0;
  color: rgba(237,230,214,0.5);
  font-size: 0.88rem;
  font-style: italic;
}

@media (max-width: 800px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

/* ==========================================================================
   REACH / CONTACT
   ========================================================================== */
.reach {
  background: var(--parchment-soft);
  padding: 130px 24px;
}
.reach__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.reach__text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--canopy);
  margin: 18px 0 20px;
}
.reach__text h2 em { font-style: italic; color: var(--moss); }
.reach__text > p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}
.reach__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(92,122,82,0.2);
  margin-bottom: 8px;
}
.reach__row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(92,122,82,0.2);
  font-size: 0.95rem;
}
.reach__row-label {
  color: var(--moss);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.reach__row a:hover { color: var(--bark); }

.reach__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn--maps {
  border-color: var(--canopy);
  color: var(--canopy);
  background: transparent;
}
.btn--maps:hover {
  background: var(--canopy);
  color: var(--parchment-soft);
  transform: translateY(-2px);
}

.reach__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  border: 1px solid rgba(92,122,82,0.2);
  position: relative;
}
.reach__map iframe {
  width: 100%; height: 100%; border: 0; filter: sepia(8%) saturate(85%);
}
.reach__map-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.96);
  color: var(--canopy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
  transition: all 0.3s var(--ease);
}
.reach__map-link:hover {
  background: var(--canopy);
  color: var(--parchment-soft);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .reach__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--canopy-deep);
  padding: 60px 24px 34px;
  text-align: center;
}
.footer__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--parchment);
  margin-bottom: 14px;
}
.footer__addr {
  color: rgba(237,230,214,0.5);
  font-size: 0.86rem;
  margin-bottom: 28px;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  font-size: 0.85rem;
  color: rgba(237,230,214,0.7);
}
.footer__links a:hover { color: var(--lichen); }
.footer__copy {
  color: rgba(237,230,214,0.32);
  font-size: 0.78rem;
}
.footer__dev {
  margin-top: 12px;
  color: rgba(237,230,214,0.42);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.footer__dev a {
  color: rgba(237,230,214,0.78);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168,137,90,0.5);
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.footer__dev a:hover {
  color: var(--lichen);
  text-decoration-color: var(--lichen);
}

/* ==========================================================================
   RESPONSIVE TYPE / SPACING TWEAKS
   ========================================================================== */
/* WhatsApp floating button - bottom right */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.14);
  z-index: 120;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0,0,0,0.26);
}
.wa-float:active { transform: scale(0.98); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@media (max-width: 600px) {
  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (max-width: 600px) {
  .stay, .rooms, .surrounds, .gallery, .reach { padding-left: 20px; padding-right: 20px; }
  .stay__facts { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 70px; }
}