:root {
  --accent: #AC9150;
  --accent-dark: #8A7440;
  --max: 1280px;
  --rl: 16px;
}

:root[data-theme="dark"] {
  --surface: #0D0D0D;
  --surface-alt: #171717;
  --surface-card: #1C1C1C;
  --text-primary: #F5F5F5;
  --text-secondary: #A3A3A3;
  --border: rgba(255,255,255,0.12);
  --border-strong: rgba(255,255,255,0.22);
}

:root[data-theme="light"] {
  --surface: #FFFBF3;
  --surface-alt: #FBF3E4;
  --surface-card: #FFFFFF;
  --text-primary: #211C13;
  --text-secondary: #6B5D45;
  --border: #EBE0C8;
  --border-strong: #DCC9A0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background .3s, color .3s;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  font-weight: 600;
  color: var(--text-primary);
}

h1 { font-size: clamp(30px, 5vw, 54px); }
h2 { font-size: clamp(24px, 3.2vw, 36px); }
h3 { font-size: clamp(17px, 2vw, 20px); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.accent { color: var(--accent); }

/* Nav */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a { font-size: 14px; color: var(--text-secondary); }
.nav-links a:hover { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  cursor: pointer;
  min-height: 36px;
}

.theme-toggle button {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  min-height: 24px;
}

.theme-toggle button.active { background: var(--accent); color: #fff; }

.hamburger {
  display: none;
  position: relative;
  z-index: 1002;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span { width: 22px; height: 2px; background: var(--text-primary); display: block; }

.mobile-menu {
  position: fixed;
  left: 0; right: 0;
  z-index: 1001;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}

.mobile-menu-inner { padding: 20px 32px 28px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-inner a { font-size: 16px; min-height: 44px; display: flex; align-items: center; color: var(--text-primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all .25s;
  min-height: 44px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-secondary { background: transparent; color: var(--text-primary); border-color: var(--border-strong); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 110px 32px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero p.lead {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin: 20px auto 32px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-image {
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}

.hero-image img { width: 100%; height: 420px; object-fit: cover; }

/* Sections */
.section { padding: 96px 80px; }
.section-alt { background: var(--surface-alt); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head p { color: var(--text-secondary); margin-top: 12px; }
.section-head.left { text-align: left; margin: 0 0 40px; }

/* Petal image + text (What we do) */
.petal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 64px;
}

.petal-row.reverse { direction: rtl; }
.petal-row.reverse > * { direction: ltr; }

.petal-image {
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.petal-image img { height: 280px; object-fit: cover; }

.petal-text .tag { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.petal-text p { color: var(--text-secondary); margin: 12px 0 20px; }

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: border-color .25s, transform .25s;
}

.card:hover { border-color: var(--accent); transform: translateY(-3px); }

.card .card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(172,145,80,0.14);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-secondary); font-size: 14px; }

/* Listing cards */
.listing-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  position: relative;
  transition: border-color .25s, transform .25s;
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(10,10,10,0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.listing-badge.shortlet { background: var(--accent); }

.listing-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  min-height: 40px;
}

.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.listing-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.listing-card img { width: 100%; height: 200px; object-fit: cover; }

.listing-card-body { padding: 20px; }
.listing-card-body .loc { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .04em; }
.listing-card-body h3 { margin: 6px 0 8px; }
.listing-card-body .price { color: var(--accent); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.listing-card-body .specs { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.stat-num { font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 600; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }

/* Forms */
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  min-height: 44px;
}

textarea { min-height: 120px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(172,145,80,0.18);
}

.form-status { font-size: 13px; margin-top: 12px; min-height: 18px; }
.form-status.ok { color: #4ADE80; }
.form-status.err { color: #F87171; }

.form-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: 'Sora', sans-serif; font-weight: 500; font-size: 16px;
  min-height: 44px;
}
.faq-a { color: var(--text-secondary); font-size: 14px; margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-plus { transition: transform .2s; color: var(--accent); font-size: 20px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }

/* Day/night photo mood shift for listing photography */
.listing-card img,
.gallery img {
  transition: filter 0.6s ease;
  filter: brightness(1) saturate(1) sepia(0);
}

:root[data-theme="dark"] .listing-card img,
:root[data-theme="dark"] .gallery img {
  filter: brightness(0.72) saturate(1.2) sepia(0.15) hue-rotate(-6deg) contrast(1.08);
}

/* Trust badge row */
.trust-row {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  color: var(--text-secondary); font-size: 13px; max-width: var(--max); margin: 0 auto;
}

.trust-row span { display: flex; align-items: center; gap: 8px; }

/* Footer */
.footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 14px; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }

.newsletter-row { display: flex; gap: 8px; margin-top: 4px; }
.newsletter-row input { flex: 1; min-height: 40px; padding: 10px 14px; }
.newsletter-row button { padding: 10px 18px; min-height: 40px; }

.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* Detail page gallery */
.gallery {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery img { width: 100%; height: 420px; object-fit: cover; }

.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,13,13,0.6); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.gallery-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.gallery-dots span.active { background: var(--accent); }

/* Listing detail layout */
.listing-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Luxury photo hero (Aura-inspired) */
.hero-lux {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 32px 220px;
  overflow: hidden;
}

.hero-lux-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-lux-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,10,20,0.55) 0%, rgba(5,10,20,0.25) 35%, rgba(5,10,20,0.55) 70%, rgba(5,10,20,0.85) 100%);
}

.hero-lux-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-lux-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.hero-lux-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 560px;
  margin: 0 auto;
}

/* Floating search bar */
.hero-search {
  position: absolute;
  z-index: 3;
  bottom: 170px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1000px;
  background: rgba(10,14,22,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-search-field {
  flex: 1;
  min-width: 140px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-search-field:first-child { padding-left: 4px; }

.hero-search-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.hero-search-value {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.hero-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 32px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-search-btn:hover { background: var(--accent-dark); }

/* Three feature cards */
.hero-cards {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-card {
  background: rgba(10,14,22,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.hero-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.hero-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-search, .hero-cards { display: none; }
  .hero-lux { min-height: 78vh; padding: 110px 24px 60px; justify-content: flex-start; padding-top: 22vh; }
  .hero-lux-content h1 { font-size: clamp(30px, 8vw, 40px); }
  .hero-lux-content p { font-size: 14px; }
}

/* 3D hero */
.hero-3d {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #1a1424 0%, #0d0d0d 55%, #050505 100%);
  transition: background 0.6s ease;
}

.hero-3d--day {
  background: radial-gradient(circle at 30% 20%, #241a0e 0%, #14100a 55%, #050505 100%);
}

#hero3d-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero3d-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-3d-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 40%, rgba(172,145,80,0.22), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(139,92,246,0.15), transparent 50%);
  display: none;
}

.hero-overlay-3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,5,10,0.15) 0%, rgba(5,5,10,0.45) 65%, rgba(5,5,10,0.75) 100%);
  pointer-events: none;
  transition: background 0.6s ease;
}

.hero-3d--day .hero-overlay-3d {
  background: linear-gradient(180deg, rgba(20,14,8,0.15) 0%, rgba(20,14,8,0.45) 65%, rgba(10,7,4,0.78) 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 75% at 100% 25%, rgba(255,196,110,0.4), transparent 62%);
  mix-blend-mode: screen;
  transition: opacity 0.6s ease, background 0.6s ease;
}

.hero-3d--day .hero-glow {
  background: radial-gradient(ellipse 55% 75% at 100% 20%, rgba(255,200,120,0.45), transparent 60%);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(8,7,5,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 44px 40px;
  max-width: 680px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

@media (max-width: 640px) {
  .hero-content {
    padding: 28px 20px;
    border-radius: 20px;
    max-width: 92%;
  }
}

.hero-3d .hero-eyebrow { color: rgba(255,255,255,0.65); transition: color 0.6s ease; letter-spacing: 0.08em; }
.hero-3d h1 { color: #fff; transition: color 0.6s ease; }
.hero-3d p.lead { color: rgba(255,255,255,0.78); transition: color 0.6s ease; }

.hero-3d--day .hero-eyebrow { color: rgba(255,224,180,0.75); }
.hero-3d--day h1 { color: #fff8ee; }
.hero-3d--day p.lead { color: rgba(255,240,220,0.8); }

.hero-3d .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.hero-3d .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,255,255,0.06);
}

.hero-3d--day .btn-secondary {
  color: #fff8ee;
  border-color: rgba(255,224,180,0.4);
}
.hero-3d--day .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,224,180,0.08);
}

@media (prefers-reduced-motion: reduce) {
  #hero3d-canvas-wrap { display: none; }
  .hero-3d-fallback { display: block; }
}

/* Splash screen */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.splash-screen img {
  width: 180px;
  height: auto;
  animation: splashPulse 1.6s ease-in-out infinite;
}

.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes splashPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .8; transform: scale(0.97); }
}

/* Scroll-reveal (auto-applied site-wide via JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* 3D tilt on listing/content cards */
.card-grid { perspective: 1200px; }
.listing-card {
  transform-style: preserve-3d;
  transition: transform .15s ease-out, border-color .25s, box-shadow .25s;
  will-change: transform;
}
.listing-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
.listing-card-body, .listing-card img { transform: translateZ(0); }

/* Gold shimmer sweep on primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 3.2s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes shimmerSweep {
  0% { left: -60%; }
  35% { left: 130%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { animation: none; display: none; }
}

/* Floating action buttons */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.float-btn-call.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

.float-btn-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  position: relative;
}
.float-btn-whatsapp svg { width: 28px; height: 28px; }
.float-btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulseRing 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .float-btn-whatsapp::before { animation: none; }
}

@media (max-width: 640px) {
  .float-stack { right: 14px; bottom: 14px; }
  .float-btn-call { font-size: 12px; padding: 10px 16px; }
  .float-btn-whatsapp { width: 50px; height: 50px; }
  .float-btn-whatsapp svg { width: 24px; height: 24px; }
}

/* Breakpoints */
@media (max-width: 1024px) {
  .section { padding: 72px 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 32px; }
  .petal-row { grid-template-columns: 1fr; gap: 28px; }
  .petal-row.reverse { direction: ltr; }
  .hero { padding: 72px 24px; }
  .hero-3d { min-height: 520px; padding: 48px 24px; }
  .hero-image img { height: 280px; }
  .gallery img { height: 260px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .listing-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 20px; }
  .card-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .petal-image { max-width: 240px; }
  .petal-image img { height: 220px; }
  .newsletter-row { flex-direction: column; }
  .trust-row { gap: 16px; }
}
