/* =============================================
   CASA DOS SOLES — Design System
   "House of Two Suns"

   Design Language: Mediterranean Warmth
   Motif: Dual suns — togetherness & independence
   Voice: Warm, personal, unhurried
   ============================================= */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  /* The Two Suns palette */
  --sol-gold:         #D4A74E;
  --sol-gold-light:   #E8CC82;
  --sol-gold-faded:   rgba(212, 167, 78, 0.15);

  /* Mediterranean earth */
  --terracotta:       #B8693D;
  --terracotta-dark:  #944F28;
  --terracotta-light: #D49268;
  --terracotta-glow:  rgba(184, 105, 61, 0.35);

  /* Sea & sky */
  --mediterranean:      #1A6178;
  --mediterranean-dark: #0E3D50;

  /* Warm neutrals */
  --sand:           #E5D2B3;
  --sand-light:     #F3ECE0;
  --warm-white:     #FBF8F3;
  --warm-white-alt: #F7F3EB;

  /* Text — warm grays, not cool */
  --ink:        #1C1B18;
  --ink-muted:  #4A453E;
  --ink-soft:   #8A8278;
  --ink-faint:  rgba(138, 130, 120, 0.45);

  /* Accents */
  --olive:       #6B7D5A;
  --midnight:    #0F1A23;
  --light-line:  #E5DDD1;

  /* Typography
     Display: Fraunces — softer, more characterful serif than Playfair.
     Optical sizing makes it warmer at small sizes, dramatic at large.
     Falls back to Playfair (already cached on many browsers) then system. */
  --font-display:   'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;
  --s-4: 1rem;     --s-5: 1.25rem;  --s-6: 1.5rem;
  --s-8: 2rem;     --s-10: 2.5rem;  --s-12: 3rem;
  --s-16: 4rem;    --s-20: 5rem;    --s-24: 6rem;

  /* Layout */
  --max-w: 1200px;

  /* Radii */
  --r-sm: 8px;   --r-md: 14px;
  --r-lg: 22px;  --r-pill: 9999px;

  /* Shadows — warm-tinted */
  --shadow-sm:  0 1px 3px rgba(28, 27, 24, 0.06), 0 1px 2px rgba(28, 27, 24, 0.04);
  --shadow-md:  0 4px 14px rgba(28, 27, 24, 0.08), 0 2px 4px rgba(28, 27, 24, 0.04);
  --shadow-lg:  0 12px 36px rgba(28, 27, 24, 0.10), 0 4px 8px rgba(28, 27, 24, 0.05);
  --shadow-xl:  0 20px 50px rgba(28, 27, 24, 0.14);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms;
  --t-base: 280ms;
  --t-slow: 450ms;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── TYPOGRAPHY SYSTEM ─── */

/* Display: Playfair for ALL headings */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }

/* Editorial voice — Playfair italic for accent text */
.editorial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

p {
  line-height: 1.75;
  color: var(--ink-muted);
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.section { padding: var(--s-20) 0; }
.section--sand { background-color: var(--sand-light); }
.section--warm { background-color: var(--warm-white-alt); }

.section__header {
  text-align: center;
  margin-bottom: var(--s-12);
}

/* All-caps headlines: smaller, lighter weight and generous tracking
   so they read as intentional architectural labels — not shouty.
   Fraunces 'opsz' is set high so the letterforms get proper drama. */
.section__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s-3);
  letter-spacing: 0.14em;
  font-variation-settings: 'opsz' 120;
}

.section__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: var(--s-3) auto 0;
  line-height: 1.65;
  font-variation-settings: 'opsz' 14;
}

/* ─── EYEBROW KICKER (small label above section headline) ─── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sol-gold);
  margin-bottom: var(--s-4);
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--sol-gold);
  opacity: 0.7;
}
.eyebrow--light { color: var(--sol-gold-light); }
.eyebrow--light::before { background: var(--sol-gold-light); }

/* In left-aligned blocks (USP, hosts card) the eyebrow naturally aligns left;
   inside a centered section__header, it should still feel centered. */
