:root {
  --rush: #F2540D;
  --rush-dark: #C2410C;
  --rush-light: #FFE3D1;
  --night: #14213D;
  --amber: #FFB703;
  --sand-50: #FFFBF6;
  --sand-100: #FFF1E6;
  --sand-200: #F0DDC9;
  --ink: #1F1B16;
  --muted: #7A6F62;
}

* { box-sizing: border-box; }

:focus-visible {
  outline: 3px solid var(--rush);
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--sand-50);
}

h1, h2, h3, .brand { font-family: 'Space Grotesk', sans-serif; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 720px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--sand-200);
  background: rgba(255, 251, 246, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--night);
  text-decoration: none;
}
.brand-logo { height: 32px; width: auto; display: block; }
.brand span { color: var(--rush); }
.main-nav a {
  margin-left: 28px;
  color: var(--night);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.main-nav a:hover { color: var(--rush); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--rush); color: #fff; }
.btn-primary:hover { background: var(--rush-dark); }
.btn-outline { background: #fff; color: var(--night); border-color: var(--sand-200); }
.btn-outline:hover { background: var(--sand-100); }
.btn-block { width: 100%; justify-content: center; }

/* Hero */
.hero { padding: 64px 0 80px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rush);
  background: var(--rush-light);
  padding: 6px 14px;
  border-radius: 999px;
}
h1 {
  font-size: clamp(2.25rem, 5vw + 1rem, 3.6rem);
  line-height: 1.05;
  margin: 20px 0;
  color: var(--night);
}
.lead { font-size: 1.1rem; color: var(--muted); max-width: 440px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 32px 0 16px; }
.fine-print { font-size: 0.85rem; color: var(--muted); }

.hero-card {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px -15px rgba(20, 33, 61, 0.15);
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.route-track {
  height: 3px;
  background-image: repeating-linear-gradient(90deg, var(--rush) 0 10px, transparent 10px 20px);
  margin: 12px 0 32px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-100);
  text-align: center;
}
.hero-stats strong { display: block; font-size: 1.5rem; color: var(--night); font-family: 'Space Grotesk', sans-serif; }
.hero-stats span { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* How it works */
.how-it-works { background: #fff; border-top: 1px solid var(--sand-200); border-bottom: 1px solid var(--sand-200); padding: 72px 0; }
.how-it-works h2 { font-size: 2rem; color: var(--night); max-width: 480px; }
.steps-grid { display: grid; gap: 32px; margin-top: 40px; }
@media (min-width: 800px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-number {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--night); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-family: 'Space Grotesk', sans-serif;
}
.step h3 { margin: 8px 0; color: var(--night); }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* Generic page header/content */
.page-header { padding: 56px 0 24px; }
.page-header h1 { font-size: 2.4rem; margin-bottom: 8px; }
.content-section { padding: 24px 0 72px; line-height: 1.7; }
.content-section h2 { color: var(--night); margin-top: 32px; }
.checklist { padding-left: 20px; }
.checklist li { margin-bottom: 8px; }

/* Gallery */
.gallery-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-card { background: #fff; border: 1px solid var(--sand-200); border-radius: 16px; overflow: hidden; }
.gallery-card img { width: 100%; height: 160px; object-fit: cover; display: block; background: var(--sand-100); }
.gallery-card h3 { margin: 16px 16px 4px; font-size: 1rem; color: var(--night); }
.gallery-card p { margin: 0 16px 16px; font-size: 0.85rem; color: var(--muted); }

/* Contact form */
.contact-form { background: #fff; border: 1px solid var(--sand-200); border-radius: 24px; padding: 32px; margin-top: 8px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--night); }
.form-control {
  width: 100%; height: 44px; border-radius: 12px; border: 1px solid var(--sand-200);
  padding: 0 14px; font-size: 0.9rem; font-family: inherit;
}
textarea.form-control { height: auto; padding: 12px 14px; }
.field-error { color: var(--rush-dark); font-size: 0.8rem; }
.alert-success {
  background: var(--rush-light); color: var(--rush-dark); padding: 14px 18px;
  border-radius: 12px; margin-bottom: 20px; font-weight: 600; font-size: 0.9rem;
}

/* Footer */
.site-footer { border-top: 1px solid var(--sand-200); padding: 40px 0 100px; }
.footer-grid { display: grid; gap: 24px; text-align: left; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; } }
.site-footer p { color: var(--muted); font-size: 0.8rem; margin: 8px 0 0; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { color: var(--night); text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.footer-links a:hover, .footer-contact a:hover { color: var(--rush); }

/* Trust bar */
.trust-bar {
  background: var(--night); color: #fff; text-align: center;
  font-size: 0.78rem; font-weight: 600; padding: 8px 16px;
}

/* Breadcrumbs */
.breadcrumbs { padding: 16px 0 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--rush); }
.breadcrumbs span[aria-hidden] { margin: 0 8px; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: var(--rush); color: #fff; text-decoration: none;
  text-align: center; padding: 14px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 12px 30px -8px rgba(20, 33, 61, 0.4);
}
@media (max-width: 700px) { .sticky-cta { display: block; } }

/* FAQ */
.faq-list { display: grid; gap: 16px; margin-top: 24px; }
.faq-item { background: #fff; border: 1px solid var(--sand-200); border-radius: 16px; padding: 20px 24px; }
.faq-item h3 { margin: 0 0 8px; color: var(--night); font-size: 1rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* Case studies / example runs */
.case-studies { background: #fff; border-top: 1px solid var(--sand-200); border-bottom: 1px solid var(--sand-200); padding: 72px 0; }
.case-studies h2 { font-size: 2rem; color: var(--night); max-width: 520px; }
.case-studies .section-note { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
.case-grid { display: grid; gap: 24px; margin-top: 32px; }
@media (min-width: 800px) { .case-grid { grid-template-columns: repeat(3, 1fr); } }
.case-card { background: var(--sand-50); border: 1px solid var(--sand-200); border-radius: 16px; padding: 24px; }
.case-card h3 { margin: 0 0 10px; color: var(--night); font-size: 1.05rem; }
.case-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin: 0 0 10px; }
.case-card .outcome { color: var(--rush-dark); font-weight: 700; font-size: 0.85rem; }

/* Reviews */
.reviews { padding: 72px 0; }
.reviews h2 { font-size: 2rem; color: var(--night); max-width: 520px; }
.reviews .section-note { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
.review-grid { display: grid; gap: 24px; margin-top: 32px; }
@media (min-width: 800px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: #fff; border: 1px dashed var(--sand-200); border-radius: 16px; padding: 24px; color: var(--muted); font-size: 0.88rem; text-align: center; }
