:root {
  --orange: #e84a1c;
  --orange-dark: #c73911;
  --ink: #202020;
  --muted: #666;
  --paper: #fff;
  --soft: #f4f4f2;
  --line: #dfdfdc;
  --footer: #232323;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px 4px 13px 4px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  font-size: 23px;
  letter-spacing: -2px;
  box-shadow: 0 9px 24px rgba(232, 74, 28, .22);
}

.brand-copy { line-height: 1.05; }
.brand-name { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.6px; }
.brand-sub { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; }

.top-nav { display: flex; gap: 24px; align-items: center; }
.top-nav a { color: #555; text-decoration: none; font-size: 14px; font-weight: 700; }
.top-nav a:hover, .top-nav a:focus-visible, .top-nav a[aria-current="page"] { color: var(--orange); }

main { flex: 1; }

.hero {
  position: relative;
  overflow: hidden;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: calc(100vh - 191px);
  display: flex;
  align-items: center;
  padding: 72px 0 105px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 390px;
  right: -190px;
  top: 48%;
  border: 55px solid rgba(232, 74, 28, .065);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-content { max-width: 980px; }
.eyebrow { margin: 0 0 24px; color: var(--orange); font-size: 14px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }

h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 900;
}

h1 .accent { color: var(--orange); }

.orange-line { width: 88px; height: 6px; margin: 40px 0 32px; background: var(--orange); }
.hero-lead { max-width: 780px; margin: 0 0 23px; color: #4f4f4f; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.5; }
.hero-note { margin: 0; color: #878787; font-size: 15px; }

.page-wrap {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 100px;
}

.page-intro { margin-bottom: 42px; }
.page-kicker { margin: 0 0 10px; color: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.page-title { margin: 0; font-size: clamp(42px, 7vw, 74px); line-height: 1; letter-spacing: -.05em; }
.page-lead { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 19px; }

.content-card {
  padding: clamp(26px, 5vw, 48px);
  background: var(--soft);
  border-top: 5px solid var(--orange);
}

.content-card h2, .legal-content h2 { margin: 38px 0 10px; font-size: 22px; line-height: 1.25; }
.content-card h2:first-child, .legal-content h2:first-child { margin-top: 0; }
.content-card h3, .legal-content h3, .legal-content h4 { margin: 30px 0 8px; line-height: 1.35; }
.content-card p, .legal-content p { margin: 0 0 17px; }
.content-card ul, .legal-content ul { padding-left: 21px; }
.content-card a, .legal-content a { color: var(--orange-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.contact-item { padding: 24px; background: #fff; border: 1px solid var(--line); }
.contact-label { display: block; margin-bottom: 6px; color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.contact-value { font-size: 18px; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.contact-value:hover, .contact-value:focus-visible { color: var(--orange); }

.legal-content { font-size: 16px; }
.legal-content > h4:first-child { display: none; }
.legal-content h4 { font-size: 19px; }
.legal-content ol { padding-left: 23px; }
.legal-content li { margin-bottom: 8px; }
.legal-content hr { border: 0; border-top: 1px solid var(--line); margin: 35px 0; }

.site-footer { color: #ccc; background: var(--footer); }
.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 13px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible, .footer-links a[aria-current="page"] { color: var(--orange); }

@media (max-width: 720px) {
  .site-header { width: min(100% - 32px, var(--max)); padding: 22px 0; }
  .brand-mark { width: 41px; height: 41px; font-size: 20px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 9px; }
  .top-nav { display: none; }
  .hero, .page-wrap { width: calc(100% - 32px); }
  .hero { align-items: flex-start; min-height: auto; padding: 65px 0 90px; }
  .hero::after { display: none; }
  h1 { letter-spacing: -.05em; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { width: calc(100% - 32px); padding: 22px 0; flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
