/* ================================================
   VivaLuxx — Modern Minimal CSS
   Clean · Animated · Light
   ================================================ */

/* --- Variables --- */
:root {
  /* Colors */
  --bg: #FAFAFA;
  --bg-alt: #F2F0ED;
  --bg-dark: #2A3327;
  --text: #111111;
  --text-light: #666666;
  --text-muted: #999999;
  --accent: #C4A484;
  --accent-dark: #A68B6B;
  --sea: #6B9B9B;
  --sea-light: #8FBFBF;
  --white: #FFFFFF;
  --border: #E5E2DE;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration: 0.6s;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* --- Utilities --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-label--lg {
  font-size: 0.875rem;
  letter-spacing: 0.22em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

.section-subtitle + .section-subtitle {
  margin-top: 1.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}

.btn--primary:hover {
  background: transparent;
  color: var(--text);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 164, 132, 0.3);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border: 1px solid #25D366;
  font-size: 0.9375rem;
  padding: 1rem 2rem;
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--booking {
  background: #003580;
  color: var(--white);
  border: 1px solid #003580;
}

.btn--booking:hover {
  background: #00224e;
  border-color: #00224e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 53, 128, 0.3);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.nav.scrolled .nav__logo {
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after { width: 100%; }

.nav.scrolled .nav__link {
  color: var(--text-light);
}

.nav.scrolled .nav__link:hover { color: var(--text); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: var(--white);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}

.nav__cta svg { flex-shrink: 0; }

.nav__cta:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.nav__cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  padding: 0.875rem 1.5rem;
  background: #25D366;
  color: var(--white);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}

.nav__cta-mobile:hover { background: #1fb855; }

.nav__lang {
  position: relative;
}

.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s var(--ease);
}

.nav.scrolled .nav__lang-btn { color: var(--text-light); }
.nav__lang-btn:hover { color: var(--accent); }

.nav__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}

.nav__lang:hover .nav__lang-menu,
.nav__lang-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  color: var(--text-light);
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.lang-option:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.lang-option.active {
  color: var(--accent);
  font-weight: 600;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav.scrolled .nav__burger span { background: var(--text); }

.nav__mobile {
  display: none;
  padding: var(--space-md);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.nav__mobile.open { display: block; }

.nav__mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__mobile-link:hover { color: var(--accent); }

/* --- Host Mini --- */
.host-mini {
  padding: var(--space-lg) 0;
  background: var(--bg-alt);
}

.host-mini__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-md);
  align-items: center;
}

.host-mini__image img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.host-mini__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0.25rem 0 0.5rem;
  color: var(--text);
}

.host-mini__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 560px;
}

@media (max-width: 640px) {
  .host-mini__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .host-mini__text { max-width: 100%; }
}

