/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f6f1e6;
  --bg-2:      #ece0c6;
  --paper:     #fffdf8;
  --ink:       #1c231f;
  --ink-soft:  #2b332e;
  --ink-mute:  #6b7168;
  --accent:    #1f6f68;   /* deep ocean teal */
  --accent-2:  #c1903f;   /* sand gold */
  --accent-ink: #0f3d38;
  --line:      rgba(28, 35, 31, 0.13);
  --shadow-color: 28, 35, 31;

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --nav-h: 84px;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--paper);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-ink);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.eyebrow-line { display: flex; align-items: center; gap: .55rem; }

.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-head {
  max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-top: .6rem;
  font-style: italic;
}
.section-head p { margin-top: 1rem; color: var(--ink-mute); font-size: 1.08rem; max-width: 52ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center p { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: .92rem;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(var(--shadow-color), 0.1), 0 1px 3px rgba(var(--shadow-color), 0.08);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { box-shadow: 0 22px 44px rgba(31,111,104,0.28), 0 10px 20px rgba(var(--shadow-color),0.16); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--ink); box-shadow: 0 14px 30px rgba(var(--shadow-color),0.1); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-icon { width: 1.05rem; height: 1.05rem; flex: none; }

/* =============================================================
   4. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background-color .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(246, 241, 230, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .75rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-brand { display: flex; align-items: center; gap: .65rem; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; }
.nav-brand img { height: 40px; width: 40px; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-link { position: relative; font-size: .93rem; font-weight: 600; padding: .25rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
.nav-toggle {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line);
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease-out), top .3s var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.is-open .nav-toggle span { background: transparent; }
.nav.is-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav.is-open .nav-mobile { clip-path: inset(0); }
.nav-mobile a { font-family: var(--serif); font-size: 2rem; font-style: italic; }
.nav-mobile .btn { margin-top: 1rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* ---- Language switcher ---- */
.lang-switch { position: relative; display: none; }
@media (min-width: 960px) { .lang-switch { display: block; } }
.lang-toggle {
  display: flex; align-items: center; gap: .4rem;
  background: transparent; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .5rem .85rem; font-family: var(--sans); font-size: .82rem; font-weight: 700;
  color: var(--ink); cursor: pointer; transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.lang-toggle:hover { border-color: var(--ink); }
.lang-flag { font-size: 1.05rem; line-height: 1; }
.lang-code { letter-spacing: .05em; }
.lang-chev { width: 13px; height: 13px; transition: transform .3s var(--ease-out); flex: none; }
.lang-switch.is-open .lang-chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 20;
  list-style: none; margin: 0; min-width: 190px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: .4rem;
  box-shadow: 0 24px 48px -18px rgba(var(--shadow-color), 0.4), 0 1px 0 var(--line);
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .3s var(--ease-out);
}
.lang-switch.is-open .lang-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-option {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  background: transparent; border: none; border-radius: 9px; padding: .55rem .65rem;
  font-family: var(--sans); font-size: .88rem; font-weight: 600; color: var(--ink); text-align: left; cursor: pointer;
  transition: background .2s var(--ease-out);
}
.lang-option:hover { background: var(--bg-2); }
.lang-option.is-active { color: var(--accent-ink); background: rgba(31,111,104,0.1); }
.lang-option .lang-flag { font-size: 1.15rem; }

.lang-switch--mobile { display: block; margin-top: .3rem; }
.lang-switch--mobile .lang-toggle {
  font-size: .92rem; padding: .6rem 1.1rem;
}
.lang-switch--mobile .lang-menu {
  position: static; margin-top: .7rem; opacity: 1; transform: none; pointer-events: auto;
  box-shadow: none; border-color: var(--line); background: var(--bg-2);
  display: none; min-width: 220px;
}
.lang-switch--mobile.is-open .lang-menu { display: block; }
.lang-switch--mobile .lang-option { font-size: .92rem; }
@media (min-width: 960px) { .lang-switch--mobile { display: none; } }

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: clip;
  isolation: isolate;
  color: var(--paper);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.14) contrast(1.12) brightness(1.02);
}
/* Real sharpening convolution — only on the static poster (cheap: decoded once).
   Left off the <video> to avoid re-running the kernel every frame. */
