:root {
  color-scheme: light;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --ink: #111111;
  --muted: #5f6368;
  --warm: #f7f5f2;
  --surface: #ffffff;
  --line: #e7e1da;
  --success: #166534;
  --danger: #b42318;
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--warm); line-height: 1.55; }
a { color: inherit; }
.site-header, footer { max-width: 1180px; margin: 0 auto; padding: 24px clamp(20px, 5vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; color: white; background: var(--ink); font-weight: 900; letter-spacing: -.06em; box-shadow: inset 0 -4px 0 var(--orange); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.header-link { text-decoration: none; font-weight: 800; border-bottom: 2px solid var(--orange); }
main { overflow: hidden; }
.hero { max-width: 1180px; margin: 0 auto; padding: clamp(72px, 11vw, 144px) clamp(20px, 5vw, 64px) 90px; position: relative; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.22), rgba(249,115,22,0) 68%); right: -180px; top: -80px; pointer-events: none; }
.eyebrow, .section-heading > span, .contact-copy > span, .card-label { color: var(--orange-dark); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 850px; margin: 18px 0 24px; font-size: clamp(3rem, 8vw, 6.8rem); line-height: .94; letter-spacing: -.065em; }
.hero-copy { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(1.1rem, 2.2vw, 1.45rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 48px; padding: 13px 22px; border: 1px solid transparent; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font: inherit; font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid rgba(249,115,22,.38); outline-offset: 3px; }
.button.primary { color: white; background: var(--orange); box-shadow: 0 12px 30px rgba(194,65,12,.22); }
.button.secondary { color: var(--ink); background: var(--surface); border-color: var(--line); }
.button:disabled { opacity: .6; cursor: wait; transform: none; }
.notice { max-width: 720px; margin: 30px 0 0; padding: 16px 18px; border-left: 4px solid var(--orange); background: rgba(255,255,255,.6); color: #4a4038; }
.services { background: var(--ink); color: white; padding: 90px max(20px, calc((100vw - 1052px) / 2)); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading > span { color: #fb923c; }
h2 { margin: 10px 0 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -.045em; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.service-card { min-height: 380px; padding: clamp(26px, 4vw, 44px); border: 1px solid #333; border-radius: var(--radius); display: flex; flex-direction: column; background: #181818; }
.service-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 48px; background: var(--orange); font-weight: 950; font-size: 1.4rem; }
.service-card h3 { margin: 8px 0 12px; font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1.08; }
.service-card p:not(.card-label) { color: #c6c6c6; margin: 0; }
.status-pill { align-self: flex-start; margin-top: auto; padding: 8px 12px; border-radius: 999px; color: #fed7aa; background: rgba(249,115,22,.13); font-weight: 750; font-size: .82rem; }
.contact-section { max-width: 1180px; margin: 0 auto; padding: 100px clamp(20px, 5vw, 64px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.contact-copy { position: sticky; top: 30px; }
.contact-copy p, .contact-copy li { color: var(--muted); }
.contact-copy ul { padding-left: 20px; }
.intake-form { padding: clamp(22px, 5vw, 42px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 80px rgba(33,24,15,.08); }
.field label { display: block; margin-bottom: 7px; font-size: .86rem; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 500; }
input, select, textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cbc3bb; border-radius: 12px; color: var(--ink); background: white; font: inherit; }
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: #4b4540; font-size: .9rem; }
.consent input { width: 20px; min-height: 20px; margin-top: 2px; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 24px; font-weight: 750; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
footer { border-top: 1px solid var(--line); }
footer strong, footer span { display: block; }
footer span { color: var(--muted); font-size: .86rem; }
footer nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: .9rem; }
.legal-page { max-width: 800px; margin: 0 auto; padding: 60px 20px 100px; }
.legal-page h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.legal-page h2 { margin-top: 40px; font-size: 1.5rem; letter-spacing: -.02em; }
.legal-page p, .legal-page li { color: var(--muted); }

@media (max-width: 760px) {
  .header-link { display: none; }
  .service-grid, .contact-section, .intake-form { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .full { grid-column: 1; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
