/* ============================================================
   ALVEIRA LUXE REAL ESTATE — Main Stylesheet
   Structure:
   1.  Reset & Variables
   2.  Base
   3.  Navigation
   4.  Mobile Drawer
   5.  Hero Slider
   6.  Stripe Bar
   7.  Intro Section
   8.  Highlights Section
   9.  CTA Strip
   10. Footer
   11. WhatsApp Float
   12. Modals
   13. Buttons
   14. Animations & Reveal
   15. Responsive — Tablet (≤1100px)
   16. Responsive — Mobile (≤768px)
   17. Responsive — Small (≤380px)
   18. Accessibility
   ============================================================ */


/* ── 1. Reset & Variables ───────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold:       #C9A96E;
  --gold-light: #E2C98A;
  --gold-pale:  #F5EDD8;
  --dark:       #0D0D0D;
  --charcoal:   #1A1A1A;
  --mid:        #2A2A2A;
  --text:       #3A3A3A;
  --muted:      #888888;
  --white:      #F7F0DE;
  --off-white:  #F4F1EC;
  --border:     rgba(201, 169, 110, 0.25);
  --wa-green:   #25D366;
  --nav-h:      72px;
}


/* ── 2. Base ────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}


/* ── 3. Navigation ──────────────────────────────────────── */
/*
   Scope ALL nav rules to #mainNav so that <nav> elements
   used elsewhere (e.g. footer columns) are never affected.
*/
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#mainNav.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

/* Google Translate — Banner und Toolbar ausblenden */
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate { display: none !important; }
body { top: 0 !important; }

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  flex-shrink: 0;
}

.lang-divider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 6px 4px;
  transition: color 0.3s;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--gold);
}

.lang-btn--active {
  color: var(--gold);
  font-weight: 600;
}

/* Google Translate — eigene UI komplett ausblenden */
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame { display: none !important; }

body { top: 0 !important; }

/* Verhindert dass Google den Font überschreibt */
font#goog-gt-tt { display: none !important; }

/* Mobile — Switcher bleibt sichtbar neben dem Burger */
@media (max-width: 768px) {
  .lang-switcher {
    margin-right: 4px;
  }
  .lang-btn {
    font-size: 9px;
    padding: 4px 2px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 78px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  color: var(--dark) !important;
  background: var(--gold);
  padding: 10px 18px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  transition: background 0.3s !important;
  border-radius:6px;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-links a.nav-active {
  color: var(--gold);
}

/* Hamburger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── 4. Mobile Drawer ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  width: 100%;
  padding: 80px 40px 56px;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-menu a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.mobile-menu-cta {
  margin-top: 32px;
  padding: 18px 28px !important;
  background: var(--gold);
  color: var(--dark) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  text-align: center;
  border: none !important;
  border-top: none !important;
  border-radius:6px;
}

.mobile-menu-cta:hover {
  background: var(--gold-light) !important;
  padding-left: 28px !important;
}

.mobile-wa-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 16px !important;
  padding: 16px 20px !important;
  background: rgba(37, 211, 102, 0.1) !important;
  border: 1px solid rgba(37, 211, 102, 0.28) !important;
  border-top: 1px solid rgba(37, 211, 102, 0.28) !important;
  color: var(--wa-green) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}

.mobile-wa-link:hover {
  background: rgba(37, 211, 102, 0.18) !important;
  padding-left: 20px !important;
}

.mobile-wa-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 1px;
}


/* ── 5. Hero Slider ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.slides-container {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10, 10, 10, 0.74) 0%,
    rgba(10, 10, 10, 0.36) 55%,
    rgba(10, 10, 10, 0.58) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 80px 88px;
  max-width: 980px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5.4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1s 0.55s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s 0.8s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s 1.05s forwards;
}

/* Slide controls */
.slide-indicators {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 26px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.4s, background 0.4s;
  border: none;
  padding: 0;
}

.indicator.active {
  width: 48px;
  background: var(--gold);
}

.slide-counter {
  position: absolute;
  bottom: 32px;
  right: 80px;
  z-index: 10;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
}

.slide-counter span {
  color: var(--gold);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 10, 0.28);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  backdrop-filter: blur(4px);
}

.slide-arrow:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.15);
}

.slide-arrow.prev { left: 24px; }
.slide-arrow.next { right: 24px; }

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
}


/* ── 6. Stripe Bar ──────────────────────────────────────── */
.stripe {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  gap: 28px;
  overflow: hidden;
  flex-wrap: wrap;
}

