/* ───── Tokens ───── */
:root {
  --forest: #2d4a3a;
  --forest-deep: #1f3528;
  --forest-soft: #3e6650;
  --beige: #f5ede1;
  --cream: #faf6ef;
  --charcoal: #2a2723;
  --ink: #3d3934;
  --muted: #807769;
  --line: #e6dfd1;
  --terracotta: #c97b50;
  --gold: #d4a574;
  --accent: var(--terracotta);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(42,39,35,.06), 0 1px 3px rgba(42,39,35,.04);
  --shadow:    0 6px 20px rgba(42,39,35,.08), 0 2px 6px rgba(42,39,35,.05);
  --shadow-lg: 0 18px 50px rgba(42,39,35,.18);

  --font-sans: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --max: 1180px;
  --max-narrow: 760px;
  --pad: clamp(16px, 4vw, 32px);
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

/* ───── Layout ───── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.container.narrow { max-width: var(--max-narrow); }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .8em;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.lede { font-size: 1.15rem; color: var(--ink); }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .6em; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .75em 1.4em;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: .55em 1.1em; font-size: .88rem; }
.btn-lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--forest-deep); color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); transform: translateY(-1px); }
.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 6px 18px rgba(37,211,102,.32), 0 1px 3px rgba(0,0,0,.08);
}
.btn-whatsapp:hover {
  background: #1fb955;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(37,211,102,.42), 0 2px 6px rgba(0,0,0,.12);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* ───── Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(230, 223, 209, .6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--forest-deep);
}
.brand-mark { font-size: 1.2rem; }
.primary-nav {
  display: flex;
  gap: 24px;
  font-size: .92rem;
  font-weight: 500;
}
.primary-nav a { color: var(--ink); position: relative; }
.primary-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.primary-nav a:hover { color: var(--forest); }
.primary-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: .35em .7em;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex; gap: 4px; align-items: center;
}
.lang-toggle:hover { border-color: var(--forest); color: var(--forest); }
.lang-toggle [data-lang-active] { color: var(--forest); font-weight: 700; }
.lang-toggle [data-lang-inactive] { color: var(--muted); }
.lang-toggle .sep { color: var(--line); }

@media (max-width: 760px) {
  .primary-nav { display: none; }
}
@media (max-width: 540px) {
  /* Stack the header into two rows: brand on top, actions below — keeps
     the title from wrapping awkwardly on narrow phones. */
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand {
    font-size: 1.1rem;
    white-space: nowrap;
  }
  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }
}
@media (max-width: 360px) {
  /* On very narrow screens, allow the brand to shrink so it still fits */
  .brand-mark { display: none; }
  .brand { font-size: 1.05rem; }
}

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.85) saturate(1.05);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-image { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,53,40,.55) 0%, rgba(31,53,40,.25) 40%, rgba(31,53,40,.7) 100%);
}
.hero-content {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 720px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 500;
  margin: .15em 0 .35em;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 560px;
  color: rgba(255,255,255,.92);
  margin-bottom: 2em;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--cream); border-color: rgba(255,255,255,.7); }
.hero .btn-ghost:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }

/* ───── About ───── */
.section-about { background: var(--cream); }
.features {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.feature:hover .feature-icon { background: var(--forest); color: white; transform: scale(1.05); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--beige);
  color: var(--forest);
  margin-bottom: 14px;
  transition: background .25s, color .25s, transform .25s;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.02rem; margin-bottom: 6px; font-family: var(--font-sans); font-weight: 600; line-height: 1.3; color: var(--forest-deep); }
.feature p { color: var(--muted); margin: 0; font-size: .92rem; line-height: 1.55; }

/* ───── Gallery ───── */
.section-gallery { background: var(--beige); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 32px;
}
.g-item {
  border: none; padding: 0; background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s;
}
.g-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.g-item:hover img { transform: scale(1.06); filter: brightness(1.04); }
.g-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.g-item-tall { grid-row: span 2; }
.g-item-wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .g-item-tall { grid-row: span 1; }
  .g-item-wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-item-wide { grid-column: span 2; }
}