.section__header .eyebrow {
  padding-left: 0;
  padding: 0 28px;
}
.section__header .eyebrow::before,
.section__header .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--sol-gold);
  opacity: 0.7;
}
.section__header .eyebrow::before { left: 0; }
.section__header .eyebrow::after  { right: 0; }
.section__header .eyebrow--light::before,
.section__header .eyebrow--light::after { background: var(--sol-gold-light); }

/* ─── SOL DIVIDER (brand motif: ☉ — ☉) ─── */
.sol-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: var(--s-4) auto 0;
  width: fit-content;
}
.sol-divider::before,
.sol-divider::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sol-gold);
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s 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; }

/* ─── ICON SYSTEM ─── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 100%;
  height: 100%;
}

/* Icon containers */
.icon--sm  { width: 18px; height: 18px; }
.icon--md  { width: 22px; height: 22px; }
.icon--lg  { width: 28px; height: 28px; }
.icon--xl  { width: 40px; height: 40px; }

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  flex-shrink: 0;
  color: var(--terracotta);
}
.icon-box--sand    { background: var(--sand-light); }
.icon-box--gold    { background: var(--sol-gold-faded); color: var(--sol-gold); }
.icon-box--ocean   { background: rgba(26, 97, 120, 0.08); color: var(--mediterranean); }

.icon-box svg {
  width: 24px;
  height: 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-8);
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 16px var(--terracotta-glow);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--terracotta-glow);
}

.btn--secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

.btn--whatsapp {
  background: #25D366;
  color: white;
  font-size: 1.05rem;
  padding: var(--s-4) var(--s-10);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.30);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
}

.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn--outline:hover {
  background: var(--terracotta);
  color: white;
}

.btn--gold {
  background: var(--sol-gold);
  color: white;
  box-shadow: 0 4px 16px rgba(212, 167, 78, 0.30);
}
.btn--gold:hover {
  background: #c09540;
  transform: translateY(-2px);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--s-5) 0;
  transition: all var(--t-base) var(--ease-out);
}

.navbar--scrolled {
  background: rgba(251, 248, 243, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--light-line);
  padding: var(--s-3) 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  transition: color var(--t-base);
  flex-shrink: 0;
}
.navbar--scrolled .navbar__logo { color: var(--ink); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--s-10);
}

.navbar__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-base);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.navbar__link:hover { color: white; }
.navbar--scrolled .navbar__link { color: var(--ink-soft); }
.navbar--scrolled .navbar__link:hover { color: var(--terracotta); }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 5px;
  color: rgba(255,255,255,0.50);
  transition: all var(--t-fast);
  letter-spacing: 0.06em;
  cursor: pointer;
}
.lang-btn:hover, .lang-btn.active {
  color: white;
  background: rgba(255,255,255,0.15);
}
.navbar--scrolled .lang-btn { color: var(--ink-soft); }
.navbar--scrolled .lang-btn:hover,
.navbar--scrolled .lang-btn.active {
  color: var(--ink);
  background: var(--sand-light);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--t-base);
}
.navbar--scrolled .navbar__hamburger span { background: var(--ink); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile .navbar__link {
  font-size: 1.75rem;
  color: var(--ink);
  text-transform: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}
.navbar__mobile .navbar__link:hover { color: var(--terracotta); }
.navbar__mobile-close {
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  font-size: 1.5rem;
  color: var(--ink);
  padding: var(--s-2);
  line-height: 1;
}
.navbar__mobile .lang-switcher { margin-top: var(--s-4); }
.navbar__mobile .lang-btn {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 6px 10px;
}
.navbar__mobile .lang-btn:hover,
.navbar__mobile .lang-btn.active {
  color: var(--ink);
  background: var(--sand-light);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 55%;
  transform: scale(1.05);
  transition: transform 12s ease;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 26, 35, 0.22) 0%,
    rgba(15, 26, 35, 0.42) 50%,
    rgba(15, 26, 35, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 var(--s-6);
  max-width: 800px;
}

.hero__pre-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sol-gold-light);
  margin-bottom: var(--s-5);
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8.5vw, 6rem);
  font-weight: 600;
  color: white;
  line-height: 0.95;
  margin-bottom: var(--s-6);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s-3);
  font-weight: 400;
  line-height: 1.4;
  font-variation-settings: 'opsz' 36;
}

.hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: var(--s-10);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
  cursor: pointer;
}
.hero__scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid rgba(255,255,255,0.4);
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ─── FACTS STRIP ─── */
.facts-strip {
  background: var(--midnight);
  padding: var(--s-6) 0;
  border-bottom: 3px solid var(--sol-gold);
}

.facts-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-10);
  align-items: center;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.fact-item .icon {
  color: var(--sol-gold);
  width: 20px;
  height: 20px;
}

.fact-item__text {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.facts-strip__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ─── USP SECTION ─── */
.usp {
  padding: var(--s-24) 0;
  background: var(--warm-white-alt);
}

.usp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.usp__text .eyebrow { margin-bottom: var(--s-4); }

.usp__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s-6);
  line-height: 1.15;
  letter-spacing: 0.14em;
  font-variation-settings: 'opsz' 120;
}

.usp__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: var(--s-8);
}

.usp__features {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.usp__feature {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.usp__feature .icon {
  color: var(--sol-gold);
  width: 18px;
  height: 18px;
}

.usp__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}

.usp__book-link {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink-faint);
  transition: color var(--t-base), text-decoration-color var(--t-base);
}
.usp__book-link:hover {
  color: var(--terracotta);
  text-decoration-color: var(--terracotta);
}

.usp__image { position: relative; }

.usp__image > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
}
/* USP "800m van de zee" image is a beach carousel.
   Keep only the gold badge here — hide the per-slide caption pills so they
   don't collide with the badge (captions still show in the lightbox). */
.usp__image .apt-carousel__slide img { height: 520px; object-position: center 55%; }
.usp__image .apt-carousel { box-shadow: var(--shadow-xl); }
.usp__image .apt-carousel__caption,
.usp__image .apt-carousel__slide::after { display: none; }
.usp__image-badge { z-index: 4; }

.usp__image-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--sol-gold);
  color: white;
  padding: var(--s-4) var(--s-6);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.usp__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.usp__badge-label {
  font-size: 0.68rem;
  opacity: 0.88;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ─── APARTMENTS ─── */
.apartments {
  padding: var(--s-24) 0;
}

.apt-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--s-12);
  background: var(--sand-light);
  border-radius: var(--r-pill);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.apt-tab {
  padding: 10px var(--s-8);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all var(--t-base);
  cursor: pointer;
}
.apt-tab.active {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.apt-panel { display: none; }
.apt-panel.active { display: block; }

.apt-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}

/* Carousel */
.apt-carousel {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* "Expand" hint — signals the photo is clickable and opens fullscreen */
.apt-carousel::before {
  content: "\2922";
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  z-index: 3;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
  background: rgba(15, 26, 35, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  opacity: 0.9;
  transition: opacity var(--t-base) var(--ease-out);
}
.apt-carousel:hover::before { opacity: 1; }

.apt-carousel__track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.apt-carousel__slide {
  min-width: 100%;
  overflow: hidden;
  position: relative;
}

.apt-carousel__slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 1.2s var(--ease-out);
}
.apt-carousel:hover .apt-carousel__slide img { transform: scale(1.03); }

/* Per-image object-position overrides — tuned to each photo's subject placement.
   Win over the element-level rules (and the mobile center default) via
   attribute selector specificity + !important. */
img[src$="bathroom-shower.jpg"]  { object-position: 65% 40% !important; }
img[src$="bathroom-vanity.jpg"]  { object-position: center 65% !important; }
img[src$="bathroom-plant.jpg"]   { object-position: 65% 40% !important; }
img[src$="upper-lounge.jpg"]     { object-position: center 65% !important; }
img[src$="bedroom-single.jpg"]   { object-position: 35% 60% !important; }
img[src$="bedroom-art.jpg"]      { object-position: center 55% !important; }
img[src$="beach.jpg"]            { object-position: center 65% !important; }
img[src$="exterior-wide.jpg"]    { object-position: center 35% !important; }

/* Caption: bottom-left, sits in a soft gradient scrim so it never fights the photo */
.apt-carousel__slide::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background: linear-gradient(to top, rgba(15, 26, 35, 0.55) 0%, rgba(15, 26, 35, 0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.apt-carousel__slide:has(.apt-carousel__caption)::after { opacity: 1; }

.apt-carousel__caption {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-4);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  background: rgba(15, 26, 35, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.apt-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.90);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-md);
  line-height: 1;
}
.apt-carousel__btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.06);
}
.apt-carousel__btn--prev { left: var(--s-3); }
.apt-carousel__btn--next { right: var(--s-3); }

