/* ─────────────────────────────────────────────
   L'Horizon Bleu — Design System
   Soft · Tropical · Premium
───────────────────────────────────────────── */

:root {
  /* Palette */
  --cream:        #FAF8F3;
  --cream-2:      #F2EDE2;
  --cream-3:      #E8DFD0;
  --ocean:        #4A8C9F;
  --ocean-light:  #7DBCCC;
  --ocean-pale:   #EBF4F7;
  --sand:         #C49A5A;
  --sand-light:   #E0BC88;
  --sand-pale:    #FBF3E4;
  --green:        #6A9B7E;
  --green-light:  #98C4AB;
  --dark:         #1B2E38;
  --dark-2:       #2C4250;
  --text:         #3A5062;
  --text-2:       #6A8898;
  --text-3:       #9AACB8;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-xs:   0 2px 8px  rgba(27, 46, 56, 0.06);
  --shadow-sm:   0 4px 20px rgba(27, 46, 56, 0.08);
  --shadow-md:   0 8px 36px rgba(27, 46, 56, 0.12);
  --shadow-lg:   0 16px 60px rgba(27, 46, 56, 0.16);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 140, 159, 0.30);
}
.btn-primary:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 140, 159, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 1.5px solid var(--ocean-light);
}
.btn-outline:hover {
  background: var(--ocean-pale);
  transform: translateY(-2px);
}
.btn-sand {
  background: var(--sand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 154, 90, 0.30);
}
.btn-sand:hover {
  background: #B38B4A;
  transform: translateY(-2px);
}
.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.75rem; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  padding: 15px 36px;
  font-size: 0.875rem;
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.40);
}

/* ── Section helpers ── */
.section { padding: 96px 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--ocean  { background: var(--ocean-pale); }
.section--dark   { background: var(--dark); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--ocean);
}
.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }


/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ocean-light);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: rgba(255,255,255,1); }
.navbar.scrolled .nav-links a { color: var(--text-2); }
.navbar.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  transition: all 0.28s var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.navbar.scrolled .nav-cta {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.navbar.scrolled .nav-cta:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
}
.nav-cta svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Nav Dropdown ── */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a {
  display: flex; align-items: center; gap: 5px;
}
.nav-item-dropdown > a .nav-chevron {
  width: 10px; height: 10px; flex-shrink: 0;
  transition: transform 0.25s;
}
.nav-item-dropdown:hover > a .nav-chevron,
.nav-item-dropdown.open > a .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%; transform: translateX(-50%);
  min-width: 210px;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(27,46,56,0.16), 0 0 0 1px rgba(27,46,56,0.06);
  padding: 6px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s, transform 0.22s;
  z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-header {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-3);
  padding: 8px 12px 4px;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 9px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text) !important; text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { background: var(--ocean-pale); color: var(--ocean) !important; }
.nav-dropdown-img {
  width: 36px; height: 26px; border-radius: 5px;
  object-fit: cover; background: var(--cream-2); flex-shrink: 0;
}
.nav-dropdown-car-info { flex: 1; min-width: 0; }
.nav-dropdown-car-name { font-size: 0.8rem; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-dropdown-car-price { font-size: 0.7rem; color: var(--text-2); }
.nav-dropdown-divider { height: 1px; background: var(--cream-2); margin: 4px 0; }
.nav-dropdown-skel { height: 42px; border-radius: 9px; background: linear-gradient(90deg,#eee 25%,#f5f5f5 50%,#eee 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; margin: 4px 0; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(250,248,243,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--cream-3);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu > a {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--cream-2);
  transition: color 0.2s;
}
.mobile-menu > a:last-of-type { border-bottom: none; }
.mobile-menu > a:hover { color: var(--ocean); }


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 46, 56, 0.28) 0%,
    rgba(27, 46, 56, 0.44) 50%,
    rgba(27, 46, 56, 0.62) 100%
  );
}
/* Subtle warm tint */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196, 154, 90, 0.12) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.1s var(--ease) forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  animation: heroFadeIn 1.1s 0.15s var(--ease) both;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
  animation: heroFadeIn 1.1s 0.25s var(--ease) both;
}
.hero-name em {
  font-style: italic;
  font-weight: 500;
  color: #B8DEE8;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 24px 0;
  animation: heroFadeIn 1.1s 0.4s var(--ease) both;
}
.hero-rule span {
  display: block;
  width: 56px; height: 1px;
  background: rgba(255,255,255,0.22);
}
.hero-rule p {
  font-size: 0.6875rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  animation: heroFadeIn 1.1s 0.52s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: color 0.25s;
  animation: heroFadeIn 1.1s 0.8s var(--ease) both;
}
.hero-scroll:hover { color: rgba(255,255,255,0.65); }
.hero-scroll svg {
  width: 18px; height: 18px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}


