/* ════════════════════════════════════════════════════════════════
   ATARDECER — Villa & Resort Privado
   Style: Luxury Editorial · Sunset Palette · Caribbean Soul
   ════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Sunset palette */
  --sun:       #F5A623;
  --ember:     #E8572A;
  --dusk:      #C63B5E;
  --horizon:   #1A0A2E;
  --deep:      #0A0814;
  --sand:      #F2E8D0;
  --cream:     #FAF5EB;
  --warm-white:#FFFBF4;

  /* Neutrals */
  --ink:       #110C1E;
  --muted:     #8A7E6E;
  --border:    rgba(245,166,35,0.18);

  /* Gradients */
  --grad-sunset: linear-gradient(135deg, var(--sun) 0%, var(--ember) 50%, var(--dusk) 100%);
  --grad-dark:   linear-gradient(180deg, transparent 0%, rgba(10,8,20,0.95) 100%);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1280px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--deep);
  color: var(--sand);
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.section { padding-block: var(--section-pad); }

/* ════════════════════════════════════════════
   LOADER
   ════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__logo {
  color: var(--sun);
  width: 80px; height: 80px;
  animation: loaderPulse 2s ease-in-out infinite;
}
.loader span {
  font-family: var(--font-sans);
  font-weight: 300; letter-spacing: 0.4em;
  font-size: 0.9rem; color: var(--sand);
}
.loader__bar {
  width: 180px; height: 1px;
  background: rgba(245,166,35,0.2);
  overflow: hidden;
}
.loader__fill {
  height: 100%; width: 0;
  background: var(--grad-sunset);
  animation: loaderFill 2s var(--ease) forwards;
}

@keyframes loaderPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }
@keyframes loaderFill  { to{width:100%} }

/* ════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--sun);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-back), height 0.3s var(--ease-back), background 0.3s;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(245,166,35,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.4s var(--ease-back), height 0.4s var(--ease-back), opacity 0.3s;
}
.cursor.hovering { width: 16px; height: 16px; background: var(--ember); }
.cursor-follower.hovering { width: 60px; height: 60px; opacity: 0.4; }

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10,8,20,0.92);
  backdrop-filter: blur(20px);
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans); font-weight: 300;
  letter-spacing: 0.3em; font-size: 0.85rem;
  color: var(--sand);
  transition: color 0.3s;
}
.nav__logo svg { width: 32px; height: 32px; color: var(--sun); }

.nav__links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,232,208,0.75);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sun);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--sand); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--sun) !important;
  color: var(--sun) !important;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--sun) !important; color: var(--deep) !important; }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none;
  padding: 4px;
}
.nav__toggle span {
  display: block; width: 26px; height: 1px;
  background: var(--sand);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__overlay { display: none; }

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans); font-weight: 400;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-sunset);
  color: #fff;
  box-shadow: 0 4px 24px rgba(232,87,42,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,87,42,0.5);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--sand);
  border: 1px solid rgba(242,232,208,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(242,232,208,0.5);
}
.btn--outline {
  background: transparent;
  color: var(--sun);
  border: 1px solid var(--sun);
}
.btn--outline:hover {
  background: var(--sun);
  color: var(--deep);
}
.btn--sm { padding: 0.6rem 1.5rem; font-size: 0.75rem; }
.btn--full { width: 100%; }

/* ════════════════════════════════════════════
   SECTION LABELS & HEADERS
   ════════════════════════════════════════════ */
.section__label {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section__label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--sun);
}
.section__title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.12; color: var(--cream);
}
.section__title em {
  font-style: italic;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section__desc {
  max-width: 520px;
  color: rgba(242,232,208,0.65);
  line-height: 1.75;
  font-size: 0.95rem;
  font-weight: 300;
}
.section__header {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__header .section__label::before { display: none; }

/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* scroll-triggered */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 110%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,20,0.55) 0%,
    rgba(26,10,46,0.4) 40%,
    rgba(198,59,94,0.15) 70%,
    rgba(10,8,20,0.9) 100%
  );
}

/* Animated sun */
.hero__sun {
  position: absolute;
  bottom: 28%; right: 15%;
  width: 120px; height: 120px;
  transform: translate(50%, 50%);
}
.sun__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF7D1 0%, var(--sun) 50%, var(--ember) 100%);
  box-shadow: 0 0 40px rgba(245,166,35,0.8), 0 0 80px rgba(232,87,42,0.4);
  animation: sunGlow 4s ease-in-out infinite;
}
.sun__ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.25);
  animation: sunRing 3s ease-in-out infinite;
}
.sun__ring--1 { width: 70px; height: 70px; animation-delay: 0s; }
.sun__ring--2 { width: 95px; height: 95px; animation-delay: 0.5s; }
.sun__ring--3 { width: 120px; height: 120px; animation-delay: 1s; }
@keyframes sunGlow { 0%,100%{box-shadow:0 0 40px rgba(245,166,35,0.8),0 0 80px rgba(232,87,42,0.4)} 50%{box-shadow:0 0 60px rgba(245,166,35,1),0 0 120px rgba(232,87,42,0.6)} }
@keyframes sunRing  { 0%,100%{opacity:0.3;transform:translate(-50%,-50%) scale(1)} 50%{opacity:0.6;transform:translate(-50%,-50%) scale(1.05)} }