/* ───── Places of interest ───── */
.section-nearby { background: var(--cream); }
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
  margin-top: 48px;
  margin-bottom: 24px;
}
.place {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--forest-deep);
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .3s;
}
.place:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.place:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.place-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.place:hover .place-image { transform: scale(1.06); }
.place-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20,30,24,0) 0%,
    rgba(20,30,24,.05) 35%,
    rgba(20,30,24,.55) 70%,
    rgba(20,30,24,.85) 100%);
  transition: background .3s;
}
.place:hover .place-overlay {
  background: linear-gradient(180deg,
    rgba(20,30,24,.05) 0%,
    rgba(20,30,24,.2) 35%,
    rgba(20,30,24,.7) 70%,
    rgba(20,30,24,.92) 100%);
}
.place-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  color: white;
}
.place-content > p {
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin: 0 0 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s, opacity .3s, margin .3s;
}
.place:hover .place-content > p,
.place:focus-within .place-content > p {
  max-height: 200px;
  opacity: 1;
  margin: 6px 0 12px;
}
.place-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  margin-bottom: 10px;
}
.place-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin: 0 0 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.place-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  margin: 0 !important;
  letter-spacing: .02em;
}
.place-meta .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 980px) {
  .places-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
}
@media (max-width: 560px) {
  .places-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  /* on mobile (no hover), always show body */
  .place-content > p { max-height: 200px; opacity: 1; margin: 6px 0 12px; }
}

/* ───── Reviews ───── */
.section-reviews { background: var(--beige); }
.reviews-summary {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--forest-deep);
  margin: 12px 0 24px;
}
.reviews-summary .stars { color: var(--gold); letter-spacing: .08em; margin-right: 8px; }
/* Carousel: 3 cards visible on desktop, 1 on mobile, both swipeable */
.reviews-carousel {
  position: relative;
  margin-top: 40px;
}
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 18px;          /* room for hover lift + scrollbar */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 74, 58, .25) transparent;
}
.reviews-track::-webkit-scrollbar { height: 6px; }
.reviews-track::-webkit-scrollbar-track { background: transparent; }
.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(45, 74, 58, .2);
  border-radius: 999px;
}
.reviews-track::-webkit-scrollbar-thumb:hover {
  background: rgba(45, 74, 58, .35);
}
/* Each card takes ~1/3 of the visible track on desktop, with the gap accounted for */
.reviews-track .review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 920px) {
  .reviews-track .review-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .reviews-track {
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    scroll-padding-left: 16px;
  }
  .reviews-track .review-card {
    flex-basis: 86%;              /* peek next card to hint at swipe */
  }
}
@media (max-width: 380px) {
  .reviews-track .review-card { flex-basis: 92%; }
}

/* Prev/next nav buttons (shown only when overflow exists) */
.rc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--forest-deep);
  font-size: 1.6rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .2s, color .2s, transform .15s, opacity .2s;
  z-index: 4;
}
.rc-nav:hover { background: var(--forest); color: white; }
.rc-nav:disabled { opacity: .35; cursor: default; pointer-events: none; }
.rc-prev { left: -20px; }
.rc-next { right: -20px; }
@media (max-width: 720px) {
  /* On touch screens swiping is more natural — hide the buttons */
  .rc-nav { display: none; }
}

/* Pagination dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.reviews-dots[hidden] { display: none; }
.reviews-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .2s, transform .2s, width .25s;
}
.reviews-dots button[aria-selected="true"] {
  background: var(--forest);
  width: 22px;
  border-radius: 999px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 18px;
  display: flex;
  flex-direction: column;
  height: 360px;                   /* deterministic preview height */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.review-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.review-stars { color: var(--gold); letter-spacing: .1em; margin-bottom: 10px; flex-shrink: 0; }
.review-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--forest-deep);
  margin: 0 0 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  flex-shrink: 0;
}
.review-body {
  color: var(--ink);
  flex: 1;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  overflow: hidden;
  margin: 0 0 14px;
  font-size: .96rem;
  line-height: 1.55;
}
.review-body.empty { color: var(--muted); font-style: italic; }
/* Soft fade at the bottom of the truncated body to suggest more content */
.review-card .review-body::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 32px;
  background: linear-gradient(180deg, transparent 0%, white 100%);
  pointer-events: none;
}
.review-readmore {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
  flex-shrink: 0;
  letter-spacing: .01em;
}
.review-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px; border-top: 1px solid var(--line);
  font-size: .88rem;
  flex-shrink: 0;
}
.review-author { font-weight: 600; color: var(--forest-deep); }
.review-date { color: var(--muted); }

@media (max-width: 640px) {
  .review-card {
    height: 300px;
    padding: 22px 22px 16px;
  }
  .review-body { -webkit-line-clamp: 5; line-clamp: 5; font-size: .92rem; }
  .review-title { font-size: 1.08rem; }
}

/* ───── Modal / form ───── */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(31,53,40,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp .25s ease-out;
}
.modal-panel h3 { font-size: 1.6rem; margin-bottom: 6px; }
.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 1.8rem; line-height: 1;
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--line); color: var(--ink); }