/* ════════════════════════════════════════════
   STATS BAND
════════════════════════════════════════════ */
.stats-band {
  background: var(--dark);
  padding: 36px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-num em { font-style: italic; color: #B8DEE8; }
.stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}


/* ════════════════════════════════════════════
   VILLA SECTION
════════════════════════════════════════════ */
.villa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

/* Gallery */
.gallery-main-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-2);
  box-shadow: var(--shadow-md);
}
.gallery-main-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.gallery-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  z-index: 2;
}
.gallery-nav-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
.gallery-nav-btn.prev { left: 12px; }
.gallery-nav-btn.next { right: 12px; }
.gallery-nav-btn svg { width: 18px; height: 18px; }
.gallery-counter {
  position: absolute;
  bottom: 12px; right: 14px;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.8);
  background: rgba(27,46,56,0.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0;
  width: 64px; height: 46px;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s;
  opacity: 0.52;
}
.gallery-thumb:hover { opacity: 0.78; }
.gallery-thumb.active {
  border-color: var(--ocean);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(74,140,159,0.22);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Villa details */
.villa-details { display: flex; flex-direction: column; gap: 22px; }

.villa-stars {
  display: flex; align-items: center; gap: 8px;
}
.villa-stars .stars {
  display: flex; gap: 2px;
}
.villa-stars .stars svg { width: 15px; height: 15px; color: var(--sand); fill: var(--sand); }
.villa-stars span { font-size: 0.8125rem; color: var(--text-2); margin-left: 2px; }

.villa-location {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.villa-location svg { width: 16px; height: 16px; color: var(--ocean); flex-shrink: 0; }

.villa-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.villa-spec {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 14px 10px;
  text-align: center;
  border: 1px solid var(--cream-2);
}
.spec-icon { font-size: 1.25rem; margin-bottom: 5px; line-height: 1; }
.spec-val { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: 2px; }
.spec-lbl { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }

.villa-features-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.villa-features-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.4;
}
.villa-features-list li::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ocean);
  flex-shrink: 0;
  opacity: 0.6;
}

.villa-price-block {
  padding-top: 18px;
  border-top: 1px solid var(--cream-2);
}
.villa-price-label { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.villa-price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.villa-price-unit { font-size: 0.875rem; color: var(--text-2); margin-left: 4px; }

.villa-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }


/* ════════════════════════════════════════════
   CARS SECTION
════════════════════════════════════════════ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.car-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,46,56,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.car-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-2);
}
.car-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.car-card:hover .car-img-wrap img { transform: scale(1.05); }
.car-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--dark);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.car-price-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--ocean);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-full);
  box-shadow: 0 2px 8px rgba(74,140,159,0.35);
}

.car-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.car-body .btn { margin-top: auto; }
.car-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.car-spec-tag {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem;
  color: var(--text-2);
  background: var(--ocean-pale);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.car-spec-tag svg { width: 12px; height: 12px; color: var(--ocean); }


/* ════════════════════════════════════════════
   EXPERIENCE SECTION
════════════════════════════════════════════ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.exp-card { text-align: center; }
.exp-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--ocean-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.25s, transform 0.25s;
}
.exp-card:hover .exp-icon {
  background: var(--ocean);
  transform: translateY(-3px);
}
.exp-icon svg { width: 24px; height: 24px; color: var(--ocean); transition: color 0.25s; }
.exp-card:hover .exp-icon svg { color: var(--white); }
.exp-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.exp-text { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }


/* ════════════════════════════════════════════
   GALLERY STRIP
════════════════════════════════════════════ */
.gallery-strip-section {
  padding: 80px 0 0;
  background: var(--cream);
  overflow: hidden;
}
.gallery-strip-header {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto 36px;
}
.gallery-strip-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 24px 24px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip-scroll::-webkit-scrollbar { display: none; }
.gallery-strip-scroll:active { cursor: grabbing; }
.gallery-strip-img {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-strip-img:hover img { transform: scale(1.05); }


/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-sm); }
.review-quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--ocean-light);
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.55;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 14px; height: 14px; color: var(--sand); fill: var(--sand); }
.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 22px;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--cream-2); }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ocean-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ocean);
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 500; color: var(--dark); }
.review-tag { font-size: 0.75rem; color: var(--text-3); }


/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 112px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(27,46,56,0.6), rgba(27,46,56,0.3));
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}
.cta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 6px;
}
.cta-title em { font-style: italic; color: #B8DEE8; }
.cta-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.cta-contact-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.22s;
}
.cta-contact-link:hover { color: rgba(255,255,255,0.7); }
.cta-contact-link svg { width: 14px; height: 14px; }


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: #101E26;
  color: rgba(255,255,255,0.38);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name em { font-style: italic; color: #B8DEE8; }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.social-btn:hover { background: var(--ocean); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-contacts a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.22s;
}
.footer-links a:hover, .footer-contacts a:hover { color: rgba(255,255,255,0.75); }
.footer-contacts { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--ocean-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }


/* ════════════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s;
  z-index: 990;
  box-shadow: 0 4px 20px rgba(27,46,56,0.28);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--ocean);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(74,140,159,0.4);
}
.scroll-top-btn svg { width: 18px; height: 18px; }


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* Switch horizontal reveal animations to vertical on mobile to prevent overflow */
@media (max-width: 900px) {
  .reveal-left  { transform: translateY(22px); }
  .reveal-right { transform: translateY(22px); }
  .reveal-left.visible  { transform: translateY(0); }
  .reveal-right.visible { transform: translateY(0); }
}

@media (max-width: 1200px) {
  .cars-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .villa-specs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .villa-layout { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .gallery-main-wrap { max-width: 100%; }
  .gallery-thumbs { overflow-x: auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .experience-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stat-item { min-width: 120px; }
  .car-reviews-grid { grid-template-columns: 1fr; }
  .scroll-top-btn { bottom: 20px; right: 16px; width: 40px; height: 40px; }
  .villa-details { gap: 16px; }
  .villa-specs-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .villa-spec { padding: 10px 6px; }
  .spec-val { font-size: 1rem; }
  .car-usps { gap: 6px; }
  .section-subtitle { font-size: 0.875rem; }
}

@media (max-width: 640px) {
  .cars-grid { grid-template-columns: 1fr; }
  .car-card { max-width: 460px; margin-inline: auto; width: 100%; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; flex-wrap: unset; }
  .stat-item { min-width: unset; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+3) { border-bottom: none; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .hero-name { font-size: clamp(2.8rem, 13vw, 5rem); }
  .hero-actions { flex-direction: column; gap: 10px; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .experience-grid { grid-template-columns: 1fr; }
  .villa-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner > :first-child { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .villa-cta-row { flex-direction: column; }
  .villa-cta-row .btn { justify-content: center; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 12px; }
  .car-reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-thumb { width: 52px; height: 38px; }
  .car-usp-chip { font-size: 0.6875rem; padding: 4px 10px; }
  .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .villa-specs-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .spec-lbl { font-size: 0.55rem; letter-spacing: 0.1em; }
  .hero-name { font-size: clamp(2.5rem, 12vw, 4rem); }
  .nav-logo { font-size: 1.1rem; }
  .car-usps { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
