:root {
  --bg: #0d0d0d;
  --surface: #151515;
  --surface-soft: #1d1d1d;
  --text: #f3efe5;
  --muted: #c8bb98;
  --line: rgba(212, 175, 55, 0.22);
  --brand: #d4af37;
  --brand-dark: #b8921f;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
a:focus-visible,
.button:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.38);
  outline-offset: 3px;
}

p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.3rem; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  z-index: 100;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.nav-wrap, .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0.35rem;
}

.brand-name { font-weight: 700; }
.brand-subtitle, .site-footer p, .section-intro { color: var(--muted); }

.hero-copy, .hero-card p, .info-card p, .stat-card span, .site-footer, .contact-meta, .check-list li, .hero-points li, .section p {
  color: #e6dcc6;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid, .two-col, .cta-box {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.hero-copy {
  font-size: 1.15rem;
  max-width: 60ch;
  color: #f0e7d2;
}

.hero-intro-block {
  margin: 1.5rem 0 0;
  padding: 1.4rem 1.5rem;
  border-radius: 22px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.hero-intro-title {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-bottom: 0.9rem;
}

.hero-areas-block {
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.2rem 1rem;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.16);
}

.hero-areas-block h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.6rem;
}

.hero-pill-grid {
  margin-top: 0.85rem;
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #f1d06d);
  color: #111111;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: linear-gradient(135deg, #e3bf4c, #f4d87f);
  color: #111111;
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--text);
  border-color: var(--brand);
  background: rgba(212, 175, 55, 0.1);
}

.button-small { padding: 0.7rem 1rem; }

.hero-points, .check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.hero-points li, .check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.hero-points li::before, .check-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-card, .stat-card, .info-card, .cta-box {
  background: linear-gradient(180deg, rgba(24,24,24,0.98), rgba(18,18,18,0.98));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
}

.hero-headshot {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0;
  font-weight: 600;
}

.contact-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--muted);
}

.badge-row, .pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge-row span, .pill-grid span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-size: 0.95rem;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: #111111;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.stats-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stat-card, .info-card {
  padding: 1.5rem;
}

.service-note {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  color: #f0e7d2;
  font-weight: 500;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.cta-box {
  padding: 2rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0.3rem;
}

@media (max-width: 860px) {
  .nav-wrap, .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero-grid, .two-col, .cta-box, .stats-grid, .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }
}
