/* Roofco, Inc. — layout modeled on the O'Hara's Son Roofing reference,
   recolored to Roofco's blue. */
:root {
  --blue: #1b4b9c;
  --blue-dark: #12356f;
  --navy: #0d2447;
  --ink: #4a4a4a;
  --ink-2: #6b6b6b;
  --charcoal: #2c2c2c;
  --charcoal-2: #1d1d1d;
  --line: #d6d6d6;
  --grid: #e6e6e6;
  --bg: #ffffff;
  --footer: #3d4652;
  --font: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --wrap: 1180px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.7; font-size: 17px; }
img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.1; color: var(--ink); font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--blue); color: #fff; padding: 8px 14px; z-index: 200; }
.skip:focus { left: 8px; }
.center-text { text-align: center; padding: 40px 0; }
.mt { margin-top: 2.5rem; }

/* ---------- buttons ---------- */
.btn { display: inline-block; padding: 14px 30px; font-family: var(--font); font-size: 15px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border: 2px solid transparent; border-radius: 3px; cursor: pointer; line-height: 1.2; transition: background .2s, color .2s, border-color .2s; }
.btn:hover { text-decoration: none; }
.btn-sm { padding: 9px 22px; font-size: 12px; letter-spacing: .2em; }
.btn-solid { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-solid:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-solid-light { background: #e6e6e6; border-color: #cfcfcf; color: var(--ink); }
.btn-solid-light:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--blue); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.btn-row.center { justify-content: center; margin-top: 40px; }

/* ---------- utility bar + header ---------- */
.utility { background: var(--charcoal-2); color: #fff; font-size: 13px; }
.utility .wrap { display: flex; justify-content: flex-end; align-items: center; gap: 22px; height: 36px; }
.utility .phone { color: #fff; }
.socials { display: inline-flex; gap: 14px; align-items: center; }
.socials a { color: #fff; display: inline-flex; }
.socials svg { width: 16px; height: 16px; }
.site-header { background: var(--charcoal); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 46px; height: 46px; color: #fff; background: var(--blue); border-radius: 8px; padding: 6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--display); font-size: 26px; font-weight: 800; letter-spacing: .02em; }
.brand-text small { font-size: 9px; letter-spacing: .22em; color: #cfcfcf; margin-top: 3px; }
.main-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.main-nav li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 26px 14px; color: #bdbdbd; font-size: 13.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.main-nav > ul > li > a:hover, .main-nav > ul > li.active > a { color: #fff; text-decoration: none; }
.chev { display: inline-block; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin: 0 0 3px 6px; }
.dropdown { list-style: none; margin: 0; position: absolute; left: 0; top: 100%; min-width: 240px; background: #fff; box-shadow: 0 8px 26px rgba(0,0,0,.18); border-top: 3px solid var(--blue); padding: 8px 0; display: none; flex-direction: column; gap: 0; z-index: 110; }
.dropdown li a { display: block; padding: 10px 20px; color: var(--ink); font-size: 14px; font-weight: 600; letter-spacing: .05em; }
.dropdown li a:hover { background: #f2f4f8; color: var(--blue); text-decoration: none; }
.main-nav li:hover > .dropdown, .main-nav li:focus-within > .dropdown, .main-nav li.open > .dropdown { display: flex; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 460px; display: flex; align-items: center; color: #fff; background: var(--navy); background-image: linear-gradient(rgba(10,18,32,.55), rgba(10,18,32,.55)), var(--hero); background-size: cover; background-position: center; isolation: isolate; }
.hero-tall { min-height: min(88vh, 900px); }
.hero-bar { position: absolute; left: 30px; top: 0; width: 56px; height: 68%; background: var(--blue); z-index: 0; }
.hero-inner { position: relative; z-index: 1; padding: 90px 0 80px; }
.hero h1 { font-family: var(--display); color: #fff; font-size: clamp(56px, 9vw, 132px); font-weight: 800; line-height: .95; letter-spacing: .01em; margin: 0; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hero-sub { font-family: var(--display); font-size: clamp(30px, 5vw, 76px); font-weight: 600; line-height: 1; margin: 6px 0 34px; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hero:not(.hero-tall) h1 { font-size: clamp(44px, 6vw, 84px); }
.hero:not(.hero-tall) .hero-sub { font-family: var(--font); font-size: 19px; font-weight: 400; letter-spacing: .02em; text-transform: none; max-width: 720px; margin-top: 12px; }
.eyebrow-light { font-size: 26px; font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.82); text-transform: uppercase; margin: 0 0 6px; }
.eyebrow { font-size: 30px; font-weight: 700; letter-spacing: .02em; color: #8a8a8a; text-transform: uppercase; margin: 0; line-height: 1.2; }

/* ---------- grid background ---------- */
.grid-bg { position: relative; background-color: #fff; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 34px 34px; }
.grid-bg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 45%, #fff 30%, rgba(255,255,255,.6) 70%, rgba(255,255,255,0) 100%); pointer-events: none; }
.grid-bg > .wrap { position: relative; }

/* ---------- intro ---------- */
.intro { padding: 100px 0 110px; }
.intro-inner { display: grid; grid-template-columns: 60px 1fr; gap: 50px; max-width: 980px; margin-inline: auto; }
.accent { display: flex; gap: 10px; align-items: stretch; }
.accent .dots { width: 30px; background-image: radial-gradient(#b5b5b5 1.6px, transparent 1.7px); background-size: 6px 6px; height: 240px; }
.accent .line { width: 5px; background: var(--blue); }
.intro h2, .content h2 { font-size: clamp(40px, 5.5vw, 66px); color: #4d4d4d; letter-spacing: .01em; text-transform: uppercase; font-weight: 700; margin: 0 0 22px; line-height: 1.05; }
.content h2 { font-size: clamp(32px, 4vw, 48px); text-transform: none; }
.intro p { font-size: 18px; max-width: 900px; }

/* ---------- coverage banner ---------- */
.coverage { position: relative; min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), var(--bg); background-size: cover; background-position: center; overflow: hidden; }
.coverage .ca { position: absolute; height: 94%; top: 3%; left: 50%; transform: translateX(-50%); fill: rgba(27,75,156,.7); filter: drop-shadow(0 0 30px rgba(0,0,0,.3)); }
.coverage h2 { position: relative; color: #fff; font-family: var(--display); font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: .02em; margin: 0; text-shadow: 0 3px 20px rgba(0,0,0,.45); }
.coverage p { position: relative; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 14px; margin: 14px 0 0; text-shadow: 0 2px 10px rgba(0,0,0,.6); }

/* ---------- services ---------- */
.services { padding: 90px 0 100px; }
.section-title { text-align: center; color: var(--blue); font-size: clamp(38px, 5vw, 60px); text-transform: uppercase; margin: 0 0 60px; letter-spacing: .01em; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.svc-circle { display: block; width: 100%; max-width: 330px; aspect-ratio: 1; margin: 0 auto 40px; border-radius: 50%; overflow: hidden; border: 8px solid #f3f3f3; box-shadow: 0 10px 30px rgba(0,0,0,.2); transition: transform .3s; }
.svc-circle:hover { transform: translateY(-6px); }
.svc-circle img { width: 100%; height: 100%; object-fit: cover; }
.svc-card h3 { font-size: 23px; text-transform: uppercase; letter-spacing: .02em; }
.svc-card h3 a { color: var(--blue); }
.svc-card p { font-weight: 600; font-size: 17px; max-width: 300px; margin: 0 auto 18px; }

/* ---------- safety ---------- */
.safety { padding: 110px 0; background: linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.05)), var(--bg); background-size: cover; background-position: center; }
.safety-box { background: var(--blue); color: #fff; padding: 46px 32px 42px; max-width: 760px; box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.safety-box h2 { color: #fff; font-size: 60px; text-transform: uppercase; margin: 0 0 22px; }
.safety-box p { font-size: 18px; margin-bottom: 26px; }
.safety-box .eyebrow-light { color: rgba(255,255,255,.85); }

/* ---------- why ---------- */
.why { padding: 70px 0 60px; }
.why-inner { display: flex; justify-content: center; }
.why-link { display: inline-flex; align-items: center; gap: 22px; color: var(--blue); }
.why-link:hover { text-decoration: none; }
.why-link .script { font-family: "Caveat", cursive; font-size: 62px; line-height: .9; transform: rotate(-6deg); }
.why-link .arrow { font-size: 44px; color: var(--blue); }
.why-link img { width: 300px; }

/* ---------- content pages ---------- */
.content { padding: 90px 0; }
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.content .lead { font-size: 20px; }
.reasons { display: grid; gap: 20px; margin-top: 28px; }
.why-list .reasons { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.reasons article { background: #fff; border-left: 5px solid var(--blue); box-shadow: 0 4px 22px rgba(0,0,0,.08); padding: 22px 26px; }
.reasons h3 { font-size: 21px; color: var(--blue); margin-bottom: 8px; }
.reasons p { margin: 0; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stats div { background: var(--blue); color: #fff; text-align: center; padding: 28px 12px; }
.stats strong { display: block; font-family: var(--display); font-size: 48px; line-height: 1; font-weight: 800; }
.stats span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 26px; }
.sidebar .h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-2); margin-bottom: 10px; }
.svc-list { list-style: none; margin: 0; padding: 0; border: 1px solid var(--line); background: #fff; }
.svc-list a { display: block; padding: 12px 18px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.svc-list li:last-child a { border-bottom: 0; }
.svc-list a.active, .svc-list a:hover { background: var(--blue); color: #fff; text-decoration: none; }
.cta-box { background: #fff; border-top: 5px solid var(--blue); box-shadow: 0 4px 22px rgba(0,0,0,.1); padding: 26px; }
.cta-box .btn { width: 100%; text-align: center; }
.map { width: 100%; height: 280px; border: 0; box-shadow: 0 4px 22px rgba(0,0,0,.1); }

/* ---------- galleries ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.tile { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #ddd; box-shadow: 0 4px 18px rgba(0,0,0,.12); position: relative; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tile:hover img { transform: scale(1.05); }
.tile figure { margin: 0; height: 100%; }
.tile figcaption { position: absolute; inset: auto 0 0 0; background: linear-gradient(transparent, rgba(0,0,0,.8)); color: #fff; padding: 30px 14px 12px; font-size: 13px; line-height: 1.4; }
.tile figcaption strong { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: #9dc0ff; }
.gallery { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.tile.hide { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 40px; }
.chip { border: 2px solid var(--line); background: #fff; padding: 8px 18px; border-radius: 30px; font: 600 13px var(--font); letter-spacing: .08em; text-transform: uppercase; color: var(--ink); cursor: pointer; }
.chip.on, .chip:hover { border-color: var(--blue); background: var(--blue); color: #fff; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none; align-items: center; justify-content: center; z-index: 300; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; box-shadow: 0 10px 60px rgba(0,0,0,.6); }
.lightbox button { position: absolute; top: 14px; right: 18px; background: none; border: 0; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }

/* ---------- forms ---------- */
.form-card { background: #fff; box-shadow: 0 4px 26px rgba(0,0,0,.1); padding: 34px; margin-bottom: 40px; border-top: 5px solid var(--blue); }
.form-card h3 { font-size: 30px; color: var(--blue); }
.form-card form { display: grid; gap: 14px; }
.form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.form-card input, .form-card select, .form-card textarea { font: 16px var(--font); padding: 11px 12px; border: 1px solid #c9c9c9; border-radius: 3px; width: 100%; background: #fafafa; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.form-card .invalid { border-color: #c0392b; background: #fff5f4; }
.form-card .btn { justify-self: start; }
.form-status { margin: 0; font-weight: 600; }
.form-status.ok { color: #1b7a3a; }
.form-status.err { color: #c0392b; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer); color: #e4e7eb; margin-top: 0; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.1fr 1fr .8fr 1fr; gap: 36px; padding: 70px 0 60px; }
.site-footer .h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 10px; }
.site-footer .h4 + p { margin-bottom: 22px; font-size: 14px; }
.site-footer p { font-size: 14px; }
.f-brand img { background: #fff; padding: 10px; border-radius: 6px; width: 100%; max-width: 300px; }
.f-tag { font-size: 12px; letter-spacing: .18em; font-weight: 700; margin-top: 16px; }
.f-map .h4 { font-size: 22px; letter-spacing: .02em; }
.f-map ul { list-style: none; margin: 0; padding: 0; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.f-map li::before { content: "\2022  "; color: #9fb3cc; }
.f-map ul ul { padding-left: 18px; }
.f-map li { margin: 3px 0; }
.f-badges { display: grid; gap: 14px; align-content: start; }
.badge { display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; color: var(--footer); border-radius: 8px; padding: 12px 10px; text-align: center; }
.badge strong { font-family: var(--display); font-size: 26px; font-weight: 800; line-height: 1; }
.badge small { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-top: 3px; }
.f-contact .btn { margin-bottom: 30px; }
.footer-bar { background: #2f3641; }
.footer-bar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 50px; font-size: 12px; flex-wrap: wrap; gap: 10px; }
.footer-bar .socials a { color: #b9c1cc; }
.f-credit { color: #b9c1cc; }
.f-credit a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.f-credit a:hover { color: #9dc0ff; }

/* ---------- emergency tab ---------- */
.emergency { position: fixed; right: 0; bottom: 60px; background: #c62828; color: #fff; padding: 12px 20px 12px 18px; display: flex; flex-direction: column; line-height: 1.2; box-shadow: 0 6px 20px rgba(0,0,0,.35); z-index: 90; border-radius: 4px 0 0 4px; }
.emergency:hover { text-decoration: none; background: #a51f1f; }
.emergency small { font-size: 14px; }
.emergency strong { font-size: 22px; font-weight: 700; letter-spacing: .01em; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .main-nav > ul > li > a { padding: 26px 9px; font-size: 12px; letter-spacing: .12em; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--charcoal); border-top: 1px solid #444; }
  body.nav-open .main-nav { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 20px; border-bottom: 1px solid #3a3a3a; }
  .dropdown { position: static; display: flex; background: #242424; border-top: 0; box-shadow: none; padding: 0 0 6px; }
  .dropdown li a { color: #ddd; padding: 9px 36px; }
  .hero-bar { left: 12px; width: 26px; }
  .hero-inner { padding: 70px 0 60px; }
  .intro-inner { grid-template-columns: 1fr; gap: 20px; }
  .accent { display: none; }
  .intro, .services, .content { padding: 60px 0; }
  .safety { padding: 60px 0; }
  .safety-box h2 { font-size: 44px; }
  .why-link { flex-direction: column; gap: 10px; text-align: center; }
  .why-link .arrow { transform: rotate(90deg); }
  .stats { margin-top: 20px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .utility .wrap { justify-content: space-between; }
  .brand-text strong { font-size: 22px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-circle { max-width: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .form-card .row { grid-template-columns: 1fr; }
  .emergency { bottom: 0; right: 0; left: 0; border-radius: 0; align-items: center; }
  .site-footer { padding-bottom: 72px; } /* keep the footer bar clear of the fixed emergency tab */
  .footer-bar .wrap { flex-direction: column; text-align: center; padding: 14px 0; }
  .coverage { min-height: 380px; }
  .eyebrow { font-size: 22px; }
}

/* ---------- SEO additions: breadcrumbs, FAQ, service areas ---------- */
.crumbs { background: #f3f4f6; border-bottom: 1px solid var(--line); font-size: 13px; }
.crumbs ol { list-style: none; margin: 0; padding: 10px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "\203A"; color: #999; margin-right: 6px; }
.crumbs a { color: var(--ink-2); }
.crumbs li[aria-current] { color: var(--blue); font-weight: 600; }
.faq { margin-top: 48px; }
.faq h2 { font-size: 30px; margin-bottom: 18px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 4px; margin-bottom: 10px; padding: 0 18px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 22px; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 16px; }
.areas { padding: 80px 0; background: #f6f7f9; text-align: center; }
.areas h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.areas > .wrap > p { max-width: 820px; margin-inline: auto; }
.city-list { list-style: none; margin: 28px auto 12px; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; }
.city-list li { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 7px 16px; font-size: 14px; font-weight: 600; }
.small { font-size: 14px; color: var(--ink-2); }
.mt-sm { margin-top: 16px; }
address { font-style: normal; font-size: 14px; margin-bottom: 22px; }
.f-areas { font-size: 13px; color: #c5ccd6; margin-top: 10px; }
.content p.center-text { padding: 0; margin: -30px auto 34px; max-width: 760px; }

/* a11y: in-text links must not rely on color alone */
.content p a, .intro p a, .areas p a, .reasons p a, .cta-box p a, .faq p a, .form-card p a { text-decoration: underline; text-underline-offset: 3px; }
