/* ─────────────────────────────────────────
   TOKENS & RESET
───────────────────────────────────────── */
.loader-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: .3em;
  color: var(--gold-dk);
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeTitle 2s ease forwards;
  position: relative;
  top: -80px;

  
}

/* animación suave */
@keyframes fadeTitle {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

    .loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* barra base */
.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}

/* barra animada */
.loader-progress {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #c9974a, transparent);
  position: absolute;
  left: -40%;
  animation: loadingMove 5s ease-in-out infinite;
}

/* animación */
@keyframes loadingMove {
  0% { left: -40%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
    .loader-logo {
  width: 180px; /* más grande 🔥 */
  opacity: 1;
  transform: scale(0.8);
  animation: logoFade 1.6s ease forwards;
  animation-fill-mode: forwards;
}

/* Animación elegante */
@keyframes logoFade {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
  }
  100% {
    opacity: 1; /* 🔥 IMPORTANTE */
    transform: scale(1);
  }
}
.loader-logo {
  animation: logoFade 1.6s ease forwards, glow 2.5s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(201,151,74,0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(201,151,74,0.8));
  }
}

    .hero__video-wrap video {
  opacity: 0;
  background: url('../images/views.jpg') center/cover no-repeat;
  transition: opacity 1.25s ease;
}
    .hero__video-wrap video.is-ready {
  opacity: 1;
}
    .hero__video-wrap video.is-static {
  opacity: 1;
}
    #preloader {
  position: fixed;
  inset: 0;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .6s ease;
}

.loader {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(201,151,74,.3);
  border-top: 2px solid #c9974a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
    :root {
      --black:   #080808;
      --dark:    #0e0e0e;
      --card:    #131313;
      --gold:    #c9974a;
      --gold-lt: #e8b86d;
      --gold-dk: #8a6530;
      --white:   #f7f3ee;
      --grey:    #888;
      --border:  rgba(201,151,74,.18);
      --glass:   rgba(14,14,14,.72);
      --serif:   'Cormorant Garamond', Georgia, serif;
      --sans:    'Jost', sans-serif;
      --ease:    cubic-bezier(.25,.46,.45,.94);
      --slow:    .9s var(--ease);
      --mid:     .55s var(--ease);
      --fast:    .28s var(--ease);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--sans);
      font-weight: 300;
      overflow-x: hidden;
      cursor: auto;
      transition: background var(--mid), color var(--mid);
    }
    body[data-theme="light"] {
      --black:   #ffffff;
      --dark:    #faf7f4;
      --card:    #ffffff;
      --gold:    #7D5B4F;
      --gold-lt: #9d715f;
      --gold-dk: #5B473E;
      --white:   #161311;
      --grey:    #6c5a52;
      --border:  rgba(91,71,62,.18);
      --glass:   rgba(255,255,255,.92);
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

    /* ─── REVEAL ANIMATION ─── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity var(--slow), transform var(--slow);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity var(--slow), transform var(--slow); }
    .reveal-right { opacity: 0; transform: translateX( 50px); transition: opacity var(--slow), transform var(--slow); }
    .reveal-left.visible,
    .reveal-right.visible { opacity: 1; transform: none; }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
 /* NAV siempre con fondo negro */
#nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;

  padding: 18px 60px; /* Usamos el padding del estado scrolled */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;

  background: rgba(8,8,8,.8); /* Fondo negro permanente */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);

  transition: background var(--mid), padding var(--mid), backdrop-filter var(--mid);
}


/* LOGO */
.nav__logo {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  line-height: 1.1;
}
#nav .nav__logo {
  align-items: center;
  flex-direction: row;
  gap: 12px;
}
#nav .nav__logo img {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  filter: none;
}
#nav .nav__logo-img--light {
  display: none;
}
#nav .nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: .96;
}
#nav .nav__brand-name,
#nav .nav__brand-place,
#nav .nav__brand-ru {
  color: var(--gold);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .04em;
  text-shadow: 0 0 18px rgba(201,151,74,.18);
}
.nav__logo span {
  font-size: .6rem;
  letter-spacing: .3em;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
}
#nav .nav__brand-name {
  font-size: 1.08rem;
  color: var(--gold);
  text-shadow:
    0 3px 10px rgba(0,0,0,.56),
    0 0 14px rgba(201,151,74,.95),
    0 0 30px rgba(201,151,74,.62),
    0 0 52px rgba(201,151,74,.34);
}
#nav .nav__brand-place {
  color: #ffffff;
  margin-top: 3px;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow:
    0 3px 10px rgba(0,0,0,.58),
    0 0 12px rgba(201,151,74,.82),
    0 0 26px rgba(201,151,74,.5),
    0 0 44px rgba(201,151,74,.28);
}
#nav .nav__brand-ru {
  color: rgba(247,243,238,.78);
  margin-top: 2px;
  font-family: var(--sans);
  font-size: .48rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: none;
}

/* LINKS */
.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
  order: 2;
}
.nav__cta {
  flex-shrink: 0;
  margin-left: 0;
  order: 5;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  padding: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  order: 3;
}
.lang-switch__btn {
  min-width: 42px;
  padding: 8px 10px;
  color: rgba(247,243,238,.72);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
  border: 1px solid transparent;
}
.lang-switch__btn:hover,
.lang-switch__btn.is-active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
.lang-switch--mobile {
  display: none;
  margin-left: 0;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: var(--white);
  background: rgba(255,255,255,.03);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
  order: 4;
}
.theme-toggle i {
  color: var(--gold);
}
.theme-toggle:hover {
  background: rgba(201,151,74,.12);
  border-color: rgba(201,151,74,.42);
  transform: translateY(-1px);
}
.theme-toggle--mobile {
  display: none;
  margin-top: 10px;
}
.nav__links a {
  font-size: .69rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 380;
  position: relative;
  padding-bottom: 2px;

  display: inline-block;

  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--mid);
}
.nav__links a:hover {
  color: var(--gold);

  text-shadow:
     0 0 12px rgba(212, 175, 55, 0.7),
    0 0 24px rgba(212, 175, 55, 0.5),
    0 0 40px rgba(212, 175, 55, 0.35);
}
.nav__links a:hover::after {
  width: 100%;
}
/* CTA */
.nav__cta {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #ffffff;
  padding: 11px 20px;
  font-weight: 420;
  transition: background var(--fast), color var(--fast), border-color var(--fast), box-shadow var(--fast), transform var(--fast);
}
.nav__cta:hover {
  background: var(--gold-lt);
  color: #ffffff;
  border-color: var(--gold-lt);
  box-shadow: 0 10px 28px rgba(201,151,74,.18);
  transform: translateY(-1px);
}

/* BURGER */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: var(--fast);
}

body[data-theme="dark"] #nav .nav__logo,
body[data-theme="dark"] #nav .nav__links li,
body[data-theme="dark"] #nav .nav__cta,
body[data-theme="dark"] .hero__title,
body[data-theme="dark"] .hero__cta-wrap {
  opacity: 0;
  animation: none;
}

body[data-theme="dark"] .hero__title {
  transform: translateY(34px);
}

body[data-theme="dark"] .hero__cta-wrap {
  transform: translateY(44px);
}

body[data-theme="dark"].page-ready #nav .nav__logo {
  animation: heroEntrance 0.85s var(--ease) 0.15s forwards;
}

body[data-theme="dark"].page-ready #nav .nav__links li:nth-child(1) {
  animation: heroEntrance 0.75s var(--ease) 0.28s forwards;
}

body[data-theme="dark"].page-ready #nav .nav__links li:nth-child(2) {
  animation: heroEntrance 0.75s var(--ease) 0.38s forwards;
}

body[data-theme="dark"].page-ready #nav .nav__links li:nth-child(3) {
  animation: heroEntrance 0.75s var(--ease) 0.48s forwards;
}

body[data-theme="dark"].page-ready #nav .nav__links li:nth-child(4) {
  animation: heroEntrance 0.75s var(--ease) 0.58s forwards;
}

body[data-theme="dark"].page-ready #nav .nav__cta {
  animation: heroEntrance 0.85s var(--ease) 0.68s forwards;
}

body[data-theme="dark"].page-ready .hero__title {
  animation: heroLift 1.15s var(--ease) 0.28s forwards;
}

