:root {
  --ink: #0d0d0d;
  --ink2: #1a1a1a;
  --ink3: #2a2a2a;
  --paper: #f7f5f0;
  --paper2: #eeebe3;
  --paper3: #e4e0d6;
  --gold: #b8955a;
  --gold2: #d4af78;
  --gold3: #8a6a38;
  --accent: #1a3a2a;
  --accent2: #2d5c40;
  --white: #ffffff;
  --border: rgba(13, 13, 13, 0.1);
  --border2: rgba(13, 13, 13, 0.06);
  --mono: 'Geist Mono', monospace;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── UTILITIES ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold3);
  border: 1px solid rgba(184, 149, 90, 0.3);
  padding: 4px 12px;
  border-radius: 2px;
}

.tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  top: 1rem;
}

.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0.5rem 0.5rem 2.5rem !important;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.3) inset,
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  width: auto !important;
  max-width: 90vw !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled .nav-inner {
  padding: 0.4rem 0.4rem 0.4rem 2rem !important;
  gap: 2.5rem;
  background: rgba(15, 15, 15, 0.95);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.4) inset;
}

.logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo span {
  color: var(--gold3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(247, 245, 240, 0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold3);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--gold3);
  color: var(--ink);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  background: #d9b882;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 149, 90, 0.4);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 16px;
  color: var(--ink3);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid var(--ink);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold3);
}

/* Hero right — stats panel */
.hero-panel {
  background: var(--ink);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2), var(--gold3));
}

.panel-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(247, 245, 240, 0.35);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1.25rem;
}

.stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 12px;
  color: rgba(247, 245, 240, 0.5);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Scroll indicator */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3rem;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border);
}

.scroll-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(13, 13, 13, 0.3);
}

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(247, 245, 240, 0.35);
  padding: 0 3rem;
  text-transform: uppercase;
}

.marquee-dot {
  color: var(--gold);
  margin-right: -2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTION COMMON ─── */
section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 4rem;
}

.section-eyebrow {
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 15px;
  color: var(--ink3);
  font-weight: 300;
  max-width: 520px;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ─── PROBLEM SECTION ─── */
.problem {
  background: var(--ink2);
  color: var(--paper);
}

.problem .section-title {
  color: var(--paper);
}

.problem .section-sub {
  color: rgba(247, 245, 240, 0.55);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.problem-card {
  background: var(--ink2);
  padding: 2rem;
}

.problem-card:hover {
  background: var(--ink3);
}

.problem-num {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(247, 245, 240, 0.2);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.problem-head {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.problem-desc {
  font-size: 13px;
  color: rgba(247, 245, 240, 0.45);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── SERVICES ─── */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.services-sticky {
  position: sticky;
  top: 6rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-item {
  background: var(--paper);
  padding: 2rem 2rem 2rem 1.75rem;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  cursor: default;
}

.service-item:hover {
  border-left-color: var(--gold);
  background: var(--white);
}

.service-num {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(13, 13, 13, 0.25);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.service-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 13px;
  color: var(--ink3);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tool-badge {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  background: var(--paper2);
  color: rgba(13, 13, 13, 0.45);
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ─── PROCESS ─── */
.process {
  background: var(--accent);
}

.process .section-title {
  color: var(--paper);
}

.process .section-sub {
  color: rgba(247, 245, 240, 0.55);
}

.process .tag {
  color: rgba(212, 175, 120, 0.8);
  border-color: rgba(212, 175, 120, 0.25);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.step {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold3);
  background: rgba(184, 149, 90, 0.08);
  border: 1px solid rgba(184, 149, 90, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.step:hover .step-num {
  background: var(--gold3);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(184, 149, 90, 0.3);
  border-color: var(--gold3);
  transform: translateY(-4px);
}

.step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 12px;
  color: rgba(247, 245, 240, 0.45);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── RESULTS ─── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.result-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  opacity: 0;
  transition: opacity 0.2s;
}

.result-card:hover::after {
  opacity: 1;
}

.result-metric {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--gold3);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.result-sub {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 300;
  line-height: 1.6;
}

.result-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(13, 13, 13, 0.25);
  margin-top: 1.25rem;
  text-transform: uppercase;
}

/* ─── WHO WE HELP ─── */
.who {
  background: var(--paper2);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.who-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.who-icon {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.who-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold2);
  fill: none;
  stroke-width: 1.5;
}

.who-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.who-desc {
  font-size: 13px;
  color: var(--ink3);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}

.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.02);
}

.price-card.featured .price-name {
  color: rgba(247, 245, 240, 0.5);
}

.price-card.featured .price-amount {
  color: var(--gold2);
}

.price-card.featured .price-period {
  color: rgba(247, 245, 240, 0.3);
}

.price-card.featured .price-desc {
  color: rgba(247, 245, 240, 0.5);
}

.price-card.featured .price-item {
  color: rgba(247, 245, 240, 0.65);
  border-color: rgba(255, 255, 255, 0.07);
}

.price-card.featured .price-item::before {
  color: var(--gold2);
}

.price-card.featured .price-cta {
  background: var(--gold3);
  border-color: var(--gold3);
  color: var(--paper);
}

.price-card.featured .price-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  background: var(--gold3);
  color: var(--paper);
  padding: 4px 14px;
  border-radius: 0 0 4px 4px;
  text-transform: uppercase;
}

.price-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(13, 13, 13, 0.3);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.price-period {
  font-size: 12px;
  color: rgba(13, 13, 13, 0.35);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.price-desc {
  font-size: 13px;
  color: var(--ink3);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 1.5rem;
}

.price-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.price-item {
  font-size: 13px;
  color: var(--ink3);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 0.6rem;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold3);
  font-size: 11px;
  top: 2px;
}

.price-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  padding: 13px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  background: transparent;
  transition: all 0.2s;
}

.price-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ─── CTA SECTION ─── */
.final-cta {
  background: var(--ink);
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184, 149, 90, 0.08), transparent);
}

.cta-eyebrow {
  margin-bottom: 1.5rem;
}

.cta-eyebrow .tag {
  color: rgba(212, 175, 120, 0.7);
  border-color: rgba(212, 175, 120, 0.2);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.cta-title em {
  font-style: italic;
  color: var(--gold2);
}

.cta-sub {
  font-size: 15px;
  color: rgba(247, 245, 240, 0.45);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-block;
  background: var(--gold3);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--gold3);
  transition: all 0.25s;
}

.btn-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-block;
  color: rgba(247, 245, 240, 0.5);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 245, 240, 0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-outline-light:hover {
  color: var(--gold2);
  border-color: var(--gold3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: rgba(247, 245, 240, 0.6);
}

.footer-logo span {
  color: var(--gold3);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 12px;
  color: rgba(247, 245, 240, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold2);
}

.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(247, 245, 240, 0.18);
  letter-spacing: 0.06em;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-sticky {
    position: relative;
    top: 0;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }
}

/* ─── INTERACTIVE BACKGROUND ─── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 149, 90, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}