.hero-media .hero-poster { z-index: 1; filter: url(#heroSharpen) saturate(1.14) contrast(1.1) brightness(1.02); }
.hero-media.is-video-ready .hero-poster { opacity: 0; transition: opacity .8s var(--ease-out); }
.hero-tint {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(0deg, rgba(15,26,23,0.86) 0%, rgba(15,26,23,0.35) 46%, rgba(15,26,23,0.34) 100%),
    linear-gradient(100deg, rgba(15,26,23,0.4) 0%, transparent 55%);
}
.hero-inner {
  position: relative;
  padding-block: clamp(6rem, 16vw, 8rem) clamp(3rem, 8vw, 5rem);
  width: 100%;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  margin-bottom: 1.4rem;
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: #7fe0b4; box-shadow: 0 0 0 4px rgba(127,224,180,0.22); }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-style: italic;
  max-width: 16ch;
  line-height: 1.02;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero-title em { color: #cfa557; font-style: italic; }
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 46ch;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero-scroll {
  position: absolute; right: 1.5rem; bottom: 1.6rem;
  display: none; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.hero-scroll .line { width: 1px; height: 46px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: #fff; animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
@media (min-width: 720px) { .hero-scroll { display: flex; } }

/* =============================================================
   5b. Booking bar & quick facts
   ============================================================= */
.booking-wrap {
  position: relative; z-index: 20;
  margin-top: clamp(-4.5rem, -7vw, -3rem);
  padding-inline: 1.5rem;
}
.booking-bar {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(var(--shadow-color), 0.45), 0 1px 0 var(--line);
  padding: 1.3rem;
  display: grid; gap: 1rem;
  max-width: var(--container); margin-inline: auto;
}
.booking-field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.booking-field label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute);
}
.booking-field input, .booking-field select {
  width: 100%; min-width: 0; max-width: 100%;
  border: 1.5px solid var(--line); border-radius: 10px; padding: .65rem .7rem;
  font-family: var(--sans); font-size: .92rem; color: var(--ink); background: var(--bg);
}
.booking-field input:focus, .booking-field select:focus { outline: none; border-color: var(--accent); }
.booking-submit { white-space: nowrap; }

@media (min-width: 720px) {
  .booking-bar { grid-template-columns: repeat(4, 1fr) auto; align-items: end; }
}

.quickfacts-wrap { padding-block: 2.6rem 0; }
.quickfacts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
  padding-top: 1.6rem;
}
@media (min-width: 720px) { .quickfacts { grid-template-columns: repeat(4, 1fr); } }
.quickfact { text-align: center; }
.quickfact b { display: block; font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--accent-ink); }
.quickfact span { display: block; font-size: .78rem; color: var(--ink-mute); margin-top: .2rem; }

/* =============================================================
   6. Manifesto / About
   ============================================================= */
.about-grid {
  display: grid; gap: 2.6rem; align-items: start;
}
.about-figure { position: relative; }
.about-num {
  font-family: var(--serif); font-style: italic; font-size: clamp(3.5rem, 9vw, 6.5rem);
  color: var(--accent); line-height: .8; opacity: .9;
}
.about-num small { display: block; font-family: var(--sans); font-style: normal; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-top: .8rem; font-weight: 700; }
.about-text p { font-size: 1.16rem; color: var(--ink-soft); }
.about-text p + p { margin-top: 1.1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.about-stat b { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--accent-ink); }
.about-stat > span { display: block; font-size: .82rem; color: var(--ink-mute); margin-top: .3rem; }

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 0.8fr 1.2fr; gap: 5rem; }
}

/* =============================================================
   7. Rooms
   ============================================================= */
