:root {
  --navy-950: #101823;
  --navy-900: #172234;
  --navy-800: #1f2c42;
  --navy-700: #2b3b55;
  --red-700: #b3312a;
  --red-600: #c83a32;
  --red-50: #fff1ef;
  --gold: #f2b84b;
  --green: #0f6b3b;
  --cream: #f7f4ee;
  --stone: #f3f5f7;
  --white: #ffffff;
  --ink: #17202f;
  --muted: #5c6676;
  --soft: #dbe1ea;
  --line: #e5e9ef;
  --container: 1184px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 28px rgba(16, 24, 35, .08);
  --shadow-md: 0 20px 60px rgba(16, 24, 35, .14);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: 0;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

body.menu-open { overflow: hidden; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.narrow { max-width: 880px; }
.center { text-align: center; }
.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;
}

.section {
  padding: var(--space-12) 0;
}

.section.tight { padding: var(--space-10) 0; }
.stone { background: var(--stone); }
.cream { background: var(--cream); }
.dark, .blue { background: var(--navy-900); color: var(--white); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow.light { color: #f6c8c3; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4,
.logo,
.phone-link,
.btn,
.stat-number {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.015em;
}

h4 {
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.dark p,
.blue p,
.final-cta p,
.footer p { color: rgba(255, 255, 255, .72); }

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: var(--space-4);
  align-items: end;
  margin-bottom: var(--space-5);
}

.section-heading p { margin-bottom: 0; }

.storm-alert {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--red-700);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.storm-alert .container {
  min-height: 42px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-right: 36px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
}

.storm-alert a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.storm-alert button {
  position: absolute;
  right: 0;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  cursor: pointer;
}

.storm-alert.hidden { display: none; }

.site-header {
  position: sticky;
  top: 42px;
  z-index: 70;
  background: rgba(16, 24, 35, .94);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.storm-alert.hidden + .site-header { top: 0; }

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.logo b { color: #f2c2be; font-weight: 800; }

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red-600), #8e251f);
  box-shadow: 0 10px 24px rgba(200, 58, 50, .28);
}

.logo svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a {
  padding: 10px 0;
  transition: color .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 4px;
}

.phone-link {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 32px;
  background: rgba(16, 24, 35, .98);
  color: var(--white);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 22px;
  font-weight: 800;
}

.mobile-menu .btn { margin-top: 10px; border-bottom: 0; }
.mobile-phone { color: #f5c7c3; font-size: 18px !important; }

.btn,
.btn-primary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--red-600), var(--red-700));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(184, 49, 42, .24);
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.005em;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(184, 49, 42, .3);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 184, 75, .48);
  outline-offset: 3px;
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 14px;
}

.btn-secondary,
.btn-insurance {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-insurance:hover {
  background: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.btn-white {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.btn-white:hover {
  background: #f6f8fb;
  color: var(--navy-900);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .36);
  color: var(--white);
  box-shadow: none;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: none;
}

.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--white);
  padding: 86px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 24, 35, .94) 0%, rgba(16, 24, 35, .82) 48%, rgba(16, 24, 35, .52) 100%),
    url("https://images.unsplash.com/photo-1632759145350-2fa2f6bba9b8?w=1800&auto=format&fit=crop") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(16, 24, 35, .6), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(392px, .74fr);
  gap: 64px;
  align-items: center;
}

.hero-copy { max-width: 720px; }

.stars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--gold);
  font-weight: 900;
}

.stars span {
  color: inherit;
  font-weight: 850;
}

.star-copy {
  color: rgba(255, 255, 255, .86) !important;
  font-size: 14px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 22px 0 0;
}

.proof-list span,
.trust-pills span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.inspection-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: var(--shadow-dark);
}

.inspection-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.1;
}