body[data-theme="dark"].page-ready .hero__cta-wrap {
  animation: heroLift 1s var(--ease) 0.92s forwards;
}


    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    #hero {
      position: relative; width: 100%; max-width: 100vw; height: 100vh;
      overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .hero__video-wrap {
      position: absolute; inset: 0;
      background: url('../images/views.jpg') center/cover no-repeat;
    }
    .hero__video-wrap video,
    .hero__video-wrap iframe {
      width: 100%; height: 100%; object-fit: cover;
    }
    /* Fallback gradient when no video */
    .hero__bg-fallback {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,151,74,.12) 0%, transparent 70%),
        linear-gradient(160deg, #0b0b0b 0%, #161008 50%, #0b0b0b 100%);
    }
 
    .hero__content {
      position: relative; z-index: 2; text-align: center;
      padding: 0 20px; max-width: 860px;
    }
    .hero__eyebrow {
      font-size: .90rem; letter-spacing: .4em; text-transform: uppercase;
      color: var(--gold); font-family: var(--sans); font-weight: 600;
      margin-bottom: 40px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp .9s var(--ease) .4s forwards;
    }
    .hero__title {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(3rem, 7vw, 6.5rem);
      line-height: 1.05; letter-spacing: -.01em;
      color: var(--white); margin-bottom: 32px;
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 1.1s var(--ease) .65s forwards;
    }

    .hero__title em { font-style: italic; color: var(--gold-lt); }
    .hero__sub {
      font-size: .95rem; letter-spacing: .1em; color: rgba(0, 0, 0, 0.6);
      font-weight: 500; margin-bottom: 52px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp .9s var(--ease) .9s forwards;
    }
    .hero__cta-wrap {
      display: flex; gap: 20px; justify-content: center; align-items: center;
      flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp .9s var(--ease) 1.1s forwards;
    }
    .hero__cta-wrap .lang-switch {
      margin-left: 0;
      order: 0;
      padding: 8px;
      background: rgba(8,8,8,.34);
      border-color: rgba(247,243,238,.14);
      box-shadow: 0 18px 44px rgba(0,0,0,.22);
    }
    .hero__cta-wrap .lang-switch__btn {
      min-width: 54px;
      padding: 10px 14px;
    }
    .hero__cta-wrap .theme-toggle {
      order: 0;
      padding: 15px 22px;
      background: rgba(8,8,8,.34);
      border-color: rgba(247,243,238,.14);
      box-shadow: 0 18px 44px rgba(0,0,0,.22);
    }
    .sound-toggle {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      order: 0;
      padding: 15px 22px;
      border: 1px solid rgba(247,243,238,.14);
      background: rgba(8,8,8,.34);
      color: var(--white);
      box-shadow: 0 18px 44px rgba(0,0,0,.22);
      font-size: .65rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
    }
    .sound-toggle i {
      color: var(--gold);
    }
    .sound-toggle--floating {
      position: fixed;
      top: auto;
      bottom: 116px;
      right: 40px;
      z-index: 820;
      width: 58px;
      height: 58px;
      padding: 0;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(14px);
      background: rgba(8,8,8,.76);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 50%;
      border-color: rgba(201,151,74,.34);
      box-shadow:
        0 12px 30px rgba(0,0,0,.34),
        0 0 0 1px rgba(201,151,74,.14),
        0 0 24px rgba(201,151,74,.22);
    }
    .sound-toggle--floating span {
      display: none;
    }
    .sound-toggle--floating.is-floating-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .sound-toggle:hover,
    .sound-toggle.is-on {
      background: rgba(201,151,74,.12);
      border-color: rgba(201,151,74,.42);
      transform: translateY(-1px);
    }
    .sound-toggle--floating:hover,
    .sound-toggle--floating.is-on {
      background: rgba(201,151,74,.16);
      border-color: rgba(201,151,74,.64);
      box-shadow:
        0 14px 34px rgba(0,0,0,.38),
        0 0 0 1px rgba(201,151,74,.2),
        0 0 32px rgba(201,151,74,.34);
    }
    body[data-theme="light"] .hero__cta-wrap .lang-switch,
    body[data-theme="light"] .hero__cta-wrap .theme-toggle,
    body[data-theme="light"] .hero__cta-wrap .sound-toggle {
      background: rgba(24,17,11,.68);
      border-color: rgba(241,201,121,.32);
      color: #fffaf0;
      box-shadow:
        0 18px 44px rgba(0,0,0,.28),
        inset 0 0 0 1px rgba(255,250,244,.04);
    }
    body[data-theme="light"] .hero__cta-wrap .lang-switch__btn {
      color: rgba(255,250,240,.82);
    }
    body[data-theme="light"] .hero__cta-wrap .lang-switch__btn:hover,
    body[data-theme="light"] .hero__cta-wrap .lang-switch__btn.is-active {
      color: #18110b;
      background: linear-gradient(135deg, #f1c979, #b48a3b);
      border-color: rgba(241,201,121,.78);
    }
    body[data-theme="light"] .hero__cta-wrap .theme-toggle {
      color: #fffaf0;
    }
    body[data-theme="light"] .hero__cta-wrap .theme-toggle i,
    body[data-theme="light"] .hero__cta-wrap .sound-toggle i {
      color: #f1c979;
    }
    body[data-theme="light"] .hero__cta-wrap .theme-toggle:hover,
    body[data-theme="light"] .hero__cta-wrap .sound-toggle:hover,
    body[data-theme="light"] .hero__cta-wrap .sound-toggle.is-on {
      background: rgba(32,22,14,.82);
      border-color: rgba(241,201,121,.52);
    }
    body[data-theme="light"] .sound-toggle--floating {
      background: rgba(255,250,244,.94);
      border-color: rgba(123,87,57,.24);
      color: #7b5739;
      box-shadow: 0 12px 28px rgba(58,39,26,.1);
    }
    body[data-theme="light"] .sound-toggle--floating i {
      color: #7b5739;
    }
    .btn-gold {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--black);
      padding: 16px 40px; font-size: .65rem; letter-spacing: .25em;
      text-transform: uppercase; font-weight: 500; font-family: var(--sans);
      transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
    }
    .btn-gold:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(114, 201, 74, 0.35);
    }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      border: 2px solid rgb(238, 169, 85); color: var(--white);
      padding: 16px 40px; font-size: .72rem; letter-spacing: .25em;
      text-transform: uppercase; font-weight: 400; font-family: var(--sans);
      transition: border-color var(--fast), color var(--fast);
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero__scroll {
      position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0; animation: fadeIn 1s var(--ease) 1.8s forwards;
    }
    .hero__scroll span {
      font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
      color: rgba(255, 140, 0, 0.4);
    }
    .hero__scroll-line {
      width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    /* floating golden ornament */
    .hero__ornament {
      position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
      height: 120px;
      background: linear-gradient(to top, var(--black), transparent);
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroEntrance {
      0% {
        opacity: 0;
        transform: translateY(-18px);
        filter: blur(8px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }
    @keyframes heroLift {
      0% {
        opacity: 0;
        transform: translateY(34px);
        filter: blur(10px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: .4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.2); }
    }

    /* ═══════════════════════════════════════
       SECTION UTILITIES
    ═══════════════════════════════════════ */
    section { padding: 120px 60px; position: relative; }
    section > * {
      position: relative;
      z-index: 1;
    }
    .section__label {
      font-size: .62rem; letter-spacing: .4em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px; font-weight: 400;
    }
    .section__title {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      line-height: 1.1; color: var(--white);
    }
    .section__title em { font-style: italic; color: var(--gold-lt); }
    .gold-line {
      width: 60px; height: 1px; background: var(--gold);
      margin: 28px 0;
    }
    .section__sub {
      max-width: 580px; font-size: .9rem; line-height: 1.9;
      color: rgba(247,243,238,.55); font-weight: 300;
    }
    .container { max-width: 1320px; margin: 0 auto; }

    /* ════════════════════════════════════════
       SERVICES
    ════════════════════════════════════════ */
    #services {
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .services__header {
      max-width: 780px;
      margin-bottom: 46px;
    }
    .services__grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      gap: 16px;
    }
    .service-card {
      position: relative;
      min-height: 310px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #080808;
      isolation: isolate;
      display: flex;
      align-items: flex-end;
      height: 100%;
      box-shadow: 0 24px 70px rgba(0,0,0,.28);
      transition: transform var(--mid), border-color var(--mid), box-shadow var(--mid);
      transform: none;
      will-change: transform, box-shadow;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(180deg, rgba(8,8,8,.05) 0%, rgba(8,8,8,.22) 35%, rgba(8,8,8,.9) 100%),
        linear-gradient(120deg, rgba(201,151,74,.22), transparent 52%);
      pointer-events: none;
    }
    .service-card::after {
      content: '';
      position: absolute;
      inset: -2px;
      z-index: 1;
      background:
        radial-gradient(circle at 50% 18%, rgba(245,210,145,.28), transparent 42%),
        linear-gradient(135deg, rgba(201,151,74,.28), rgba(201,151,74,0) 48%, rgba(201,151,74,.2));
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--mid);
    }
    .service-card img {
      position: absolute;
      inset: -4px;
      z-index: 0;
      width: calc(100% + 8px);
      height: calc(100% + 8px);
      max-width: none;
      max-height: none;
      object-fit: cover;
      transform: scale(1.025);
      transform-origin: center bottom;
      transition: transform .9s var(--ease), filter .9s var(--ease);
      filter: saturate(.92) contrast(1.04);
      backface-visibility: hidden;
    }
    .service-card:hover {
      transform: none;
      border-color: rgba(201,151,74,.68);
      box-shadow:
        0 34px 90px rgba(0,0,0,.48),
        0 0 58px rgba(201,151,74,.28),
        0 0 18px rgba(245,210,145,.18);
    }
    .service-card:hover::after {
      opacity: 1;
    }
    .service-card:hover img {
      transform: scale(1.08);
      filter: saturate(1.02) contrast(1.07);
    }
    .service-card__body {
      position: relative;
      z-index: 3;
      width: 100%;
      padding: 18px;
      color: #fff;
      background: linear-gradient(180deg, transparent, rgba(8,8,8,.32));
    }
    .service-card__body span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      margin-bottom: 12px;
      border: 1px solid rgba(232,184,109,.45);
      background: rgba(8,8,8,.3);
      color: var(--gold-lt);
      font-size: .62rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .service-card__body h3 {
      font-family: var(--serif);
      font-size: clamp(1.18rem, 1.45vw, 1.42rem);
      font-weight: 300;
      line-height: 1.04;
      margin-bottom: 9px;
    }
    .service-card__body p {
      color: rgba(255,255,255,.76);
      font-size: .74rem;
      line-height: 1.54;
      text-wrap: pretty;
    }

    /* ═══════════════════════════════════════
       SEARCH / FILTROS
    ═══════════════════════════════════════ */
    #search {
      background: var(--dark);
      padding: 80px 60px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .search__header { text-align: center; margin-bottom: 52px; }
    .search__header .section__title { font-size: clamp(1.8rem,3vw,3rem); }
    .search__header .gold-line { margin: 20px auto; }
    .search__form {
      background: var(--glass);
      border: 1px solid var(--border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 44px 50px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px 28px;
    }
    .search__form::after {
      content: none;
    }
    .field {
      display: flex; flex-direction: column; gap: 8px;
    }
    .field label {
      font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold); font-weight: 400;
    }
    .field__required {
      color: var(--gold-lt);
      margin-left: 4px;
      text-shadow: 0 0 10px rgba(201,151,74,.4);
    }
    .field select,
    .field input {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(201,151,74,.2);
      color: var(--white); font-family: var(--sans); font-size: .82rem;
      font-weight: 300; padding: 13px 16px;
      outline: none; appearance: none; -webkit-appearance: none;
      transition: border-color var(--fast), background var(--fast);
    }
    .field select:focus,
    .field input:focus {
      border-color: var(--gold);
      background: rgba(201,151,74,.06);
    }
    .field select option { background: var(--card); color: var(--white); }
    .field input::placeholder { color: rgba(247,243,238,.3); }
    .search__btn-wrap {
      display: flex; align-items: flex-end; grid-column: span 1;
    }
    .search__btn-wrap .btn-gold { width: 100%; justify-content: center; padding: 14px 20px; }

    /* active filter pills */
    .search__pills {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-top: 24px; padding: 0 50px;
    }
    .pill {
      display: flex; align-items: center; gap: 8px;
      border: 1px solid var(--border);
      padding: 6px 14px; font-size: .65rem; letter-spacing: .15em;
      text-transform: uppercase; color: var(--gold);
      animation: fadeIn .3s;
    }
    .pill button { color: var(--gold); font-size: .8rem; padding: 0; }

    /* ═══════════════════════════════════════
       MARBELLA TEXT
    ═══════════════════════════════════════ */
    #marbella {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .marbella__visual {
      position: relative; height: 540px; overflow: hidden;
    }
    .marbella__visual::before {
      content: none;
    }
    .marbella__visual::after {
      content: none;
    }
    .marbella__gallery,
    .marbella__slide {
      position: absolute;
      inset: 0;
    }
    .marbella__gallery {
      z-index: 0;
      background: url('../images/views.jpg') center/cover no-repeat;
    }
    .marbella__slide {
      background-position: center;
      background-size: cover;
      opacity: 0;
      transform: scale(1.08);
      animation: marbellaGalleryFade 21s ease-in-out infinite;
    }
    .marbella__slide:nth-child(1) {
      background-image: url('https://unsplash.com/photos/sfhztBiDjME/download?force=true&w=1400');
      animation-delay: 0s;
    }
    .marbella__slide:nth-child(2) {
      background-image: url('https://unsplash.com/photos/L6SG4VjJUe0/download?force=true&w=1400');
      animation-delay: 3.5s;
    }
    .marbella__slide:nth-child(3) {
      background-image: url('https://unsplash.com/photos/9JqliCnGa4o/download?force=true&w=1400');
      animation-delay: 7s;
    }
    .marbella__slide:nth-child(4) {
      background-image: url('https://unsplash.com/photos/GtwddBIIOOk/download?force=true&w=1400');
      animation-delay: 10.5s;
    }
    .marbella__slide:nth-child(5) {
      background-image: url('https://unsplash.com/photos/I8OnRIk-A74/download?force=true&w=1400');
      animation-delay: 14s;
    }
    .marbella__slide:nth-child(6) {
      background-image: url('https://unsplash.com/photos/BFW9mTP_QDg/download?force=true&w=1400');
      animation-delay: 17.5s;
    }
    @keyframes marbellaGalleryFade {
      0% { opacity: 0; transform: scale(1.08); }
      5% { opacity: 1; }
      20% { opacity: 1; }
      25% { opacity: 0; transform: scale(1.02); }
      100% { opacity: 0; transform: scale(1.02); }
    }
    body[data-theme="dark"] #marbella .marbella__visual {
      height: 620px;
      border: 1px solid rgba(212,175,55,.58);
      box-shadow:
        0 28px 90px rgba(0,0,0,.46),
        0 0 0 1px rgba(255,244,198,.1),
        0 0 24px rgba(212,175,55,.18),
        0 0 70px rgba(212,175,55,.08);
      isolation: isolate;
      transition: box-shadow .45s var(--ease), border-color .45s var(--ease);
    }
    body[data-theme="dark"] #marbella .marbella__visual:hover {
      border-color: rgba(255,226,130,.8);
      box-shadow:
        0 34px 105px rgba(0,0,0,.62),
        0 0 0 1px rgba(255,244,198,.16),
        0 0 34px rgba(212,175,55,.36),
        0 0 95px rgba(212,175,55,.2);
    }
    body[data-theme="dark"] #marbella .marbella__visual::before {
      content: none;
    }
    body[data-theme="dark"] #marbella .marbella__visual:hover::before {
      content: none;
    }
    body[data-theme="dark"] #marbella .marbella__visual::after {
      content: none;
    }
    body[data-theme="dark"] #marbella .marbella__visual:hover::after {
      content: none;
    }
    body[data-theme="dark"] #marbella .marbella__tag {
      box-shadow:
        0 18px 46px rgba(0,0,0,.42),
        0 0 0 1px rgba(255,226,130,.2),
        0 0 26px rgba(212,175,55,.34),
        0 0 62px rgba(212,175,55,.18);
    }
    .marbella__tag {
      position: absolute; bottom: 32px; left: 32px; z-index: 2;
      background: var(--glass);
      border: 1px solid rgba(201,151,74,.62);
      backdrop-filter: blur(14px);
      padding: 16px 24px;
      box-shadow:
        0 16px 38px rgba(0,0,0,.28),
        0 0 0 1px rgba(255,226,130,.14),
        0 0 28px rgba(201,151,74,.22);
    }
    .marbella__tag p { font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
    .marbella__tag h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; margin-top: 4px; }
    .marbella__text p {
      font-family: var(--serif); font-size: 1.12rem; font-weight: 300;
      line-height: 1.95; color: rgba(247,243,238,.75);
      margin-bottom: 22px;
    }
    .marbella__text p:last-child { margin-bottom: 0; }
    .marbella__text p:last-child { font-style: italic; color: var(--gold-lt); }

    /* ═══════════════════════════════════════
       PROPERTIES
    ═══════════════════════════════════════ */
    #properties { background: var(--dark); }
    .props__header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 60px;
    }
    .props__actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 8px;
    }
    .props__actions[hidden] { display: none; }
    .props__header a {
      font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
      color: var(--gold); font-weight: 400;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid transparent;
      transition: border-color var(--fast);
    }
    .props__header a:hover { border-color: var(--gold); }
    .props__filters {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 12px;
      margin: -32px 0 34px;
    }
    .props__filter-field {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .props__filters label {
      color: rgba(247,243,238,.55);
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .props__filters select {
      min-width: 230px;
      border: 1px solid rgba(201,151,74,.28);
      background: rgba(19,19,19,.92);
      color: var(--cream);
      padding: 12px 16px;
      font-family: var(--sans);
      font-size: .75rem;
      outline: none;
    }
    .props__filters select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 1px rgba(201,151,74,.18);
    }
    body[data-theme="light"] .props__filters select {
      background: #7b5739;
      background-image: none;
      border-color: #7b5739;
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(91,71,62,.14);
    }
    body[data-theme="light"] .props__filters select:focus {
      border-color: #7b5739;
      box-shadow: 0 0 0 2px rgba(125,91,79,.18);
    }
    body[data-theme="light"] .property-modal__close {
      color: #7D5B4F;
      background: rgba(255,250,244,.88);
      border-color: rgba(125,91,79,.34);
    }
    body[data-theme="light"] .property-modal__close:hover {
      color: #ffffff;
      background: #7D5B4F;
      border-color: #7D5B4F;
    }
    .props__carousel {
      position: relative;
    }
    .props__nav {
      display: flex; align-items: center; gap: 10px;
    }
    .props__page-count {
      min-width: 74px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      border: 1px solid rgba(201,151,74,.24);
      color: var(--gold-lt);
      background: linear-gradient(135deg, rgba(201,151,74,.14), rgba(19,19,19,.82));
      font-family: var(--font-display);
      font-size: .9rem;
      letter-spacing: .14em;
      line-height: 1;
      white-space: nowrap;
      backdrop-filter: blur(10px);
      box-shadow: inset 0 0 20px rgba(201,151,74,.08);
    }
    .props__arrow {
      width: 46px; height: 46px;
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid rgba(201,151,74,.28);
      color: var(--gold);
      background: rgba(19,19,19,.92);
      backdrop-filter: blur(10px);
      transition: transform var(--fast), border-color var(--fast), background var(--fast), color var(--fast), box-shadow var(--fast), opacity var(--fast);
      cursor: pointer;
      flex: 0 0 auto;
    }
    .props__arrow:hover {
      transform: translateY(-2px);
      border-color: rgba(201,151,74,.55);
      background: rgba(201,151,74,.12);
      box-shadow: 0 0 28px rgba(201,151,74,.18);
    }
    .props__arrow:disabled { opacity: .35; }
    .props__pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      max-width: min(760px, 100%);
    }
    .props__page-btn,
    .props__page-ellipsis {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(201,151,74,.22);
      color: rgba(247,243,238,.72);
      background: rgba(19,19,19,.82);
      font-size: .72rem;
      letter-spacing: .08em;
      line-height: 1;
      backdrop-filter: blur(10px);
    }
    .props__page-btn {
      cursor: pointer;
      transition: transform var(--fast), border-color var(--fast), background var(--fast), color var(--fast), box-shadow var(--fast);
    }
    .props__page-btn:hover,
    .props__page-btn.is-active {
      transform: translateY(-1px);
      border-color: rgba(201,151,74,.58);
      background: rgba(201,151,74,.14);
      color: var(--gold-lt);
      box-shadow: 0 0 22px rgba(201,151,74,.16);
    }
    .props__page-btn.is-active {
      color: var(--black);
      background: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 12px 28px rgba(201,151,74,.18);
    }
    .props__page-ellipsis {
      border-color: transparent;
      background: transparent;
      color: rgba(247,243,238,.42);
    }
    .props__grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }
    .props__note {
      max-width: 760px;
      margin: 14px auto 0;
      padding: 0 18px;
      color: rgba(247,243,238,.62);
      font-family: var(--serif);
      font-size: 1.06rem;
      line-height: 1.65;
      text-align: center;
      clear: both;
    }
    .props__note a {
      color: var(--gold-lt);
      border-bottom: 1px solid rgba(201,151,74,.34);
      transition: color var(--fast), border-color var(--fast);
    }
    .props__note a:hover {
      color: var(--gold);
      border-color: var(--gold);
    }
    .rso-empty,
    .rso-error {
      grid-column: 1 / -1;
      min-height: 220px;
      display: grid;
      place-items: center;
      gap: 12px;
      text-align: center;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.03);
      color: rgba(247,243,238,.72);
      padding: 34px;
    }
    .rso-empty i,
    .rso-error i {
      color: var(--gold);
      font-size: 1.8rem;
    }
    .rso-error small { color: rgba(247,243,238,.45); }
    .rso-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }
    .rso-page-btn {
      width: 42px;
      height: 42px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--cream);
      cursor: pointer;
      transition: .3s var(--ease);
    }
    .rso-page-btn:hover,
    .rso-page-btn.active {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--black);
    }
    .rso-page-btn:disabled {
      cursor: default;
      opacity: .5;
    }
    .rso-page-ellipsis {
      color: rgba(247,243,238,.46);
      padding: 0 4px;
      letter-spacing: .12em;
    }
    .rso-total {
      width: 100%;
      margin-top: 2px;
      text-align: center;
      color: rgba(247,243,238,.5);
      font-size: .74rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .prop-card--skeleton {
      min-height: 430px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.03);
      overflow: hidden;
    }
    .skeleton-img,
    .skeleton-line,
    .skeleton-stat {
      position: relative;
      overflow: hidden;
      background: rgba(255,255,255,.07);
    }
    .skeleton-img::after,
    .skeleton-line::after,
    .skeleton-stat::after {
      content: '';
      position: absolute;
      inset: 0;
      transform: translateX(-100%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
      animation: skeleton-shimmer 1.4s infinite;
    }
    .skeleton-img { height: 235px; }
    .skeleton-line { height: 12px; margin-bottom: 14px; }
    .skeleton-line--short { width: 34%; }
    .skeleton-line--mid { width: 64%; }
    .skeleton-line--price { width: 42%; height: 20px; margin-top: 18px; }
    .skeleton-stats { display: flex; gap: 12px; margin-top: 24px; }
    .skeleton-stat { width: 72px; height: 14px; }
    @keyframes skeleton-shimmer {
      100% { transform: translateX(100%); }
    }
    .prop-card {
      background: var(--card);
      border: 1px solid var(--border);
      overflow: hidden; position: relative;
      display: flex;
      flex-direction: column;
      transition: border-color var(--mid), transform var(--mid), box-shadow var(--mid);
      isolation: isolate;
    }
    .prop-card::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity var(--mid);
      box-shadow: inset 0 0 0 1px rgba(201,151,74,.28), inset 0 0 56px rgba(201,151,74,.24);
    }
    .prop-card:hover {
      border-color: rgba(201,151,74,.45);
      transform: translateY(-6px);
      box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,151,74,.18), 0 0 54px rgba(201,151,74,.38), 0 0 110px rgba(201,151,74,.18);
    }
    .prop-card:hover::after {
      opacity: 1;
    }
    .prop-card__img {
      display: block;
      height: 270px; overflow: hidden; position: relative;
      background: var(--card);
    }
    .prop-card__img img {
      display: block;
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .9s var(--ease);
    }
    .prop-card__no-img {
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      color: rgba(247,243,238,.45);
      background: linear-gradient(135deg, rgba(201,151,74,.12), rgba(255,255,255,.03));
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .prop-card:hover .prop-card__img img { transform: scale(1.08); }
    .prop-card__badge {
      position: absolute; top: 20px; left: 20px; z-index: 2;
      background: var(--gold); color: var(--black);
      font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
      padding: 6px 14px; font-weight: 500;
    }
    .prop-card__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
    }
    .prop-card__body {
      position: relative;
      z-index: 1;
      margin-top: -1px;
      padding: 29px 28px 32px;
      background: var(--card);
      display: flex;
      flex: 1;
      flex-direction: column;
    }
    .prop-card__ref {
      font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .prop-card__title {
      font-family: var(--serif); font-size: 1.5rem; font-weight: 300;
      line-height: 1.2; margin-bottom: 6px;
    }
    .prop-card__loc {
      font-size: .75rem; color: rgba(247,243,238,.45); letter-spacing: .05em;
      margin-bottom: 20px; display: flex; align-items: center; gap: 6px;
    }
    .prop-card__loc i { color: var(--gold); font-size: .7rem; }
    .prop-card__desc {
      min-height: 4.65em;
      margin: -6px 0 18px;
      color: rgba(247,243,238,.56);
      font-size: .78rem;
      line-height: 1.55;
      font-weight: 300;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .prop-card__price {
      font-family: var(--serif); font-size: 1.85rem; font-weight: 400;
      color: var(--gold-lt); margin-bottom: 20px;
    }
    .prop-card__price sup { font-size: 1rem; vertical-align: super; }
    .prop-card__stats {
      display: flex; gap: 20px; padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.06);
      margin-bottom: 22px;
    }
    .stat {
      display: flex; align-items: center; gap: 7px;
      font-size: .72rem; color: rgba(247,243,238,.5); letter-spacing: .05em;
    }
    .stat i { color: var(--gold); font-size: .75rem; }
    .prop-card__cta {
      margin-top: auto; width: 100%;
      font-size: .67rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); border: 1px solid rgba(201,151,74,.3);
      padding: 12px; font-weight: 400; font-family: var(--sans);
      transition: background var(--fast), color var(--fast), border-color var(--fast);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .prop-card__cta:hover {
      background: var(--gold); color: var(--black); border-color: var(--gold);
    }

    /* ═══════════════════════════════════════
       STATS STRIP
    ═══════════════════════════════════════ */
    #stats {
      background: var(--black);
      padding: 80px 60px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats__grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 2px;
    }
    .stat-item {
      text-align: center; padding: 48px 24px;
      border-right: 1px solid var(--border);
      position: relative;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item::before {
      content: ''; position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 0; height: 2px; background: var(--gold);
      transition: width .7s var(--ease);
    }
    .stat-item.visible::before { width: 40px; }
    .stat-num {
      font-family: var(--serif); font-size: 3.8rem; font-weight: 300;
      color: var(--gold-lt); line-height: 1;
    }
    .stat-num.is-complete {
      color: #ffe2a3;
      text-shadow:
        0 0 8px rgba(255,244,198,.9),
        0 0 18px rgba(232,184,109,.86),
        0 0 42px rgba(201,151,74,.68),
        0 0 76px rgba(201,151,74,.42),
        0 0 118px rgba(201,151,74,.24);
      transition: color .35s var(--ease), text-shadow .45s var(--ease);
    }
    .stat-num sup { font-size: 1.4rem; vertical-align: super; }
    .stat-label {
      font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
      color: rgba(247,243,238,.45); margin-top: 10px; font-weight: 400;
    }

    /* ═══════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════ */
    #about {
      display: grid; grid-template-columns: 5fr 7fr; gap: 100px; align-items: center;
    }
    .about__photo {
      position: relative;
    }
    .about__photo-inner {
      width: 100%; aspect-ratio: 3/4; overflow: hidden;
      border: 1px solid var(--border);
      position: relative;
      box-shadow:
        0 28px 70px rgba(0,0,0,.34),
        0 0 0 1px rgba(201,151,74,.12),
        inset 0 0 42px rgba(0,0,0,.2);
      transition: box-shadow .55s var(--ease), border-color .55s var(--ease);
    }
    .about__photo-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse at center, rgba(0,0,0,0) 24%, rgba(0,0,0,.36) 58%, rgba(0,0,0,.82) 100%),
        linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,0) 35%, rgba(0,0,0,.62) 100%);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.04),
        inset 0 0 220px rgba(0,0,0,.9),
        inset 0 -190px 220px rgba(0,0,0,.72);
    }
    .about__photo-inner:hover {
      border-color: rgba(201,151,74,.36);
      box-shadow:
        0 28px 68px rgba(0,0,0,.34),
        0 0 0 1px rgba(201,151,74,.12),
        0 0 22px rgba(201,151,74,.1),
        inset 0 0 42px rgba(0,0,0,.18);
    }
    .about__photo-inner img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 24%;
      transform: scale(1.18);
      filter: grayscale(20%);
      transition: filter .6s, transform .8s var(--ease);
    }
    .about__photo-inner:hover img { filter: grayscale(0); transform: scale(1.22); }
    .about__deco {
      position: absolute; bottom: -24px; right: -24px; z-index: -1;
      width: 70%; height: 70%;
      border: 1px solid rgba(201,151,74,.52);
      background: transparent;
      box-shadow: none;
    }
    .about__badge {
      position: absolute; bottom: 28px; left: -28px;
      background: var(--gold); color: var(--black);
      padding: 20px 24px; text-align: center;
    }
    .about__badge p { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }
    .about__badge strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; display: block; line-height: 1; }
    .about__name {
      margin: -6px 0 12px;
      font-family: var(--serif);
      font-size: clamp(1.35rem, 2.2vw, 2.15rem);
      line-height: 1.12;
      color: var(--gold-lt);
      font-style: italic;
      font-weight: 300;
    }
    .about__text .section__title { margin-bottom: 6px; }
    .about__text p {
      max-width: 66ch;
      font-size: .86rem; line-height: 1.92; color: rgba(247,243,238,.6);
      margin-top: 24px; font-weight: 300;
      text-wrap: pretty;
    }
    .about__credentials {
      display: block;
      margin-top: 34px;
      max-width: 560px;
    }
    .about__languages {
      margin-top: 0;
    }
    .about__languages-label {
      display: block;
      color: rgba(247,243,238,.92);
      font-size: .66rem;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    .about__language-list {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 9px;
      margin-top: 16px;
    }
    .about__language-list span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-family: var(--serif);
      font-size: 1.08rem;
      line-height: 1.3;
      font-style: normal;
      letter-spacing: .02em;
    }
    .about__language-list span::before {
      content: '';
      width: 28px;
      height: 18px;
      display: inline-block;
      border: 1px solid rgba(201,151,74,.26);
      box-shadow: 0 8px 18px rgba(0,0,0,.18);
      background-size: cover;
      background-position: center;
      filter: saturate(.9);
    }
    .about__language-list span:nth-child(1)::before {
      background-image: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
    }
    .about__language-list span:nth-child(2)::before {
      background-image: linear-gradient(#fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%);
    }
    .about__language-list span:nth-child(3)::before {
      background-image:
        linear-gradient(90deg, transparent 42%, #c8102e 42% 58%, transparent 58%),
        linear-gradient(transparent 38%, #c8102e 38% 62%, transparent 62%),
        linear-gradient(90deg, #012169 0 100%);
    }
    .about__language-list span:not(:last-child)::after {
      content: none;
    }
    .about__marquee {
      grid-column: 1 / -1;
      width: 100%;
      overflow: hidden;
      margin-top: 46px;
      padding: 18px 0 4px;
      border-top: 1px solid rgba(201,151,74,.16);
      mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    }
    .about__marquee-track {
      display: flex;
      width: max-content;
      gap: 34px;
      animation: valuesMarquee 52s linear infinite;
    }
    .about__marquee span {
      position: relative;
      flex: 0 0 auto;
      color: rgba(247,243,238,.84);
      font-family: var(--serif);
      font-size: clamp(.98rem, 1.35vw, 1.18rem);
      font-style: italic;
      letter-spacing: .04em;
      white-space: nowrap;
    }
    .about__marquee span::after {
      content: '';
      display: inline-block;
      width: 26px;
      height: 1px;
      margin-left: 34px;
      vertical-align: middle;
      background: rgba(201,151,74,.42);
    }
    @keyframes valuesMarquee {
      from { transform: translateX(-50%); }
      to { transform: translateX(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
      .about__marquee-track {
        animation: none;
      }
    }

    /* ═══════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════ */
    #contact {
      background: var(--dark);
      display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start;
    }
    .contact__info .section__title { margin-bottom: 6px; }
    .contact__info p {
      font-size: .88rem; line-height: 1.9; color: rgba(247,243,238,.55);
      margin-top: 22px;
    }
    .contact__details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
    .contact__brand-mark {
      display: flex;
      justify-content: flex-start;
      width: 100%;
      max-width: 135px;
      margin: 26px 0 0;
      opacity: 1;
      filter:
        drop-shadow(0 0 16px rgba(201,151,74,.56))
        drop-shadow(0 0 38px rgba(201,151,74,.32));
    }
    .contact__brand-mark img {
      width: 100%;
      height: auto;
      display: block;
      filter: none;
      box-shadow: none;
    }
    .c-detail {
      display: flex; align-items: flex-start; gap: 18px;
      padding-bottom: 20px; border-bottom: 1px solid var(--border);
      color: inherit;
      cursor: pointer;
      transition: transform var(--fast), border-color var(--fast);
    }
    .c-detail:last-child { border-bottom: none; }
    .c-detail:hover {
      transform: translateX(4px);
      border-bottom-color: rgba(201,151,74,.36);
    }
    .c-detail__icon {
      width: 44px; height: 44px; border: 1px solid rgba(201,151,74,.28);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-lt); font-size: .9rem; flex-shrink: 0;
      background: linear-gradient(145deg, rgba(201,151,74,.14), rgba(255,255,255,.025));
      box-shadow: inset 0 0 18px rgba(201,151,74,.06);
      transition: background var(--fast), color var(--fast), border-color var(--fast), box-shadow var(--fast);
    }
    .c-detail:hover .c-detail__icon {
      color: var(--black);
      background: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 10px 28px rgba(201,151,74,.18);
    }
    .c-detail__label {
      font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 4px;
    }
    .c-detail__val { font-size: .88rem; color: rgba(247,243,238,.75); transition: color var(--fast); }
    .c-detail:hover .c-detail__val { color: var(--white); }
    .contact__form {
      display: flex; flex-direction: column; gap: 20px;
      margin-top: 82px;
    }
    .contact__form .field input,
    .contact__form .field select,
    .contact__form textarea {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(201,151,74,.2);
      color: var(--white); font-family: var(--sans); font-size: .85rem;
      font-weight: 300; padding: 15px 18px;
      outline: none; width: 100%;
      transition: border-color var(--fast), background var(--fast), box-shadow var(--fast);
    }
    .contact__form textarea {
      resize: none; height: 130px; font-family: var(--sans);
    }
    .contact__form .field input:focus,
    .contact__form .field select:focus,
    .contact__form textarea:focus {
      border-color: rgba(201,151,74,.78);
      background: rgba(201,151,74,.08);
      box-shadow:
        0 0 0 1px rgba(201,151,74,.18),
        0 0 20px rgba(201,151,74,.22),
        inset 0 0 18px rgba(201,151,74,.06);
    }
    .contact__form .field input::placeholder,
    .contact__form textarea::placeholder { color: rgba(247,243,238,.3); }
    .contact__form .field.has-error input,
    .contact__form .field.has-error select,
    .contact__form .field.has-error textarea {
      border-color: rgba(225,117,91,.84);
      background: rgba(225,117,91,.07);
      box-shadow:
        0 0 0 1px rgba(225,117,91,.14),
        0 0 18px rgba(225,117,91,.18);
    }
    .field__error {
      display: none;
      color: #f0a28c;
      font-size: .68rem;
      line-height: 1.45;
      letter-spacing: .04em;
    }
    .field.has-error .field__error {
      display: block;
    }
    .contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      align-self: flex-start;
    }
    .form-submit:disabled {
      cursor: wait;
      opacity: .68;
      pointer-events: none;
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 60px 60px 40px;
    }
    .footer__top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
      padding-bottom: 52px; border-bottom: 1px solid var(--border);
    }
    .footer__brand p {
      font-size: .82rem; line-height: 1.85; color: rgba(247,243,238,.4);
      margin-top: 18px; max-width: 280px;
    }
    .footer__brand .nav__logo { font-size: 1.4rem; }
    .footer__col h5 {
      font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 22px; font-weight: 400;
    }
    .footer__col ul li {
      margin-bottom: 12px;
    }
    .footer__col ul li span {
      display: inline-block;
      font-size: .82rem; color: rgba(247,243,238,.4);
    }
    .footer__bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 12px; flex-wrap: wrap; gap: 14px;
    }
    .footer__copy {
      font-size: .72rem; color: rgba(247,243,238,.3); letter-spacing: .05em;
    }
    .footer__links {
      display: flex; gap: 28px;
    }
    .footer__links a,
    .legal-toggle {
      font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
      color: rgba(247,243,238,.3); transition: color var(--fast);
      cursor: pointer;
    }
    .footer__links a:hover,
    .legal-toggle:hover { color: var(--gold); }
    .footer__credit {
      max-width: 760px;
      margin-top: 24px;
      color: rgba(201,151,74,.68);
      font-size: .72rem;
      font-style: italic;
      line-height: 1.7;
      letter-spacing: .05em;
    }

    /* ═══════════════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════════════ */
    .wa-float {
      position: fixed; bottom: 40px; right: 40px; z-index: 800;
      width: 58px; height: 58px;
      background: #25d366;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: #fff;
      box-shadow: 0 8px 30px rgba(37,211,102,.4);
      transition: transform var(--fast), box-shadow var(--fast);
      animation: waPulse 2.5s ease-in-out infinite 2s;
    }
    .wa-float:hover {
      transform: scale(1.12) translateY(-3px);
      box-shadow: 0 14px 44px rgba(37,211,102,.55);
    }
    .back-to-top {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 34px auto 0;
      width: auto;
      height: auto;
      padding: 13px 18px;
      border: 1px solid var(--border);
      background: var(--card);
      color: var(--gold);
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      opacity: 1;
      pointer-events: auto;
      transform: none;
      transition: opacity var(--fast), transform var(--fast), background var(--fast), color var(--fast), border-color var(--fast), box-shadow var(--fast);
    }
    .back-to-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }
    .back-to-top:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      box-shadow: 0 12px 30px rgba(201,151,74,.22);
    }
    .page-end {
      display: flex;
      justify-content: center;
      padding: 74px 24px 28px;
    }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,.4); }
      50% { box-shadow: 0 8px 50px rgba(37,211,102,.7); }
    }

    .legal-panel {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 3200;
      padding: 26px;
      background: rgba(5,5,5,.78);
      backdrop-filter: blur(10px);
      overflow-y: auto;
    }
    .legal-panel.is-open { display: block; }
    .legal-panel__inner {
      position: relative;
      width: min(1120px, 100%);
      margin: 26px auto;
      padding: clamp(36px, 5vw, 64px);
      background: var(--card);
      border: 1px solid rgba(201,151,74,.32);
      box-shadow: 0 34px 90px rgba(0,0,0,.52);
    }
    .legal-panel__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(201,151,74,.32);
      color: var(--gold);
      background: rgba(10,10,10,.72);
    }
    .legal-panel h2 {
      max-width: 860px;
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 28px;
    }
    .legal-panel h3 {
      margin: 30px 0 10px;
      color: var(--gold-lt);
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 400;
    }
    .legal-panel p {
      color: rgba(247,243,238,.68);
      line-height: 1.88;
      font-size: .96rem;
      text-wrap: pretty;
    }

    /* ═══════════════════════════════════════
       MOBILE NAV OVERLAY
    ═══════════════════════════════════════ */
    .mob-nav {
      position: fixed; inset: 0; z-index: 850;
      background: rgba(8,8,8,.97);
      backdrop-filter: blur(20px);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 36px;
      transform: translateX(100%); transition: transform .5s var(--ease);
    }
    .mob-nav.open { transform: none; }
    .mob-nav a {
      font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
      color: var(--white); letter-spacing: .04em;
      transition: color var(--fast);
    }
    .mob-nav a:hover { color: var(--gold); }
    .mob-nav .btn-gold { font-size: .7rem; margin-top: 10px; }
    .mob-close {
      position: absolute; top: 32px; right: 40px;
      font-size: 1.6rem; color: rgba(247,243,238,.5); cursor: pointer;
      transition: color var(--fast);
    }
    .mob-close:hover { color: var(--gold); }

    .hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to bottom, rgba(0,0,0,.42), rgba(0,0,0,.22));
    }

    body[data-theme="light"] #preloader {
      background: #080808;
    }
    body[data-theme="light"] #nav {
      background: rgba(255,250,244,.94);
      border-bottom-color: rgba(125,91,31,.24);
      box-shadow:
        0 12px 34px rgba(44,31,20,.12),
        inset 0 -1px 0 rgba(201,151,74,.12);
    }
    body[data-theme="light"] #nav .nav__brand-name {
      color: #5b3a18;
      font-weight: 600;
      text-shadow:
        0 1px 0 rgba(255,255,255,.72),
        0 2px 10px rgba(91,58,24,.18);
    }
    body[data-theme="light"] #nav .nav__brand-place {
      color: #24170e;
      font-weight: 520;
      text-shadow: 0 1px 0 rgba(255,255,255,.66);
    }
    body[data-theme="light"] #nav .nav__brand-ru {
      color: rgba(36,23,14,.72);
      font-weight: 500;
    }