.field { display: block; margin: 18px 0; border: none; padding: 0; }
.field > span, .field > legend { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field-label-row {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.char-counter {
  font-weight: 500 !important;
  font-size: .78rem !important;
  color: var(--muted) !important;
  margin-bottom: 0 !important;
  font-variant-numeric: tabular-nums;
  transition: color .2s;
}
.char-counter.near-limit { color: var(--accent) !important; }
.char-counter.at-limit { color: #b6452a !important; font-weight: 600 !important; }
.field input[type=text], .field textarea {
  width: 100%;
  font: inherit;
  padding: .7em .9em;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45,74,58,.12);
}
.field textarea { resize: vertical; min-height: 100px; }

/* Rating input: 5 single stars in a row.
 * DOM is [input5, label5, input4, label4, ...] so flex-direction:row-reverse
 * places label1 on the left and label5 on the right, while the
 * `input:checked ~ label` and `label:hover ~ label` selectors light up the
 * hovered/checked star and every star to its left. */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 2px;
}
.rating-input input {
  /* visually hidden but keyboard-accessible */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.rating-input label {
  cursor: pointer;
  color: var(--line);
  font-size: 2rem;
  line-height: 1;
  padding: 4px 2px;
  user-select: none;
  transition: color .15s, transform .1s;
}
.rating-input label:hover { transform: scale(1.08); }

/* Light up hovered star + all visually-leftward stars (= DOM-after siblings) */
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
  color: var(--gold);
}
/* Focus ring on the label adjacent to the focused input */
.rating-input input:focus-visible + label {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
  border-radius: 4px;
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { min-height: 1.2em; font-size: .9rem; margin: 8px 0; }
.form-status.error { color: #b6452a; }
.form-status.success { color: var(--forest); font-weight: 500; }

.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }

/* ───── Review-detail modal (fullscreen review viewer) ───── */
.rd {
  position: fixed; inset: 0;
  z-index: 150;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .2s;
}
.rd[hidden] { display: none; }
.rd-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 30, 24, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.rd-panel {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 36px 36px;
  max-width: 640px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: rdPopIn .25s cubic-bezier(.2,.8,.25,1.05);
  -webkit-overflow-scrolling: touch;
}
@keyframes rdPopIn {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);   opacity: 1; }
}
.rd-close {
  position: absolute;
  top: 14px; right: 16px;
  background: white;
  border: 1px solid var(--line);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.6rem; line-height: 1;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  z-index: 2;
}
.rd-close:hover { background: var(--forest); color: white; border-color: var(--forest); }
.rd-content { color: var(--ink); }
.rd-stars { color: var(--gold); letter-spacing: .12em; font-size: 1.2rem; margin-bottom: 12px; }
.rd-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--forest-deep);
  line-height: 1.2;
  margin: 0 0 18px;
}
.rd-body {
  font-size: 1.02rem;
  line-height: 1.7;
  white-space: pre-wrap;
  margin: 0 0 24px;
}
.rd-body.empty { color: var(--muted); font-style: italic; }
.rd-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.rd-author { font-weight: 600; color: var(--forest-deep); }
.rd-date   { color: var(--muted); }

/* Fullscreen on small phones, with sticky close at the top */
@media (max-width: 560px) {
  .rd { padding: 0; align-items: stretch; justify-content: stretch; }
  .rd-panel {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    padding: 64px 22px 32px;
  }
  .rd-close {
    position: fixed;
    top: 12px; right: 12px;
    box-shadow: var(--shadow);
  }
}

/* ───── Lightbox ───── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15,20,18,.94);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .2s;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.2);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ───── Location ───── */
.section-location { background: var(--cream); }

/* ───── Contact ───── */
.section-contact {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 70%);
  color: var(--cream);
}
.section-contact .section-title { color: white; }
.section-contact p { color: rgba(255,255,255,.85); margin-bottom: 1.8em; }

/* ───── Footer ───── */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,.75);
  padding: 48px 0 32px;
  text-align: center;
}
.site-footer .brand { color: var(--cream); font-size: 1.2rem; justify-content: center; display: flex; gap: 8px; margin-bottom: 8px; }
.site-footer .muted { color: rgba(255,255,255,.55); }