.apt-carousel__dots {
  position: absolute;
  left: var(--s-4);
  right: var(--s-4);
  bottom: var(--s-3);
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: var(--s-2);
  padding: 0;
  background: transparent;
}

.apt-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 2px rgba(15, 26, 35, 0.25);
  cursor: pointer;
  transition: all var(--t-base);
}
.apt-carousel__dot.active {
  background: var(--terracotta);
  width: 22px;
  border-radius: var(--r-pill);
}

/* Apt info */
.apt-info__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s-4);
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 72, 'SOFT' 50;
}

.apt-info__desc {
  font-size: 1rem;
  margin-bottom: var(--s-8);
  line-height: 1.8;
}

.apt-info__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.apt-info__feature {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.apt-info__feature-icon {
  width: 36px;
  height: 36px;
  background: var(--sol-gold-faded);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sol-gold);
}
.apt-info__feature-icon svg {
  width: 18px;
  height: 18px;
}

.apt-note {
  text-align: center;
  margin-top: var(--s-12);
  padding: var(--s-5) var(--s-8);
  background: var(--sand-light);
  border-radius: var(--r-md);
  border: 1px solid var(--light-line);
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-family: var(--font-body);
  line-height: 1.65;
}

/* ─── OUTDOOR ─── */
.outdoor {
  padding: var(--s-24) 0;
  background: var(--midnight);
  color: white;
  position: relative;
  overflow: hidden;
}

.outdoor__parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/outdoor-terrace.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.outdoor__inner { position: relative; z-index: 1; }

.outdoor .section__headline { color: white; }
.outdoor .sol-divider::before,
.outdoor .sol-divider::after { background: var(--sol-gold-light); }
.outdoor .section__subtitle { color: rgba(255,255,255,0.55); }

/* Pool banner */
.pool-banner {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  background: linear-gradient(135deg, var(--mediterranean-dark), var(--mediterranean));
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-10);
  margin-bottom: var(--s-12);
  border: 1px solid rgba(255,255,255,0.06);
}

.pool-banner__icon {
  flex-shrink: 0;
  color: var(--sol-gold-light);
  width: 52px;
  height: 52px;
}
.pool-banner__icon svg {
  width: 52px;
  height: 52px;
}

.pool-badge {
  display: inline-block;
  margin-bottom: var(--s-2);
  padding: 0.2rem 0.65rem;
  background: rgba(212, 167, 78, 0.2);
  border: 1px solid rgba(212, 167, 78, 0.5);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sol-gold-light);
}

.pool-banner__text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: white;
  margin-bottom: var(--s-2);
}
.pool-banner__text p { color: rgba(255,255,255,0.72); font-size: 0.92rem; }

.outdoor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.outdoor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: all var(--t-base) var(--ease-out);
}
.outdoor-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(212, 167, 78, 0.25);
}

.outdoor-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--s-5);
  color: var(--sol-gold);
}
.outdoor-card__icon svg { width: 44px; height: 44px; }

.outdoor-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: white;
  margin-bottom: var(--s-3);
}

.outdoor-card__desc {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ─── DENIA SECTION ─── */
.denia { padding: var(--s-24) 0; }

.denia__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}

.denia-card {
  display: flex;
  gap: var(--s-5);
  padding: var(--s-8);
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--light-line);
  transition: all var(--t-base) var(--ease-out);
}
.denia-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.denia-card .icon-box { flex-shrink: 0; }

.denia-card__content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s-3);
  letter-spacing: 0.16em;
  font-variation-settings: 'opsz' 14;
}
.denia-card__content p { font-size: 0.9rem; line-height: 1.75; color: var(--ink-muted); }

.denia__photo {
  margin-top: var(--s-10);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-md);
}
.denia__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.8s var(--ease-out);
}
.denia__photo:hover img { transform: scale(1.03); }