.rooms-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .rooms-grid { grid-template-columns: repeat(4, 1fr); } }

.room-card {
  background: var(--paper);
  border-radius: 22px;
  overflow: clip;
  box-shadow: 0 1px 0 var(--line), 0 20px 40px -30px rgba(var(--shadow-color), 0.4);
  transition: box-shadow .5s var(--ease-soft);
  display: flex; flex-direction: column; height: 100%;
}
.room-card:hover { box-shadow: 0 1px 0 var(--line), 0 34px 60px -24px rgba(var(--shadow-color), 0.32); }
.room-figure { position: relative; aspect-ratio: 4/3; overflow: clip; }
.room-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-soft), filter .5s; }
.room-card:hover .room-figure img { transform: scale(1.08); filter: saturate(1.12) brightness(1.03); }
.room-price {
  position: absolute; left: .9rem; bottom: .9rem;
  background: rgba(15,26,23,0.82); backdrop-filter: blur(6px);
  color: var(--paper); padding: .5rem .9rem; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
}
.room-price b { font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-right: .15rem; }
.room-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.4rem; font-style: italic; }
.room-cap { font-size: .82rem; color: var(--ink-mute); margin-top: .3rem; }
.room-variants {
  margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .55rem;
}
.room-variants li { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.room-variant-name { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.room-variant-name small { display: block; font-weight: 400; font-size: .74rem; color: var(--ink-mute); margin-top: .1rem; }
.room-variant-price { font-family: var(--serif); font-style: italic; font-size: .98rem; color: var(--accent-ink); white-space: nowrap; flex: none; }
.room-features { margin-top: 1rem; margin-bottom: 1.3rem; padding-top: .9rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .4rem; }
.room-features li { font-size: .85rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.room-features li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); flex: none; }
.room-cta {
  margin-top: auto; width: 100%; text-align: center;
  padding: .8rem 1rem; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: .84rem; font-weight: 700; transition: all .35s var(--ease-out);
}
.room-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.rooms-note { margin-top: 2rem; font-size: .88rem; color: var(--ink-mute); }

/* =============================================================
   7c. Perks (Pet Friendly / niños)
   ============================================================= */
.perks-wrap { padding-block: 1.5rem 0; }
.perks-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .perks-grid { grid-template-columns: repeat(2, 1fr); } }
.perk-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  background: linear-gradient(135deg, rgba(31,111,104,0.08), rgba(193,144,63,0.1));
  border: 1px solid var(--line); border-radius: 20px;
  padding: 1.6rem;
}
.perk-emoji { font-size: 2.1rem; line-height: 1; flex: none; }
.perk-card h3 { font-size: 1.2rem; font-style: italic; }
.perk-card p { margin-top: .35rem; font-size: .92rem; color: var(--ink-soft); }
.perk-card small { display: block; margin-top: .6rem; font-size: .78rem; color: var(--ink-mute); }

/* =============================================================
   7b. Dining / Gastronomía
   ============================================================= */
.dining-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .dining-grid { grid-template-columns: repeat(3, 1fr); } }
.dining-card {
  background: var(--paper); border-radius: 20px; overflow: clip;
  box-shadow: 0 1px 0 var(--line), 0 20px 40px -30px rgba(var(--shadow-color), 0.4);
  display: flex; flex-direction: column;
}
.dining-figure { aspect-ratio: 4/3; overflow: clip; }
.dining-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-soft); }
.dining-card:hover .dining-figure img { transform: scale(1.06); }
.dining-figure-icon {
  display: grid; place-items: center; background: var(--bg-2);
}
.dining-figure-icon svg { width: 44px; height: 44px; color: var(--accent); }
.dining-body { padding: 1.5rem; }
.dining-body h3 { font-size: 1.3rem; font-style: italic; }
.dining-body p { margin-top: .5rem; font-size: .92rem; color: var(--ink-mute); }