/* ───── Guest perks ───── */
.perks {
  margin: 56px auto 28px;
  padding: 32px 32px 28px;
  background: linear-gradient(135deg, #fff8ed 0%, #fdeed7 100%);
  border: 1px solid #f0dfb8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.perks::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,165,116,.25) 0%, transparent 70%);
  pointer-events: none;
}
.perks-header { position: relative; margin-bottom: 22px; }
.perks-header .eyebrow { color: var(--accent); margin-bottom: .5em; }
.perks-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin: 0;
}
.perk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.perk-row {
  display: flex;
  align-items: center;
  gap: 22px;
  background: white;
  border: 1px solid #f0dfb8;
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: transform .2s, box-shadow .2s;
}
.perk-row:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.perk-badge {
  flex-shrink: 0;
}
.perk-badge-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5em 1em;
  border-radius: 999px;
  white-space: nowrap;
}
.perk-row-body { flex: 1; min-width: 0; }
.perk-row-body h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin: 0 0 4px;
}
.perk-row-body p {
  color: var(--ink);
  margin: 0 0 12px;
  font-size: .94rem;
  line-height: 1.55;
}
.perk-row-body p:last-child { margin-bottom: 0; }
.perk-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .perks { padding: 24px; }
  .perk-row { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
  .perks-header h3 { font-size: 1.3rem; }
}

/* ───── WhatsApp floating widget ───── */
.wa-widget {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  font-family: var(--font-sans);
}
.wa-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.wa-button:hover {
  background: #1fb955;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.15);
}
.wa-button:active { transform: translateY(0); }
.wa-button svg { flex-shrink: 0; }
.wa-button::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: rgba(37,211,102,.5);
  z-index: -1;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.95); opacity: .7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-button-label { display: none; }
  .wa-button { padding: 14px; }
}

/* Panel */
.wa-panel {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,.18), 0 4px 14px rgba(0,0,0,.08);
  transform-origin: bottom right;
  animation: waPopIn .25s cubic-bezier(.2,.8,.25,1.05);
}
.wa-panel[hidden] { display: none; }
@keyframes waPopIn {
  from { transform: scale(.92) translateY(8px); opacity: 0; }
  to   { transform: scale(1) translateY(0);    opacity: 1; }
}

.wa-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--forest);
  color: white;
  position: relative;
}
.wa-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.wa-panel-meta { flex: 1; min-width: 0; }
.wa-panel-name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-serif);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-panel-status {
  margin: 2px 0 0;
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 6px;
}
.wa-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #69e288;
  box-shadow: 0 0 0 0 rgba(105,226,136,.6);
  animation: waDot 1.6s ease-out infinite;
}
@keyframes waDot {
  0%   { box-shadow: 0 0 0 0 rgba(105,226,136,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(105,226,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(105,226,136,0); }
}
.wa-panel-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 1.6rem; line-height: 1;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.wa-panel-close:hover { background: rgba(255,255,255,.15); color: white; }

.wa-panel-body {
  padding: 22px 18px 12px;
  background:
    radial-gradient(circle at 20% 10%, rgba(45,74,58,.04) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,123,80,.05) 0, transparent 50%),
    var(--cream);
}
.wa-bubble {
  background: white;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px 8px;
  font-size: .92rem;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
  position: relative;
  max-width: 92%;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  left: -7px; top: 0;
  width: 10px; height: 14px;
  background: white;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.wa-bubble p { margin: 0 0 4px; }
.wa-bubble-from {
  font-size: .72rem !important;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px !important;
}
.wa-bubble-time {
  font-size: .7rem !important;
  color: var(--muted);
  text-align: right;
  margin: 4px 0 0 !important;
}

.wa-panel-footer {
  padding: 10px 18px 16px;
  background: var(--cream);
}
.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #25d366;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.wa-cta:hover { background: #1fb955; color: white; transform: translateY(-1px); }
.wa-panel-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 8px 0 0;
  font-size: .72rem;
  color: var(--muted);
}

/* ───── New-version pill ───── */
.version-pill {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  font-size: .9rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  animation: pillSlideUp .35s ease-out;
  max-width: calc(100vw - 32px);
}
.version-pill[hidden] { display: none; }
@keyframes pillSlideUp {
  from { transform: translate(-50%, 30px); opacity: 0; }
  to   { transform: translate(-50%, 0);    opacity: 1; }
}
.version-refresh {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.version-refresh:hover { background: #b66c43; transform: translateY(-1px); }
.version-dismiss {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 1.4rem; line-height: 1;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.version-dismiss:hover { background: rgba(255,255,255,.1); color: white; }
@media (max-width: 480px) {
  .version-pill { left: 16px; right: 16px; transform: none; max-width: none; justify-content: space-between; }
  @keyframes pillSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
}

/* ───── Reduced motion ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-image { transform: none; }
  html { scroll-behavior: auto; }
}
