:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --text: #111111;
  --muted: #5d5d5d;
  --border: #dddddd;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, 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;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.nav-wrap {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-mark {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible,
.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--text);
}

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

.hero-grid,
.intro-grid,
.split-grid,
.cta-box,
.pricing-box {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.35fr 0.85fr;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 12ch;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.lead,
.section-head p,
.intro p,
.split-grid p,
.pricing-wrap p,
.cta-box p,
.service-card p,
blockquote p,
.stat-card p,
.contact-card p {
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #000;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: #000;
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: #000;
}

.hero-points,
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
}

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

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #000;
}

.hero-card {
  display: grid;
  gap: 1rem;
}

.stat-card,
.info-panel,
.pricing-box,
.service-card,
.contact-card,
blockquote {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.15;
  margin: 0.5rem 0 0.75rem;
}

.stat-outline {
  background: #000;
  color: #fff;
}

.stat-outline .stat-label,
.stat-outline p {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 5rem 0;
}

.section-contrast,
.cta-section {
  background: var(--surface);
}

.intro-grid,
.split-grid,
.cta-box {
  grid-template-columns: 1fr 1fr;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.narrow {
  max-width: 700px;
}

.card-grid,
.quote-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 1.5rem;
  min-height: 220px;
}

.pricing-wrap {
  display: grid;
  gap: 2rem;
}

.pricing-box {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 2rem;
  align-items: center;
}

.price {
  display: inline-block;
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.price span {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 0.3rem;
}

.pricing-note {
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}

blockquote p {
  font-size: 1.05rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-card a {
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .split-grid,
  .cta-box,
  .pricing-box,
  .card-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .pricing-note {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav {
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }
}
