:root {
  --color-bg: #efeae0;
  --color-bg-alt: #e1d8c3;
  --color-ink: #241b12;
  --color-ink-soft: #5b5040;
  --color-timber: #96501d;
  --color-timber-deep: #7a3f16;
  --color-pine: #3e5843;
  --color-pine-deep: #2c4032;
  --color-espresso: #241b12;
  --color-cream: #fbf6ec;
  --color-whatsapp: #3fa876;
  --color-line: #d8ccb0;
  --font-display: 'Zilla Slab', Georgia, serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--color-espresso);
  text-wrap: balance;
}

h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.center { text-align: center; }

.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--color-timber);
  margin: 0 0 .6em;
}
.section-eyebrow.light { color: #d8a465; }
.section-eyebrow.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .85em 1.6em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--color-cream); outline-offset: 3px; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(63,168,118,.6);
}
.btn-whatsapp:hover { background: #369268; }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-outline-light {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(251,246,236,.5);
}
.btn-outline-light:hover { background: rgba(251,246,236,.1); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
}
.site-header.scrolled {
  background: rgba(239, 234, 224, .94);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 18px rgba(36,27,18,.1);
}
.site-header.scrolled .header-inner { padding: .85rem 1.5rem; }

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .25s ease;
}
.site-header.scrolled .logo { color: var(--color-espresso); }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  opacity: .92;
  transition: color .25s ease, opacity .2s ease;
}
.nav-desktop a:hover { opacity: 1; }
.site-header.scrolled .nav-desktop a { color: var(--color-ink); }

.nav-cta {
  background: var(--color-timber);
  color: #fff !important;
  padding: .5em 1.2em;
  border-radius: 999px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--color-timber-deep); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--color-espresso); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: var(--color-cream);
  transition: max-height .3s ease;
}
.nav-mobile.open { max-height: 400px; box-shadow: 0 10px 20px rgba(36,27,18,.1); }
.nav-mobile a {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 600;
  border-top: 1px solid rgba(36,27,18,.08);
}

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-mobile { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(560px, 92svh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,14,9,.55) 0%, rgba(18,14,9,.32) 45%, rgba(18,14,9,.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 7rem 1.5rem 4rem;
  max-width: 46rem;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 700;
  color: #d8a465;
  margin-bottom: .9em;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 8vw, 5rem);
  margin-bottom: .25em;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.92);
  max-width: 34rem;
  margin: 0 auto 1.8em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: .85;
  animation: bob 2.2s ease-in-out infinite;
  z-index: 2;
}
.scroll-cue svg { width: 26px; height: 26px; }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Intro */
.intro { padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 10vw, 8rem); }
.intro-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.intro-text p { color: var(--color-ink-soft); font-size: 1.05rem; max-width: 38em; }
.intro-image { position: relative; }
.intro-image::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--color-timber);
  border-radius: 14px;
  z-index: -1;
}
.intro-image img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 24px 40px -20px rgba(36,27,18,.4);
}
@media (min-width: 860px) {
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .intro-image { margin-top: 1.5rem; }
}

/* Amenities */
.amenities {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--color-bg-alt);
}
.amenities-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
.amenity-card {
  background: var(--color-cream);
  border-radius: 14px;
  padding: 1.9rem 1.7rem;
  box-shadow: 0 14px 30px -18px rgba(36,27,18,.3);
}
.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-timber);
  margin-bottom: 1.1rem;
}
.amenity-card:nth-child(2n) .amenity-icon { color: var(--color-pine); }
.amenity-icon svg { width: 1.5rem; height: 1.5rem; }
.amenity-card h3 { margin-bottom: .4em; }
.amenity-card p { color: var(--color-ink-soft); font-size: .95rem; margin: 0; }

/* Gallery */
.gallery { padding: clamp(4rem, 9vw, 7rem) 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--color-bg-alt);
  aspect-ratio: 4/3;
}
.gallery-item:focus-visible { outline: 2px solid var(--color-timber); outline-offset: 3px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Location */
.location {
  padding: clamp(4rem, 9vw, 6rem) 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}
.location-contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.location-inner { max-width: 640px; position: relative; z-index: 1; }
.location-text { font-size: 1.1rem; color: var(--color-ink); text-align: center; }
.location-pending {
  text-align: center;
  font-size: .92rem;
  font-style: italic;
  color: var(--color-ink-soft);
  opacity: .85;
}

/* Contact */
.contact {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: var(--color-espresso);
  background-image: radial-gradient(circle at 20% 20%, rgba(62,88,67,.35), transparent 55%);
}
.contact-inner { max-width: 640px; }
.contact h2 { color: var(--color-cream); }
.contact-text { text-align: center; color: rgba(251,246,236,.82); font-size: 1.05rem; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.site-footer { background: var(--color-espresso); border-top: 1px solid rgba(251,246,236,.1); }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
.logo-footer { color: var(--color-cream); font-size: 1.1rem; }
.footer-note, .footer-year {
  color: rgba(251,246,236,.55);
  font-size: .85rem;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.4);
  z-index: 40;
  transition: transform .2s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 1.7rem; height: 1.7rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14,10,6,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 3rem 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.18); }
.lightbox-close {
  top: 1.2rem; right: 1.2rem;
  width: 2.6rem; height: 2.6rem;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem; height: 3rem;
  font-size: 2rem;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
@media (max-width: 640px) {
  .lightbox-prev { left: .3rem; }
  .lightbox-next { right: .3rem; }
}