.stripe-item {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.stripe-sep {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ── 7. Intro Section ───────────────────────────────────── */
.intro-wrap {
  background: var(--white);
}

.intro {
  padding: 110px 80px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.section-label {
  font-size: 16px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 30px;
}

.intro-title em {
  font-style: italic;
  color: var(--gold);
}

.intro-text {
  font-size: 15px;
  line-height: 1.88;
  color: #565656;
  font-weight: 300;
  margin-bottom: 14px;
}

.intro-text strong {
  color: var(--dark);
  font-weight: 500;
}

.intro-entry {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 20px 28px;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.entry-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  white-space: nowrap;
}

.entry-sep {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.entry-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

/* Intro image column */
.intro-right {
  position: relative;
}

.intro-image-wrap {
  position: relative;
}

.intro-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.intro-badge {
  position: absolute;
  top: 28px;
  left: -28px;
  background: var(--dark);
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  pointer-events: none;
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.badge-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}


/* ── 8. Highlights Section ──────────────────────────────── */
.highlights {
  background: var(--dark);
  padding: 100px 80px;
}

.highlights-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.highlights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.highlights-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.4vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  max-width: 460px;
}

.highlights-title em {
  font-style: italic;
  color: var(--gold);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.highlight-item {
  padding: 44px 38px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: background 0.4s;
}

.highlight-item:hover {
  background: rgba(201, 169, 110, 0.05);
}

.highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}

.highlight-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
}

.highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.highlight-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.highlight-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.highlight-item:hover .highlight-accent {
  width: 100%;
}

/* ── 9. Gallery ─────────────────────────────────────────── */
.gallery {
  background: var(--off-white);
  padding: 100px 80px;
}

.gallery-header {
  max-width: 1400px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  max-width: 520px;
}

.gallery-title em {
  font-style: italic;
  color: var(--gold);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 6px;
}

.gallery-item--large {
  grid-row: 1 / 3;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 100%);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.gallery-caption-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.gallery-item:hover::after {
  width: 100%;
}

.gallery-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── 9. CTA Strip ───────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 68px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
  max-width: 560px;
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* ── 10. Footer ─────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 64px 80px 36px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo img {
  height: 148px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
  max-width: 230px;
  line-height: 1.65;
}

.footer-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.24);
  text-decoration: none;
  color: var(--wa-green);
  font-size: 11px;
  line-height: 1.4;
  transition: background 0.3s;
}

.footer-wa:hover {
  background: rgba(37, 211, 102, 0.18);
}

.footer-wa-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 1px;
}

.footer-links {
  display: flex;
  gap: 52px;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col a.link-wa {
  color: var(--wa-green);
}

.footer-bottom {
  max-width: 1400px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}


/* ── 11. WhatsApp Float ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: var(--white);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
  padding: 14px 18px;
  max-width: 230px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
  position: relative;
}

.wa-tooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 20px;
  width: 14px;
  height: 7px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.wa-tooltip-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.wa-tooltip-text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  flex-shrink: 0;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.38);
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-btn svg {
  width: 30px;
  height: 30px;
}


/* ── 12. Modals ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  padding: 48px;
  position: relative;
  transform: translateY(18px);
  transition: transform 0.3s;
  max-height: 92svh;
  overflow-y: auto;
  border-radius: 6px;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  padding: 6px 10px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--dark);
}

.modal-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 26px;
  line-height: 1.25;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DDDDDD;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus {
  border-color: var(--gold);
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.5;
}

.modal-divider {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #EEEEEE;
}

.modal-alt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}

.modal-alt a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wa-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

.modal-alt a:hover {
  opacity: 0.8;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.success-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}

.success-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}


/* ── 13. Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  border-radius: 6px;
}

.btn-primary:hover {
  background: var(--gold-light);
}

/* Full-width variant (used inside modals) */
.btn-primary--full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius:6px;
}

.btn-ghost:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn-ghost svg {
  transition: transform 0.3s;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  border-radius:6px;
}

.btn-dark:hover {
  background: #222222;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: transparent;
  color: var(--dark);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  border: 2px solid var(--dark);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}


/* ── 14. Animations & Reveal ────────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8;  transform: translateX(-50%) translateY(6px); }
}

@keyframes waPulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.2); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 15. Responsive — Tablet (≤1100px) ──────────────────── */
@media (max-width: 1100px) {
  #mainNav { padding: 0 32px; }
  .nav-links { gap: 22px; }

  .hero-content { padding: calc(var(--nav-h) + 32px) 48px 72px; }
  .slide-indicators { left: 48px; }
  .slide-counter { right: 48px; }
  .slide-arrow { display: none; }

  .intro { padding: 80px 48px; gap: 56px; }
  .intro-badge { display: none; }

  .highlights { padding: 80px 48px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .cta-strip { padding: 56px 48px; }

  footer { padding: 56px 48px 32px; }

  .gallery { padding: 80px 48px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .gallery-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}


/* ── 16. Responsive — Mobile (≤768px) ───────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  #mainNav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-content { padding: calc(var(--nav-h) + 24px) 24px 90px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-primary { justify-content: center; padding: 16px 24px; }
  .btn-ghost { justify-content: center; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

  .slide-indicators { left: 24px; bottom: 26px; }
  .slide-counter { right: 24px; bottom: 18px; }
  .scroll-hint { display: none; }

  .intro { grid-template-columns: 1fr; padding: 60px 24px; gap: 44px; }
  .intro-image { height: 300px; }
  .intro-image-accent { display: none; }
  .intro-entry { width: 100%; }

  .highlights { padding: 60px 24px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlights-header { margin-bottom: 40px; }

  .cta-strip { padding: 48px 24px; flex-direction: column; align-items: stretch; gap: 28px; }
  .cta-strip-actions { flex-direction: column; }
  .btn-dark, .btn-outline-dark { justify-content: center; }

  footer { padding: 48px 24px 28px; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .wa-float { bottom: 20px; right: 16px; }
  .wa-btn { width: 54px; height: 54px; }

  .modal { padding: 32px 24px; }

  .gallery { padding: 60px 0 48px; }
  .gallery-header { padding: 0 24px; flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    grid-template-columns: unset;
    grid-template-rows: unset;
    max-width: 100%;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item,
  .gallery-item--large {
    flex: 0 0 82vw;
    height: 280px;
    scroll-snap-align: start;
    grid-row: unset;
    grid-column: unset;
    margin-left: 24px;
  }
  .gallery-item:last-child { margin-right: 24px; }
  .gallery-caption { opacity: 1; transform: translateY(0); }
  .gallery-item img { filter: brightness(0.75); }
  .gallery-dots { display: flex; }
}


/* ── 17. Responsive — Small (≤380px) ────────────────────── */
@media (max-width: 380px) {
  .hero-title { font-size: 30px; }
  .mobile-menu a { font-size: 24px; }
}


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