:root {
  --bg: #0a0a0a;
  --bg-elev: #15110b;
  --gold: #d4a017;
  --gold-soft: #c9a961;
  --text: #f5f1e8;
  --text-mute: #8a7d6a;
  --border: #2a2218;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1200px;
  --pad-x: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad-x); }

.eyebrow {
  font-size: 11px; letter-spacing: 4px; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
}

.btn {
  display: inline-block; padding: 14px 28px;
  font-size: 11px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
  border: 1px solid var(--gold); cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(212, 160, 23, 0.1); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name {
  font-family: var(--sans); font-size: 13px; letter-spacing: 4px; font-weight: 700;
  color: var(--text);
}
.nav-main { display: flex; gap: 32px; }
.nav-main a {
  color: var(--text-mute); font-size: 12px; letter-spacing: 2px; font-weight: 500;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-main a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-main {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column; padding: 32px;
    transform: translateX(100%); transition: transform 0.3s;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main a { font-size: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
}

.hero { position: relative; padding-block: clamp(80px, 14vw, 160px); overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 8vw, 96px); line-height: 0.95; letter-spacing: -1px;
  margin-block: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub { color: var(--text-mute); font-size: clamp(15px, 1.8vw, 18px); max-width: 540px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-glow {
  position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero-glow { width: 300px; height: 300px; right: -100px; }
}

.services { padding-block: clamp(80px, 12vw, 140px); border-top: 1px solid var(--border); }
.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: -0.5px;
  margin-block: 16px 64px; max-width: 720px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  padding: 40px 32px; background: var(--bg-elev); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-num {
  font-family: var(--serif); font-size: 32px; color: var(--gold); font-style: italic;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; margin-bottom: 16px;
}
.service-card p { color: var(--text-mute); font-size: 14px; line-height: 1.7; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; gap: 16px; } }

.impact {
  padding-block: clamp(80px, 12vw, 140px);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
}
.impact .section-title { color: var(--text); }
.section-lead { color: var(--text-mute); font-size: 17px; max-width: 640px; margin-bottom: 64px; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.impact-stat { background: var(--bg); padding: 40px 32px; }
.impact-stat .num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 6vw, 72px); line-height: 1; color: var(--text); margin-bottom: 12px;
}
.impact-stat .num span { color: var(--gold); font-style: italic; }
.impact-stat .label { color: var(--text-mute); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; line-height: 1.4; }
.impact-stat .label small { display: block; text-transform: none; letter-spacing: 0; font-size: 11px; color: var(--gold-soft); margin-top: 4px; font-weight: 400; }
.impact-highlight { background: var(--gold); }
.impact-highlight .num, .impact-highlight .num span { color: var(--bg); }
.impact-highlight .label { color: var(--bg); }
.impact-highlight .label small { color: rgba(10,10,10,0.7); }
@media (max-width: 900px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .impact-grid { grid-template-columns: 1fr; } }

.about { padding-block: clamp(80px, 12vw, 140px); }
.about-copy p { color: var(--text-mute); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

.contact { padding-block: clamp(80px, 12vw, 140px); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.contact-card { display: block; padding: 32px; border: 1px solid var(--border); transition: border-color 0.2s; }
a.contact-card:hover { border-color: var(--gold); }
.contact-label { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.contact-value { font-family: var(--serif); font-size: 22px; color: var(--text); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.site-footer { padding-block: 32px; border-top: 1px solid var(--border); }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-meta { color: var(--text-mute); font-size: 12px; }

/* Service badge */
.service-badge {
  display: inline-block; margin-top: 16px;
  font-size: 10px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
  color: var(--gold-soft); border-top: 1px solid var(--border); padding-top: 12px; width: 100%;
}

/* Testimonial */
.testimonial {
  margin-top: 32px; padding: 24px 28px;
  border-left: 3px solid var(--gold); background: var(--bg-elev);
}
.testimonial blockquote { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.6; color: var(--text); margin-bottom: 12px; }
.testimonial cite { font-size: 12px; letter-spacing: 2px; color: var(--gold-soft); text-transform: uppercase; font-style: normal; }

/* Compliance section */
.compliance { padding-block: clamp(60px, 8vw, 100px); border-top: 1px solid var(--border); }
.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 600px) { .compliance-grid { grid-template-columns: 1fr; } }
.compliance-card { padding: 28px 24px; border: 1px solid var(--border); background: var(--bg-elev); }
.compliance-card .comp-label { font-size: 10px; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.compliance-card .comp-desc { color: var(--text-mute); font-size: 13px; }