.hero__horizon {
  position: absolute; bottom: 28%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.4), transparent);
}

.hero__waves {
  position: absolute; bottom: -2px; left: 0; right: 0;
}
.hero__waves svg { display: block; width: 100%; height: auto; }

.hero__content {
  position: relative; z-index: 2;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  padding-top: 6rem;
  max-width: 800px;
}
.hero__eyebrow {
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero__eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--sun);
}
.hero__title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 0.98; color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__title em {
  display: block; font-style: italic;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300; color: rgba(242,232,208,0.7);
  margin-bottom: 2.5rem; letter-spacing: 0.04em;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
}

.hero__scroll {
  position: absolute; bottom: 6%; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; z-index: 2;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(242,232,208,0.45);
}
.scroll__line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(245,166,35,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.5} }

.hero__stats {
  position: absolute; bottom: 8%; right: clamp(1.5rem, 5vw, 4rem);
  display: flex; align-items: center; gap: 2rem;
  z-index: 2;
  background: rgba(10,8,20,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300;
  color: var(--sun); line-height: 1;
}
.stat span {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,232,208,0.55);
}
.stat__divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(245,166,35,0.04);
  padding-block: 1rem;
}
.marquee__track {
  display: flex; gap: 2.5rem; align-items: center;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(242,232,208,0.5);
  font-weight: 300;
}
.marquee__dot { color: var(--sun); font-size: 1rem; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════
   EXPERIENCE
   ════════════════════════════════════════════ */
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.experience__text {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.experience__body {
  color: rgba(242,232,208,0.65);
  line-height: 1.8; font-weight: 300;
  font-size: 0.95rem;
}

.experience__visuals {
  position: relative;
  height: 600px;
}
.experience__img {
  position: absolute;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.experience__img img { transition: transform 0.7s var(--ease); }
.experience__img:hover img { transform: scale(1.04); }

.experience__img--main {
  width: 70%; height: 75%;
  top: 0; right: 0;
  border: 1px solid var(--border);
}
.experience__img--secondary {
  width: 48%; height: 45%;
  bottom: 0; left: 0;
  border: 1px solid var(--border);
}
.experience__img--tertiary {
  width: 30%; height: 30%;
  bottom: 10%; right: 2%;
  border: 1px solid var(--border);
}

.experience__badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(10,8,20,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 0.75rem 1.1rem;
  text-align: center;
  border-radius: 2px;
}
.experience__badge span {
  display: block; font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
}
.experience__badge strong {
  font-family: var(--font-serif); font-size: 1.8rem;
  color: var(--sun); font-weight: 300; line-height: 1;
}

/* ════════════════════════════════════════════
   NUMBERS
   ════════════════════════════════════════════ */
.numbers {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}
.numbers__bg {
  position: absolute; inset: 0;
}
.numbers__bg img { filter: saturate(0.6); }
.numbers__overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,20,0.82);
}
.numbers__content {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  gap: clamp(3rem, 8vw, 7rem);
  flex-wrap: wrap;
}
.number__item { text-align: center; }
.number__item strong {
  display: block;
  font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300; color: var(--sun); line-height: 1;
}
.number__item span {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,232,208,0.5); font-weight: 300;
}

/* ════════════════════════════════════════════
   VILLAS
   ════════════════════════════════════════════ */
.villas__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.villa-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.villa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border-color: rgba(245,166,35,0.4);
}

.villa-card__img {
  position: relative;
  height: 280px; overflow: hidden;
}
.villa-card--featured .villa-card__img { height: 360px; }
.villa-card__img img { transition: transform 0.7s var(--ease); }
.villa-card:hover .villa-card__img img { transform: scale(1.05); }
.villa-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,20,0.7) 0%, transparent 60%);
}

.villa-card__tag {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 1;
  background: var(--grad-sunset);
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; border-radius: 2px;
}