.inspection-card .form-intro {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.inspection-card label {
  display: block;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

textarea { min-height: 126px; resize: vertical; }

input:hover,
select:hover,
textarea:hover { border-color: #cbd3df; }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(200, 58, 50, .12);
  outline: 0;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.success {
  text-align: center;
  padding: 24px 0;
}

.success h2 { color: var(--ink); }

.alert-box {
  padding: 18px 0;
  background: var(--red-50);
  border-block: 1px solid #ffd8d3;
}

.alert-box .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.alert-content {
  display: flex;
  gap: 14px;
  align-items: center;
}

.alert-icon,
.service-card .icon,
.reassurance-card .icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-50);
  color: var(--red-700);
  font-size: 22px;
  font-weight: 900;
}

.alert-box p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.alert-box a {
  flex: 0 0 auto;
  color: var(--red-700);
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.card-grid,
.review-grid,
.proof-grid,
.trust-band {
  display: grid;
  gap: 20px;
}

.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.eight { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.service-card,
.card-grid article,
.review-grid article,
.review-card,
.contact-panel,
.hail-calculator,
.credential-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover,
.review-grid article:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: #d4dae4;
  box-shadow: var(--shadow-md);
}

.service-card h3 { margin-top: 18px; }
.service-card p { margin-bottom: 18px; }
.service-card strong {
  margin-top: auto;
  margin-bottom: 14px;
  color: var(--red-700);
  font-size: 14px;
}

.service-card a {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.steps b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: var(--red-700);
  font-weight: 900;
}

.steps span {
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
}

.trust-band,
.proof-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-band div,
.proof-grid div {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.trust-band strong,
.proof-grid strong,
.stat-number {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
}

.trust-band span,
.proof-grid span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.45;
}

.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.review-grid article,
.review-card {
  min-height: 100%;
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.reviews-page-grid .review-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
}

.reviews-page-grid .review-card p {
  min-height: 82px;
}

.reviews-page-grid .review-card strong {
  margin-top: auto;
}

.review-grid p,
.review-card p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
}

.review-grid strong,
.review-card strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 850;
}

.review-grid small,
.review-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.badge,
.credential-card {
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
  border-color: rgba(15, 107, 59, .22);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .25), transparent 34%),
    linear-gradient(145deg, #0f6b3b, #084222);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.badge {
  text-align: center;
  font-size: 70px;
  font-weight: 950;
  line-height: .9;
  letter-spacing: -.05em;
}

.badge span {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  letter-spacing: .12em;
}

.credential-card h3 {
  font-size: 32px;
  color: var(--white);
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .86);
  font-weight: 750;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.areas {
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.map-panel {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(16, 24, 35, .05), rgba(200, 58, 50, .08)),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(23, 34, 52, .055) 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(23, 34, 52, .055) 48px 49px),
    #eef2f6;
  box-shadow: var(--shadow-md);
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.map-panel::before {
  width: 190px;
  height: 190px;
  right: 17%;
  top: 20%;
  border: 18px solid rgba(200, 58, 50, .18);
}

.map-panel::after {
  width: 14px;
  height: 14px;
  left: 48%;
  top: 48%;
  background: var(--red-600);
  box-shadow: 0 0 0 12px rgba(200, 58, 50, .16), 0 0 0 24px rgba(200, 58, 50, .08);
}

.map-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}

.map-label strong {
  display: block;
  color: var(--navy-900);
  font-size: 18px;
}

.map-label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hail-calculator {
  margin-top: 24px;
  padding: 24px;
}

.hail-calculator form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hail-calculator input { margin-top: 0; }

#hailResult {
  min-height: 28px;
  margin-top: 14px;
  color: var(--red-700);
  font-size: 14px;
  font-weight: 800;
}

#hailResult a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reassurance-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.reassurance-card .icon {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.reassurance-card h3 { margin-top: 18px; color: var(--white); }
.reassurance-card p { margin-bottom: 0; }

.faq {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 19px;
  font-weight: 850;
}

.faq-item button span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--stone);
  color: var(--red-700);
}

.faq-item p {
  display: none;
  max-width: 760px;
  margin: -4px 0 22px;
  color: var(--muted);
}