/* ─── COMPACT CARD CAROUSEL — used inside Dénia cards (THE BEACH, Sportief) ─── */
.apt-carousel--card { border-radius: 0; box-shadow: none; height: 100%; }
.apt-carousel--card .apt-carousel__track { height: 100%; }
.apt-carousel--card .apt-carousel__slide,
.apt-carousel--card .apt-carousel__slide img { height: 100%; }
.apt-carousel--card .apt-carousel__btn {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}
.apt-carousel--card::before {
  width: 28px;
  height: 28px;
  font-size: 0.82rem;
  top: var(--s-2);
  right: var(--s-2);
}

.map-embed {
  margin-top: var(--s-8);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
}

/* ─── PRACTICAL ─── */
.practical {
  padding: var(--s-20) 0;
  background: var(--sand-light);
}

.practical__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.practical-card {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-line);
}

.practical-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.practical-card__title .icon {
  color: var(--terracotta);
  width: 22px;
  height: 22px;
}

.practical-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--light-line);
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.practical-item:last-child { border-bottom: none; }
.practical-item .icon {
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── BOOKING ─── */
.booking {
  padding: var(--s-24) 0;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--warm-white-alt) 100%);
}

.booking__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.booking__personal-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 auto var(--s-10);
  line-height: 1.7;
}

.scarcity-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--sol-gold-faded);
  border: 1px solid rgba(212, 167, 78, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #9A7B30;
  margin-bottom: var(--s-6);
}

.price-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.price-anchor__row {
  display: flex;
  align-items: stretch;
  gap: var(--s-8);
  flex-wrap: wrap;
  justify-content: center;
}

.price-anchor__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--s-7) var(--s-10);
  background: linear-gradient(160deg, var(--sand-light) 0%, var(--warm-white) 100%);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  min-width: 290px;
}

.price-anchor__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sol-gold);
}

.price-anchor__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.price-anchor__unit {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  max-width: 24ch;
}

.price-anchor__pp {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--terracotta);
}

.price-anchor__divider {
  width: 1px;
  background: var(--sand);
  align-self: stretch;
  min-height: 60px;
}

.price-anchor__note {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
}

/* ─── PRICE EXTRAS (itemised costs + payment terms) ─── */
.price-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  text-align: left;
  background: white;
  border: 1px solid var(--light-line);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-10);
  margin-bottom: var(--s-10);
  box-shadow: var(--shadow-sm);
}

.price-extras__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sol-gold);
  margin-bottom: var(--s-4);
}

.price-extras__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.price-extras__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--light-line);
}
.price-extras__row:last-child { border-bottom: none; }
.price-extras__row dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sol-gold);
}
.price-extras__row dd {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.price-extras__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-muted);
}
.price-extras__body + .price-extras__body { margin-top: var(--s-3); }

/* ─── CONDITIONS / EXTRA INFO ─── */
.conditions {
  background: white;
  border: 1px solid var(--light-line);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-10);
  margin-bottom: var(--s-10);
  box-shadow: var(--shadow-sm);
  text-align: left;
  scroll-margin-top: 90px;
}
.conditions__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s-6);
}
.conditions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}
.conditions-card__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sol-gold);
  margin-bottom: var(--s-4);
}
.conditions-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: var(--s-3);
}
.conditions-card p:last-child { margin-bottom: 0; }
.conditions-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.conditions-card__list li {
  position: relative;
  padding-left: var(--s-5);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: var(--s-2);
}
.conditions-card__list li:last-child { margin-bottom: 0; }
.conditions-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sol-gold);
}
.conditions-card__list li strong { color: var(--ink); font-weight: 600; }

/* ─── REVIEWS ─── */
.reviews__placeholder {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border: 1px solid var(--light-line);
  border-radius: var(--r-lg);
  padding: var(--s-12) var(--s-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.reviews__placeholder .icon {
  width: 40px;
  height: 40px;
  color: var(--sol-gold);
}
.reviews__placeholder .icon svg { width: 40px; height: 40px; }
.reviews__placeholder p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ─── HOSTS CARD (Je gastheren) ─── */
.hosts-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-8);
  align-items: center;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--warm-white) 100%);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  margin-bottom: var(--s-10);
  text-align: left;
  position: relative;
  overflow: hidden;
}
/* Decorative wash in the corner */
.hosts-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--sol-gold-faded) 0%, transparent 70%);
  pointer-events: none;
}