.villa-card__body {
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.villa-card__meta {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,232,208,0.4);
}
.villa-card__body h3 {
  font-family: var(--font-serif); font-size: 1.65rem; font-weight: 300;
  color: var(--cream);
}
.villa-card__body p {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(242,232,208,0.55); font-weight: 300;
}
.villa-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.5rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.villa-card__price {
  display: flex; align-items: baseline; gap: 0.3rem;
}
.villa-card__price span {
  font-size: 0.7rem; color: var(--muted);
}
.villa-card__price strong {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300;
  color: var(--sun);
}

.villas__cta {
  display: flex; justify-content: center;
  margin-top: 3.5rem;
}

/* ════════════════════════════════════════════
   SUNSET SPLIT
   ════════════════════════════════════════════ */
.sunset-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.sunset-split__img {
  overflow: hidden;
}
.sunset-split__img img { height: 100%; transition: transform 0.8s var(--ease); }
.sunset-split:hover .sunset-split__img img { transform: scale(1.04); }

.sunset-split__content {
  background: rgba(26,10,46,0.8);
  padding: clamp(3rem, 8vw, 6rem);
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.5rem;
  border-left: 1px solid var(--border);
}
.sunset-split__content h2 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.15;
  color: var(--cream);
}
.sunset-split__content h2 em {
  font-style: italic;
  background: var(--grad-sunset);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sunset-split__content p {
  color: rgba(242,232,208,0.6); line-height: 1.8; font-weight: 300;
  font-size: 0.95rem;
}
.sunset-split__list {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.sunset-split__list li {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.88rem; color: rgba(242,232,208,0.7);
}
.sunset-split__list svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--sun);
}

/* ════════════════════════════════════════════
   GASTRONOMÍA
   ════════════════════════════════════════════ */
.gastro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.gastro__text {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.gastro__text p {
  color: rgba(242,232,208,0.6); line-height: 1.8; font-weight: 300; font-size: 0.95rem;
}
.gastro__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.gastro__feature {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.gastro__feature:hover {
  border-color: rgba(245,166,35,0.4);
  background: rgba(245,166,35,0.04);
}
.gastro__icon { font-size: 1.5rem; line-height: 1; }
.gastro__feature strong {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.25rem;
}
.gastro__feature span {
  font-size: 0.75rem; color: var(--muted); font-weight: 300;
}

.gastro__imgs {
  position: relative; height: 580px;
}
.gastro__img {
  position: absolute; overflow: hidden;
  border-radius: 3px; border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.gastro__img img { transition: transform 0.7s var(--ease); }
.gastro__img:hover img { transform: scale(1.05); }
.gastro__img--top { width: 75%; height: 65%; top: 0; right: 0; }
.gastro__img--bottom { width: 55%; height: 45%; bottom: 0; left: 0; }

/* ════════════════════════════════════════════
   ACTIVITIES
   ════════════════════════════════════════════ */
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.activity-card {
  position: relative; height: 320px;
  overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border);
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: none;
}
.activity-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.activity-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,20,0.85) 0%, rgba(26,10,46,0.3) 60%, transparent 100%);
  transition: background 0.4s;
}
.activity-card:hover .activity-card__overlay {
  background: linear-gradient(to top, rgba(10,8,20,0.9) 0%, rgba(26,10,46,0.5) 70%, transparent 100%);
}
.activity-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.activity-card:hover .activity-card__content { transform: translateY(0); }
.activity-card__icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.activity-card__content h3 {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 300;
  color: var(--cream); margin-bottom: 0.4rem;
}
.activity-card__content p {
  font-size: 0.8rem; color: rgba(242,232,208,0.6); font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.05s var(--ease), transform 0.4s 0.05s var(--ease);
}
.activity-card:hover .activity-card__content p {
  opacity: 1; transform: translateY(0);
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonials__track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
}
.test__stars { color: var(--sun); letter-spacing: 0.1em; font-size: 0.9rem; }
.testimonial-card p {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 300;
  font-style: italic; line-height: 1.8;
  color: rgba(242,232,208,0.75);
}
.test__author strong {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.2rem;
  font-style: normal; font-family: var(--font-sans);
}
.test__author span {
  font-size: 0.72rem; color: var(--muted);
  font-style: normal; font-family: var(--font-sans);
}
.testimonials__dots { display: none; }

/* ════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 8px;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.gallery__item {
  overflow: hidden; position: relative;
  border-radius: 3px;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item img { transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,20,0.5);
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand); font-weight: 300;
}

/* ════════════════════════════════════════════
   BOOKING
   ════════════════════════════════════════════ */
