/* ============================================================
   THE RAE THINGS FLORIST — Global Stylesheet
   Premium. Minimal. Editorial. Gold & Beige.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Jost:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Background palette */
  --bg-primary:    #FAF8F4;
  --bg-secondary:  #F3EDE4;
  --bg-dark:       #3D322B; /* Was #120F0C (near black) */
  --bg-card:       #FFFFFF;
  --bg-muted:      #EDE5D8;

  /* Gold palette — Lighter, brighter, high-contrast luxury gold */
  --gold-light:         #FCE8B3;
  --gold-main:          #E5C568;
  --gold-dark:          #B88E28;
  --gold-text-on-light: #855E0C; /* Rich deep gold for high contrast on light backgrounds */
  --gold-pale:          #FAF0D0;
  --gold-bright:        #FFE485;
  --gold-line:          rgba(184, 142, 40, 0.45);
  --gold-gradient:      linear-gradient(135deg, #FFF0C4 0%, #E5C568 50%, #C49A32 100%);

  /* Text palette */
  --text-primary:  #3D322B; /* Was #181410 (near black) */
  --text-secondary:#6B5C51; /* Was #524233 */
  --text-muted:    #8C7A67;
  --text-on-dark:  #FAF8F4;
  --text-gold:     #E5C568;

  /* Typography */
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-display:  'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad:   120px;
  --section-pad-sm: 72px;

  /* Transitions */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 0.3s;
  --duration-med:  0.6s;
  --duration-slow: 1s;

  /* Borders */
  --border-gold:   1px solid rgba(229, 197, 104, 0.4);
  --border-light:  1px solid rgba(24, 20, 16, 0.08);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}



/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}

.page-transition.entering {
  transform: translateY(0);
}

/* ============================================================
   SCROLL REVEAL — Base States
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  padding: 18px 60px;
  background: rgba(18, 15, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FAF8F4;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--gold-bright);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold-bright);
  font-weight: 600;
}

/* Light Theme Nav Override (for light hero sections) */
.nav.nav-light-theme:not(.scrolled) .nav-link {
  color: var(--text-primary);
  text-shadow: none;
}
.nav.nav-light-theme:not(.scrolled) .nav-link::after {
  background: var(--gold-main);
}
.nav.nav-light-theme:not(.scrolled) .nav-link:hover {
  color: var(--gold-main);
}
.nav.nav-light-theme:not(.scrolled) .nav-link.active {
  color: var(--gold-main);
}

/* Bright, High-Visibility Gold Nav Button */
.nav-btn-gold {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #120F0C !important;
  background: linear-gradient(135deg, #FFF5D6 0%, #FCE8B3 40%, #E5C568 100%);
  border: 1px solid #FFE485;
  padding: 10px 22px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(247, 227, 161, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF0C4 50%, #E5C568 100%);
  box-shadow: 0 6px 24px rgba(247, 227, 161, 0.5), inset 0 1px 0 #FFFFFF;
  color: #120F0C !important;
}

.nav-logo {
  text-align: center;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FAF8F4;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 3px;
}

.nav.nav-light-theme:not(.scrolled) .nav-logo-text {
  color: var(--text-primary);
  text-shadow: none;
}
.nav.nav-light-theme:not(.scrolled) .nav-logo-sub {
  color: var(--gold-dark);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
  transition: all 0.3s var(--ease-out);
}

/* Mobile overlay nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

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

.nav-overlay .nav-link {
  color: var(--text-on-dark);
  font-size: 14px;
  letter-spacing: 0.25em;
}

.nav-overlay .nav-link:hover {
  color: var(--gold-light);
}

.nav-close {
  position: absolute;
  top: 32px;
  right: 60px;
  font-size: 28px;
  color: var(--text-on-dark);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-close:hover {
  opacity: 1;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.display-serif {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text-on-light);
}

.eyebrow-dark {
  color: var(--gold-light);
}

.gold-line-decor {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.gold-line-decor::before,
.gold-line-decor::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-main), transparent);
  max-width: 60px;
}

.gold-line-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-main);
  margin: 24px 0;
}

.gold-line-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  transition: transform 0.4s var(--ease-out);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-gold {
  background: linear-gradient(135deg, #E5C568 0%, #C49A32 100%);
  border-color: #C49A32;
  color: #120F0C;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(196, 154, 50, 0.3);
}

.btn-gold::before {
  background: linear-gradient(135deg, #FFFFFF 0%, #FCE8B3 100%);
}

.btn-gold:hover {
  color: #120F0C;
  box-shadow: 0 6px 28px rgba(229, 197, 104, 0.5);
}

.btn-gold-bright {
  background: linear-gradient(135deg, #FFF5D6 0%, #FCE8B3 50%, #E5C568 100%);
  border: 1px solid #FFE485;
  color: #120F0C;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(247, 227, 161, 0.4);
}

.btn-gold-bright::before {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF0C4 100%);
}

.btn-gold-bright:hover {
  color: #120F0C;
  box-shadow: 0 8px 32px rgba(247, 227, 161, 0.6);
}

.btn-outline-gold {
  background: rgba(18, 15, 12, 0.4);
  border: 1px solid #FCE8B3;
  color: #FCE8B3;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.btn-outline-gold::before {
  background: linear-gradient(135deg, #FCE8B3 0%, #E5C568 100%);
}

.btn-outline-gold:hover {
  color: #120F0C;
  border-color: #FFE485;
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-main);
  color: var(--gold-main);
}

.btn-outline::before {
  background: var(--gold-main);
}

.btn-outline:hover {
  color: #1E1A15;
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
}

.btn-outline-dark::before {
  background: var(--gold-main);
}

.btn-outline-dark:hover {
  color: #1E1A15;
  border-color: var(--gold-main);
}

.btn-outline-darker {
  background: transparent;
  border-color: var(--text-secondary);
  color: var(--text-primary);
  font-weight: 500;
}

.btn-outline-darker::before {
  background: var(--text-primary);
}

.btn-outline-darker:hover {
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-light {
  background: transparent;
  border-color: rgba(250, 248, 244, 0.5);
  color: var(--text-on-dark);
}

.btn-light::before {
  background: rgba(250, 248, 244, 0.1);
}

.btn-light:hover {
  color: var(--text-on-dark);
  border-color: var(--text-on-dark);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: 14px;
  transition: transform 0.3s var(--ease-out);
  position: relative;
  z-index: 1;
}

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

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-main);
  background: transparent;
  transition: all 0.3s var(--ease-out);
}

.btn-whatsapp:hover {
  background: var(--gold-main);
  color: #1E1A15;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: var(--section-pad-sm) 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ============================================================
   HERO — SHARED
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── NAV DARK FOR LIGHT HEROES ───────────────────────────── */
.nav-dark .nav-link,
.nav-dark .nav-logo-text,
.nav-dark .nav-logo-sub {
  color: var(--text-primary);
  text-shadow: none;
}

.nav-dark.scrolled .nav-link,
.nav-dark.scrolled .nav-logo-text,
.nav-dark.scrolled .nav-logo-sub {
  color: #FAF8F4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nav-dark .nav-toggle span {
  background-color: var(--text-primary);
}

.nav-dark.scrolled .nav-toggle span {
  background-color: #FAF8F4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 26, 21, 0.72) 0%,
    rgba(30, 26, 21, 0.28) 60%,
    rgba(30, 26, 21, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 60px 60px;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-main);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--text-on-dark);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 244, 0.75);
  max-width: 400px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 248, 244, 0.5);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-main), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================================
   WORD REVEAL (staggered headline animation)
   ============================================================ */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
}