/* --- Breadcrumb pill (floating in hero) --- */
.breadcrumb-pill {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.breadcrumb-pill__link {
  color: var(--text);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.breadcrumb-pill__link:hover {
  color: var(--accent-dark);
}

.breadcrumb-pill__sep {
  color: var(--text-muted);
}

.breadcrumb-pill__current {
  color: var(--text-light);
}

@media (max-width: 640px) {
  .breadcrumb-pill {
    bottom: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--villa {
  height: 100vh;
}

.hero--villa .hero__bg::after {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 100%
  ) !important;
}

.hero--villa .hero__bg .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFadeRotator 6s infinite ease-in-out;
}

.hero--villa .hero__bg .hero__img:nth-child(2) {
  animation-delay: -3s;
}

@keyframes heroFadeRotator {
  0%, 45% {
    opacity: 1;
  }
  50%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero__content {
  text-align: center;
  color: var(--white);
  padding: var(--space-md);
  max-width: 800px;
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.hero__tagline-slider {
  position: relative;
  height: 1.8em;
  margin-bottom: 0.25rem;
  overflow: hidden;
}

.hero__tagline {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__tagline.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero__tagline-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.hero__tagline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.hero__tagline-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero__tagline-dot.is-active {
  background: var(--white);
  transform: scale(1.4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
}

.hero__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Intro --- */
.intro {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.intro--centered {
  text-align: center;
}

.intro--centered .section-subtitle {
  margin: 0 auto;
}

.intro--centered .section-subtitle + .section-subtitle {
  margin-top: 1.25rem;
}

/* --- Villas Grid (Home) --- */
.villas {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.villas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.villa-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.villa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.villa-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.villa-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.villa-card:hover .villa-card__image img {
  transform: scale(1.05);
}

.villa-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  border-radius: 100px;
}

.villa-card__tagline {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
}

.villa-card__content {
  padding: var(--space-md);
}

.villa-card__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.villa-card__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.villa-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-light);
}

.villa-card__features li {
  position: relative;
  padding-left: 1.25rem;
}

.villa-card__content .btn {
  padding: 1.05rem 2.4rem;
  font-size: 0.9375rem;
}

.villa-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* --- About Section --- */
.about {
  padding: var(--space-xl) 0;
  background: var(--bg-dark);
  color: var(--white);
}

.about__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.about__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* --- Region --- */
.region-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.region-section .container--narrow {
  text-align: center;
}

.region-section__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: var(--space-md);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.region-section__text--emphasis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  margin-top: var(--space-lg);
  max-width: 820px;
}

/* --- Contact CTA --- */
.contact-cta {
  padding: var(--space-xl) 0;
  background: var(--bg);
  text-align: center;
}

.contact-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.contact-cta__text {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto var(--space-md);
}

.contact-cta .btn {
  margin-bottom: var(--space-md);
}

.contact-cta__details {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-light);
}

.contact-cta__details a:hover { color: var(--accent); }

/* --- Footer --- */
.footer {
  padding: var(--space-lg) 0;
  background: var(--text);
  color: var(--white);
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.footer__tagline {
  font-size: 0.9375rem;
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}

.footer__copy {
  font-size: 0.8125rem;
  opacity: 0.4;
}

/* --- Split Section (image + text) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  position: relative;
  overflow: hidden;
}

/* Premium image reveal animation via Intersection Observer */
.split__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ken Burns only on elements opted-in with data-reveal */
.split__image[data-reveal] img {
  transform-origin: center center;
  animation: kenBurns 10s ease-in-out infinite alternate;
}

/* Reveal opacity: starts hidden, fades in when .is-visible is added by JS */
.split__image[data-reveal] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.split__image[data-reveal].is-visible {
  opacity: 1;
}

/* Shimmer overlay: single sweep on reveal */
.split__image[data-reveal]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  z-index: 2;
  pointer-events: none;
  transition: none;
}
.split__image[data-reveal].is-visible::before {
  animation: shimmerSweep 1s 0.8s ease-out forwards;
}

/* Hover overlay: detail text on kitchen image */
.split__image--detail .split__image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2rem 1.5rem 1.2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 3;
}
.split__image--detail:hover .split__image-caption {
  transform: translateY(0);
}
.split__image--detail:hover img {
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

/* Crossfade for split images containing multiple photos, overriding single animation */
.split__image--crossfade[data-reveal] img {
  animation: kenBurns 10s ease-in-out infinite alternate, heroFadeRotator 6s infinite ease-in-out;
}
.split__image--crossfade[data-reveal] img:nth-child(2) {
  animation-delay: 0s, -3s;
}

/* Keyframes */
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-1%, -0.5%); }
}

@keyframes shimmerSweep {
  0%   { transform: translateX(-100%); opacity: 1; }
  100% { transform: translateX(200%); opacity: 1; }
}

/* --- "El Espacio" intro section --- */
.the-space {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--bg);
  text-align: center;
}

.the-space__text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 680px;
  margin: 1.5rem auto 2.5rem;
}

.the-space__stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.the-space__stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-alt);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.the-space__stat:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.the-space__stat-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  background: var(--bg);
}

.split__content--dark {
  background: var(--bg-alt);
}

.split__text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}


/* --- List Highlights --- */
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space-md);
}

.highlight-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.highlight-list__item svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

/* --- Features Grid --- */
.features-grid {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.features-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.features-grid__grid--centered {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
}

.features-grid__grid--centered > * {
  flex: 0 0 calc(33.333% - (var(--space-md) * 2 / 3));
  max-width: calc(33.333% - (var(--space-md) * 2 / 3));
}

@media (max-width: 900px) {
  .features-grid__grid--centered > * {
    flex: 0 0 calc(50% - (var(--space-md) / 2));
    max-width: calc(50% - (var(--space-md) / 2));
  }
}

@media (max-width: 480px) {
  .features-grid__grid--centered > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-md);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.feature-card__keywords {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sea);
  margin-bottom: var(--space-sm);
  font-style: italic;
  display: block;
}

.feature-card__img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: var(--bg-alt);
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.04);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Gallery Grid --- */
.gallery-grid {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.gallery-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-sm);
}