body[data-theme="light"] #nav .nav__logo img {
  filter: none;
  opacity: 1;
    }
    body[data-theme="light"] #nav .nav__logo-img--dark {
      display: none;
    }
    body[data-theme="light"] #nav .nav__logo-img--light {
      display: block;
    }
    body[data-theme="light"] #nav .nav__links a {
      color: #17120e;
      text-shadow: none;
    }
    body[data-theme="light"] #nav .nav__cta {
      background: #18110b;
      border-color: rgba(201,151,74,.72);
      color: #fffaf0;
      box-shadow: 0 10px 24px rgba(44,31,20,.12);
    }
    body[data-theme="light"] .hero__title {
      color: #fffaf0;
      text-shadow:
        0 3px 10px rgba(0,0,0,.7),
        0 16px 42px rgba(0,0,0,.46),
        0 0 80px rgba(0,0,0,.28);
    }
    body[data-theme="light"] .hero__title em {
      color: #f1c979;
      text-shadow:
        0 2px 8px rgba(0,0,0,.62),
        0 0 26px rgba(201,151,74,.48);
    }
    body[data-theme="light"] .nav__links a:hover {
      color: var(--gold-dk);
      text-shadow:
        0 0 12px rgba(167,121,108,.34),
        0 0 28px rgba(167,121,108,.26),
        0 0 56px rgba(167,121,108,.18),
        0 0 92px rgba(167,121,108,.12);
    }
    body[data-theme="light"] .section__label,
    body[data-theme="light"] .field label,
    body[data-theme="light"] .marbella__tag p,
    body[data-theme="light"] .c-detail__label,
    body[data-theme="light"] .footer__col h5,
    body[data-theme="light"] .prop-card__ref,
    body[data-theme="light"] .props__header a,
    body[data-theme="light"] .pill,
    body[data-theme="light"] .pill button {
      color: var(--gold-dk);
    }
    body[data-theme="light"] .section__title em,
    body[data-theme="light"] .prop-card__price,
    body[data-theme="light"] .stat-num,
    body[data-theme="light"] .marbella__text p:last-child {
      color: #8b6033;
    }
    body[data-theme="light"] .hero__overlay {
      background:
        linear-gradient(to bottom, rgba(20,14,9,.62), rgba(20,14,9,.24) 48%, rgba(20,14,9,.5)),
        linear-gradient(90deg, rgba(20,14,9,.22), transparent 35%, rgba(20,14,9,.18));
    }
    body[data-theme="light"] .btn-outline {
      color: var(--white);
      border-color: rgba(125,91,79,.34);
      background: rgba(248,240,235,.24);
    }
    body[data-theme="light"] .btn-gold,
    body[data-theme="light"] .prop-card__badge,
    body[data-theme="light"] .about__badge,
    body[data-theme="light"] .lang-switch__btn:hover,
    body[data-theme="light"] .lang-switch__btn.is-active {
      color: #fffaf4;
    }
    body[data-theme="light"] .search__btn-wrap .btn-gold,
    body[data-theme="light"] .form-submit.btn-gold {
      background: #7b5739;
      background-image: none;
      color: #fffdfd;
    }
    body[data-theme="light"] .props__arrow,
    body[data-theme="light"] .props__page-count,
    body[data-theme="light"] .props__page-btn,
    body[data-theme="light"] .prop-card__cta {
      color: var(--gold-dk);
      border-color: rgba(125,91,79,.28);
    }
    body[data-theme="light"] #search::before,
    body[data-theme="light"] #marbella::before,
    body[data-theme="light"] #stats::before,
    body[data-theme="light"] #properties::before,
    body[data-theme="light"] #about::before,
    body[data-theme="light"] #services::before,
    body[data-theme="light"] #contact::before {
      opacity: .24;
    }
    body[data-theme="light"] .props__page-count {
      background: linear-gradient(135deg, rgba(167,121,108,.14), rgba(255,250,244,.86));
      box-shadow: inset 0 0 20px rgba(167,121,108,.08);
    }
    body[data-theme="light"] .props__page-btn {
      background: rgba(248,240,235,.94);
      color: #7D5B4F;
      border-color: rgba(125,91,79,.24);
    }
    body[data-theme="light"] .props__page-btn:hover {
      background: rgba(167,121,108,.12);
      color: #5B473E;
      border-color: rgba(125,91,79,.42);
      box-shadow: 0 0 22px rgba(167,121,108,.2);
    }
    body[data-theme="light"] .props__page-btn.is-active {
      background: #7b5739;
      color: #fffaf4;
      border-color: #7b5739;
      box-shadow: 0 12px 26px rgba(91,63,43,.16);
    }
    body[data-theme="light"] .props__page-ellipsis {
      color: rgba(91,71,62,.48);
    }
    body[data-theme="light"] .props__arrow:hover,
    body[data-theme="light"] .prop-card__cta:hover,
    body[data-theme="light"] .footer__links a:hover,
    body[data-theme="light"] .mob-nav a:hover,
    body[data-theme="light"] .mob-close:hover {
      color: var(--gold-dk);
      border-color: rgba(125,91,79,.42);
    }
    body[data-theme="light"] .nav__cta:hover,
    body[data-theme="light"] .btn-outline:hover,
    body[data-theme="light"] .props__header a:hover,
    body[data-theme="light"] .pill button:hover {
      color: #7D5B4F;
      text-shadow:
        0 0 12px rgba(167,121,108,.28),
        0 0 28px rgba(167,121,108,.2),
        0 0 54px rgba(167,121,108,.14);
    }
    body[data-theme="light"] .search__form,
    body[data-theme="light"] .marbella__tag,
    body[data-theme="light"] .toast,
    body[data-theme="light"] .mob-nav,
    body[data-theme="light"] .lang-switch,
    body[data-theme="light"] .theme-toggle {
      box-shadow: 0 18px 50px rgba(91,71,62,.1);
    }
    body[data-theme="light"] .marbella__tag {
      border-color: rgba(125,91,79,.58);
      box-shadow:
        0 18px 46px rgba(91,71,62,.2),
        0 0 0 1px rgba(209,175,159,.22),
        0 0 28px rgba(167,121,108,.28),
        0 0 58px rgba(167,121,108,.14);
    }
    body[data-theme="light"] .mob-nav {
      background: rgba(255,255,255,.97);
    }
    body[data-theme="light"] .search__form,
    body[data-theme="light"] .marbella__tag,
    body[data-theme="light"] .toast,
    body[data-theme="light"] .lang-switch,
    body[data-theme="light"] .theme-toggle {
      background: rgba(248,240,235,.88);
    }
    body[data-theme="light"] .field input::placeholder,
    body[data-theme="light"] .contact__form textarea::placeholder {
      color: rgba(26,20,15,.42);
    }
    body[data-theme="light"] .marbella__text p,
    body[data-theme="light"] .about__text p,
    body[data-theme="light"] .contact__info p,
    body[data-theme="light"] .footer__brand p,
    body[data-theme="light"] .footer__col ul li span,
    body[data-theme="light"] .footer__copy,
    body[data-theme="light"] .footer__credit,
    body[data-theme="light"] .footer__links a,
    body[data-theme="light"] .legal-toggle,
    body[data-theme="light"] .prop-card__loc,
    body[data-theme="light"] .stat,
    body[data-theme="light"] .stat-label,
    body[data-theme="light"] .c-detail__val {
      color: rgba(22,19,17,.68);
    }
    body[data-theme="light"] .legal-panel__inner {
      background: #fffaf4;
      color: #5B473E;
      border-color: rgba(125,91,79,.22);
    }
    body[data-theme="light"] .legal-panel p {
      color: #6f5649;
    }
    body[data-theme="light"] .section__title,
    body[data-theme="light"] .prop-card__title,
    body[data-theme="light"] .marbella__tag h4,
    body[data-theme="light"] .nav__links a,
    body[data-theme="light"] .mob-nav a,
    body[data-theme="light"] .theme-toggle,
    body[data-theme="light"] .lang-switch__btn {
      color: #161311;
    }
    body[data-theme="light"] .props__arrow {
      background: rgba(248,240,235,.94);
    }
    body[data-theme="light"] .about__deco {
      border-color: rgba(125,91,79,.5);
      background: transparent;
      box-shadow: none;
    }
    body[data-theme="light"] .contact__form .field input:focus,
    body[data-theme="light"] .contact__form .field select:focus,
    body[data-theme="light"] .contact__form textarea:focus {
      border-color: rgba(125,91,79,.68);
      background: rgba(167,121,108,.08);
      box-shadow:
        0 0 0 1px rgba(125,91,79,.14),
        0 0 20px rgba(167,121,108,.2),
        inset 0 0 18px rgba(167,121,108,.06);
    }
    body[data-theme="light"] .field__error {
      color: #9f4f3f;
    }
    body[data-theme="light"] .contact__form .field.has-error input,
    body[data-theme="light"] .contact__form .field.has-error select,
    body[data-theme="light"] .contact__form .field.has-error textarea {
      border-color: rgba(159,79,63,.72);
      background: rgba(159,79,63,.06);
      box-shadow:
        0 0 0 1px rgba(159,79,63,.12),
        0 0 18px rgba(159,79,63,.14);
    }
    body[data-theme="light"] .prop-card::after {
      box-shadow:
        inset 0 0 0 1px rgba(125,91,79,.24),
        inset 0 0 64px rgba(167,121,108,.08);
    }
    body[data-theme="light"] .prop-card:hover {
      border-color: rgba(125,91,79,.34);
      box-shadow:
        0 24px 64px rgba(20,16,20,.18),
        0 0 0 1px rgba(125,91,79,.22),
        0 0 42px rgba(167,121,108,.24),
        0 0 92px rgba(167,121,108,.16),
        0 0 140px rgba(167,121,108,.1);
    }
    body[data-theme="light"] .prop-card__cta:hover,
    body[data-theme="light"] .props__arrow:hover,
    body[data-theme="light"] .theme-toggle:hover,
    body[data-theme="light"] .lang-switch__btn:hover,
    body[data-theme="light"] .lang-switch__btn.is-active {
      box-shadow:
        0 0 0 1px rgba(125,91,79,.24),
        0 0 22px rgba(167,121,108,.24),
        0 0 48px rgba(167,121,108,.18),
        0 0 84px rgba(167,121,108,.12);
    }
    body[data-theme="light"] .theme-toggle:hover,
    body[data-theme="light"] .props__arrow:hover {
      background: rgba(167,121,108,.12);
    }
    body[data-theme="light"] .btn-outline:hover,
    body[data-theme="light"] .nav__cta:hover,
    body[data-theme="light"] .props__header a:hover {
      box-shadow:
        0 0 0 1px rgba(125,91,79,.24),
        0 0 24px rgba(167,121,108,.22),
        0 0 52px rgba(167,121,108,.16),
        0 0 94px rgba(167,121,108,.1);
    }
    body[data-theme="light"] .props__arrow:hover,
    body[data-theme="light"] .prop-card__cta:hover,
    body[data-theme="light"] .btn-gold:hover,
    body[data-theme="light"] .nav__cta:hover {
      border-color: rgba(125,91,79,.42);
    }
    body[data-theme="light"] .btn-gold:hover {
      background: #7b5739;
      background-image: none;
      box-shadow:
        0 0 0 1px rgba(125,91,79,.24),
        0 16px 38px rgba(36,22,31,.18),
        0 0 30px rgba(167,121,108,.28),
        0 0 68px rgba(167,121,108,.2),
        0 0 112px rgba(167,121,108,.12);
    }
    body[data-theme="light"] .search__btn-wrap .btn-gold:hover,
    body[data-theme="light"] .form-submit.btn-gold:hover {
      background: #7b5739;
      background-image: none;
      color: #ffffff;
      box-shadow:
        0 0 0 1px rgba(209,175,159,.28),
        0 16px 34px rgba(125,91,79,.12),
        0 0 24px rgba(209,175,159,.28),
        0 0 52px rgba(209,175,159,.18);
    }
    body[data-theme="light"] .nav__cta:hover {
      color: #ffffff;
      background: var(--gold-lt);
    }
    body[data-theme="light"] .btn-gold,
    body[data-theme="light"] .prop-card__badge,
    body[data-theme="light"] .about__badge {
      background: #7b5739;
      background-image: none;
      color: #fffdf9;
    }
    body[data-theme="light"] .gold-line,
    body[data-theme="light"] .stat-item::before,
    body[data-theme="light"] .nav__links a::after {
      background: linear-gradient(90deg, rgba(167,121,108,.92), rgba(91,71,62,.92));
    }

    /* ═══════════════════════════════════════
       NOTIFICATION TOAST
    ═══════════════════════════════════════ */
    body[data-theme="light"] .hero__ornament {
      background: none;
    }
    body[data-theme="light"] #search {
      background: #ffffff;
      border-top: none;
      border-bottom: none;
    }
    body[data-theme="light"] .search__form {
      background: #ffffff;
      border-color: rgba(91,71,62,.14);
      box-shadow: 0 20px 52px rgba(58,39,26,.08);
    }
    body[data-theme="light"] .search__header .gold-line {
      display: none;
    }
    body[data-theme="light"] .search__header .section__label,
    body[data-theme="light"] #marbella .section__label {
      color: #6f4a2c;
      font-weight: 520;
    }
    body[data-theme="light"] .field label {
      color: #5b3f2b;
      font-weight: 520;
    }
    body[data-theme="light"] .field select,
    body[data-theme="light"] .field input {
      background: #fffaf5;
      border-color: rgba(91,71,62,.22);
      color: #17120e;
      font-weight: 400;
    }
    body[data-theme="light"] .field select:focus,
    body[data-theme="light"] .field input:focus {
      border-color: rgba(111,74,44,.58);
      background: #ffffff;
    }
    body[data-theme="light"] .field select option {
      background: #ffffff;
      color: #17120e;
    }
    body[data-theme="light"] .search__btn-wrap .btn-gold,
    body[data-theme="light"] .search__btn-wrap .btn-gold:hover {
      background: #6f4a2c;
      color: #fffaf4;
      border-color: #6f4a2c;
      box-shadow: 0 12px 26px rgba(91,63,43,.16);
    }
    body[data-theme="light"] #marbella .marbella__visual {
      border: 1px solid rgba(111,74,44,.2);
      box-shadow: 0 24px 58px rgba(58,39,26,.12);
      transition: box-shadow .45s var(--ease), border-color .45s var(--ease);
    }
    body[data-theme="light"] #marbella .marbella__visual:hover {
      border-color: rgba(111,74,44,.48);
      box-shadow:
        0 30px 70px rgba(58,39,26,.2),
        0 0 0 1px rgba(111,74,44,.16),
        0 0 36px rgba(111,74,44,.28);
    }
    body[data-theme="light"] .marbella__text p:last-child {
      color: #6f3f2d;
      font-weight: 400;
    }
    body[data-theme="light"] #stats {
      border-top: none;
      border-bottom: none;
    }
    body[data-theme="light"] .stat-item {
      border-right-color: rgba(91,71,62,.12);
    }
    body[data-theme="light"] .stat-num {
      color: #8d5b45;
    }
    body[data-theme="light"] .stat-num.is-complete {
      color: #a85f4b;
      text-shadow:
        0 0 8px rgba(168,95,75,.28),
        0 0 20px rgba(168,95,75,.2),
        0 0 46px rgba(111,74,44,.16);
    }
    body[data-theme="light"] #nav .nav__cta,
    body[data-theme="light"] #nav .nav__cta:hover {
      background: #7b5739;
      color: #fffaf0;
      border-color: rgba(123,87,57,.82);
    }
    body[data-theme="light"] #nav .nav__cta:hover {
      background: #8c6544;
      box-shadow: 0 14px 30px rgba(91,63,43,.2);
    }
    body[data-theme="light"] #marbella .marbella__visual:hover {
      border-color: rgba(111,74,44,.66);
      box-shadow:
        0 34px 82px rgba(58,39,26,.28),
        0 0 0 1px rgba(111,74,44,.24),
        0 0 48px rgba(111,74,44,.42),
        0 0 96px rgba(168,95,75,.2);
    }
    body[data-theme="light"] .prop-card:hover {
      border-color: rgba(111,74,44,.46);
      box-shadow:
        0 28px 72px rgba(58,39,26,.24),
        0 0 0 1px rgba(111,74,44,.2),
        0 0 46px rgba(111,74,44,.34),
        0 0 96px rgba(168,95,75,.18);
    }
    body[data-theme="light"] .prop-card:hover::after {
      opacity: 1;
    }
    body[data-theme="light"] .props__page-count {
      background: #7b5739;
      color: #fffaf4;
      border-color: #7b5739;
      box-shadow: 0 12px 28px rgba(91,63,43,.14);
    }
    body[data-theme="light"] #about .section__label,
    body[data-theme="light"] .about__languages-label {
      color: #6f4a2c;
      font-weight: 560;
    }
    body[data-theme="light"] .about__marquee span {
      color: #7b5739;
    }
    body[data-theme="light"] .about__marquee span::after {
      background: rgba(123,87,57,.42);
    }
    body[data-theme="light"] .contact__info .section__label,
    body[data-theme="light"] .contact__form .field label {
      color: #5b3f2b;
      font-weight: 560;
    }
    body[data-theme="light"] .contact__form .field input,
    body[data-theme="light"] .contact__form .field select,
    body[data-theme="light"] .contact__form textarea {
      background: #fffaf5;
      border-color: rgba(91,71,62,.24);
      color: #17120e;
      font-weight: 400;
    }
    body[data-theme="light"] .contact__form .field input::placeholder,
    body[data-theme="light"] .contact__form textarea::placeholder {
      color: rgba(26,20,15,.48);
    }
    body[data-theme="light"] .contact__brand-mark {
      opacity: .9;
    }
    body[data-theme="light"] .contact__brand-mark img {
      filter:
        brightness(0)
        saturate(100%)
        invert(33%)
        sepia(18%)
        saturate(1042%)
        hue-rotate(344deg)
        brightness(92%)
        contrast(88%)
        drop-shadow(0 18px 32px rgba(91,63,43,.18));
    }
    body[data-theme="light"] .form-submit.btn-gold,
    body[data-theme="light"] .form-submit.btn-gold:hover {
      background: #7b5739;
      color: #fffaf4;
      border-color: #7b5739;
      box-shadow: 0 14px 30px rgba(91,63,43,.16);
    }
    body[data-theme="light"] #nav .nav__links a {
      color: #2a1c12;
      font-weight: 520;
      text-shadow: 0 1px 0 rgba(255,255,255,.55);
    }
    body[data-theme="light"] #nav .nav__links a:hover {
      color: #7b5739;
      text-shadow:
        0 0 10px rgba(123,87,57,.24),
        0 0 24px rgba(123,87,57,.16);
    }
    body[data-theme="light"] #nav .nav__logo img {
      filter:
        none;
    }
    body[data-theme="light"] .search__btn-wrap .btn-gold:hover {
      background: #9a7250;
      border-color: #9a7250;
      transform: translateY(-2px);
      box-shadow:
        0 14px 30px rgba(91,63,43,.24),
        0 0 0 1px rgba(123,87,57,.18),
        0 0 34px rgba(123,87,57,.34);
    }
    body[data-theme="light"] .stat-item.visible::before {
      background: #a85f4b;
      box-shadow:
        0 0 10px rgba(168,95,75,.32),
        0 0 24px rgba(168,95,75,.18);
    }
    body[data-theme="light"] .stat-num {
      color: #8d5b45;
      transition: color .35s var(--ease), text-shadow .45s var(--ease), transform .45s var(--ease);
    }
    body[data-theme="light"] .stat-num.is-complete {
      color: #a85f4b;
      text-shadow:
        0 0 10px rgba(168,95,75,.4),
        0 0 24px rgba(168,95,75,.26),
        0 0 52px rgba(111,74,44,.2),
        0 0 92px rgba(111,74,44,.12);
    }
    body[data-theme="light"] .about__deco {
      border-color: rgba(123,87,57,.72);
      border-width: 2px;
      background: transparent;
      box-shadow: none;
    }
    body[data-theme="light"] .search__header .section__label {
      color: #5b3f2b;
      font-weight: 620;
      text-shadow: 0 0 12px rgba(123,87,57,.12);
    }
    body[data-theme="light"] .form-submit.btn-gold:hover {
      background: #9a7250;
      border-color: #9a7250;
      transform: translateY(-2px);
      box-shadow:
        0 16px 34px rgba(91,63,43,.24),
        0 0 0 1px rgba(123,87,57,.18),
        0 0 34px rgba(123,87,57,.32);
    }
    body[data-theme="light"] #nav .nav__links a:hover {
      color: #c25f52;
      text-shadow:
        0 0 10px rgba(255,118,102,.62),
        0 0 28px rgba(255,118,102,.48);
    }
    body[data-theme="light"] #nav .nav__cta:hover,
    body[data-theme="light"] .search__btn-wrap .btn-gold:hover,
    body[data-theme="light"] .form-submit.btn-gold:hover {
      background: #c25f52;
      border-color: #c25f52;
      box-shadow:
        0 16px 34px rgba(194,95,82,.32),
        0 0 0 1px rgba(255,118,102,.34),
        0 0 42px rgba(255,118,102,.58);
    }
    body[data-theme="light"] #marbella .marbella__visual:hover,
    body[data-theme="light"] .prop-card:hover {
      box-shadow:
        0 32px 76px rgba(58,39,26,.22),
        0 0 0 1px rgba(255,118,102,.34),
        0 0 58px rgba(255,118,102,.6),
        0 0 118px rgba(255,118,102,.34);
    }
    body[data-theme="light"] .prop-card__cta:hover,
    body[data-theme="light"] .props__arrow:hover,
    body[data-theme="light"] .theme-toggle:hover,
    body[data-theme="light"] .lang-switch__btn:hover,
    body[data-theme="light"] .lang-switch__btn.is-active {
      box-shadow:
        0 0 0 1px rgba(255,118,102,.34),
        0 0 28px rgba(255,118,102,.54),
        0 0 62px rgba(255,118,102,.34);
    }
    body[data-theme="light"] .stat-num.is-complete,
    body[data-theme="light"] .stat-item.visible::before {
      text-shadow:
        0 0 10px rgba(255,118,102,.62),
        0 0 30px rgba(255,118,102,.44),
        0 0 66px rgba(194,95,82,.3);
      box-shadow:
        0 0 14px rgba(255,118,102,.52),
        0 0 34px rgba(255,118,102,.34);
    }
    body[data-theme="light"] .hero__cta-wrap .lang-switch__btn:hover,
    body[data-theme="light"] .hero__cta-wrap .lang-switch__btn.is-active,
    body[data-theme="light"] .hero__cta-wrap .theme-toggle:hover,
    body[data-theme="light"] .hero__cta-wrap .sound-toggle:hover,
    body[data-theme="light"] .hero__cta-wrap .sound-toggle.is-on {
      box-shadow:
        0 0 0 1px rgba(123,87,57,.24),
        0 0 20px rgba(123,87,57,.26),
        0 0 42px rgba(123,87,57,.16);
    }
    body[data-theme="light"] #nav .nav__links a:hover {
      color: #7b5739;
      text-shadow:
        0 0 10px rgba(123,87,57,.24),
        0 0 24px rgba(123,87,57,.16);
    }
    body[data-theme="light"] .stat-num.is-complete {
      color: #8d5b45;
      text-shadow: none;
      box-shadow: none;
    }
    body[data-theme="light"] .stat-item.visible::before {
      background: #8d5b45;
      box-shadow: none;
      text-shadow: none;
    }
    body[data-theme="light"] .prop-card:hover {
      box-shadow:
        0 26px 66px rgba(58,39,26,.18),
        0 0 0 1px rgba(123,87,57,.18),
        0 0 34px rgba(123,87,57,.22),
        0 0 76px rgba(123,87,57,.12);
    }
    body[data-theme="light"] .prop-card__cta:hover,
    body[data-theme="light"] .props__arrow:hover,
    body[data-theme="light"] .props__page-count {
      box-shadow:
        0 0 0 1px rgba(123,87,57,.18),
        0 0 18px rgba(123,87,57,.2),
        0 0 42px rgba(123,87,57,.1);
    }
    body[data-theme="light"] .prop-card__cta:hover {
      background: #8d5b45;
      border-color: #8d5b45;
      color: #fffaf4;
    }
    body[data-theme="light"] .props__arrow:hover {
      border-color: rgba(123,87,57,.42);
      background: rgba(123,87,57,.12);
    }
    body[data-theme="light"] .about__photo-inner {
      border-color: rgba(123,87,57,.3);
      box-shadow:
        0 24px 58px rgba(58,39,26,.14),
        0 0 0 1px rgba(123,87,57,.12);
      transition: box-shadow .55s var(--ease), border-color .55s var(--ease);
    }
    body[data-theme="light"] .about__photo-inner:hover {
      border-color: rgba(123,87,57,.42);
      box-shadow:
        0 26px 62px rgba(58,39,26,.18),
        0 0 0 1px rgba(123,87,57,.14),
        0 0 20px rgba(123,87,57,.16);
    }
    body[data-theme="light"] #marbella .marbella__visual {
      border-color: rgba(255,118,102,.34);
      box-shadow:
        0 32px 76px rgba(58,39,26,.22),
        0 0 0 1px rgba(255,118,102,.32),
        0 0 58px rgba(255,118,102,.56),
        0 0 118px rgba(255,118,102,.3);
    }
    body[data-theme="light"] #marbella .marbella__visual:hover {
      border-color: rgba(111,74,44,.2);
      box-shadow: 0 24px 58px rgba(58,39,26,.12);
    }
    body[data-theme="light"] .about__photo-inner {
      border-color: rgba(123,87,57,.3);
      box-shadow:
        0 24px 58px rgba(58,39,26,.14),
        0 0 0 1px rgba(123,87,57,.12);
    }
    body[data-theme="light"] .about__photo-inner:hover {
      border-color: rgba(123,87,57,.42);
      box-shadow:
        0 26px 62px rgba(58,39,26,.18),
        0 0 0 1px rgba(123,87,57,.14),
        0 0 20px rgba(123,87,57,.16);
    }
    body[data-theme="light"] .props__header a {
      background: #7b5739;
      background-image: none;
      border: 1px solid #7b5739;
      border-bottom-color: #7b5739;
      color: #fffaf4;
      padding: 13px 18px;
      box-shadow: 0 12px 26px rgba(91,63,43,.16);
    }
    body[data-theme="light"] .props__header a:hover {
      background: #7b5739;
      background-image: none;
      border-color: #7b5739;
      color: #fffaf4;
      box-shadow: 0 16px 34px rgba(91,63,43,.2);
      text-shadow: none;
    }
    body[data-theme="light"] .prop-card__cta,
    body[data-theme="light"] .prop-card__cta:hover {
      background: #7b5739;
      background-image: none;
      border-color: #7b5739;
      color: #fffaf4;
      box-shadow: 0 12px 26px rgba(91,63,43,.16);
      text-shadow: none;
    }
    body[data-theme="light"] .prop-card__cta:hover {
      background: #8d5b45;
      background-image: none;
      border-color: #8d5b45;
      box-shadow: 0 16px 34px rgba(91,63,43,.2);
    }
    html body[data-theme="light"] #properties .prop-card .prop-card__cta,
    html body[data-theme="light"] #properties .prop-card .prop-card__cta:hover,
    html body[data-theme="light"] #properties .prop-card .prop-card__cta:focus-visible {
      background: #7b5739 !important;
      background-image: none !important;
      border-color: #7b5739 !important;
      color: #fffaf4 !important;
      box-shadow: 0 12px 26px rgba(91,63,43,.16) !important;
      text-shadow: none !important;
    }
    html body[data-theme="light"] #properties .props__nav .props__arrow,
    html body[data-theme="light"] #properties .props__nav .props__arrow:hover,
    html body[data-theme="light"] #properties .props__nav .props__page-count {
      background: #7b5739 !important;
      background-image: none !important;
      border-color: #7b5739 !important;
      color: #fffaf4 !important;
      box-shadow: 0 12px 26px rgba(91,63,43,.16) !important;
      text-shadow: none !important;
    }
    body[data-theme="light"] .back-to-top {
      background: #fffaf4;
      border-color: rgba(123,87,57,.24);
      color: #7b5739;
      box-shadow: 0 12px 28px rgba(58,39,26,.1);
    }
    body[data-theme="light"] .back-to-top:hover {
      background: #7b5739;
      color: #fffaf4;
      border-color: #7b5739;
      box-shadow:
        0 16px 34px rgba(194,95,82,.22),
        0 0 34px rgba(255,118,102,.34);
    }
    body[data-theme="light"] .page-end {
      background: transparent;
    }
    body[data-theme="light"] .footer__credit {
      color: #7b5739;
    }
    body[data-theme="light"] #marbella .marbella__tag {
      background: rgba(255,250,244,.94);
      border-color: rgba(123,87,57,.78);
      box-shadow:
        0 18px 42px rgba(58,39,26,.24),
        0 0 0 2px rgba(123,87,57,.22),
        0 0 34px rgba(123,87,57,.5),
        0 0 74px rgba(123,87,57,.28);
      filter: drop-shadow(0 0 18px rgba(123,87,57,.34));
    }

    .toast {
      position: fixed; bottom: 40px; left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--card); border: 1px solid var(--gold);
      color: var(--white); padding: 14px 28px;
      font-size: .78rem; letter-spacing: .08em;
      z-index: 999; transition: transform .4s var(--ease);
      pointer-events: none;
    }
    .toast.show { transform: translateX(-50%) translateY(0); }

    body.modal-open { overflow: hidden; }
    .property-modal {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }
    .property-modal.is-open { display: flex; }
    .property-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5,5,5,.78);
      backdrop-filter: blur(8px);
    }
    .property-modal__dialog {
      position: relative;
      z-index: 1;
      width: min(1480px, calc(100vw - 32px));
      max-height: calc(100vh - 32px);
      height: calc(100vh - 32px);
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(420px, .75fr);
      background: var(--card);
      border: 1px solid rgba(201,151,74,.32);
      overflow: hidden;
      box-shadow: 0 34px 90px rgba(0,0,0,.52);
    }
    .property-modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 3;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(201,151,74,.32);
      color: var(--gold);
      background: rgba(10,10,10,.72);
      cursor: pointer;
    }
    .property-modal__media {
      min-height: 0;
      background: #111;
      display: grid;
      grid-template-rows: 1fr auto;
      overflow: hidden;
    }
    .property-modal__image-stage {
      position: relative;
      min-height: 0;
      height: 100%;
      overflow: hidden;
    }
    .property-modal__main-img,
    .property-modal__no-img {
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: contain;
      background: #080808;
    }
    .property-modal__image-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(201,151,74,.36);
      color: var(--gold-lt);
      background: rgba(8,8,8,.72);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transition: background var(--fast), color var(--fast), border-color var(--fast);
    }
    .property-modal__image-arrow:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
    }
    .property-modal__image-arrow--prev { left: 18px; }
    .property-modal__image-arrow--next { right: 18px; }
    .property-modal__image-count {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 2;
      padding: 7px 12px;
      background: rgba(8,8,8,.72);
      border: 1px solid rgba(201,151,74,.26);
      color: var(--gold-lt);
      font-size: .68rem;
      letter-spacing: .14em;
    }
    .property-modal__no-img {
      display: grid;
      place-items: center;
      color: rgba(247,243,238,.5);
      text-transform: uppercase;
      letter-spacing: .18em;
    }
    .property-modal__thumbs {
      display: flex;
      gap: 6px;
      padding: 8px;
      background: rgba(0,0,0,.4);
      overflow-x: auto;
    }
    .property-modal__thumbs button {
      border: 0;
      padding: 0;
      height: 74px;
      min-width: 112px;
      cursor: pointer;
      overflow: hidden;
      background: transparent;
      opacity: .58;
      transition: opacity var(--fast), box-shadow var(--fast);
    }
    .property-modal__thumbs button.is-active {
      opacity: 1;
      box-shadow: 0 0 0 2px var(--gold);
    }
    .property-modal__thumbs img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .property-modal__body {
      overflow-y: auto;
      padding: 48px 42px;
      max-height: calc(100vh - 32px);
      scrollbar-width: thin;
      scrollbar-color: var(--gold) rgba(255,255,255,.08);
    }
    .property-modal__body::-webkit-scrollbar { width: 7px; }
    .property-modal__body::-webkit-scrollbar-track { background: rgba(255,255,255,.08); }
    .property-modal__body::-webkit-scrollbar-thumb { background: var(--gold); }
    .property-modal__ref {
      color: var(--gold);
      font-size: .62rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .property-modal__body h3 {
      font-family: var(--serif);
      font-size: 2.35rem;
      font-weight: 300;
      line-height: 1.08;
      margin-bottom: 12px;
    }
    .property-modal__loc,
    .property-modal__type {
      color: rgba(247,243,238,.58);
      font-size: .82rem;
      line-height: 1.6;
    }
    .property-modal__loading {
      margin: -2px 0 16px;
      color: var(--gold-lt);
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .property-modal__loc i { color: var(--gold); margin-right: 8px; }
    .property-modal__price {
      margin: 24px 0;
      font-family: var(--serif);
      font-size: 2.25rem;
      color: var(--gold-lt);
    }
    .property-modal__price sup { font-size: 1.1rem; }
    .property-modal__stats {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding: 18px 0;
      margin-bottom: 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
      color: rgba(247,243,238,.7);
    }
    .property-modal__stats span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .property-modal__stats i { color: var(--gold); }
    .property-modal__desc {
      margin-top: 20px;
      color: rgba(247,243,238,.66);
      line-height: 1.8;
      font-size: .9rem;
      white-space: pre-line;
      max-height: none;
    }
    .property-modal__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }
    .property-modal__contact {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .property-modal__call {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      border: 1px solid rgba(201,151,74,.38);
      color: var(--gold-lt);
      text-decoration: none;
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      transition: background var(--fast), color var(--fast), border-color var(--fast);
    }
    .property-modal__call:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
    }

    body[data-theme="light"] .props__note {
      color: #6f5649;
      background: rgba(255,250,244,.72);
    }
    body[data-theme="light"] .props__note a {
      color: #7D5B4F;
      border-color: rgba(125,91,79,.38);
    }
    body[data-theme="light"] .props__note a:hover {
      color: #5B473E;
      border-color: #5B473E;
    }
    body[data-theme="light"] .property-modal__dialog,
    body[data-theme="light"] .property-modal__body {
      background: #fffaf4;
      color: #2a201b;
    }
    body[data-theme="light"] .property-modal__body h3,
    body[data-theme="light"] .property-modal__desc {
      color: #5B473E;
    }
    body[data-theme="light"] .property-modal__loc,
    body[data-theme="light"] .property-modal__type,
    body[data-theme="light"] .property-modal__stats {
      color: #6f5649;
    }
    body[data-theme="light"] .property-modal__call {
      color: #7D5B4F;
      border-color: rgba(125,91,79,.36);
      background: rgba(125,91,79,.04);
    }
    body[data-theme="light"] .property-modal__call:hover {
      color: #ffffff;
      border-color: #7D5B4F;
      background: #7D5B4F;
    }
    body[data-theme="light"] #services {
      background: #f7f0e9;
    }
    body[data-theme="light"] .service-card {
      border-color: transparent;
      background: #f7f0e9;
      box-shadow: 0 24px 62px rgba(91,71,62,.16);
    }
    body[data-theme="light"] .service-card:hover {
      border-color: transparent;
      box-shadow:
        0 32px 74px rgba(58,39,26,.16),
        0 0 0 1px rgba(255,118,102,.28),
        0 0 58px rgba(255,118,102,.58),
        0 0 118px rgba(255,118,102,.28);
    }
    body[data-theme="light"] .service-card::before {
      background:
        linear-gradient(180deg, rgba(40,28,22,.02) 0%, rgba(40,28,22,.2) 42%, rgba(40,28,22,.82) 100%),
        linear-gradient(120deg, rgba(125,91,79,.22), transparent 52%);
    }

    /* ═══════════════════════════════════════
       DECORATIVE DIVIDER
    ═══════════════════════════════════════ */
    .divider {
      display: flex; align-items: center; gap: 16px;
      margin: 0 auto; max-width: 200px; padding: 0 60px;
    }
    .divider::before, .divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }
    .divider i { color: var(--gold); font-size: .7rem; }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 1100px) {
      section, #search { padding: 90px 40px; }
      #nav, #nav.scrolled { padding-left: 40px; padding-right: 40px; }
      #marbella, #about, #contact { grid-template-columns: 1fr; gap: 50px; }
      .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-card { min-height: 295px; }
      .contact__form { margin-top: 24px; }
      .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .stats__grid { grid-template-columns: repeat(2,1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
      .props__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 768px) {
      section { padding: 70px 24px; }
      #search { padding: 60px 24px; }
      #nav { padding: 20px 24px; }
      #nav.scrolled { padding: 16px 24px; }
      .nav__links, .nav__cta, #nav .lang-switch, #nav .theme-toggle { display: none; }
      .nav__burger { display: flex; }
      .lang-switch--mobile { display: flex; }
      .theme-toggle--mobile { display: inline-flex; }
      .hero__cta-wrap { flex-direction: column; }
      .props__header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .props__filters {
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: -22px 0 28px;
      }
      .props__filter-field {
        flex: 1 1 230px;
      }
      .props__filters select { width: 100%; }
      .props__actions { width: 100%; justify-content: center; }
      .props__grid { grid-template-columns: 1fr; }
      .property-modal { padding: 14px; }
      .property-modal__dialog {
        grid-template-columns: 1fr;
        height: auto;
        max-height: calc(100vh - 28px);
      }
      .property-modal__media { min-height: auto; }
      .property-modal__media,
      .property-modal__image-stage { min-height: 300px; }
      .property-modal__main-img,
      .property-modal__no-img { min-height: 300px; }
      .property-modal__body { padding: 34px 26px; }
      .property-modal__body h3 { font-size: 1.8rem; }
      .property-modal__thumbs { display: flex; }
      .property-modal__thumbs button { height: 58px; }
      .search__form { padding: 28px 24px; }
      .search__pills { padding: 0 24px; }
      .footer__top { grid-template-columns: 1fr; gap: 32px; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
      footer { padding: 50px 24px 32px; }
      .stats__grid { grid-template-columns: 1fr 1fr; }
      .about__badge { display: none; }
      .contact__form { margin-top: 10px; }
      .contact__form-row { grid-template-columns: 1fr; }
      .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-card { min-height: 275px; }
    }
    @media (max-width: 560px) {
      .props__nav { justify-content: center; }
      .services__grid { grid-template-columns: 1fr; }
      .service-card { min-height: 300px; }
    }

    @media (max-width: 900px) {
      .section__title {
        font-size: clamp(2rem, 10vw, 3rem);
      }
      #about {
        align-items: stretch;
      }
      .about__photo {
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
      }
      .about__photo-inner {
        aspect-ratio: 16 / 11;
      }
      .about__photo-inner img {
        object-position: center 22%;
        transform: scale(1.22);
      }
      .about__deco {
        right: -12px;
        bottom: -12px;
      }
      .marbella__visual {
        height: min(480px, 68vw);
      }
    }

    @media (max-width: 640px) {
      html {
        font-size: 15px;
      }
      body {
        min-width: 0;
      }
      .loader-title {
        top: -52px;
        font-size: 1.45rem;
        letter-spacing: .18em;
        padding: 0 24px;
      }
      .loader-logo {
        width: 132px;
      }
      #preloader .loader-content {
        gap: 22px;
      }
      #nav,
      #nav.scrolled {
        padding: 14px 16px;
        gap: 12px;
      }
      #nav .nav__logo { gap: 10px; }
      #nav .nav__logo img { height: 34px; }
      #nav .nav__brand-name { font-size: .72rem; }
      #nav .nav__brand-place { font-size: .48rem; letter-spacing: .18em; }
      #nav .nav__brand-ru { font-size: .38rem; letter-spacing: .06em; }
      .nav__burger {
        min-width: 42px;
        min-height: 42px;
        align-items: flex-end;
        justify-content: center;
      }
      .mob-nav {
        width: min(92vw, 360px);
        padding: 82px 26px 32px;
      }
      #hero {
        min-height: 100svh;
      }
      .hero__content {
        width: 100%;
        padding: 0 18px;
      }
      .hero__title {
        font-size: clamp(2.45rem, 15vw, 4.4rem);
        line-height: .95;
        max-width: 9ch;
        margin: 0 auto;
      }
      .hero__cta-wrap {
        width: min(100%, 320px);
        margin: 28px auto 0;
        align-items: stretch;
        gap: 12px;
      }
      .hero__cta-wrap .btn-gold,
      .hero__cta-wrap .btn-outline,
      .hero__cta-wrap .theme-toggle,
      .hero__cta-wrap .sound-toggle,
      .hero__cta-wrap .lang-switch {
        width: 100%;
        justify-content: center;
      }
      .hero__cta-wrap .lang-switch {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }
      section,
      #search {
        padding: 58px 18px;
      }
      .container {
        width: 100%;
      }
      .section__label {
        letter-spacing: .24em;
        line-height: 1.5;
      }
      .gold-line {
        margin: 22px 0;
      }
      .search__header {
        margin-bottom: 32px;
      }
      .search__form {
        padding: 24px 18px;
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .field label,
      .contact__form .field label {
        letter-spacing: .2em;
        line-height: 1.45;
      }
      .field select,
      .field input,
      .contact__form .field input,
      .contact__form .field select,
      .contact__form textarea {
        min-height: 48px;
        font-size: .9rem;
      }
      .search__pills {
        padding: 0;
        gap: 8px;
      }
      .pill {
        width: 100%;
        justify-content: space-between;
        letter-spacing: .1em;
      }
      .marbella__visual {
        height: 66vw;
        min-height: 260px;
      }
      .marbella__text p,
      .about__text p,
      .contact__info p,
      .services__header .section__sub {
        max-width: none;
        font-size: .92rem;
        line-height: 1.82;
      }
      .services__header {
        margin-bottom: 30px;
      }
      .service-card {
        min-height: 300px;
      }
      .service-card__body {
        padding: 18px 16px;
      }
      .service-card__body h3 {
        font-size: 1.34rem;
      }
      .stats__grid {
        grid-template-columns: 1fr;
      }
      .stat-item,
      .stat-item:nth-child(2),
      .stat-item:nth-child(3),
      .stat-item:nth-child(4) {
        border-right: 0;
        border-top: 1px solid var(--border);
        padding: 30px 16px;
      }
      .stat-item:first-child {
        border-top: 0;
      }
      .props__header,
      .props__filters,
      .props__actions,
      .props__note {
        width: 100%;
      }
      .props__header a {
        width: 100%;
        justify-content: center;
      }
      .props__filters {
        margin: -8px 0 22px;
        align-items: stretch;
      }
      .props__filter-field {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
      }
      .props__filters label {
        width: 100%;
      }
      .props__filters select {
        min-width: 0;
        width: 100%;
      }
      .props__nav {
        width: 100%;
        gap: 10px;
      }
      .props__page-count {
        flex: 1;
        min-width: 0;
      }
      .props__arrow {
        flex: 0 0 46px;
      }
      .prop-card {
        min-width: 0;
      }
      .prop-card__img {
        height: 220px;
      }
      .rso-pagination {
        gap: 7px;
      }
      .rso-page-btn {
        width: 38px;
        height: 38px;
      }
      .rso-total {
        line-height: 1.55;
      }
      .props__note {
        padding: 18px;
        font-size: .86rem;
        line-height: 1.7;
      }
      .about__photo {
        margin-bottom: 8px;
      }
      .about__photo-inner {
        aspect-ratio: 4 / 3;
      }
      .about__marquee {
        margin-top: 24px;
      }
      #contact {
        gap: 32px;
      }
      .contact__details {
        margin-top: 28px;
      }
      .contact__brand-mark {
        max-width: 118px;
        margin: 18px 0 0;
      }
      .c-detail {
        padding: 18px;
        gap: 14px;
      }
      .contact__form {
        padding: 24px 18px;
      }
      .form-submit {
        width: 100%;
        justify-content: center;
      }
      footer {
        padding: 42px 18px 30px;
      }
      .footer__top {
        gap: 28px;
      }
      .footer__credit {
        line-height: 1.7;
      }
      .wa-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
      }
      .sound-toggle--floating {
        right: 16px;
        bottom: 80px;
        width: 50px;
        height: 50px;
      }
      .back-to-top {
        right: 16px;
        bottom: 78px;
      }
      .toast {
        width: calc(100vw - 28px);
        max-width: none;
        padding: 13px 16px;
        font-size: .7rem;
        line-height: 1.45;
      }
      .legal-panel {
        padding: 0;
      }
      .legal-panel__inner {
        min-height: 100svh;
        margin: 0;
        padding: 62px 22px 34px;
        border-left: 0;
        border-right: 0;
      }
      .property-modal {
        padding: 0;
        align-items: stretch;
      }
      .property-modal__dialog {
        width: 100vw;
        height: 100svh;
        max-height: 100svh;
        border-left: 0;
        border-right: 0;
        grid-template-rows: minmax(310px, 42svh) minmax(0, 1fr);
      }
      .property-modal__close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
      }
      .property-modal__media,
      .property-modal__image-stage,
      .property-modal__main-img,
      .property-modal__no-img {
        min-height: 0;
      }
      .property-modal__image-arrow {
        width: 42px;
        height: 42px;
      }
      .property-modal__image-arrow--prev {
        left: 10px;
      }
      .property-modal__image-arrow--next {
        right: 10px;
      }
      .property-modal__image-count {
        left: 12px;
        bottom: 12px;
      }
      .property-modal__thumbs {
        padding: 6px;
      }
      .property-modal__thumbs button {
        min-width: 82px;
        height: 54px;
      }
      .property-modal__body {
        max-height: none;
        padding: 28px 20px 34px;
      }
      .property-modal__body h3 {
        font-size: 1.75rem;
      }
      .property-modal__price {
        font-size: 2rem;
        margin: 18px 0;
      }
      .property-modal__stats {
        gap: 10px 14px;
      }
      .property-modal__actions {
        flex-direction: column;
      }
      .property-modal__contact,
      .property-modal__call {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 390px) {
      #nav .nav__logo img { height: 30px; }
      #nav .nav__brand-name { font-size: .62rem; }
      #nav .nav__brand-place { font-size: .44rem; }
      #nav .nav__brand-ru { font-size: .34rem; }
      .hero__title {
        font-size: clamp(2.25rem, 14vw, 3.8rem);
      }
      .section__title {
        font-size: 2rem;
      }
      .prop-card__img {
        height: 200px;
      }
      .property-modal__dialog {
        grid-template-rows: minmax(280px, 40svh) minmax(0, 1fr);
      }
    }
    body[data-theme="light"] .stat-item:nth-child(3),
    body[data-theme="light"] .stat-item:nth-child(4) {
      border-top: none;
    }
    @media (max-width: 640px) {
      body[data-theme="light"] .stat-item:nth-child(3),
      body[data-theme="light"] .stat-item:nth-child(4) {
        border-top: 1px solid var(--border);
      }
    }

    /* Mobile polish: touch-safe layout + always-visible glow accents */
    @supports (padding: max(0px)) {
      body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
      }

      #nav {
        padding-top: max(14px, env(safe-area-inset-top));
      }

      .mob-nav,
      .property-modal,
      .legal-panel {
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
      }

      .wa-float {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
      }

      .sound-toggle--floating {
        right: max(16px, env(safe-area-inset-right));
      }
    }

    html,
    body {
      max-width: 100%;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    button,
    a,
    input,
    select,
    textarea {
      -webkit-tap-highlight-color: rgba(201,151,74,.18);
    }

    .btn-gold,
    .btn-outline,
    .nav__cta,
    .theme-toggle,
    .sound-toggle,
    .lang-switch__btn,
    .props__arrow,
    .rso-page-btn,
    .property-modal__call,
    .property-modal__contact,
    .form-submit,
    .mob-close,
    .nav__burger {
      min-height: 44px;
      touch-action: manipulation;
    }

    .section__title,
    .hero__title,
    .prop-card__title,
    .service-card__body h3,
    .property-modal__body h3,
    .c-detail__val,
    .footer__copy,
    .footer__credit {
      overflow-wrap: anywhere;
    }

    @media (hover: none), (pointer: coarse) {
      .btn-gold,
      .nav__cta,
      .form-submit.btn-gold {
        box-shadow:
          0 12px 30px rgba(201,151,74,.2),
          0 0 26px rgba(201,151,74,.22);
      }

      .theme-toggle,
      .sound-toggle,
      .lang-switch,
      .props__arrow,
      .back-to-top,
      .property-modal__call {
        border-color: rgba(201,151,74,.42);
        box-shadow:
          0 10px 24px rgba(0,0,0,.24),
          0 0 22px rgba(201,151,74,.18);
      }

      .service-card {
        border-color: rgba(201,151,74,.48);
        box-shadow:
          0 26px 68px rgba(0,0,0,.42),
          0 0 44px rgba(201,151,74,.2);
      }

      .service-card::after,
      .prop-card::after {
        opacity: .72;
      }

      .prop-card {
        border-color: rgba(201,151,74,.38);
        box-shadow:
          0 22px 54px rgba(0,0,0,.44),
          0 0 34px rgba(201,151,74,.18);
      }

      .about__photo-inner,
      #marbella .marbella__visual,
      .contact__form,
      .search__form {
        box-shadow:
          0 18px 54px rgba(0,0,0,.34),
          0 0 36px rgba(201,151,74,.14);
      }

      .c-detail__icon {
        filter:
          drop-shadow(0 0 10px rgba(201,151,74,.58))
          drop-shadow(0 0 22px rgba(201,151,74,.28));
      }
    }

    @media (max-width: 768px) {
      body.modal-open {
        overflow: hidden;
      }

      #nav,
      #nav.scrolled {
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
      }

      .nav__burger {
        padding: 0 0 0 14px;
      }

      .mob-nav {
        width: 100%;
        max-width: none;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow-y: auto;
        justify-content: flex-start;
        gap: 22px;
        padding-top: max(86px, calc(env(safe-area-inset-top) + 72px));
        padding-bottom: max(34px, env(safe-area-inset-bottom));
      }

      .mob-nav a {
        font-size: clamp(1.65rem, 9vw, 2.35rem);
        line-height: 1.08;
        text-align: center;
      }

      .mob-nav .btn-gold {
        width: min(100%, 280px);
        justify-content: center;
        font-size: .68rem;
      }

      .mob-close {
        top: max(18px, env(safe-area-inset-top));
        right: max(20px, env(safe-area-inset-right));
      }

      .lang-switch--mobile {
        width: min(100%, 300px);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }

      .theme-toggle--mobile {
        width: min(100%, 300px);
        justify-content: center;
      }

      #hero {
        height: 100dvh;
        min-height: 620px;
        padding-top: 76px;
        align-items: center;
      }

      .hero__overlay {
        background:
          linear-gradient(to bottom, rgba(0,0,0,.58), rgba(0,0,0,.18) 42%, rgba(0,0,0,.54));
      }

      .hero__title {
        text-shadow:
          0 3px 22px rgba(0,0,0,.72),
          0 0 28px rgba(201,151,74,.24);
      }

      .hero__cta-wrap .lang-switch,
      .hero__cta-wrap .theme-toggle,
      .hero__cta-wrap .sound-toggle {
        min-height: 52px;
      }

      #marbella,
      #about,
      #contact {
        width: 100%;
      }

      .search__form,
      .contact__form {
        width: 100%;
        border-color: rgba(201,151,74,.3);
      }

      .field select,
      .field input,
      .contact__form .field input,
      .contact__form .field select,
      .contact__form textarea {
        border-radius: 0;
      }

      .props__grid,
      .services__grid {
        width: 100%;
      }

      .prop-card,
      .service-card,
      .c-detail {
        border-color: rgba(201,151,74,.3);
      }

      .property-modal__dialog {
        overflow: hidden;
      }

      .property-modal__body {
        -webkit-overflow-scrolling: touch;
      }

      .footer__col h5,
      .footer__col ul li span,
      .footer__brand p {
        max-width: none;
      }
    }

    @media (max-width: 480px) {
      section,
      #search {
        padding-left: 16px;
        padding-right: 16px;
      }

      #hero {
        min-height: 590px;
      }

      .hero__content {
        padding-left: 12px;
        padding-right: 12px;
      }

      .hero__title {
        max-width: 10ch;
      }

      .section__title {
        font-size: clamp(1.85rem, 11vw, 2.55rem);
      }

      .search__form,
      .contact__form {
        padding-left: 16px;
        padding-right: 16px;
      }

      .service-card {
        min-height: 300px;
      }

      .service-card__body p {
        font-size: .76rem;
        line-height: 1.54;
      }

      .prop-card__body {
        padding: 24px 18px 26px;
      }

      .prop-card__stats {
        gap: 10px 14px;
        flex-wrap: wrap;
      }

      .prop-card__price {
        font-size: 1.65rem;
      }

      .c-detail {
        align-items: center;
      }

      .c-detail__val {
        font-size: .8rem;
      }

      .contact__brand-mark {
        margin-left: 0;
        margin-right: 0;
      }

      .footer__bottom,
      .footer__links {
        width: 100%;
      }

      .legal-toggle {
        min-height: 44px;
      }
    }

    /* Mobile full-width corrections */
    @supports (padding: max(0px)) {
      html,
      body {
        padding-left: 0;
        padding-right: 0;
      }
    }

    @media (max-width: 768px) {
      html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }

      #nav,
      #hero,
      #search,
      #marbella,
      #stats,
      #properties,
      #about,
      #services,
      #contact,
      footer {
        width: 100%;
        max-width: 100%;
      }

      .container {
        max-width: none;
      }

      .about__photo {
        width: 100%;
        max-width: 680px;
        margin: 0 auto 18px;
      }

      .about__photo-inner {
        aspect-ratio: 3 / 4;
        min-height: min(620px, calc(100vw * 1.18));
      }
    }

    @media (max-width: 480px) {
      .about__photo {
        max-width: none;
      }

      .about__photo-inner {
        min-height: min(560px, calc(100vw * 1.2));
      }
    }

    /* Mobile fixed hover glow */
    @media (hover: none), (pointer: coarse) {
      .service-card {
        border-color: rgba(201,151,74,.68);
        box-shadow:
          0 34px 90px rgba(0,0,0,.48),
          0 0 58px rgba(201,151,74,.28),
          0 0 18px rgba(245,210,145,.18);
      }

      .service-card::after {
        opacity: 1;
      }

      .service-card img {
        transform: scale(1.08);
        filter: saturate(1.02) contrast(1.07);
      }

      .prop-card {
        border-color: rgba(201,151,74,.45);
        box-shadow:
          0 30px 80px rgba(0,0,0,.6),
          0 0 0 1px rgba(201,151,74,.18),
          0 0 54px rgba(201,151,74,.38),
          0 0 110px rgba(201,151,74,.18);
      }

      .prop-card::after {
        opacity: 1;
      }

      .prop-card__img img {
        transform: scale(1.08);
      }

      body[data-theme="dark"] #marbella .marbella__visual {
        border-color: rgba(255,226,130,.8);
        box-shadow:
          0 34px 105px rgba(0,0,0,.62),
          0 0 0 1px rgba(255,244,198,.16),
          0 0 34px rgba(212,175,55,.36),
          0 0 95px rgba(212,175,55,.2);
      }

      .about__photo-inner {
        border-color: rgba(201,151,74,.5);
        box-shadow:
          0 34px 86px rgba(0,0,0,.42),
          0 0 0 1px rgba(201,151,74,.18),
          0 0 44px rgba(201,151,74,.16),
          inset 0 0 42px rgba(0,0,0,.18);
      }

      .about__photo-inner img {
        filter: grayscale(0);
        transform: scale(1.22);
      }

      .c-detail {
        border-bottom-color: rgba(201,151,74,.36);
      }

      .c-detail__icon {
        color: var(--black);
        background: var(--gold);
        border-color: var(--gold);
        box-shadow:
          0 10px 28px rgba(201,151,74,.18),
          0 0 26px rgba(201,151,74,.28);
      }

      .c-detail__val {
        color: var(--white);
      }

      .prop-card__cta,
      .property-modal__call,
      .props__arrow,
      .theme-toggle,
      .sound-toggle,
      .lang-switch__btn.is-active {
        box-shadow:
          0 12px 30px rgba(0,0,0,.28),
          0 0 28px rgba(201,151,74,.24);
      }

      body[data-theme="light"] #marbella .marbella__visual {
        border-color: rgba(111,74,44,.66);
        box-shadow:
          0 34px 82px rgba(58,39,26,.28),
          0 0 0 1px rgba(111,74,44,.24),
          0 0 48px rgba(111,74,44,.42),
          0 0 96px rgba(168,95,75,.2);
      }

      body[data-theme="light"] .prop-card {
        border-color: rgba(111,74,44,.46);
        box-shadow:
          0 28px 72px rgba(58,39,26,.24),
          0 0 0 1px rgba(111,74,44,.2),
          0 0 46px rgba(111,74,44,.34),
          0 0 96px rgba(168,95,75,.18);
      }

      body[data-theme="light"] .service-card {
        border-color: transparent;
        box-shadow:
          0 32px 74px rgba(58,39,26,.16),
          0 0 0 1px rgba(255,118,102,.28),
          0 0 58px rgba(255,118,102,.58),
          0 0 118px rgba(255,118,102,.28);
      }

      body[data-theme="light"] .about__photo-inner {
        border-color: rgba(123,87,57,.3);
        box-shadow:
          0 24px 58px rgba(58,39,26,.14),
          0 0 0 1px rgba(123,87,57,.12);
      }

      body[data-theme="light"] .c-detail {
        border-bottom-color: rgba(91,71,62,.16);
      }

      body[data-theme="light"] .c-detail__icon {
        color: #7b5739;
        background: rgba(123,87,57,.06);
        border-color: rgba(123,87,57,.24);
        box-shadow: inset 0 0 18px rgba(123,87,57,.05);
        filter: none;
      }

      body[data-theme="light"] .c-detail__val {
        color: #6f5649;
      }
    }

    /* Final alignment polish */
    #nav .nav__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      line-height: 1;
    }

    .service-card__body {
      width: 100%;
      display: grid;
      grid-template-rows: 2.65rem 3.05rem 5.25rem;
      align-content: end;
      min-height: 176px;
    }

    .service-card__body span {
      align-self: start;
    }

    .service-card__body h3 {
      min-height: 0;
      height: 3.05rem;
      display: flex;
      align-items: flex-start;
      overflow: hidden;
    }

    .service-card__body p {
      height: 5.25rem;
      overflow: hidden;
    }

    .sound-toggle--floating {
      bottom: 92px;
    }

    @media (max-width: 640px) {
      .service-card__body {
        grid-template-rows: 2.65rem 3.05rem 5.4rem;
        min-height: 176px;
      }

      .service-card__body h3 {
        height: 3.05rem;
      }

      .service-card__body p {
        height: 5.4rem;
      }

      .sound-toggle--floating {
        bottom: 76px;
      }
    }

    /* Photo glow and clean portraits */
    .about__photo-inner::after {
      content: none;
    }

    body[data-theme="dark"] #marbella .marbella__visual:hover {
      border-color: rgba(255,226,130,.9);
      box-shadow:
        0 38px 112px rgba(0,0,0,.58),
        0 0 0 1px rgba(255,244,198,.2),
        0 0 52px rgba(212,175,55,.48),
        0 0 120px rgba(212,175,55,.26);
    }

    body[data-theme="dark"] .about__photo-inner:hover {
      border-color: rgba(255,226,130,.48);
      box-shadow:
        0 30px 76px rgba(0,0,0,.42),
        0 0 0 1px rgba(255,244,198,.12),
        0 0 24px rgba(212,175,55,.18);
    }

    body[data-theme="light"] #marbella .marbella__visual:hover {
      border-color: rgba(255,118,102,.52);
      box-shadow:
        0 36px 86px rgba(58,39,26,.22),
        0 0 0 1px rgba(255,118,102,.34),
        0 0 70px rgba(255,118,102,.66),
        0 0 138px rgba(255,118,102,.32);
    }

    body[data-theme="light"] .about__photo-inner:hover {
      border-color: rgba(123,87,57,.42);
      box-shadow:
        0 26px 62px rgba(58,39,26,.18),
        0 0 0 1px rgba(123,87,57,.14),
        0 0 20px rgba(123,87,57,.16);
    }

    @media (hover: none), (pointer: coarse) {
      body[data-theme="dark"] .about__photo-inner,
      body[data-theme="dark"] #marbella .marbella__visual {
        border-color: rgba(255,226,130,.82);
        box-shadow:
          0 34px 98px rgba(0,0,0,.52),
          0 0 0 1px rgba(255,244,198,.16),
          0 0 44px rgba(212,175,55,.4),
          0 0 105px rgba(212,175,55,.22);
      }

      body[data-theme="light"] #marbella .marbella__visual {
        border-color: rgba(255,118,102,.48);
        box-shadow:
          0 34px 82px rgba(58,39,26,.2),
          0 0 0 1px rgba(255,118,102,.3),
          0 0 62px rgba(255,118,102,.58),
          0 0 124px rgba(255,118,102,.28);
      }
    }

    @media (max-width: 768px) {
      body[data-theme="dark"] .about__photo-inner,
      body[data-theme="light"] .about__photo-inner {
        border-color: var(--border);
        box-shadow:
          0 24px 58px rgba(0,0,0,.18),
          0 0 0 1px rgba(201,151,74,.08);
      }
    }

    /* Light theme polish: Marbella glow only on hover, readable property copy */
    html body[data-theme="light"] #marbella .marbella__visual {
      border-color: rgba(123,87,57,.26);
      box-shadow: 0 22px 54px rgba(58,39,26,.12);
    }

    html body[data-theme="light"] #marbella .marbella__visual:hover {
      border-color: rgba(111,74,44,.66);
      box-shadow:
        0 34px 82px rgba(58,39,26,.28),
        0 0 0 1px rgba(111,74,44,.24),
        0 0 48px rgba(111,74,44,.42),
        0 0 96px rgba(168,95,75,.2);
    }

    html body[data-theme="light"] #properties .prop-card__desc {
      color: rgba(54,38,30,.78);
    }
