/* ========== TOKENS ========== */
:root {
  --pine-deep:   #14241B;
  --pine:        #1D3326;
  --pine-soft:   #2A4534;
  --cream:       #F5EFE4;
  --cream-soft:  #FAF6EE;
  --sand:        #E9DFCC;
  --terra:       #C96F4A;
  --terra-deep:  #A8552F;
  --gold:        #D9A65C;
  --ink:         #1B1B16;
  --ink-soft:    #51514a;
  --white:       #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 36, 27, .08);
  --shadow-md: 0 10px 30px rgba(20, 36, 27, .14);
  --shadow-lg: 0 24px 60px rgba(20, 36, 27, .22);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream-soft);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }
::selection { background: var(--terra); color: var(--white); }

.container {
  width: min(92%, 1180px);
  margin-inline: auto;
}

/* ========== TYPE HELPERS ========== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.1rem;
}
.section-tag::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--terra);
}
.section-tag--light { color: var(--gold); }
.section-tag--light::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: var(--pine-deep);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 1.4rem;
}
.section-title em {
  font-style: italic;
  color: var(--terra);
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--gold); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2rem;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  border: 1.5px solid transparent;
}
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--terra);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 111, 74, .35);
}
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--pine-deep);
  color: var(--cream);
  margin-top: 2rem;
}
.btn--dark:hover {
  background: var(--pine-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1EBF59;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
}
.btn--full { width: 100%; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__inner {
  width: min(94%, 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.scrolled {
  background: rgba(20, 36, 27, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .65rem 0;
  box-shadow: 0 6px 30px rgba(0,0,0,.18);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.nav__logo-mark { color: var(--gold); font-size: .85rem; }
.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  transition: color .3s;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  transition: background .3s, transform .3s !important;
}
.nav__cta:hover { background: var(--terra-deep); transform: translateY(-1px); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 102;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
  margin-inline: auto;
}
.nav__burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  animation: heroZoom 18s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 24, 17, .5) 0%, rgba(13, 24, 17, .25) 40%, rgba(13, 24, 17, .72) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(13, 24, 17, .35) 100%);
}
.hero__content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 880px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  padding: .55rem 1.3rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}
.hero__pin { color: var(--gold); font-size: .6rem; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero__line { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,.92);
  max-width: 540px;
  margin: 0 auto 2.6rem;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 4% 2rem;
  color: rgba(255,255,255,.8);
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.hero__scroll-line {
  width: 1.5px;
  height: 52px;
  background: rgba(255,255,255,.35);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--white);
  animation: scrollDrop 2s var(--ease) infinite;
}
@keyframes scrollDrop {
  to { top: 110%; }
}
.hero__scroll-text {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero__rating {
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .15em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .15rem;
}
.hero__rating span {
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Hero entrance animation */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--pine-deep);
  color: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  white-space: nowrap;
  color: var(--sand);
}
.marquee__track i {
  font-style: normal;
  color: var(--terra);
  font-size: .75rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== ABOUT ========== */
.about {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background: var(--cream-soft);
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about__lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.about__lead strong { color: var(--terra-deep); font-weight: 600; }
.about__text > p:not(.about__lead) {
  color: var(--ink-soft);
  font-weight: 300;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--pine-deep);
  line-height: 1.1;
}
.stat__label {
  font-size: .78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
.about__media {
  position: relative;
  padding-bottom: 3.5rem;
}
.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img img {
  transition: transform 1s var(--ease);
}
.about__img:hover img { transform: scale(1.05); }
.about__img--main {
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lg);
}
.about__img--float {
  position: absolute;
  bottom: 0;
  left: -14%;
  width: 52%;
  aspect-ratio: 4/3;
  border: 6px solid var(--cream-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about__sticker {
  position: absolute;
  top: -2.6rem;
  right: -1.2rem;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  background: var(--pine-deep);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.about__sticker-text {
  position: absolute;
  inset: 0;
  animation: spin 16s linear infinite;
}
.about__sticker-text text {
  font-size: 8.5px;
  letter-spacing: .18em;
  fill: var(--sand);
  font-family: var(--font-body);
  font-weight: 600;
}
.about__sticker-icon { font-size: 1.7rem; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== GALLERY / BENTO ========== */
.gallery {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background: var(--pine-deep);
  background-image: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(217, 166, 92, .08), transparent);
}
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.gallery__header .section-title { margin-bottom: 0; }
.gallery__hint {
  color: rgba(245, 239, 228, .55);
  font-size: .9rem;
  font-weight: 300;
  padding-bottom: .6rem;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.bento__item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--pine-soft);
}
.bento__item img {
  transition: transform .9s var(--ease), filter .6s;
}
.bento__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 24, 17, .65), transparent 45%);
  opacity: 0;
  transition: opacity .5s;
}
.bento__item:hover img,
.bento__item:focus-visible img { transform: scale(1.07); }
.bento__item:hover::after,
.bento__item:focus-visible::after { opacity: 1; }
.bento__label {
  position: absolute;
  left: 1.1rem;
  bottom: .9rem;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.bento__item:hover .bento__label,
.bento__item:focus-visible .bento__label {
  opacity: 1;
  transform: translateY(0);
}
.bento__item--a { grid-column: span 2; grid-row: span 2; }
.bento__item--b { grid-column: span 2; }
.bento__item--c { grid-column: span 1; }
.bento__item--d { grid-column: span 1; }
.bento__item--e { grid-column: span 1; }
.bento__item--f { grid-column: span 2; }
.bento__item--g { grid-column: span 1; }
.bento__item--h { grid-column: span 1; }
.bento__item--i { grid-column: span 2; }
.bento__item--j { grid-column: span 1; }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 20, 15, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox__figure {
  max-width: min(88vw, 1100px);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lightbox__figure img {
  max-height: 76vh;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__figure figcaption {
  text-align: center;
  color: var(--sand);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .3s, transform .3s;
  backdrop-filter: blur(6px);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ========== AMENITIES ========== */
.amenities {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background: var(--cream);
}
.amenities__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.amenity {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  border: 1px solid rgba(20, 36, 27, .06);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), opacity .9s var(--ease) !important;
}
.amenity:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.amenity__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--terra);
  margin-bottom: 1.2rem;
  transition: background .4s, color .4s;
}
.amenity:hover .amenity__icon {
  background: var(--pine-deep);
  color: var(--gold);
}
.amenity__icon svg { width: 26px; height: 26px; }
.amenity h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--pine-deep);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.amenity p {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ========== CTA BAND ========== */
.cta-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-band__media {
  position: absolute;
  inset: 0;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 24, 17, .68), rgba(13, 24, 17, .68));
}
.cta-band__content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 5rem 1.5rem;
  max-width: 680px;
}
.cta-band__content h2 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-band__content em {
  font-style: italic;
  color: var(--gold);
}
.cta-band__content p {
  font-weight: 300;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
}

