﻿:root {
  --black: #101010;
  --charcoal: #1a1a1a;
  --gold: #c9a24a;
  --soft-gold: #ead7a0;
  --paper: #f7f3ea;
  --white: #ffffff;
  --muted: #6e6a61;
  --line: rgba(16, 16, 16, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 16, 16, 0.96);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  color: var(--black);
  border-radius: 14px;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 8px 28px rgba(201, 162, 74, 0.35);
}

.brand strong {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  color: var(--soft-gold);
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: var(--soft-gold);
}

.nav-phone {
  padding: 10px 14px;
  border: 1px solid rgba(234, 215, 160, 0.45);
  border-radius: 999px;
  color: var(--soft-gold) !important;
  font-weight: 800;
}

.section {
  padding: clamp(52px, 8vw, 96px) 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 162, 74, 0.28), transparent 32%),
    linear-gradient(135deg, #101010 0%, #1d1d1d 58%, #2a2416 100%);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4.4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.microcopy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--soft-gold));
  color: var(--black);
  box-shadow: 0 14px 34px rgba(201, 162, 74, 0.27);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-panel {
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  border-radius: 28px;
  border-top: 8px solid var(--gold);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero-panel h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
}

.hero-panel p {
  color: var(--muted);
}

.panel-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 900;
  color: var(--black);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.07);
}

.service-card h3,
.proof-card h3 {
  color: var(--black);
}

.service-card p,
.proof-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card .details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.section-paper {
  background:
    linear-gradient(rgba(255,255,255,0.62), rgba(255,255,255,0.62)),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.checklist {
  display: grid;
  gap: 14px;
}

.check-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.check-row span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--soft-gold);
  border-radius: 14px;
  font-weight: 900;
}

.check-row p {
  margin: 0;
  color: var(--muted);
}

.check-row strong {
  color: var(--black);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.update-box {
  max-width: 880px;
}

.update-box p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.update-box ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta {
  padding: clamp(44px, 7vw, 72px) 0;
  background: var(--gold);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.final-cta .eyebrow {
  color: rgba(0,0,0,0.65);
}

.final-cta p {
  max-width: 700px;
  margin-bottom: 0;
}

.final-cta .button-primary {
  background: var(--black);
  color: var(--white);
}

.site-footer {
  padding: 24px 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--soft-gold);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 940px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-grid,
  .checklist-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.9rem;
  }

  .check-row {
    grid-template-columns: 1fr;
  }
}
