:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --text: #f0ede8;
  --text-muted: #6b6b6b;
  --gold: #c9a84c;
  --border: #1c1c1c;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Dark fallback — canvas paints over this once loaded */
html {
  background: var(--bg);
  overflow-x: hidden;
}

/* Transparent so the canvas behind it shows through */
body {
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Fade-in on scroll ── */
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero items animate in on load */
.fade-load {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav-contact {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-contact:hover { color: var(--gold); }

/* ── Hero ── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-inner {
  padding: 9rem 2.5rem 5rem;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  will-change: transform;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation-delay: 0.05s;
}

h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 13ch;
  margin-bottom: 1.5rem;
  animation-delay: 0.15s;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2.75rem;
  animation-delay: 0.25s;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.875rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  animation-delay: 0.35s;
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.25);
}
.btn-cta:hover { opacity: 0.82; box-shadow: 0 0 28px rgba(201, 168, 76, 0.4); }
.btn-cta svg { flex-shrink: 0; }

/* ── Section base ── */
.section-wrap {
  padding: 6rem 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section-divider {
  height: 1px;
  background: var(--border);
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 3rem;
}

/* ── Work ── */
.work-empty {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem 2rem;
  max-width: 540px;
}
.work-empty-text {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}
.work-empty-text a {
  color: var(--gold);
  text-decoration: none;
}
.work-empty-text a:hover { text-decoration: underline; }

/* ── About ── */
#about p:not(.eyebrow) {
  font-size: 1.1875rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 58ch;
  color: var(--text);
}
#about strong {
  font-weight: 600;
  color: var(--text);
}

/* ── Why ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 620px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  border: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s;
}
.why-card:hover { border-color: var(--gold); }

.why-stat {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.why-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.why-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.why-source {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3a3a3a;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.pricing-col-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-col-mine .pricing-col-label { color: var(--gold); }

.pricing-col-mine {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 0.125rem;
}

.pricing-list { list-style: none; }

.pricing-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-item:first-child { border-top: 1px solid var(--border); }

.pricing-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}
.pricing-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.5;
}
.pricing-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.1rem;
}
.pricing-price.muted {
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-referral {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.6;
}
.pricing-referral strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Contact ── */
.contact-block { max-width: 540px; }

.contact-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-channels { display: flex; flex-direction: column; gap: 0; }

.contact-channel-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s;
  color: var(--text);
}
.contact-channel-link:first-child { border-top: 1px solid var(--border); }
.contact-channel-link:hover { color: var(--gold); }
.contact-channel-link:hover .contact-arrow { transform: translateX(4px); }

.contact-channel-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 3.5rem;
  flex-shrink: 0;
}
.contact-channel-value {
  font-size: 1rem;
  font-weight: 400;
  flex: 1;
}
.contact-arrow {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--gold);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: center;
}
footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Mobile ── */
@media (max-width: 619px) {
  nav { padding: 1rem 1.25rem; }
  .hero-inner { padding: 7.5rem 1.25rem 4rem; }
  .section-wrap { padding: 4.5rem 1.25rem; }
  footer { padding: 1.5rem 1.25rem; }
}

/* Disable motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .fade-load, .fade {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
  .fade.visible {
    opacity: 1;
    transform: none;
  }
  #bg-canvas { display: none; }
}
