/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
  --c-noir:        #0E0E0E;
  --c-charcoal:    #1A1A1A;
  --c-dark-card:   #161616;
  --c-gold:        #C9922A;
  --c-gold-light:  #E4B355;
  --c-gold-pale:   #F5E6C8;
  --c-terracotta:  #A64B2A;
  --c-cream:       #FAF7F2;
  --c-white:       #FFFFFF;
  --c-muted:       #7A7369;
  --c-border:      #E8E0D4;
  --f-display: 'Playfair Display', Georgia, serif;
  --f-serif:   'Cormorant Garamond', Georgia, serif;
  --f-sans:    'Jost', sans-serif;
  --sp-xs:  8px;  --sp-sm:  16px; --sp-md:  32px;
  --sp-lg:  64px; --sp-xl:  96px; --sp-2xl: 140px;
  --max-w: 1160px;
  --gutter: clamp(20px, 5vw, 60px);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  background: var(--c-cream);
  color: var(--c-noir);
  overflow-x: hidden;
  line-height: 1.6;
}
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
svg.icon { display: inline-block; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section         { padding: var(--sp-2xl) 0; }
.section--dark     { background: var(--c-noir); }
.section--charcoal { background: var(--c-charcoal); }
.section--white    { background: var(--c-white); }
.section--cream    { background: var(--c-cream); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════ */
.label {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-sm);
}
.label--light { color: var(--c-gold-light); }

.heading-lg {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 700;
}

.subheading {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 300;
  color: var(--c-muted);
}

.italic      { font-style: italic; }
.gold        { color: var(--c-gold); }
.gold-light  { color: var(--c-gold-light); }
.text-white  { color: var(--c-white); }
.text-muted-light { color: rgba(255,255,255,0.5); }
.text-center { text-align: center; }

.divider {
  width: 48px;
  height: 1px;
  background: var(--c-gold);
  margin: var(--sp-md) 0;
}

.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1       { transition-delay: 0.1s; }
.reveal-delay-2       { transition-delay: 0.2s; }
.reveal-delay-3       { transition-delay: 0.3s; }
.reveal-delay-4       { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   LOGO PLACEHOLDER
═══════════════════════════════════════════ */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1.5px dashed currentColor;
  opacity: 0.6;
}
.logo-placeholder--light { color: var(--c-white); }
.logo-placeholder--gold  { color: var(--c-gold-light); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 40px;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg   { width: 16px; height: 16px; }

.btn-gold          { background: var(--c-gold); color: var(--c-white); }
.btn-gold:hover    { background: var(--c-gold-light); box-shadow: 0 8px 32px rgba(201,146,42,0.3); }

.btn-ghost         { background: transparent; color: var(--c-white); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover   { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.5); }

.btn-dark          { background: var(--c-noir); color: var(--c-white); }
.btn-dark:hover    { background: var(--c-charcoal); }

/* ═══════════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  animation: fab-pulse 3s ease-in-out infinite;
  color: white;
}
.whatsapp-fab svg   { width: 28px; height: 28px; }
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  animation: none;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
}