/* 410 New Roof site styles. Shared by every page. */
:root {
  --blue: #064b8e; --blue-deep: #0b3a6a; --red: #d02037; --red-dark: #b11a2e;
  --ink: #1b1f24; --text: #2e343b; --muted: #5f6873; --line: #dfe3e8;
  --paper: #f3f4f6; --white: #ffffff;
  --head: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "Open Sans", "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); font-size: 16px; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1140px, 100% - 40px); margin: 0 auto; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 400; letter-spacing: .015em; line-height: 1.08; margin: 0; text-transform: uppercase; color: var(--ink); }
h2 { font-size: 34px; }
h3 { font-size: 20px; letter-spacing: .04em; }
h4 { font-size: 17px; letter-spacing: .05em; }
p { margin: 0 0 16px; }
.rule { width: 56px; height: 4px; background: var(--red); margin: 14px 0 20px; }
.btn { display: inline-block; text-decoration: none; font-weight: 700; font-size: 16px; padding: 14px 22px; border-radius: 2px; background: var(--red); color: var(--white); border: 0; line-height: 1.2; cursor: pointer; font-family: var(--body); }
.btn:hover { background: var(--red-dark); }
.btn.blue { background: var(--blue); }
.btn.blue:hover { background: var(--blue-deep); }
.lead { font-size: 17px; color: var(--muted); max-width: 66ch; margin: 0 0 16px; }

/* Utility bar */
.util { background: var(--ink); color: #cfd5dc; font-size: 13px; }
.util .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 16px; }
.util a { color: var(--white); text-decoration: none; font-weight: 600; }
.util a + a { margin-left: 22px; }
.util span b { color: var(--white); font-weight: 600; }

/* Header */
.hdr { background: var(--white); border-bottom: 1px solid var(--line); position: relative; z-index: 60; }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { font-family: var(--head); font-size: 30px; letter-spacing: .04em; text-decoration: none; color: var(--blue); text-transform: uppercase; line-height: 1; display: inline-flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.brand span { color: var(--red); }
.brand small { font-family: var(--body); font-size: 11px; letter-spacing: .16em; color: var(--muted); font-weight: 700; margin-left: 4px; }
.nav ul { display: flex; gap: 24px; margin: 0; padding: 0; list-style: none; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--text); white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue); }
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--red); }
.hdr .btn { font-size: 15px; padding: 12px 18px; white-space: nowrap; }
.menu-btn { display: none; background: none; border: 0; padding: 8px; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-btn span { display: block; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.overlay { display: none; position: fixed; inset: 0; background: var(--blue); color: var(--white); z-index: 55; padding: 110px 24px 40px; overflow-y: auto; }
body.menu-open .overlay { display: block; }
body.menu-open { overflow: hidden; }
.overlay ul { list-style: none; margin: 0; padding: 0; }
.overlay li { border-bottom: 1px solid rgba(255,255,255,.18); }
.overlay a { display: block; padding: 16px 0; font-family: var(--head); font-size: 28px; text-transform: uppercase; letter-spacing: .03em; text-decoration: none; color: var(--white); }
.overlay .ov-contact { margin-top: 26px; font-size: 16px; }
.overlay .ov-contact a { font-family: var(--body); font-size: 17px; font-weight: 700; padding: 6px 0; }

/* Hero (home) */
.hero { background: var(--blue); color: var(--white); position: relative; border-bottom: 6px solid var(--red); }
.hero::before { content: ""; position: absolute; inset: 0; background:
  repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 1px, transparent 1px 36px),
  repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 110px); pointer-events: none; }
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .9fr); gap: 56px; align-items: start; padding: 60px 0 68px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ffd0d6; margin: 0 0 16px; }
.hero h1 { color: var(--white); font-size: clamp(38px, 5vw, 58px); max-width: 19ch; }
.hero .sub { font-size: 19px; color: #e6eef8; max-width: 52ch; margin: 22px 0 28px; }
.hero .call { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; }
.hero .call a.alt { color: var(--white); font-weight: 600; font-size: 15px; }
.hero .call .btn { font-size: 18px; padding: 16px 26px; }
.hero .facts { list-style: none; margin: 36px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.25); display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; font-weight: 600; color: #dbe6f2; }
.hero .facts li { position: relative; padding-left: 16px; }
.hero .facts li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--red); }