.booking {
  position: relative;
  padding-block: var(--section-pad);
  overflow: hidden;
}
.booking__bg {
  position: absolute; inset: 0;
}
.booking__bg img { filter: saturate(0.5); }
.booking__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,20,0.92) 40%, rgba(26,10,46,0.85) 100%);
}
.booking__content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.booking__text {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.booking__text p {
  color: rgba(242,232,208,0.6); line-height: 1.8; font-weight: 300; font-size: 0.95rem;
}
.booking__contact {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.booking__link {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.88rem; color: rgba(242,232,208,0.7);
  transition: color 0.3s;
}
.booking__link svg { width: 18px; height: 18px; color: var(--sun); flex-shrink: 0; }
.booking__link:hover { color: var(--sand); }

.booking__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: 6px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.booking__form h3 {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300;
  color: var(--cream); margin-bottom: 0.25rem;
}
.form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form__group {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.form__group label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--sand);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--sun);
  background: rgba(245,166,35,0.05);
}
.form__group select option { background: var(--ink); color: var(--sand); }
.form__group textarea { min-height: 90px; resize: vertical; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: rgba(5,4,12,0.98);
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem; padding-block: 4rem;
}
.footer__brand {
  display: flex; flex-direction: column; gap: 1rem;
}
.footer__logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans); font-weight: 300;
  letter-spacing: 0.3em; font-size: 0.85rem; color: var(--sand);
}
.footer__logo svg { width: 28px; height: 28px; color: var(--sun); }
.footer__brand > p {
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.7; font-weight: 300;
}
.footer__social {
  display: flex; gap: 1rem; margin-top: 0.5rem;
}
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  color: var(--muted);
}
.footer__social a:hover {
  border-color: var(--sun); background: rgba(245,166,35,0.1); color: var(--sun);
}
.footer__social svg { width: 15px; height: 15px; }

.footer__col h4 {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand); font-weight: 400; margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.82rem; color: var(--muted);
  transition: color 0.3s; font-weight: 300;
}
.footer__col a:hover { color: var(--sun); }
.footer__col address {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.footer__col address p {
  font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300;
}
.footer__col address a {
  font-size: 0.82rem; color: var(--muted); transition: color 0.3s;
}
.footer__col address a:hover { color: var(--sun); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer__bottom p {
  font-size: 0.75rem; color: rgba(138,126,110,0.5); font-weight: 300;
}
.footer__bottom-links {
  display: flex; gap: 1.5rem;
}
.footer__bottom-links a {
  font-size: 0.72rem; color: rgba(138,126,110,0.5);
  transition: color 0.3s;
}
.footer__bottom-links a:hover { color: var(--sun); }

/* ════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  background: rgba(10,8,20,0.95);
  border: 1px solid var(--sun);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  font-size: 0.85rem; color: var(--sand);
  display: flex; align-items: center; gap: 0.75rem;
  transform: translateY(100px); opacity: 0;
  transition: transform 0.4s var(--ease-back), opacity 0.4s;
  backdrop-filter: blur(12px);
}
.toast svg { width: 18px; height: 18px; color: var(--sun); flex-shrink: 0; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .villas__grid { grid-template-columns: 1fr 1fr; }
  .villas__grid .villa-card--featured { grid-column: span 2; }
  .activities__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 260px); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; align-items: center;
    background: rgba(5,4,12,0.97);
    backdrop-filter: blur(24px);
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: flex; z-index: 100; }
  .nav__overlay {
    display: block;
    position: fixed; inset: 0; z-index: 98;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
  }
  .nav__overlay.open { opacity: 1; pointer-events: all; }

  .hero__stats {
    position: relative; bottom: auto; right: auto;
    margin-top: 2rem; flex-wrap: wrap; justify-content: center;
  }
  .hero__title { font-size: clamp(3rem, 12vw, 5rem); }

  .experience__grid { grid-template-columns: 1fr; }
  .experience__visuals { height: 400px; }

  .gastro__inner { grid-template-columns: 1fr; }
  .gastro__imgs { height: 350px; }

  .sunset-split { grid-template-columns: 1fr; }
  .sunset-split__img { height: 300px; }

  .booking__content { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .testimonials__track {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1rem; padding-bottom: 1rem;
    scroll-behavior: smooth;
  }
  .testimonial-card {
    min-width: calc(100vw - 4rem); scroll-snap-align: start;
  }
  .testimonials__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
  .test-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(245,166,35,0.3); border: none; cursor: none; transition: background 0.3s, width 0.3s;
  }
  .test-dot--active { background: var(--sun); width: 20px; border-radius: 3px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .activities__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__item { height: 260px; }
  .gallery__item--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; max-width: 260px; }
  .numbers__content { gap: 2rem; }
  .villas__grid { grid-template-columns: 1fr; }
  .villas__grid .villa-card--featured { grid-column: span 1; }
  .gastro__features { grid-template-columns: 1fr; }
}