.gallery-grid__item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item--large {
  grid-column: span 2;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

/* --- Gallery Modal --- */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}

.gallery-modal__close:hover { opacity: 1; }

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.5;
  transition: opacity 0.2s;
  z-index: 10;
}

.gallery-modal__nav:hover { opacity: 1; }
.gallery-modal__nav--prev { left: 1rem; }
.gallery-modal__nav--next { right: 1rem; }

.gallery-modal__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}

.gallery-modal__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.gallery-modal__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.875rem;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

/* --- Virtual Tour Modal --- */
/* --- Practical Info --- */
.practical {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.practical__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.practical__block {
  background: var(--white);
  padding: var(--space-md);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.practical__block h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.practical__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.practical__list li {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.practical__list li strong {
  color: var(--text);
  font-weight: 500;
}

.practical__list .rule-ok { color: #2E7D32; }
.practical__list .rule-no { color: #C62828; }

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 100px;
}

.badge--rating {
  background: #FFF3E0;
  color: #E65100;
}

.badge--oceanfront {
  background: #E0F2F1;
  color: #00695C;
}

/* --- Other Villa --- */
.other-villa {
  padding: var(--space-lg) 0;
  background: var(--bg);
}

.other-villa__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--bg-alt);
  border-radius: 20px;
  overflow: hidden;
}

.other-villa__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.other-villa__content {
  padding: var(--space-lg);
}

.other-villa__content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.other-villa__content p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* --- Virtual Tour Section --- */
.tour-section {
  padding: var(--space-xl) 0;
  background: var(--bg-dark);
  text-align: center;
}

.tour-section .section-title {
  color: #fff !important;
}

.tour-embed-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.tour-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.tour-embed__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.tour-embed__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.tour-embed__play svg {
  display: block;
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.tour-embed__play span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tour-embed__overlay:hover .tour-embed__play {
  transform: translate(-50%, -50%) scale(1.05);
}

.tour-embed__overlay:hover .tour-embed__play svg {
  transform: scale(1.1);
}

.tour-embed__caption {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.tour-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
}

.tour-modal--open {
  display: block;
}

.tour-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.tour-modal__close svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tour-modal__close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .tour-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    padding: 10px 16px;
    font-size: 0.9375rem;
  }
}

.tour-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Who is it for --- */
.who-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.who__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.who__card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-alt);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
}

.who__card:hover {
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.who__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--sea);
}

