/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --wine:        #5C1A2B;
  --wine-deep:   #3D0F1C;
  --wine-mid:    #7A2238;
  --wine-soft:   rgba(92, 26, 43, 0.08);
  --wine-light:  rgba(92, 26, 43, 0.18);

  --bg:          #FFFFFF;
  --bg-2:        #FAF8F6;
  --bg-3:        #F4F0ED;

  --text:        #1A1218;
  --muted:       #6B5E65;
  --faint:       #B0A4A8;

  --border:      #EAE4E7;
  --border-2:    #D8CDD2;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 72px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   24px;
  --radius-full: 9999px;
}

/* ── GLOBAL BASE ── */
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-f1 { animation: fadeUp 0.7s 0.05s both; }
.animate-f2 { animation: fadeUp 0.7s 0.15s both; }
.animate-f3 { animation: fadeUp 0.7s 0.25s both; }
.animate-f4 { animation: fadeUp 0.7s 0.35s both; }
.animate-f5 { animation: fadeUp 0.7s 0.45s both; }
.animate-f6 { animation: fadeUp 0.7s 0.55s both; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92, 26, 43, 0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(92, 26, 43, 0); }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}
[data-reveal]:not([data-reveal="left"]):not([data-reveal="right"]):not([data-reveal="scale"]) {
  transform: translateY(22px);
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.93); }

[data-reveal].visible {
  opacity: 1;
  transform: none;
}
