/* ════════════════════════════════════════════
   RESET & CSS VARIABLES
   variables.css
════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Color Palette: Warm Luxury Dark ── */
  --black:       #080808;
  --black2:      #0d0d0d;
  --black3:      #111111;
  --surface:     #161616;
  --surface2:    #1c1c1c;
  --border:      rgba(255, 184, 0, 0.1);
  --border2:     rgba(255, 255, 255, 0.06);

  --gold:        #FFB800;
  --gold2:       #E8A200;
  --gold-dim:    rgba(255, 184, 0, 0.08);
  --gold-glow:   rgba(255, 184, 0, 0.25);

  --coral:       #FF6B35;
  --coral-dim:   rgba(255, 107, 53, 0.1);

  --cream:       #F5F0E8;
  --cream2:      #D4CDBE;
  --muted:       #6B6560;
  --muted2:      #8A8480;

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', serif;
  --font-head:    'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Spacing ── */
  --max-w:   1320px;
  --section-p: 130px 80px;
  --radius:    16px;
  --radius-lg: 24px;

  /* ── Shadows & Glows ── */
  --glow-gold: 0 0 60px rgba(255, 184, 0, 0.2);
  --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 40px 100px rgba(0, 0, 0, 0.7);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold), var(--coral));
  border-radius: 3px;
}

/* ── Selection ── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ── Links ── */
a { text-decoration: none; color: inherit; }

/* ── Shared layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-p);
}

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* ── Section label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ── Section title ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 64px;
}
.section-title .hl {
  font-style: italic;
  color: var(--gold);
}

/* ── Divider line ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-p: 90px 48px; }
}
@media (max-width: 768px) {
  :root { --section-p: 72px 24px; }
  .section-title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 40px; }
}

/* ── Global Animated Buttons ── */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
  cursor: none; /* Let custom cursor hover */
}

/* 1. Primary Button (Gold Glow + Reflection Shine) */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #FF9F00);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 184, 0, 0.4);
}

.btn-primary:hover::before {
  left: 150%;
  transition: left 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 2. Outline Button (Fill-Up Hover Animation) */
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  transition: top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--black);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.25);
}

.btn-outline:hover::before {
  top: 0;
}