.who__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.who__text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Area Section --- */
.area-section {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.area-map-wrapper {
  position: relative;
  margin-bottom: var(--space-md);
}

.area-map {
  width: 100%;
  border: 0;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  max-height: 340px;
  display: block;
}

.area-map-card {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  max-width: 280px;
  z-index: 2;
}

.area-map-card .section-title {
  font-size: 1.25rem;
}

.area-map-card .section-subtitle {
  font-size: 0.8125rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .area-map-card {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .area-map-wrapper {
    margin-bottom: var(--space-md);
  }
}

.area__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.area__card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.area__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.area__card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Hosts Section --- */
.hosts-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.hosts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hosts__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hosts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hosts__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.hosts__content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.hosts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split__image {
    aspect-ratio: 16/9;
  }

  /* Disable reveal on small screens - just fade in faster */
  .split__image[data-reveal] {
    transition: opacity 0.6s ease;
    opacity: 0;
  }
  .split__image[data-reveal].is-visible {
    opacity: 1;
  }

  .split__content {
    padding: var(--space-lg);
  }

  .split--reverse { direction: ltr; }

  .hosts__inner {
    grid-template-columns: 1fr;
  }

  .hosts__image {
    order: -1;
    max-height: 400px;
  }

  .the-space__stats {
    gap: 0.75rem;
  }

  .the-space__stat {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 480px) {
  .the-space__stats {
    flex-direction: column;
    align-items: center;
  }
  .the-space__stat {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/* --- Area Categories --- */
.area-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.area-cat {
  background: var(--white);
  border-radius: 16px;
  padding: var(--space-md);
  border: 1px solid var(--border);
}

.area-cat__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--sea);
}

.area-cat__header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.area-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.area-list__name {
  color: var(--text-light);
}

.area-list__dist {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.8125rem;
  white-space: nowrap;
  margin-left: 0.5rem;
}

@media (max-width: 1024px) {
  .area-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* --- Services Section --- */
.services-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-cat {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: var(--space-md);
}

.service-cat__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.service-cat__title svg {
  color: var(--sea);
  flex-shrink: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .area-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .area-categories {
    grid-template-columns: 1fr;
  }
}


/* --- Services Section --- */
.services-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-cat {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: var(--space-md);
}

.service-cat__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.service-cat__title svg {
  color: var(--sea);
  flex-shrink: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .nav__links,
  .nav__lang {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__stats {
    gap: var(--space-md);
  }

  .villas__grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-grid__item--large {
    grid-column: span 2;
  }

  .other-villa__card {
    grid-template-columns: 1fr;
  }

  .contact-cta__details {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .gallery-modal__content {
    padding: 50px 20px;
  }

  .gallery-modal__nav {
    width: 44px;
    height: 44px;
  }

  .gallery-modal__nav--prev { left: 0.25rem; }
  .gallery-modal__nav--next { right: 0.25rem; }

  .intro,
  .villas,
  .about,
  .contact-cta,
  .features-grid,
  .gallery-grid,
  .practical,
  .tour-section,
  .who-section,
  .area-section,
  .hosts-section,
  .other-villa {
    padding: var(--space-lg) 0;
  }

  .who__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid__grid > * {
    grid-column: span 1 !important;
  }
}

@media (max-width: 480px) {
  .gallery-grid__grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid__item--large {
    grid-column: span 1;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .features-grid__grid,
  .who__grid,
  .area__grid {
    grid-template-columns: 1fr;
  }

  .features-grid__grid > * {
    grid-column: span 1 !important;
  }
}

/* ================================================
   MOBILE OPTIMIZATIONS (< 480px) - FORCED INTER FONT
   ================================================ */
@media (max-width: 480px) {
  /* Base - Force Inter font everywhere */
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Force Inter on all text elements */
  p, span, div, li, ul, a, button, label, input, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  }

  /* Container */
  .container,
  .container--narrow {
    padding: 0 1rem !important;
  }

  /* Sections - comfortable spacing */
  .intro, .villas, .about, .contact-cta, .features-grid,
  .gallery-grid, .practical, .tour-section, .who-section,
  .area-section, .hosts-section, .other-villa, .services-section {
    padding: 2rem 0 !important;
  }

  /* Section Label */
  .section-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem !important;
    color: #92400e !important;
  }

  /* Section Title - BIG and bold */
  .section-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
    color: #1f2937 !important;
  }

  /* Section Subtitle */
  .section-subtitle {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
  }

  /* Intro text - paragraphs */
  .intro__text {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: #374151 !important;
  }

  /* Hero */
  .hero__label {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fbbf24 !important;
  }

  .hero__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 40px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    color: #fff !important;
  }

  .hero__subtitle {
    font-size: 19px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.95) !important;
  }

  .hero__stat-value {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #fff !important;
  }

  .hero__stat-label {
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85) !important;
  }

  /* Split section text */
  .split__text {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: #4b5563 !important;
  }

  .split__content h2 {
    font-size: 26px !important;
    font-weight: 600 !important;
  }

  /* Highlight lists */
  .highlight-list__item {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #374151 !important;
  }

  /* Villa Card */
  .villa-card__name {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #1f2937 !important;
  }

  .villa-card__desc {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
  }

  .villa-card__features li {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #4b5563 !important;
  }

  /* Feature Card */
  .feature-card {
    padding: 1.25rem 1rem !important;
  }

  .feature-card__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
  }

  .feature-card__text {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
  }

  /* Who Card */
  .who__card {
    padding: 1.5rem 1.25rem !important;
  }

  .who__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
  }

  .who__text {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
  }

  /* Area Cat */
  .area-cat {
    padding: 1.25rem !important;
  }

  .area-cat__header h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
  }

  .area-list li {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #374151 !important;
  }

  .area-list__dist {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
  }

  /* Service Cat */
  .service-cat {
    padding: 1.25rem !important;
  }

  .service-cat__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
  }

  .service-list li {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #374151 !important;
  }

  /* Practical Block */
  .practical__block h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
  }

  .practical__list li {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #374151 !important;
  }

  /* Hosts Content */
  .hosts__content h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #1f2937 !important;
  }

  .hosts__content p {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: #4b5563 !important;
  }

  /* CTA */
  .contact-cta__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #1f2937 !important;
  }

  .contact-cta__text {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
  }

  .contact-cta__details {
    font-size: 18px !important;
  }

  /* Nav */
  .nav__logo {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
  }

  /* Other villa */
  .other-villa__content h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
  }

  .other-villa__content p {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }

  /* Grids - 1 column */
  .villas__grid, .who__grid, .area-categories,
  .services-grid, .practical__grid,
  .other-villa__card, .hosts__inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .features-grid__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .gallery-grid__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 140px;
  }

  .gallery-grid__item--large {
    grid-column: span 2 !important;
  }

  /* Footer */
  .footer__brand {
    font-size: 20px !important;
    font-weight: 600 !important;
  }

  .footer__tagline {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .footer__copy {
    font-size: 13px !important;
  }

  /* Testimonials mobile */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .testimonial-card {
    padding: 1.25rem !important;
  }

  .testimonial-card__text {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .testimonial-card__name {
    font-size: 16px !important;
  }

  .testimonial-card__meta {
    font-size: 13px !important;
  }

  .testimonials-rating {
    padding: 0.75rem 1rem !important;
  }

  .testimonials-rating__score {
    font-size: 2rem !important;
  }

  .testimonials-rating__stars {
    font-size: 1rem !important;
  }

  /* Hero CTA mobile */
  .hero__cta {
    margin-top: 1.5rem !important;
  }

  .hero__cta .btn--whatsapp {
    padding: 0.875rem 1.5rem !important;
    font-size: 14px !important;
  }
}
/* ================================================
   TABLET OPTIMIZATIONS (481px - 768px)
   ================================================ */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 calc(var(--space-md) * 0.75);
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .features-grid__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .who__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .area-categories {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero__title {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}



/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.testimonials-rating {
  display: inline-flex !important;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: #1A5F4A !important;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26,95,74,0.25);
}

.testimonials-rating__score {
  font-family: var(--font-display) !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  line-height: 1 !important;
}

.testimonials-rating__info {
  text-align: left;
}

.testimonials-rating__stars {
  color: #FFB700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.testimonials-rating__label {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500 !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-card {
  background: var(--white) !important;
  border-radius: 10px !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  transition: box-shadow 0.3s ease !important;
}

.testimonial-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.testimonial-card__rating {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1A5F4A !important;
  color: var(--white) !important;
  width: 32px !important;
  height: 32px !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  margin-bottom: 0.75rem !important;
  align-self: flex-end !important;
}

.testimonial-card__text {
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #333333 !important;
  margin-bottom: 1rem !important;
  flex: 1 !important;
  font-style: normal !important;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #F0F0F0 !important;
  color: #333333 !important;
  border: 1px solid #E0E0E0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  flex-shrink: 0 !important;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}

.testimonial-card__meta {
  font-size: 0.8125rem;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonials-rating {
    padding: 0.75rem 1rem;
  }

  .testimonials-rating__score {
    font-size: 2.25rem;
  }
}

/* --- Hero CTA --- */
.hero__cta {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 0.75rem 1rem;
  background: var(--white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.sticky-cta__btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.sticky-cta.hidden {
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* Hero CTA improvements */
.hero__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* Show sticky CTA only on mobile */
@media (max-width: 768px) {
  .sticky-cta {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
  }

  body {
    padding-bottom: 80px;
  }

  .hero__cta {
    margin-top: var(--space-md);
  }
}

/* ================================================
   MOBILE CTA BAR (appears on scroll)
   ================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  width: 100%;
  box-sizing: border-box;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: #25D366;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.mobile-cta-bar__btn:active {
  background: #1fb855;
}

.mobile-cta-bar__btn svg {
  flex-shrink: 0;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-cta-bar,
  #mobileCta {
    display: block !important;
  }
  body {
    padding-bottom: 90px;
  }
}

/* Reset body padding on desktop */
@media (min-width: 769px) {
  body {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 769px) {
  .mobile-cta-bar,
  #mobileCta {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ================================================
   FORCE HIDE STICKY CTA ON DESKTOP
   ================================================ */
@media (min-width: 769px) {
  #mobileCta,
  div[id="mobileCta"],
  .mobile-cta-bar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(110%) !important;
  }
  body {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 90px !important;
  }
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  background: #f0f0f0;
}

.faq-item[open] {
  border-color: #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none !important;
  transition: background 0.2s ease;
}

/* Hide ALL native summary markers in every browser */
summary {
  list-style: none !important;
  -webkit-list-style: none !important;
}

summary::-webkit-details-marker {
  display: none !important;
}

summary::marker {
  display: none !important;
  content: '' !important;
}

.faq-item__question:hover {
  background: #f0f0f0;
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .faq-item__question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
  .faq-item__answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
  }
}

