@import url("https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,800;1,9..40,400&display=swap");

:root {
  --ink: #111;
  --blue: #1a7ad6;
  --blue-2: #0f5eaa;
  --cream: #f6f1e8;
  --white: #fff;
  --muted: #5a5a5a;
  --line: #e2d9cc;
}
* { box-sizing: border-box; }
html, body { overflow-x: clip; overscroll-behavior-x: none; max-width: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a, button, .btn, .pick, summary { touch-action: manipulation; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 28px)); margin: 0 auto; max-width: 100%; }
.i { width: 18px; height: 18px; flex: 0 0 18px; }

.top {
  position: sticky; top: 0; z-index: 20;
  background: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 8px max(12px, env(safe-area-inset-right, 0px)) 8px max(12px, env(safe-area-inset-left, 0px));
  border-bottom: 2px solid #111;
  max-width: 100%;
}
.nav-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  padding: 10px max(16px, env(safe-area-inset-right, 0px)) 10px max(16px, env(safe-area-inset-left, 0px));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.nav-strip::-webkit-scrollbar { display: none; }
.nav-strip a {
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink);
}
.nav-strip a:hover { color: var(--blue); }
.brand {
  font-family: Anton, sans-serif;
  font-size: 26px;
  letter-spacing: .02em;
  text-decoration: none;
  color: #111;
  white-space: nowrap;
}
.brand span { color: var(--blue); }
.top-right {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  border: 2px solid #111;
  padding: 10px 16px;
  cursor: pointer;
  line-height: 1;
  width: auto;
  flex: 0 0 auto;
  box-shadow: 2px 2px 0 #111;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 #111; }
.btn:active { transform: translate(1px, 1px); box-shadow: 0 0 0 #111; }
.btn-call { background: #fff; color: #111; }
.btn-go { background: var(--blue); color: #fff; }
.btn-go:hover { background: var(--blue-2); }
.btn-sm { padding: 8px 12px; font-size: 14px; }
.btn-block { width: 100%; margin-top: 16px; padding: 14px 18px; font-size: 16px; }
.lbl-short { display: none; }

.open { padding: 28px 0 8px; }
.open h1 {
  font-family: Anton, sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  max-width: 18ch;
  text-wrap: balance;
}
.open p.lead, .form-page .lead {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  margin: 0 0 18px;
}
.open .hero-actions .btn { padding: 14px 22px; font-size: 17px; }
.open .sizes { margin-top: 22px; }
.open .sub { margin-bottom: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hero {
  position: relative;
  min-height: 42vh;
  color: #fff;
  display: grid;
  align-items: end;
}
.hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,.15) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 28px 0 36px; }
.hero p { font-size: clamp(18px, 2.4vw, 24px); font-weight: 600; margin: 0; max-width: 28ch; }

.compare { display: grid; grid-template-columns: 1fr 1fr; }
.compare figure { margin: 0; position: relative; }
.compare img { width: 100%; height: 240px; object-fit: cover; }
.compare figcaption {
  position: absolute; left: 10px; bottom: 10px;
  background: #111; color: #fff;
  font-weight: 800; font-size: 13px;
  padding: 6px 10px; border-radius: 6px;
}
.shots {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 16px max(14px, env(safe-area-inset-right, 0px)) 24px max(14px, env(safe-area-inset-left, 0px));
  scrollbar-width: none;
}
.shots::-webkit-scrollbar { display: none; }
.shots figure {
  margin: 0;
  flex: 0 0 min(78vw, 340px);
  scroll-snap-align: start;
  position: relative;
}
.shots img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 2px solid #111;
  border-radius: 12px;
}
.shots figcaption {
  position: absolute; left: 10px; bottom: 10px;
  background: #111; color: #fff;
  font-weight: 800; font-size: 13px;
  padding: 6px 10px; border-radius: 6px;
}

.block { padding: 40px 0; }
h2 {
  font-family: Anton, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-wrap: balance;
  margin: 0 0 8px;
}
.sub { margin: 0 0 22px; color: var(--muted); font-size: 18px; }

.sizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.size {
  background: #fff;
  border: 2px solid #111;
  border-radius: 16px;
  padding: 16px 14px 14px;
  text-decoration: none;
  color: #111;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.size:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 #111; }
.size .who { font-weight: 800; font-size: 20px; }
.size .amt { font-family: Anton, sans-serif; font-size: 32px; line-height: 1.12; letter-spacing: 0.04em; margin: 6px 0 2px; }
.size .mo { font-size: 16px; font-family: "DM Sans", sans-serif; font-weight: 800; }
.size .inc { color: var(--blue-2); font-weight: 800; font-size: 13px; }

.how {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.how .step {
  background: #fff; border: 2px solid #111; border-radius: 16px;
  padding: 18px; min-height: 140px;
}
.how .n { font-family: Anton, sans-serif; font-size: 40px; color: var(--blue); line-height: 1; }
.how h3 { margin: 4px 0 0; font-size: 20px; }
.how p { margin: 6px 0 0; color: var(--muted); }
.arrow { font-family: Anton, sans-serif; font-size: 40px; color: #111; }

.yesno { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.yes, .no { border-radius: 16px; padding: 20px; border: 2px solid #111; }
.yes { background: #dff3c9; }
.no { background: #ffe3c2; }
.yes h3, .no h3 { margin: 0 0 8px; font-size: 22px; }
.yes li, .no li { margin: 6px 0; }
.area { font-size: 18px; }
.area b { font-size: 22px; }

.bottom { background: #111; color: #fff; padding: 48px 0; }
.bottom h2 { color: #fff; }
.bottom .btn-call { background: #fff; }

.form-page { padding: 28px 0 40px; overflow-x: clip; touch-action: pan-y; max-width: 100%; }
.form-page h1 {
  font-family: Anton, sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  max-width: 100%;
}
.form-card {
  background: #fff;
  border: 2px solid #111;
  border-radius: 16px;
  padding: 22px;
  max-width: 100%;
}
.field-label { font-weight: 800; font-size: 13px; margin: 0 0 8px; }
.size-picks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 8px; min-width: 0; }
.pick { cursor: pointer; }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick span {
  display: block;
  border: 2px solid #111;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  overflow-wrap: anywhere;
}
.pick span b { font-family: Anton, sans-serif; font-size: 16px; font-weight: 400; }
.pick input:checked + span { background: #111; color: #fff; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; font-weight: 800; font-size: 13px; }
.field .i { display: none; }
input, textarea, select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #111;
  font: inherit;
  font-weight: 600;
  font-size: 16px !important;
  min-height: 44px;
  background: #fff;
}
.quote-side {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 22px;
  position: sticky;
  top: 72px;
}
.quote-side .kicker { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; color: #9ec9e6; margin: 0 0 8px; }
.side-who { margin: 0; font-weight: 800; }
.side-amt { font-family: Anton, sans-serif; font-size: 42px; line-height: 1.12; letter-spacing: 0.04em; margin: 4px 0 8px; }
.quote-side .inc { color: #9ec9e6; font-weight: 800; }
.thanks { display: none; }
.thanks.show { display: block; }
form.hide { display: none; }
.tiny { font-size: 12px; color: var(--muted); margin-top: 12px; }
.quote-side .tiny { color: rgba(255,255,255,.55); }

@media (max-width: 800px) {
  .sizes, .yesno, .compare, .form-layout { grid-template-columns: 1fr 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .quote-side { position: static; order: -1; }
  .how { grid-template-columns: 1fr; }
  .arrow { display: none; }
  .hero { min-height: 32vh; }
  .lbl-full { display: none; }
  .lbl-short { display: inline; }
  .top .btn { padding: 8px 10px; }
  .compare img { height: 160px; }
  .size-picks { grid-template-columns: 1fr 1fr; }
}

.under { margin: 12px 0 0; color: var(--muted); font-size: 14px; font-weight: 700; }
.size, .btn, details {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
details[open] { box-shadow: 2px 2px 0 #111; }
.faq details {
  background: #fff; border: 2px solid #111; border-radius: 12px;
  padding: 12px 16px; margin: 0 0 8px;
}
.faq summary { font-weight: 800; cursor: pointer; }
.faq details p { margin: 8px 0 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span,
.chips a {
  border: 2px solid #111; border-radius: 999px; padding: 6px 10px;
  font-size: 13px; font-weight: 800; background: #fff;
  text-decoration: none;
  display: inline-block;
}
.chips a:hover { box-shadow: 2px 2px 0 #111; }
.chips a[aria-current="page"] { background: #111; color: #fff; }
.site-foot { background: #111; color: #fff; padding: 40px 0 32px; }
.site-foot a { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 28px; }
.foot-h { font-weight: 800; margin: 0 0 8px; }
.foot-grid a { display: block; margin: 4px 0; text-decoration: none; }
.site-foot .brand { color: #fff; }
.site-foot .brand span { color: #7eb6e8; }
.site-foot .chips a { background: transparent; color: #fff; border-color: #fff; display: inline-block; margin: 0; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; gap: 20px; } }
.zip-copy { max-width: 62ch; font-size: 18px; line-height: 1.45; }
.zip-copy p { margin: 0 0 12px; }

.pricing-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: #fff; }
.pricing-table th, .pricing-table td { border: 2px solid #111; padding: 12px 14px; text-align: left; }
.pricing-table th { background: #111; color: #fff; }
.form-page h1 { font-family: Anton, sans-serif; font-size: clamp(36px, 7vw, 64px); line-height: 1.12; letter-spacing: 0.04em; margin: 24px 0 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-err { color: #b42318; font-size: 14px; font-weight: 700; margin: 10px 0 0; }
button[disabled] { opacity: .55; pointer-events: none; }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 8px;
}
.area-card {
  background: #fff;
  border: 2px solid #111;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  color: #111;
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.area-card:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 #111; }
.area-card .zip { font-family: Anton, sans-serif; font-size: 36px; line-height: 1.12; letter-spacing: 0.04em; }
.area-card .who { font-weight: 800; margin: 4px 0 8px; }
.area-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.4; }
@media (max-width: 800px) {
  .area-grid { grid-template-columns: 1fr; }
}