/* Page hero (subpages) */
.phero { background: var(--blue); color: var(--white); border-bottom: 6px solid var(--red); position: relative; }
.phero::before { content: ""; position: absolute; inset: 0; background:
  repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 1px, transparent 1px 36px),
  repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 110px); pointer-events: none; }
.phero .wrap { position: relative; padding: 44px 0 48px; }
.phero h1 { color: var(--white); font-size: clamp(34px, 4.4vw, 50px); max-width: 28ch; }
.phero .sub { font-size: 18px; color: #e6eef8; max-width: 60ch; margin: 16px 0 0; }
.crumbs { font-size: 13px; color: #b9cbe0; margin: 0 0 14px; }
.crumbs a { color: var(--white); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* Estimate panel + form */
.estimate { background: var(--white); color: var(--text); border-top: 6px solid var(--red); padding: 24px 26px 26px; box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.estimate h2 { font-size: 26px; color: var(--ink); }
.estimate > p { margin: 8px 0 0; font-size: 15px; color: var(--muted); }
.form { margin-top: 16px; display: grid; gap: 12px; }
.form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.form input, .form select, .form textarea { width: 100%; font: 16px/1.4 var(--body); color: var(--ink); background: var(--white); border: 1px solid #b9c1ca; border-radius: 2px; padding: 11px 12px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.form textarea { min-height: 88px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form .btn { width: 100%; font-size: 17px; padding: 15px 20px; margin-top: 4px; }
.form .btn:disabled { opacity: .7; cursor: default; }
.form .fine { font-size: 12.5px; color: var(--muted); margin: 0; }
.form .fine a { color: var(--blue); font-weight: 600; }
.form-status { font-size: 14px; color: var(--muted); min-height: 1.4em; margin: 0; }
.form-status.err { color: var(--red-dark); font-weight: 600; }
.form-done { padding: 8px 0 4px; }
.form-done h3 { color: var(--blue); margin-bottom: 8px; }
.form-done p { margin: 0; font-size: 15px; }
.form-done a { color: var(--blue); font-weight: 700; }
.estimate .or { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.estimate .or a { color: var(--blue); font-weight: 700; text-decoration: none; }

/* Trust strip */
.trust { border-bottom: 1px solid var(--line); background: var(--white); }
.trust ul { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 0; padding: 18px 0; font-size: 14px; font-weight: 600; color: var(--ink); }
.trust li { position: relative; padding-left: 16px; white-space: nowrap; }
.trust li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--red); }

section.block { padding: 68px 0; }
section.block.tight { padding: 52px 0; }
.paper { background: var(--paper); }

/* Service link list (home) */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-top: 32px; }
.svc-list a.item { display: block; text-decoration: none; padding: 20px 0 20px 26px; border-bottom: 1px solid var(--line); position: relative; }
.svc-list a.item::before { content: ""; position: absolute; left: 0; top: 30px; width: 14px; height: 3px; background: var(--red); }
.svc-list a.item h3 { color: var(--blue); font-size: 22px; }
.svc-list a.item:hover h3 { color: var(--red); }
.svc-list a.item p { margin: 6px 0 0; color: var(--muted); font-size: 15px; }
.svc-list a.item span { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }
.sister { margin-top: 34px; padding: 22px 26px; border: 1px solid var(--line); border-left: 4px solid var(--ink); background: var(--white); }
.sister h3 { margin-bottom: 6px; }
.sister p { margin: 0; font-size: 15px; color: var(--muted); }

/* Steps */
.steps { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: s; }
.steps li { counter-increment: s; padding-top: 14px; border-top: 4px solid var(--blue); }
.steps li::before { content: "0" counter(s); font-family: var(--head); font-size: 40px; color: var(--red); line-height: 1; display: block; margin-bottom: 8px; }
.steps h3 { margin-bottom: 8px; }
.steps p { margin: 0; font-size: 15px; color: var(--muted); }

/* About split + fact sheet */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.split p { font-size: 17px; }
ul.points { margin: 22px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
ul.points li { padding-left: 18px; position: relative; font-weight: 600; color: var(--ink); font-size: 15px; }
ul.points li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--red); }
.sheet { background: var(--blue-deep); color: var(--white); padding: 28px 30px 30px; }
.sheet h3 { color: var(--white); font-size: 22px; margin-bottom: 6px; }
.sheet dl { margin: 0; }
.sheet dt { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #a9c4e4; margin-top: 18px; }
.sheet dd { margin: 3px 0 0; font-size: 16px; line-height: 1.5; }
.sheet dd a { color: var(--white); text-decoration: none; font-weight: 700; }
.sheet dd a:hover { text-decoration: underline; }

/* FAQ */
.faq { max-width: 820px; margin-top: 28px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 700; font-size: 17px; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-family: var(--head); font-size: 26px; color: var(--red); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 18px; color: var(--text); max-width: 70ch; }
.faq details p a { color: var(--blue); font-weight: 600; }

/* Subpage article layout */
.article { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 56px; align-items: start; }
.article .body h2 { font-size: 28px; margin: 40px 0 14px; }
.article .body h2:first-child { margin-top: 0; }
.article .body p, .article .body li { font-size: 17px; }
.article .body ul { padding-left: 22px; margin: 0 0 18px; }
.article .body li { margin: 0 0 8px; }
.article .body .callout { background: var(--paper); border-left: 4px solid var(--red); padding: 18px 22px; margin: 26px 0; }
.article .body .callout p { margin: 0; font-size: 16px; }
.article aside { position: sticky; top: 20px; }
.article aside .estimate { box-shadow: none; border: 1px solid var(--line); border-top: 6px solid var(--red); }
.related { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.related h3 { margin-bottom: 12px; }
.related ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 14px; }
.related a { display: inline-block; text-decoration: none; font-weight: 700; font-size: 14px; color: var(--blue); padding: 10px 14px; border: 1px solid var(--line); border-radius: 2px; }
.related a:hover { border-color: var(--blue); }

/* CTA band */
.band { background: var(--blue); color: var(--white); border-top: 6px solid var(--red); }
.band .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px 32px; padding: 40px 0; }
.band h2 { color: var(--white); font-size: 30px; }
.band p { margin: 6px 0 0; color: #dbe6f2; }
.band .btn { font-size: 18px; padding: 16px 26px; }

/* Contact page */
.big { border-left: 4px solid var(--red); padding: 6px 0 6px 22px; margin: 0 0 22px; }
.big small { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 2px; }
.big a { font-family: var(--head); font-size: 34px; color: var(--blue); text-decoration: none; letter-spacing: .02em; line-height: 1.05; word-break: break-word; }
.big a.mail { font-size: 24px; }
.big a:hover { color: var(--red); }
.big span { font-family: var(--head); font-size: 30px; color: var(--ink); letter-spacing: .02em; }
ol.ready { margin: 0; padding: 0 0 0 22px; font-size: 16px; }
ol.ready li { margin: 0 0 12px; padding-left: 6px; }
ol.ready li b { color: var(--ink); }

/* Footer */
footer { background: var(--ink); color: #b8c0c9; padding: 44px 0 90px; font-size: 14px; }
footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid #333a42; }
footer .brand { color: var(--white); font-size: 26px; }
footer .brand small { color: #8f98a3; }
footer p { margin: 12px 0 0; max-width: 42ch; }
footer h4 { font-family: var(--body); margin: 0 0 10px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8f98a3; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin: 0 0 8px; }
footer a { color: var(--white); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 18px; font-size: 13px; color: #8f98a3; }

.callbar { display: none; }

@media (max-width: 1000px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .hdr .btn { display: none; }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 56px; }
  .article { grid-template-columns: 1fr; }
  .article aside { position: static; }
  footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .util .wrap { justify-content: center; text-align: center; }
  .util .loc { display: none; }
  .hdr .wrap { min-height: 66px; }
  .brand { font-size: 24px; }
  .brand small { display: none; }
  .hero h1 { font-size: 38px; }
  .hero .sub { font-size: 17px; }
  .hero .call .btn { width: 100%; text-align: center; }
  .trust li { white-space: normal; }
  h2 { font-size: 30px; }
  section.block { padding: 52px 0; }
  .svc-list, .split, ul.points, .steps { grid-template-columns: 1fr; }
  .steps { gap: 24px; }
  .form .row { grid-template-columns: 1fr; }
  footer .top { grid-template-columns: 1fr; }
  .callbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--red); color: var(--white); text-decoration: none; font-weight: 700; font-size: 17px; justify-content: center; align-items: center; min-height: 58px; box-shadow: 0 -6px 18px rgba(0,0,0,.18); }
}