.hosts-card__mark {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.hosts-card__sun {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sol-gold-light), var(--sol-gold) 60%, var(--terracotta) 110%);
  box-shadow: 0 0 0 4px rgba(212, 167, 78, 0.12), 0 6px 20px rgba(184, 105, 61, 0.25);
}
.hosts-card__sun:nth-child(2) {
  margin-left: -10px;
  background: radial-gradient(circle at 35% 35%, var(--sol-gold-light), var(--terracotta-light) 60%, var(--terracotta-dark) 120%);
}

.hosts-card__body {
  position: relative;
  z-index: 1;
}
.hosts-card__body .eyebrow { margin-bottom: var(--s-3); }

.hosts-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s-3);
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 72, 'SOFT' 50;
}

.hosts-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: var(--s-4);
}

.hosts-card__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 24;
}

.booking__whatsapp-block { margin-bottom: var(--s-8); }

.booking__or {
  position: relative;
  text-align: center;
  margin: var(--s-8) 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.booking__or::before,
.booking__or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--light-line);
}
.booking__or::before { left: 0; }
.booking__or::after { right: 0; }

/* Form */
.booking__form {
  text-align: left;
  background: white;
  border-radius: var(--r-lg);
  padding: var(--s-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px var(--s-4);
  border: 1.5px solid var(--light-line);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--warm-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sol-gold);
  box-shadow: 0 0 0 3px var(--sol-gold-faded);
}
.form-group textarea { resize: vertical; min-height: 85px; }

.form-submit {
  width: 100%;
  padding: var(--s-4);
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--s-5);
  justify-content: center;
  border-radius: var(--r-md);
}

/* Form success/error */
.form-msg {
  display: none;
  padding: var(--s-4);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  margin-top: var(--s-4);
  text-align: center;
}
.form-msg--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-msg--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Platforms */
.booking__platforms {
  margin-top: var(--s-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}
.booking__platforms-label {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking__platform-logos {
  display: flex;
  gap: var(--s-4);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.platform-badge {
  padding: 9px var(--s-6);
  border: 1.5px solid var(--light-line);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.platform-badge:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-1px);
}
.booking__direct-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.booking__direct-note::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--midnight);
  color: white;
  padding: var(--s-12) 0 var(--s-8);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.42);
  font-size: 0.95rem;
}

.footer__hosts {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 167, 78, 0.65);
  font-weight: 600;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer__location .icon {
  width: 14px;
  height: 14px;
}

.footer__divider {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--s-3) 0;
}
.footer__divider::before,
.footer__divider::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(212, 167, 78, 0.4);
}

.footer__copy {
  color: rgba(255,255,255,0.22);
  font-size: 0.72rem;
}

/* ─── FLOATING WHATSAPP ─── */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem 0.7rem 0.9rem;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

