:root {
  --bg: #070707;
  --bg-soft: #0f0f10;
  --surface: #121214;
  --surface-2: #17171a;
  --text: #f7f4ea;
  --muted: #cbc4b4;
  --muted-2: #a69d89;
  --line: rgba(212, 175, 55, 0.18);
  --gold: #d4af37;
  --gold-soft: #f1d47b;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { 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:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at left center, rgba(212, 175, 55, 0.05), transparent 22%),
    var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.1; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.45));
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted-2);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-footer a:hover { color: var(--gold-soft); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: linear-gradient(180deg, #e2bf56, #b79326);
  color: #111;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button:hover { transform: translateY(-1px); }
.button-secondary,
.button-outline {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}
.button-secondary:hover,
.button-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}
.button-sm {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: start;
}

.eyebrow, .section-kicker, .panel-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -0.04em;
  max-width: 20ch;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-list li {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  display: flex;
}

.panel-card,
.service-card,
.step-card,
.contact-card,
.callout-box {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.4rem;
  width: 100%;
  align-self: end;
}

.panel-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.panel-item:first-of-type { margin-top: 0.8rem; }
.panel-title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.panel-text { color: var(--muted); }

.section {
  padding: 5rem 0;
}
.section-dark {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.intro-strip {
  padding-top: 1.5rem;
}

.split-strip,
.two-col,
.contact-wrap,
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head p { color: var(--muted); }

.rich-copy p,
.split-strip p,
.contact-wrap > div > p,
.feature-list,
.step-card p,
.service-card p {
  color: var(--muted);
}

.services-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card,
.step-card {
  padding: 1.35rem;
}

.service-card h3,
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
  font-weight: 800;
}

.callout {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.callout-box {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
}
.feature-list li { margin-bottom: 0.85rem; }
.feature-list strong { color: var(--text); }

.contact-card {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}
.contact-card label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: #8d8779; }
.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.34);
}

.contact-meta p { margin-bottom: 0.4rem; }
.small-note {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 1.4rem 0 2.4rem;
}
.footer-wrap {
  align-items: center;
}
.site-footer p,
.site-footer nav {
  color: var(--muted-2);
}
.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav-wrap,
  .footer-wrap,
  .split-strip,
  .two-col,
  .contact-wrap,
  .hero-grid,
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    display: grid;
    padding: 1rem 0;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
  }

  .callout-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-tag {
    white-space: normal;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 3.75rem; }
  .button, .button-secondary, .button-outline { width: 100%; }
  .brand-logo { width: 100px; }
  .hero h1 { max-width: 100%; }
}