/* ========== LOCATION ========== */
.location {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background: var(--cream-soft);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.location__text p { color: var(--ink-soft); font-weight: 300; margin-bottom: .8rem; }
.location__text p:first-of-type {
  color: var(--ink);
  font-weight: 400;
  font-size: 1.1rem;
}
.location__detail { font-size: .95rem; }
.location__list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.location__list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 500;
  color: var(--pine-deep);
  font-size: .95rem;
}
.location__list span { color: var(--terra); font-size: .6rem; }
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ========== CONTACT ========== */
.contact {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background: var(--pine-deep);
  background-image: radial-gradient(ellipse 70% 50% at 80% 110%, rgba(201, 111, 74, .12), transparent);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__info p {
  color: rgba(245, 239, 228, .75);
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 1.02rem;
  max-width: 420px;
}
.contact__social {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2.2rem;
}
.contact__social span {
  font-size: .85rem;
  color: rgba(245, 239, 228, .6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--cream);
  transition: background .35s, transform .35s, color .35s;
}
.social-link:hover {
  background: var(--gold);
  color: var(--pine-deep);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-lg);
}
.contact-form__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--pine-deep);
  margin-bottom: 1.6rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--pine-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(201, 111, 74, .12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B3AC9E; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #E5F3E8;
  color: #256B36;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-align: center;
  font-size: .9rem;
}
.form-success.visible { display: block; }

/* ========== FOOTER ========== */
.footer {
  background: var(--pine-deep);
  color: rgba(245, 239, 228, .65);
  padding: 0 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer__top {
  padding: 3.5rem 0 2rem;
  overflow: hidden;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  color: rgba(245, 239, 228, .14);
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p { font-size: .88rem; line-height: 1.9; font-weight: 300; }
.footer__links,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer__links a,
.footer__social a {
  font-size: .9rem;
  font-weight: 400;
  width: fit-content;
  transition: color .3s, transform .3s;
}
.footer__links a:hover,
.footer__social a:hover { color: var(--gold); transform: translateX(4px); }
.footer__copy {
  text-align: center;
  padding-top: 1.5rem;
  font-size: .78rem;
  color: rgba(245, 239, 228, .35);
}

/* ========== FLOATING WHATSAPP ========== */
.fab-whatsapp {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 38px rgba(37, 211, 102, .5);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-hero { opacity: 1; transform: none; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .bento { grid-auto-rows: 170px; }
}

@media (max-width: 900px) {
  .about__grid,
  .location__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__media { margin-inline: 1rem; }
  .amenities__grid { grid-template-columns: 1fr 1fr; }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .bento__item--a { grid-column: span 2; grid-row: span 2; }
  .bento__item--b,
  .bento__item--f,
  .bento__item--i { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .location__map { height: 340px; }
}

@media (max-width: 700px) {
  .nav__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    position: fixed;
    inset: 0;
    background: rgba(20, 36, 27, .97);
    backdrop-filter: blur(20px);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }
  .nav__links a { font-size: 1.35rem; }
  .nav__burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions .btn { width: min(100%, 320px); }
  .hero__rating { display: none; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .stat__label { font-size: .68rem; }
  .about__sticker { width: 96px; height: 96px; top: -1.8rem; right: 0; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: .6rem; }
  .lightbox__nav--next { right: .6rem; }
}

@media (max-width: 520px) {
  .amenities__grid { grid-template-columns: 1fr; }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .bento__item--a,
  .bento__item--b,
  .bento__item--f,
  .bento__item--i { grid-column: span 1; grid-row: span 1; }
  .about__img--float { left: -4%; }
  .gallery__header { margin-bottom: 2rem; }
}