.faq-item.open p { display: block; }
.faq-item.open button span { transform: rotate(45deg); }

.final-cta {
  padding: 82px 0;
  background:
    linear-gradient(135deg, rgba(16, 24, 35, .96), rgba(23, 34, 52, .94)),
    url("https://images.unsplash.com/photo-1632759145350-2fa2f6bba9b8?w=1600&auto=format&fit=crop") center / cover;
  color: var(--white);
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta .cta-row { justify-content: center; }

.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .76);
  padding: 64px 0 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr .9fr;
  gap: 38px;
  align-items: start;
}

.footer h3 {
  color: var(--white);
  font-size: 24px;
}

.footer h4 { color: var(--white); }

.footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.footer a:hover { color: var(--white); }

.emergency a {
  display: inline;
  color: var(--white);
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.footer-credit {
  margin-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-credit a {
  display: inline;
  width: auto;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: inherit;
}

.footer-credit a:hover { color: var(--gold); }

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(16, 24, 35, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-600);
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.mobile-cta a:first-child {
  background: rgba(255, 255, 255, .1);
}

.page-hero {
  padding: 118px 0 104px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 24, 35, .93), rgba(16, 24, 35, .74)),
    url("https://images.unsplash.com/photo-1449158743715-0a90ebb6d2d8?w=1800&auto=format&fit=crop") center / cover;
}

.service-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 24, 35, .93), rgba(16, 24, 35, .7)),
    url("../images/services/storm-damage.png");
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 24, 35, .93), rgba(16, 24, 35, .72)),
    url("../images/projects/project-6.png");
}

.reviews-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 24, 35, .93), rgba(16, 24, 35, .72)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1800&auto=format&fit=crop");
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 24, 35, .93), rgba(16, 24, 35, .7)),
    url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1800&auto=format&fit=crop");
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
}

.service-list {
  display: grid;
  gap: 26px;
}

.service-detail {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-detail img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.founder img {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.founder blockquote {
  margin: 28px 0 0;
  padding: 24px;
  border-left: 4px solid var(--red-600);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--red-50);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.masonry {
  columns: 3 300px;
  column-gap: 20px;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 250px;
  border-radius: var(--radius);
  object-fit: cover;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.gallery img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .88);
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
}

.emergency-banner {
  padding: 14px 0;
  background: var(--red-700);
  color: var(--white);
  text-align: center;
  font-weight: 850;
}

.emergency-banner a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: start;
}

.contact-panel {
  padding: 30px;
  background: var(--stone);
}

.large-phone {
  margin-bottom: 22px;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
}

.contact-map { margin-top: 24px; min-height: 260px; }

.wide { box-shadow: var(--shadow-md); }

.blog-hero {
  padding: 112px 0 92px;
  background:
    radial-gradient(circle at 82% 28%, rgba(200, 58, 50, .18), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.blog-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
}

.blog-hero h1 {
  max-width: 860px;
}

.blog-trust-row,
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-trust-row span,
.article-hero-meta span,
.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.breadcrumb a {
  text-decoration: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  background: var(--navy-100);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: #d4dae4;
  box-shadow: var(--shadow-md);
}

.blog-card .category,
.article-meta {
  color: var(--red-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin: 14px 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.blog-card p {
  margin-bottom: 24px;
}

.blog-card a {
  margin-top: auto;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 900;
}

.blog-card a::after {
  content: " ->";
  color: var(--red-600);
}

.article-wrap {
  background: var(--cream);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 330px;
  gap: 42px;
  align-items: start;
}

.article-body {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.article-featured {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--navy-100);
}

.article-body .intro {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.75;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 34px;
}

.article-body h3 {
  margin-top: 28px;
  font-size: 23px;
}

.article-body p,
.article-body li {
  font-size: 17px;
  line-height: 1.78;
}

.article-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
}

.article-body a:not(.btn) {
  color: var(--red-700);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--red-600);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.article-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.article-table th,
.article-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: var(--navy-900);
  color: var(--white);
  font-weight: 900;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-cta {
  margin: 42px 0;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
}

.article-cta h2,
.article-cta h3 {
  margin-top: 0;
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, .76);
}

.article-sidebar {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.sidebar-card a {
  display: block;
  margin-top: 12px;
  color: var(--red-700);
  font-weight: 850;
}

.sidebar-card a.btn {
  display: inline-flex;
  color: var(--white);
  text-decoration: none;
}

.sidebar-card .btn-outline {
  color: var(--navy-900);
}

.sidebar-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.sidebar-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--cream);
}

