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

:root {
  --white: #ffffff;
  --off-white: #f9f8f6;
  --light: #f2f0ec;
  --border: #e8e5df;
  --muted: #9e9a94;
  --body: #3d3a35;
  --heading: #1a1815;
  --accent: #c8a96e;
  --accent-dark: #a8864e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   GLOW CURSOR — desktop only
───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .glow-cursor {
    position: fixed;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.12s ease, top 0.12s ease;
  }
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--heading);
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--heading); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--heading);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #2d2a25;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,24,21,0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  color: var(--body);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--heading);
  color: var(--heading);
  transform: translateY(-1px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-gold:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.25);
}

/* ─────────────────────────────────────────
   SECTION HELPERS
───────────────────────────────────────── */
.section {
  padding: 112px 48px;
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.section-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats {
  background: var(--heading);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .stats::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(200,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
}

.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   CTA DARK SECTION
───────────────────────────────────────── */
.cta-section {
  background: var(--heading);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .cta-section::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 500px;
    background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
  position: relative;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo { font-size: 13px; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--heading); }

/* ─────────────────────────────────────────
   SCROLL REVEAL (desktop only)
───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  .reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible { opacity: 1; transform: none; }

  .reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible { opacity: 1; transform: none; }

  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
}

/* ─────────────────────────────────────────
   DESKTOP GLOW BLOBS
───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  @keyframes floatBlob {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-10px, 15px); }
  }
}

/* ─────────────────────────────────────────
   MOBILE
───────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 10px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .nav-links a { font-size: 13px; }

  .section { padding: 64px 20px; }

  .stats { padding: 56px 20px; }
  .stats-inner { grid-template-columns: 1fr; gap: 36px; }
  .stat-num { font-size: 48px; }

  .cta-section { padding: 72px 20px; }

  footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