/* Shared "pending info" placeholder look — dining & offers */
.dining-card.is-placeholder, .offer-placeholder {
  border: 1.5px dashed var(--line); background: transparent;
  box-shadow: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 2.2rem 1.5rem; gap: .6rem; min-height: 220px;
}
.dining-card.is-placeholder svg, .offer-placeholder svg { width: 34px; height: 34px; color: var(--ink-mute); }
.dining-card.is-placeholder h3, .offer-placeholder h3 { font-size: 1.15rem; font-style: italic; color: var(--ink-soft); }
.dining-card.is-placeholder p, .offer-placeholder p { font-size: .88rem; color: var(--ink-mute); max-width: 34ch; }

/* =============================================================
   7d. Offers
   ============================================================= */
.offers-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }
.offer-card {
  background: var(--paper); border-radius: 22px; overflow: clip;
  box-shadow: 0 1px 0 var(--line), 0 20px 40px -30px rgba(var(--shadow-color), 0.4);
  display: flex; flex-direction: column; height: 100%;
  transition: box-shadow .5s var(--ease-soft);
}
.offer-card:hover { box-shadow: 0 1px 0 var(--line), 0 34px 60px -24px rgba(var(--shadow-color), 0.32); }
.offer-figure { position: relative; aspect-ratio: 4/5; overflow: clip; }
.offer-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-soft); }
.offer-card:hover .offer-figure img { transform: scale(1.06); }
.offer-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.offer-price {
  display: inline-block; align-self: flex-start;
  background: var(--accent); color: var(--paper); font-weight: 700; font-size: .82rem;
  padding: .35rem .8rem; border-radius: 999px; margin-bottom: .8rem;
}
.offer-body h3 { font-size: 1.35rem; font-style: italic; }
.offer-tagline { font-size: .88rem; color: var(--ink-mute); margin-top: .3rem; }
.offer-features { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .5rem; }
.offer-features li { font-size: .88rem; color: var(--ink-soft); display: flex; align-items: flex-start; gap: .5rem; }
.offer-footnote { margin-top: 1rem; margin-bottom: 1.3rem; font-size: .82rem; color: var(--ink-mute); font-style: italic; }
.offer-body .room-cta { margin-top: auto; }
.offer-placeholder { border-radius: 20px; max-width: 640px; margin-inline: auto; padding: 3rem 2rem; }

/* =============================================================
   8. Amenities
   ============================================================= */
.section-dark {
  background: var(--ink);
  color: rgba(246, 241, 230, 0.92);
  position: relative; overflow: clip; isolation: isolate;
}
.section-dark::before {
  content: ""; position: absolute; inset: -20% -10% -40% -10%; z-index: -1;
  background:
    radial-gradient(45% 40% at 20% 20%, rgba(31,111,104,0.5), transparent 70%),
    radial-gradient(40% 35% at 85% 70%, rgba(193,144,63,0.28), transparent 70%);
  filter: blur(90px); opacity: .8;
}
.section-dark .kicker { color: #cfa557; }
.section-dark .kicker::before { background: #cfa557; }
.section-dark .section-head h2 { color: #fbf7ee; }
.section-dark .section-head p { color: rgba(246,241,230,0.68); }

.amenities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(246,241,230,0.14);
  border-radius: 20px; overflow: clip;
}
@media (min-width: 720px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); } }
.amenity {
  background: rgba(20,26,23,0.55);
  padding: 2.2rem 1.4rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
  transition: background .4s var(--ease-out);
}
.amenity:hover { background: rgba(31,111,104,0.35); }
.amenity svg { width: 26px; height: 26px; color: #cfa557; }
.amenity span { font-size: .95rem; font-weight: 600; }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee-wrap { padding-block: 2.4rem; border-block: 1px solid var(--line); overflow: hidden; }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: var(--ink-mute); display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track span em { color: var(--accent); font-style: normal; font-size: .9em; }

/* =============================================================
   10. Gallery
   ============================================================= */
.gallery-videos {
  display: flex; gap: 1.1rem; overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory; padding-block: .3rem .6rem;
  scrollbar-width: none;
}
.gallery-videos::-webkit-scrollbar { display: none; }
@media (min-width: 1100px) { .gallery-videos { justify-content: center; } }
.gallery-video-card {
  scroll-snap-align: start; flex: 0 0 auto; width: min(230px, 58vw);
}
.gallery-video-card video {
  width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block;
  border-radius: 18px; background: #000;
  box-shadow: 0 1px 0 var(--line), 0 22px 44px -24px rgba(var(--shadow-color), 0.45);
}
.gallery-videos-caption {
  text-align: center; font-size: .85rem; color: var(--ink-mute); margin: 0 0 2.4rem;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: .8rem; } }