.word-reveal .word-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease-out);
}

.word-reveal.revealed .word-inner {
  transform: translateY(0);
}

/* stagger each word */
.word-reveal .word:nth-child(1) .word-inner { transition-delay: 0.05s; }
.word-reveal .word:nth-child(2) .word-inner { transition-delay: 0.12s; }
.word-reveal .word:nth-child(3) .word-inner { transition-delay: 0.19s; }
.word-reveal .word:nth-child(4) .word-inner { transition-delay: 0.26s; }
.word-reveal .word:nth-child(5) .word-inner { transition-delay: 0.33s; }
.word-reveal .word:nth-child(6) .word-inner { transition-delay: 0.40s; }
.word-reveal .word:nth-child(7) .word-inner { transition-delay: 0.47s; }
.word-reveal .word:nth-child(8) .word-inner { transition-delay: 0.54s; }
.word-reveal .word:nth-child(9) .word-inner { transition-delay: 0.61s; }
.word-reveal .word:nth-child(10) .word-inner { transition-delay: 0.68s; }

/* ============================================================
   GOLD ANIMATED LINE DIVIDER
   ============================================================ */
.draw-line {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold-main), var(--gold-light));
  transition: width 1.2s var(--ease-out);
}

.draw-line.visible {
  width: 100%;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(30, 26, 21, 0.12), 0 0 0 1px var(--gold-line);
}

.card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 28px 32px 32px;
}

.card-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-text-on-light);
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-enquire {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text-on-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}

.card:hover .card-enquire {
  gap: 14px;
  color: var(--gold-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 40px;
  border-top: var(--border-gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(250, 248, 244, 0.5);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.6);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.3);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social-link {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.4);
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: var(--gold-light);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

/* ============================================================
   PARALLAX WRAPPER
   ============================================================ */
.parallax-wrap {
  overflow: hidden;
}

.parallax-img {
  will-change: transform;
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  height: 65vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 72px;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-item {
  border-bottom: var(--border-gold);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  cursor: none;
  transition: color 0.3s;
}

.accordion-trigger:hover {
  color: var(--gold-dark);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-main);
  font-size: 20px;
  transition: transform 0.4s var(--ease-out);
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
}

.accordion-body-inner {
  padding-bottom: 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   FORM
   ============================================================ */
.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text-on-light);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(30, 26, 21, 0.2);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-main);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

.form-select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='1'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  padding-right: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 90px;
    --section-pad-sm: 56px;
  }

  .nav {
    padding: 24px 40px;
  }

  .nav.scrolled {
    padding: 16px 40px;
  }

  .container,
  .container-narrow {
    padding: 0 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .hero-content {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
    --section-pad-sm: 48px;
  }

  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .nav {
    padding: 20px 24px;
    grid-template-columns: 1fr auto;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .container,
  .container-narrow {
    padding: 0 24px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-hero-content {
    padding: 0 24px 56px;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 16px 20px;
  }

  .container,
  .container-narrow {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }
}