.review-snippet {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.article-bottom-cta {
  margin-top: 0;
}

.related-posts {
  background: var(--cream);
  padding-top: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.related-links a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--stone);
  color: var(--navy-900) !important;
  text-decoration: none !important;
}

.fade-in {
  opacity: 1;
  transform: none;
  animation: fadeUp .55s ease both;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions { display: none; }

  .hamburger { display: block; }

  .header-inner { min-height: 70px; }

  .hero-grid,
  .split,
  .area-grid,
  .contact-grid,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .inspection-card { max-width: 620px; }

  .card-grid.eight,
  .trust-band,
  .proof-grid,
  .blog-grid,
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section-heading { grid-template-columns: 1fr; }

  .service-detail { grid-template-columns: 320px minmax(0, 1fr); }
}

@media (max-width: 768px) {
  body { padding-bottom: 78px; }

  .container { width: min(100% - 32px, var(--container)); }

  .storm-alert .container {
    justify-content: flex-start;
    font-size: 12px;
  }

  .storm-alert a { display: none; }

  .site-header { top: 42px; }

  .logo { font-size: 20px; }
  .logo-mark { width: 36px; height: 36px; }

  .section,
  .section.tight { padding: 58px 0; }

  h1 { font-size: clamp(42px, 12vw, 56px); }
  h2 { font-size: clamp(32px, 9vw, 42px); }

  .hero {
    padding: 54px 0;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(16, 24, 35, .96), rgba(16, 24, 35, .82)),
      url("https://images.unsplash.com/photo-1632759145350-2fa2f6bba9b8?w=1200&auto=format&fit=crop") center / cover;
  }

  .hero-grid { gap: 34px; }
  .lead { font-size: 17px; }

  .proof-list,
  .card-grid,
  .card-grid.eight,
  .review-grid,
  .blog-grid,
  .related-grid,
  .reassurance-grid,
  .gallery,
  .footer-grid,
  .trust-band,
  .proof-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .alert-box .container,
  .alert-content {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-row .btn,
  .alert-box a { width: 100%; }

  .inspection-card {
    padding: 22px;
    border-radius: 20px;
  }

  .inspection-card h2 { font-size: 27px; }

  .service-detail { padding: 18px; }
  .service-detail img,
  .founder img {
    height: 240px;
    min-height: unset;
  }

  .hail-calculator form {
    grid-template-columns: 1fr;
  }

  .map-panel { min-height: 300px; }
  .map-label { flex-direction: column; align-items: start; }

  .page-hero { padding: 82px 0 72px; }
  .blog-hero { padding: 78px 0 64px; }
  .blog-hero h1 {
    font-size: clamp(38px, 10vw, 46px);
    line-height: 1.02;
  }
  .article-body { padding: 26px; }
  .article-body h2 { font-size: 30px; }
  .article-table { min-width: 560px; }
  .article-sidebar,
  .related-links { grid-template-columns: 1fr; }
  .masonry { columns: 1; }

  .footer { padding-bottom: 112px; }
  .footer-bottom { flex-direction: column; }
  .footer-credit { margin-top: 20px; }
  .mobile-cta { display: grid; }
}

@media (max-width: 420px) {
  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .storm-alert .container { min-height: 46px; }
  .site-header { top: 46px; }
  .storm-alert.hidden + .site-header { top: 0; }

  .mobile-cta {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
}
