:root {
  --ink: #17251d;
  --ink-2: #2f3b34;
  --paper: #f4f0e7;
  --paper-2: #ebe5da;
  --white: #fffdf8;
  --accent: #d8ff63;
  --accent-ink: #152218;
  --border: rgba(23, 37, 29, 0.16);
  --shadow: 0 24px 70px rgba(23, 37, 29, 0.13);
  --radius: 22px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; padding: 10px 14px; background: white; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 231, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; text-decoration: none; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--ink); color: var(--accent); font-size: 12px; letter-spacing: 0.08em; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a { text-decoration: none; font-size: 14px; font-weight: 750; }
.menu-button { display: none; border: 1px solid var(--border); background: transparent; border-radius: 10px; padding: 8px 12px; font-weight: 800; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(23,37,29,.15); }
.button-small { min-height: 42px; padding-inline: 18px; color: var(--white); }
.button-light { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.text-link { font-weight: 700; text-underline-offset: 4px; }

.hero { padding: 92px 0 76px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 14px; font-size: 12px; text-transform: uppercase; font-weight: 900; letter-spacing: .14em; color: #5a675f; }
.eyebrow-light { color: #b7c1ba; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; max-width: 820px; font-size: clamp(58px, 9vw, 112px); line-height: .86; letter-spacing: -.065em; }
h2 { margin-bottom: 20px; font-size: clamp(38px, 5vw, 66px); line-height: .98; letter-spacing: -.05em; }
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.1; letter-spacing: -.03em; }
.hero-lede { max-width: 690px; margin-bottom: 30px; color: var(--ink-2); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-bottom: 34px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0; padding: 0; list-style: none; }
.trust-list li { position: relative; padding-left: 16px; font-size: 13px; font-weight: 750; color: #58635c; }
.trust-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: #617e4e; }

.hero-card { position: relative; border: 1px solid var(--border); border-radius: 30px; background: #d6c4a3; box-shadow: var(--shadow); overflow: hidden; transform: rotate(1.5deg); }
.garage-illustration { min-height: 390px; padding: 62px 44px 0; background: linear-gradient(180deg,#bfd5c4 0 45%,#a6b7a8 45% 47%,#b7ad9b 47% 100%); }
.garage-roof { width: 88%; height: 58px; margin: 0 auto -4px; background: var(--ink); clip-path: polygon(10% 100%, 23% 0, 77% 0, 90% 100%); }
.garage-frame { width: 84%; height: 230px; margin: 0 auto; padding: 24px 26px 0; background: #e8dfcf; border: 8px solid #f3eee5; border-bottom: 0; box-shadow: 0 15px 30px rgba(0,0,0,.08); }
.garage-door { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; height: 100%; padding: 16px; background: #425148; overflow: hidden; }
.garage-door span { display: block; border: 2px solid #65756c; background: linear-gradient(135deg,#22342a,#4d5d54); }
.hero-card-copy { display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; align-items: end; padding: 24px 28px 28px; background: var(--white); }
.hero-card-copy span { font-size: 13px; font-weight: 850; }
.hero-card-copy strong { grid-row: span 2; font-size: 36px; letter-spacing: -.05em; }
.hero-card-copy small { color: #647068; }

.proof-strip { border-block: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: repeat(5,1fr); min-height: 88px; align-items: center; }
.proof-grid span { text-align: center; font-weight: 900; letter-spacing: -.02em; border-right: 1px solid var(--border); }
.proof-grid span:first-child { border-left: 1px solid var(--border); }

.section { padding: 104px 0; }
.section-heading { max-width: 820px; margin-bottom: 46px; }
.section-heading > p:last-child { max-width: 690px; color: #5c685f; font-size: 18px; }
.section-heading.compact { max-width: 680px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 250px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.service-number { display: inline-grid; place-items: center; width: 36px; height: 36px; margin-bottom: 46px; border-radius: 50%; background: var(--paper-2); font-size: 12px; font-weight: 900; }
.service-card p { margin-bottom: 0; color: #667169; }
.service-note { margin: 22px 0 0; color: #657169; font-size: 13px; }

.section-dark { background: var(--ink); color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.pricing-grid > div:first-child > p:last-child { max-width: 560px; color: #c9d0cb; font-size: 18px; }
.price-card { padding: 38px; border-radius: 28px; background: #25352b; border: 1px solid rgba(255,255,255,.12); }
.price-card > div { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.price-label { font-weight: 850; }
.price { font-size: clamp(44px, 7vw, 76px); line-height: .9; letter-spacing: -.06em; }
.price-card ul { display: grid; gap: 10px; margin: 0 0 24px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 24px; color: #e0e5e1; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.fine-print { color: #abb7af; font-size: 13px; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: item; }
.steps li { min-height: 250px; padding: 26px; border-top: 3px solid var(--ink); background: var(--paper-2); }
.steps li > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 54px; border-radius: 50%; background: var(--ink); color: var(--white); font-weight: 900; }
.steps p { margin-bottom: 0; color: #637067; }

.section-muted { background: #e4ded2; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.area-grid > div:first-child p:last-child { color: #59665e; font-size: 18px; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-list span { padding: 20px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.35); font-weight: 800; }

.quote-section { background: var(--white); }
.quote-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 78px; align-items: start; }
.quote-copy { position: sticky; top: 110px; }
.quote-copy > p:not(.eyebrow) { color: #617067; font-size: 18px; }
.contact-block { display: grid; gap: 10px; margin-top: 28px; }
.contact-block a { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.contact-block span { color: #78827c; font-size: 13px; }
.contact-block strong { overflow-wrap: anywhere; }
.quote-copy > .business-hours { margin-top: 22px; font-size: 14px; }
.quote-form { display: grid; gap: 18px; padding: 34px; border: 1px solid var(--border); border-radius: 28px; background: var(--paper); }
.form-row { display: grid; gap: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
label { display: grid; gap: 8px; font-weight: 800; font-size: 13px; }
input, select, textarea { width: 100%; border: 1px solid #c8c5bb; border-radius: 13px; background: var(--white); color: var(--ink); padding: 13px 14px; outline: none; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(23,37,29,.08); }
label small { color: #768079; font-weight: 500; }
.checkbox-row { grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; }
.button-submit { width: 100%; margin-top: 4px; }
.form-status { min-height: 1.4em; margin: 0; color: #526158; font-size: 13px; }
.form-status.error { color: #a13224; }
.form-status.success { color: #2e643c; }

.site-footer { padding: 40px 0; background: var(--ink); color: var(--white); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.footer-grid p { max-width: 480px; margin: 8px 0 0; color: #aab5ad; }
.footer-grid > div:last-child { display: grid; gap: 8px; text-align: right; color: #aab5ad; font-size: 13px; }

@media (max-width: 920px) {
  .hero-grid, .pricing-grid, .area-grid, .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 70px; }
  .hero-card { max-width: 650px; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .quote-copy { position: static; }
  .menu-button { display: block; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 68px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--border); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 12px 14px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .nav-wrap { gap: 12px; }
  .brand { gap: 8px; }
  .brand-mark { flex: 0 0 42px; }
  .brand > span:last-child { max-width: 150px; font-size: 13px; line-height: 1.2; }
  h1 { font-size: clamp(54px, 19vw, 84px); }
  .garage-illustration { min-height: 300px; padding: 48px 20px 0; }
  .garage-frame { height: 175px; padding: 16px 16px 0; }
  .hero-card-copy { grid-template-columns: 1fr; }
  .hero-card-copy strong { grid-row: auto; }
  .proof-grid { grid-template-columns: repeat(5,1fr); min-height: 68px; }
  .proof-grid span { font-size: 11px; writing-mode: vertical-rl; transform: rotate(180deg); padding: 12px 0; }
  .card-grid, .steps, .area-list, .form-row.two { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 32px; }
  .price-card { padding: 26px; }
  .price-card > div { align-items: start; flex-direction: column; }
  .quote-form { padding: 22px; }
  .footer-grid { flex-direction: column; }
  .footer-grid > div:last-child { text-align: left; }
}