.wa-fab--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-fab:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.wa-fab__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ─── LIGHTBOX ─── */
/* Hint clickability — paired with the JS that opens the lightbox */
.apt-carousel__slide img,
.usp__image img,
.denia__photo img,
.denia-card__photo img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 35, 0.94);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxFadeIn 0.25s var(--ease-out);
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox__img {
  max-width: min(95vw, 1600px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  cursor: default;
  animation: lightboxImgIn 0.3s var(--ease-out);
}
@keyframes lightboxImgIn {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: background var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid var(--sol-gold-light);
  outline-offset: 3px;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

.lightbox__counter {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.10em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  padding: 0 1rem;
  max-width: 90vw;
  pointer-events: none;
}

@media (max-width: 600px) {
  .lightbox__img { max-height: 82vh; }
  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
  .lightbox__counter {
    top: 0.95rem;
    left: 0.95rem;
    font-size: 0.72rem;
  }
  .lightbox__caption {
    bottom: 0.85rem;
    font-size: 0.85rem;
  }
}

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__inner .lang-switcher { display: none; }
  .navbar__hamburger { display: flex; }

  .usp__inner { grid-template-columns: 1fr; gap: var(--s-10); }
  .usp__image { order: -1; }
  .usp__image > img { height: 440px; object-position: center; }
  .usp__image .apt-carousel__slide img { height: 440px; object-position: center; }
  .usp__image-badge { left: var(--s-4); bottom: var(--s-4); }

  .apt-panel__inner { grid-template-columns: 1fr; }
  .apt-carousel__slide img { height: 420px; object-position: center; }

  .denia__photo img { object-position: center; }

  .outdoor__grid { grid-template-columns: 1fr 1fr; }
  .pool-banner { flex-direction: column; text-align: center; }
  .pool-banner__icon { width: 40px; height: 40px; }
  .pool-banner__icon svg { width: 40px; height: 40px; }

  .denia__grid { grid-template-columns: 1fr; }

  .practical__grid { grid-template-columns: 1fr; }

  .price-extras { padding: var(--s-6) var(--s-6); }
  .conditions { padding: var(--s-6); }
  .conditions__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hosts-card { padding: var(--s-8); }
}

/* ─── RESPONSIVE — MOBILE ─── */
@media (max-width: 600px) {
  .section { padding: var(--s-16) 0; }
  .container { padding: 0 var(--s-4); }

  .hero__title { font-size: 2.75rem; }
  .hero__tagline { font-size: 1.1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .facts-strip__inner { gap: var(--s-4) var(--s-6); }
  .facts-strip__divider { display: none; }
  .fact-item__text { font-size: 0.78rem; }

  .outdoor__grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .apt-info__features { grid-template-columns: 1fr; }

  .usp__cta-group { width: 100%; }
  .usp__cta-group .btn { width: 100%; justify-content: center; }

  .booking__form { padding: var(--s-6); }

  .section__header { margin-bottom: var(--s-8); }

  .map-embed iframe { height: 260px; }

  .price-anchor__divider { display: none; }
  .price-anchor__row { gap: var(--s-8); }

  .price-extras {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    padding: var(--s-6);
  }

  .hosts-card {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding: var(--s-6);
    text-align: left;
  }
  .hosts-card__title { font-size: 1.3rem; }
  .hosts-card__mark { justify-content: flex-start; }

  .apt-carousel__caption {
    font-size: 0.65rem;
    left: var(--s-3);
    bottom: var(--s-3);
    padding: 4px 10px;
    letter-spacing: 0.14em;
  }

  .wa-fab {
    bottom: 1rem;
    right: 1rem;
    padding: 0.7rem;
    border-radius: 50%;
  }
  .wa-fab__label { display: none; }
}

/* ════════════════════════════════════════════
   ADDITIONS — renovation notice · Dénia card photos
   hosts photo · terms note
   ════════════════════════════════════════════ */

/* ─── Apartment renovation notice (Beneden) ─── */
.apt-renovation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--s-4);
  min-height: 400px;
  padding: var(--s-12) var(--s-10);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--warm-white) 100%);
  border: 1px dashed var(--sand);
  box-shadow: var(--shadow-sm);
}
.apt-renovation__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 167, 78, 0.18);
  border: 1px solid rgba(212, 167, 78, 0.5);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.apt-renovation__icon {
  width: 48px;
  height: 48px;
  color: var(--sol-gold);
  opacity: 0.7;
}
.apt-renovation__icon svg { width: 48px; height: 48px; }
.apt-renovation__text {
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ─── Dénia rubriek cards with photo ─── */
.denia-card {
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.denia-card__photo {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.denia-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.denia-card:hover .denia-card__photo img { transform: scale(1.05); }
.denia-card__row {
  display: flex;
  gap: var(--s-5);
  padding: var(--s-8);
}

/* ─── Hosts card photo ─── */
.hosts-card__photo {
  position: relative;
  z-index: 1;
}
.hosts-card__photo img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--r-lg);
  box-shadow: 0 8px 24px rgba(184, 105, 61, 0.28);
}

/* ─── Payment terms note ─── */
.price-extras__note {
  margin-top: var(--s-4);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.price-extras__note a { color: var(--terracotta); text-decoration: underline; }

@media (max-width: 600px) {
  .hosts-card__photo img {
    width: 100%;
    height: 240px;
    object-position: center 22%;
  }
}