.gallery-item {
  position: relative; overflow: clip; border-radius: 16px; cursor: pointer;
  background: var(--bg-2);
}
.gallery-item--extra { display: none; }
.gallery-more-wrap { display: flex; justify-content: center; margin-top: 2.2rem; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-soft), filter .5s;
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(1.15) brightness(1.04); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,26,23,0.35), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }
@media (min-width: 720px) {
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item:nth-child(9) { grid-row: span 2; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,14,12,0.94);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
  padding: 4rem 1.5rem;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.4rem; right: 1.4rem; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; display: grid; place-items: center; font-size: 1.4rem;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff;
  display: grid; place-items: center; font-size: 1.3rem;
}
.lightbox-prev { left: 1rem; } .lightbox-next { right: 1rem; }

/* =============================================================
   11. Tourism
   ============================================================= */
.tourism-grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .tourism-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; } }
.tourism-figures { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: .8rem; }
.tourism-figures img { border-radius: 18px; object-fit: cover; width: 100%; height: 100%; }
.tourism-figures .fig-tall { aspect-ratio: 3/4; }
.tourism-figures .fig-stack { display: flex; flex-direction: column; gap: .8rem; }
.tourism-figures .fig-short { aspect-ratio: 4/3; }
.tourism-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.tourism-list li { display: flex; gap: .9rem; }
.tourism-list .num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 1.3rem; flex: none; width: 2ch; }
.tourism-list h4 { font-family: var(--sans); font-weight: 700; font-size: 1rem; }
.tourism-list p { font-size: .92rem; color: var(--ink-mute); margin-top: .2rem; }

/* =============================================================
   12. Testimonials
   ============================================================= */
.testi-track {
  display: flex; gap: 1.4rem; overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory; padding-block: .5rem 1.5rem;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 auto; width: min(380px, 84vw);
  background: var(--paper); border-radius: 20px; padding: 2rem;
  box-shadow: 0 1px 0 var(--line), 0 24px 50px -30px rgba(var(--shadow-color),0.35);
}
.testi-stars { display: flex; gap: .2rem; color: var(--accent-2); margin-bottom: 1rem; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p { font-size: 1.02rem; color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; }
.testi-name { margin-top: 1.4rem; font-size: .85rem; font-weight: 700; color: var(--ink-mute); }

/* =============================================================
   13. Location
   ============================================================= */
.location-grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; } }
.location-map { border-radius: 22px; overflow: clip; min-height: 360px; box-shadow: 0 1px 0 var(--line); position: relative; }
.location-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(0.15) contrast(1.02); }
.location-info { display: flex; flex-direction: column; gap: 1.4rem; justify-content: center; }
.location-row { display: flex; gap: 1rem; align-items: flex-start; }
.location-row svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: .15rem; }
.location-row h4 { font-family: var(--sans); font-weight: 700; font-size: .95rem; }
.location-row p, .location-row a { font-size: .95rem; color: var(--ink-mute); margin-top: .2rem; }
.location-row a:hover { color: var(--accent-ink); }

/* =============================================================
   14. Contact
   ============================================================= */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }
.contact-card {
  background: var(--paper); border-radius: 24px; padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 1px 0 var(--line), 0 30px 60px -34px rgba(var(--shadow-color),0.4);
}
.contact-social { display: flex; gap: .8rem; margin-top: 2rem; }
.social-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; transition: all .35s var(--ease-out);
}
.social-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-3px); }
.social-btn svg { width: 19px; height: 19px; }

.field { position: relative; margin-bottom: 1.1rem; }
.field input, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: .98rem;
  transition: border-color .3s var(--ease-out);
}
.field textarea { min-height: 110px; resize: vertical; padding-top: 1.6rem; }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1.05rem;
  pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--ink-mute); font-size: .95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .5rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--accent-ink);
}
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 540px) { .field-row { grid-template-columns: 1fr 1fr; } }

.cta-form { position: relative; }
.cta-form.is-sent .cta-fields { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.cta-fields { transition: opacity .5s var(--ease-out), transform .5s var(--ease-soft); }
.contact-submit { width: 100%; margin-top: .3rem; position: relative; }
.contact-submit .lbl { display: inline-flex; align-items: center; gap: .5rem; }
.form-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.is-sending .lbl-text { opacity: .5; }
.is-sending .form-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.cta-success {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .6s var(--ease-out) .1s, transform .6s var(--ease-soft) .1s;
}
.cta-success.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cta-success svg { width: 44px; height: 44px; color: var(--accent); margin-bottom: 1rem; }
.cta-success h3 { font-size: 1.5rem; font-style: italic; }
.cta-success p { color: var(--ink-mute); margin-top: .5rem; font-size: .95rem; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer {
  background: var(--ink); color: rgba(246,241,230,0.75);
  padding-block: 3.5rem 2rem;
}
.footer-top { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(246,241,230,0.14); }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: #fbf7ee; }
.footer-brand img { height: 34px; width: 34px; object-fit: contain; }
.footer-tag { margin-top: .9rem; font-size: .92rem; max-width: 34ch; color: rgba(246,241,230,0.55); }
.footer-col h5 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #cfa557; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a, .footer-col p { font-size: .92rem; }
.footer-col a:hover { color: #fbf7ee; }
.footer-legal-note { margin-top: 1.1rem; font-size: .78rem; color: rgba(246,241,230,0.4); font-style: italic; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.6rem; font-size: .82rem; color: rgba(246,241,230,0.45); }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(246,241,230,0.18); display: grid; place-items: center; transition: all .3s; }
.footer-social a:hover { background: rgba(246,241,230,0.1); }
.footer-social svg { width: 16px; height: 16px; }

/* =============================================================
   16. Floating social stack
   ============================================================= */
.fab-stack {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 150;
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
}
.fab-social { display: flex; flex-direction: column; align-items: center; gap: .65rem; }
.fab-social a {
  position: relative;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 22px rgba(var(--shadow-color), 0.3);
  transition: transform .4s var(--ease-bounce), box-shadow .35s var(--ease-out);
}
.fab-social a:hover { transform: scale(1.1) translateY(-2px); }
.fab-social a svg { width: 20px; height: 20px; }
.fab-social a.is-facebook { background: #1877f2; }
.fab-social a.is-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.fab-social a.is-tiktok { background: #101010; }

.fab-whatsapp {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  background: #22a06b; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(34,160,107,0.4);
  transition: transform .4s var(--ease-bounce);
}
.fab-whatsapp:hover { transform: scale(1.08) translateY(-2px); }
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #22a06b;
  animation: fabPulse 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes fabPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

@media (max-width: 539px) {
  .fab-social a { width: 40px; height: 40px; }
  .fab-social a svg { width: 17px; height: 17px; }
  .fab-whatsapp { width: 52px; height: 52px; }
  .fab-whatsapp svg { width: 25px; height: 25px; }
}

/* =============================================================
   17. Reveal / scroll effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   18. Responsive niceties
   ============================================================= */
@media (max-width: 539px) {
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* =============================================================
   19. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .fab-pulse { animation: none; }
  .hero-scroll .line::after { animation: none; }
  .marquee-track { animation-duration: 90s !important; }
}
