/* Raptor Roofing static site theme */
:root {
  --lime: #38ec14;
  --lime-dark: #2fd90f;
  --cyan: #1bb7db;
  --cyan-dark: #0ca3c8;
  --ink: #0d1520;
  --slate: #142235;
  --paper: #edf2f6;
  --paper-deep: #e5ecf3;
  --surface: #ffffff;
  --surface-soft: #f5f9fd;
  --line: #c8d6e2;
  --line-strong: #9fb5c6;
  --muted: #5e7187;
  --radius: 18px;
  --shadow: 0 16px 42px rgba(5, 17, 29, 0.24);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -6%, rgba(27, 183, 219, 0.16), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(14, 47, 76, 0.12), transparent 34%),
    linear-gradient(180deg, var(--paper), var(--paper-deep));
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

a { color: var(--cyan-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 8px;
  z-index: 99;
}

.container {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 17, 28, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(3, 11, 19, 0.26);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand-wordmark {
  width: 220px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.main-nav > a,
.main-nav .nav-parent,
.main-nav .sub-nav a {
  color: #e8f2ff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav .nav-group {
  position: relative;
}

.main-nav .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav .nav-parent::after {
  content: "v";
  font-size: 0.74rem;
  opacity: 0.85;
}

.main-nav .sub-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 16, 27, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 30;
}

.main-nav .sub-nav a {
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  padding: 7px 10px;
}

.main-nav .nav-group:hover .sub-nav,
.main-nav .nav-group:focus-within .sub-nav {
  display: flex;
}

.main-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
}

.main-nav .phone-link {
  background: linear-gradient(120deg, var(--lime), var(--cyan));
  color: #03231f;
  padding: 9px 14px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: "Oswald", "Impact", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.55rem); }

p { margin: 0 0 1rem; }

.hero {
  position: relative;
  color: #f3f8ff;
  padding: 4.6rem 0 5.2rem;
  min-height: clamp(680px, 82vh, 960px);
  background: #0a1826;
  overflow: hidden;
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 15, 25, 0.58), rgba(8, 27, 40, 0.34));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(56, 236, 20, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 0.85rem;
}

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

.hero-copy h1 {
  text-shadow: 0 5px 20px rgba(3, 12, 20, 0.55);
}

.hero-copy p {
  color: #e2eeff;
  text-shadow: 0 2px 10px rgba(3, 12, 20, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.3rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: linear-gradient(120deg, var(--lime), var(--cyan));
  color: #062721;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 18px 36px rgba(4, 17, 30, 0.28);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: #123b58;
  background: rgba(245, 250, 255, 0.92);
}

.btn-dark {
  border: 1px solid rgba(10, 42, 66, 0.35);
  color: #e9f4ff;
  background: linear-gradient(125deg, rgba(8, 28, 43, 0.9), rgba(13, 54, 79, 0.88));
}

.btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(4, 15, 26, 0.25);
}

.hero .btn-ghost,
.section-dark .btn-ghost,
.page-hero .btn-ghost,
.article-hero .btn-ghost,
.emergency-cta-wrap .btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #f3f8ff;
  background: rgba(255, 255, 255, 0.08);
}

.btn.btn-quote {
  background: linear-gradient(120deg, var(--lime), var(--cyan));
  color: #062721;
  border-color: rgba(6, 39, 33, 0.2);
  box-shadow: 0 12px 26px rgba(4, 17, 30, 0.24);
}

.btn.btn-quote:hover {
  filter: brightness(1.03);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  font-size: 0.85rem;
}

.emergency-cta {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.emergency-cta-wrap {
  background: rgba(7, 18, 29, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e7f4ff;
}

.emergency-cta .eyebrow {
  color: var(--cyan);
}

.emergency-cta-wrap p {
  margin-bottom: 0;
}

.emergency-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stats-band {
  background: linear-gradient(90deg, #0a1826, #0f2b3f);
  color: #dcecff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0;
  justify-items: center;
}

.stats-grid > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-grid > div p:last-child {
  margin-bottom: 0;
}

.stat {
  margin: 0;
  color: var(--lime);
  font-family: "Oswald", "Impact", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.section {
  padding: 3.2rem 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 42%;
  height: 75%;
  background: radial-gradient(circle, rgba(56, 236, 20, 0.12), transparent 70%);
  pointer-events: none;
}

.section::after {
  content: "";
  position: absolute;
  inset: auto -14% -30% auto;
  width: 40%;
  height: 66%;
  background: radial-gradient(circle, rgba(27, 183, 219, 0.12), transparent 72%);
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 12%, rgba(27, 183, 219, 0.2), transparent 36%),
    linear-gradient(125deg, #08131f 10%, #0f2d43 62%, #0b2031 100%);
  color: #e8f5ff;
  border: 1px solid rgba(130, 173, 198, 0.32);
  border-radius: clamp(22px, 4.4vw, 52px);
  box-shadow: 0 22px 44px rgba(4, 13, 22, 0.34);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: -26% auto auto -18%;
  width: 54%;
  height: 92%;
  background: radial-gradient(circle, rgba(27, 183, 219, 0.28), transparent 72%);
  pointer-events: none;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 50%;
  height: 90%;
  background: radial-gradient(circle, rgba(56, 236, 20, 0.2), transparent 74%);
  pointer-events: none;
}

.section-dark .eyebrow { color: var(--cyan); }
.section-dark p { color: #d3e6fb; }

.section-dark .panel,
.section-dark .resource-card,
.section-dark .post-card,
.section-dark .service-card,
.section-dark .county-card {
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.95));
  border-color: #b6ccdc;
  color: #173d59;
}

.section-dark .panel h2,
.section-dark .panel h3,
.section-dark .resource-card h2,
.section-dark .resource-card h3,
.section-dark .post-card h2,
.section-dark .post-card h3,
.section-dark .service-card h2,
.section-dark .service-card h3,
.section-dark .county-card h2,
.section-dark .county-card h3 {
  color: #103b59;
}

.section-dark .panel p,
.section-dark .panel li,
.section-dark .resource-card p,
.section-dark .resource-card li,
.section-dark .post-card p,
.section-dark .service-card p,
.section-dark .county-card p {
  color: #2d5b7b;
}

.section-dark .panel a:not(.btn),
.section-dark .resource-card a:not(.btn),
.section-dark .post-card a:not(.btn),
.section-dark .service-card a:not(.btn),
.section-dark .county-card a:not(.btn) {
  color: #0f7fb0;
  font-weight: 700;
}

.section-dark .panel .btn-ghost,
.section-dark .resource-card .btn-ghost,
.section-dark .post-card .btn-ghost,
.section-dark .service-card .btn-ghost,
.section-dark .county-card .btn-ghost {
  border-color: #9fb5c6;
  color: #123b58;
  background: rgba(245, 250, 255, 0.95);
}

.section-dark .panel .btn-ghost:hover,
.section-dark .resource-card .btn-ghost:hover,
.section-dark .post-card .btn-ghost:hover,
.section-dark .service-card .btn-ghost:hover,
.section-dark .county-card .btn-ghost:hover {
  box-shadow: 0 12px 24px rgba(8, 25, 40, 0.14);
}

.section-title {
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 1.3rem;
}

.conversion-strip {
  background:
    linear-gradient(150deg, rgba(8, 31, 48, 0.16), rgba(27, 183, 219, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 253, 0.9));
  border: 1px solid rgba(152, 185, 205, 0.42);
  border-radius: clamp(20px, 4vw, 44px);
  box-shadow: 0 18px 34px rgba(8, 24, 39, 0.14);
}

.conversion-strip::before,
.reviews-section::before,
.trust-section::before,
.cta-strip::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -15%;
  width: 48%;
  height: 88%;
  background: radial-gradient(circle, rgba(56, 236, 20, 0.18), transparent 72%);
  pointer-events: none;
}

.conversion-strip::after,
.reviews-section::after,
.trust-section::after,
.cta-strip::after {
  content: "";
  position: absolute;
  inset: auto -14% -32% auto;
  width: 50%;
  height: 84%;
  background: radial-gradient(circle, rgba(27, 183, 219, 0.2), transparent 74%);
  pointer-events: none;
}

.conversion-strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.service-grid,
.post-grid,
.county-grid,
.resource-grid {
  display: grid;
  gap: 16px;
}

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.county-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.county-grid-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.resource-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card,
.county-card,
.panel,
.post-card,
.resource-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.93));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(10, 27, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card::before,
.county-card::before,
.panel::before,
.post-card::before,
.resource-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(120deg, rgba(56, 236, 20, 0.9), rgba(27, 183, 219, 0.92));
  opacity: 0.72;
  pointer-events: none;
}

.service-card:hover,
.county-card:hover,
.post-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  border-color: #8fb0c8;
  box-shadow: 0 18px 34px rgba(8, 23, 37, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.service-card h3,
.county-card h3 {
  color: var(--slate);
}

.county-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.county-facts ul {
  margin: 0;
  padding-left: 1.05rem;
}

.county-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.county-chip-grid span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #cde2ef;
  background: #f7fbff;
  color: #1b4d72;
  font-weight: 600;
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.process-list {
  margin: 1rem 0 0;
  padding-left: 18px;
}
.process-list li { margin-bottom: 0.75rem; }

.cert-image {
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(128deg, #0a1a2a 0%, #11344c 58%, #0b2539 100%);
  color: #ebf7ff;
  padding: 3.4rem 0 2.9rem;
  border-radius: 0 0 clamp(24px, 4.6vw, 58px) clamp(24px, 4.6vw, 58px);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -35% -18%;
  width: 46%;
  height: 70%;
  background: radial-gradient(circle, rgba(27, 183, 219, 0.34), transparent 68%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: -28% -12% auto auto;
  width: 44%;
  height: 64%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(7, 21, 33, 0.58), rgba(13, 44, 66, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 1.65rem 1.8rem;
  box-shadow: 0 20px 42px rgba(4, 13, 22, 0.28);
}

.page-hero p { color: #d9eafb; max-width: 70ch; }

.winterready-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 1.2rem;
  align-items: center;
}

.winterready-hero-copy p {
  max-width: 62ch;
}

.winterready-short-card {
  justify-self: end;
  width: min(100%, 320px);
  background: linear-gradient(165deg, rgba(5, 20, 32, 0.86), rgba(11, 42, 64, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 14px 34px rgba(3, 13, 24, 0.42);
}

.winterready-short-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.winterready-short-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.winterready-short-note {
  margin: 0.55rem 0 0.1rem;
  color: #d4eaff;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
}

.winterready-parallax-band {
  position: relative;
  overflow: hidden;
  margin: 1.2rem calc(50% - 50vw) 1.8rem;
  min-height: clamp(320px, 40vw, 520px);
  border-top: 1px solid #c2cfd9;
  border-bottom: 1px solid #c2cfd9;
  background-color: #d8dce1;
  background-image:
    linear-gradient(90deg, rgba(216, 220, 225, 0.97) 0%, rgba(216, 220, 225, 0.9) 40%, rgba(216, 220, 225, 0.28) 68%, rgba(216, 220, 225, 0.1) 100%),
    url("/assets/images/uploads/2025/10/winter-ready-bg.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right center;
  background-size: 100% 100%, min(940px, 72vw) auto;
  background-attachment: scroll, fixed;
}

.winterready-parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 28%, rgba(27, 183, 219, 0.14), transparent 44%);
  pointer-events: none;
}

.winterready-parallax-overlay {
  position: relative;
  z-index: 1;
  max-width: min(640px, 74vw);
  padding: clamp(1.2rem, 3.4vw, 2.8rem) clamp(1rem, 3.8vw, 3rem);
}

.winterready-parallax-overlay .eyebrow {
  color: #1f5f84;
}

.winterready-parallax-overlay h3 {
  margin-bottom: 0.75rem;
  color: #13293f;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.winterready-parallax-overlay p {
  color: #203347;
  max-width: 58ch;
}

.winterready-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0.8rem;
}

.winterready-faq-card h4 {
  margin-bottom: 0.45rem;
}

.winterready-faq-card p {
  margin: 0;
}

.post-card {
  overflow: hidden;
  padding: 0;
}

.post-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card-content {
  padding: 14px 16px 18px;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-block;
  background: #e9f5ff;
  color: #18466a;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.resource-card h3 a {
  color: var(--slate);
}

.resource-card p {
  color: #2e4a62;
}

.resource-card .btn {
  margin-top: 0.2rem;
}

.resource-card-compact {
  padding: 14px;
}

.resource-card-compact h3 {
  font-size: 1.04rem;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 2.8rem 0 1.4rem;
  background: linear-gradient(130deg, #091726, #123853);
  color: #e7f5ff;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 52%;
  height: 74%;
  background: radial-gradient(circle, rgba(27, 183, 219, 0.2), transparent 70%);
  pointer-events: none;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.article-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-date {
  margin: 0;
  color: #b8d4ea;
}

.article-content {
  width: min(900px, 100%);
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 1.4rem;
}

.article-content img {
  border-radius: 12px;
  margin: 1rem 0;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.embed-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #ffffff, #f5f9fc);
  box-shadow: 0 10px 26px rgba(10, 26, 40, 0.1);
}

.embed-wrap iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}

.ghl-form-wrap iframe {
  min-height: 760px;
}

.migrated-content {
  background: linear-gradient(170deg, #ffffff, #f6fafd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 12px 26px rgba(9, 24, 38, 0.1);
}

.migrated-content h2,
.migrated-content h3,
.migrated-content h4 {
  margin-top: 1.2rem;
}

.migrated-content ul,
.migrated-content ol {
  padding-left: 1.25rem;
}

.migrated-content li {
  margin-bottom: 0.55rem;
}

.migrated-content img {
  width: 100%;
  border-radius: 12px;
  margin: 0.7rem 0 1.1rem;
}

.migrated-content .migrated-logo {
  text-align: center;
}

.migrated-content .migrated-logo img {
  width: 25%;
  max-width: 150px;
  min-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.migrated-content iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 12px;
  margin: 0.7rem 0 1.1rem;
}

.roofle-section {
  padding-top: 2.2rem;
}

.roofle-widget {
  background: linear-gradient(170deg, #ffffff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(9, 24, 38, 0.1);
}

.roofle-widget iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
}

.reviews-section {
  background:
    linear-gradient(150deg, rgba(9, 32, 50, 0.14), rgba(27, 183, 219, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 253, 0.9));
  border: 1px solid rgba(152, 185, 205, 0.42);
  border-radius: clamp(20px, 4vw, 44px);
  box-shadow: 0 18px 34px rgba(8, 24, 39, 0.14);
}

.reviews-widget {
  background: linear-gradient(170deg, #ffffff, #f6fafe);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(9, 24, 38, 0.11);
}

.trust-section {
  background:
    linear-gradient(145deg, rgba(7, 29, 46, 0.15), rgba(27, 183, 219, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 253, 0.9));
  border: 1px solid rgba(152, 185, 205, 0.42);
  border-radius: clamp(20px, 4vw, 44px);
  box-shadow: 0 18px 34px rgba(8, 24, 39, 0.14);
}

.map-section iframe {
  width: 100%;
  min-height: 580px;
  border: 0;
}

.cta-strip {
  background:
    linear-gradient(136deg, rgba(7, 31, 48, 0.2), rgba(27, 183, 219, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 253, 0.9));
  border: 1px solid rgba(152, 185, 205, 0.42);
  border-radius: clamp(20px, 4vw, 44px);
  box-shadow: 0 20px 36px rgba(8, 24, 39, 0.14);
}

.cta-wrap {
  background: linear-gradient(170deg, #ffffff, #f6fafe);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 14px 30px rgba(10, 28, 44, 0.14);
}

.page-copy {
  background: linear-gradient(170deg, #ffffff, #f7fbfe);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(10, 28, 44, 0.1);
}

.financing-hero {
  position: relative;
  padding: 4rem 0 3.2rem;
  color: #eef8ff;
  background:
    linear-gradient(115deg, rgba(6, 18, 30, 0.7), rgba(9, 31, 46, 0.42)),
    var(--financing-hero-image) center 46% / cover no-repeat;
}

.financing-hero-inner {
  max-width: 760px;
}

.financing-hero .eyebrow {
  color: var(--cyan);
}

.financing-hero p {
  color: #d5e8f7;
}

.finance-badge {
  display: inline-grid;
  gap: 0.15rem;
  background: #fff;
  border: 2px solid #d8ecf9;
  color: #0a263c;
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 10px 24px rgba(4, 15, 27, 0.2);
  margin-bottom: 0.9rem;
}

.finance-badge .label-top {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #189fce;
}

.finance-badge .label-main {
  font-family: "Oswald", "Impact", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  color: #0f3a5a;
}

.finance-badge .label-sub {
  font-size: 0.76rem;
  font-weight: 700;
  color: #26713b;
}

.finance-steps,
.finance-plan-grid,
.qualify-grid {
  display: grid;
  gap: 14px;
}

.finance-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.finance-step {
  background: linear-gradient(170deg, #ffffff, #f7fbfe);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(9, 24, 38, 0.09);
}

.finance-step-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", "Impact", sans-serif;
  color: #08314d;
  background: linear-gradient(120deg, var(--lime), var(--cyan));
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.finance-payments .section-title,
.finance-payments .finance-note {
  color: #dfeefe;
}

.finance-note {
  margin-bottom: 1rem;
}

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

.finance-plan {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px;
}

.finance-plan.popular {
  border-color: rgba(56, 236, 20, 0.65);
  box-shadow: 0 10px 28px rgba(56, 236, 20, 0.2);
}

.popular-tag {
  display: inline-block;
  margin: 0 0 0.45rem;
  background: rgba(56, 236, 20, 0.2);
  border: 1px solid rgba(56, 236, 20, 0.62);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c7ffd4;
}

.finance-amount {
  font-family: "Oswald", "Impact", sans-serif;
  font-size: 2.15rem;
  margin-bottom: 0.55rem;
}

.finance-amount span {
  font-size: 1rem;
}

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

.qualify-item {
  background: linear-gradient(170deg, #ffffff, #f7fbfe);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(9, 24, 38, 0.09);
}

.team-hero {
  background: linear-gradient(130deg, #0b1a29, #123953);
  color: #ecf8ff;
  padding: 3.4rem 0 2.7rem;
  border-radius: 0 0 clamp(24px, 4.6vw, 58px) clamp(24px, 4.6vw, 58px);
}

.team-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.team-hero p {
  color: #d6e8f6;
}

.team-hero .panel {
  background: #f7fbff;
  border-color: #b7cfdf;
  color: #153a55;
}

.team-hero .panel h2,
.team-hero .panel h3 {
  color: #0f3550;
}

.team-hero .panel p {
  color: #2a5b7b;
}

.team-hero .panel a:not(.btn) {
  color: #1189b8;
  font-weight: 700;
}

.team-hero-copy {
  max-width: 760px;
}

.team-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}

.team-section-nav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #e4f5ff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.team-section-nav a:hover {
  border-color: rgba(56, 236, 20, 0.6);
  background: rgba(56, 236, 20, 0.15);
  text-decoration: none;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.team-stats > div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px;
}

.team-stats .stat {
  margin-bottom: 0.35rem;
}

.team-narrative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.team-group-section {
  padding-top: 2.4rem;
}

.team-section-head .section-title {
  max-width: none;
  margin-bottom: 0.75rem;
}

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

.team-grid-partners {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid-financing {
  grid-template-columns: minmax(0, 1fr);
}

.team-card {
  background: linear-gradient(170deg, #ffffff, #f6fafe);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11, 30, 47, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(11, 30, 47, 0.2);
}

.team-card-featured {
  box-shadow: 0 16px 34px rgba(7, 24, 39, 0.16);
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 260ms ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-card-featured .team-photo {
  aspect-ratio: 4 / 4.5;
}

.team-body {
  padding: 14px;
}

.team-role {
  margin-bottom: 0.35rem;
  color: #136592;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-dept {
  margin-bottom: 0.45rem;
  color: #45627c;
  font-size: 0.9rem;
}

.team-email {
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.team-more-link {
  margin: 0.8rem 0 0;
}

.team-more-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid #8bb7d2;
  background: linear-gradient(120deg, rgba(56, 236, 20, 0.2), rgba(27, 183, 219, 0.16));
  color: #0e4366;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(12, 36, 55, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.team-more-link a::after {
  content: "->";
  font-size: 0.72rem;
  letter-spacing: 0;
}

.team-more-link a:hover {
  text-decoration: none;
  color: #082f4a;
  border-color: #2fb4d7;
  background: linear-gradient(120deg, rgba(56, 236, 20, 0.34), rgba(27, 183, 219, 0.3));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 32, 50, 0.2);
}

.profile-comic-hero {
  position: relative;
  overflow: hidden;
}

.profile-comic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(56, 236, 20, 0.22), transparent 33%),
    radial-gradient(circle at 84% 84%, rgba(27, 183, 219, 0.2), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.profile-comic-hero .container {
  position: relative;
  z-index: 2;
}

.profile-issue {
  margin: 0 0 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 27, 43, 0.5);
  color: #d8edff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-alias {
  margin-bottom: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  color: #d7f4ff !important;
}

.profile-lead {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  color: #eff8ff !important;
  max-width: 68ch;
}

.profile-photo-panel {
  background:
    radial-gradient(circle at 80% 0%, rgba(56, 236, 20, 0.12), transparent 38%),
    linear-gradient(175deg, #f9fdff, #ecf5fc) !important;
}

.profile-story-section {
  position: relative;
}

.profile-story-section::before {
  content: "";
  position: absolute;
  inset: 22px 0 auto 0;
  height: 220px;
  background:
    radial-gradient(circle, rgba(20, 57, 84, 0.18) 1.2px, transparent 1.2px) 0 0 / 15px 15px,
    linear-gradient(120deg, rgba(56, 236, 20, 0.08), rgba(27, 183, 219, 0.1));
  opacity: 0.75;
  pointer-events: none;
}

.profile-story-section .container {
  position: relative;
  z-index: 1;
}

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

.comic-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #c7dbe9;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 253, 0.95));
  padding: 16px;
  box-shadow: 0 12px 28px rgba(8, 24, 38, 0.14);
}

.comic-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(120deg, rgba(56, 236, 20, 0.9), rgba(27, 183, 219, 0.9));
}

.comic-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(12, 56, 85, 0.14), rgba(12, 56, 85, 0));
  pointer-events: none;
}

.comic-card-kicker {
  margin-bottom: 0.5rem;
  color: #0d5b86;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comic-card-title {
  margin-bottom: 0.55rem;
  color: #0c304a;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

.comic-card-text {
  margin-bottom: 0;
  color: #224e6d;
}

.profile-insights-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.profile-facts-panel li {
  margin-bottom: 0.65rem;
}

.profile-power-panel {
  position: relative;
  overflow: hidden;
}

.profile-power-panel::after {
  content: "";
  position: absolute;
  inset: auto -30px -38px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(56, 236, 20, 0.24), transparent 70%);
  pointer-events: none;
}

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

.profile-power-list li {
  position: relative;
  border: 1px solid #caddea;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.88));
  padding: 12px;
}

.profile-power-label {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0f5d86;
}

.profile-power-copy {
  margin: 0;
  color: #2a5876;
}

.profile-qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-qa-card {
  position: relative;
  border: 1px solid rgba(203, 224, 238, 0.42);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(5, 29, 46, 0.64), rgba(13, 56, 83, 0.56));
  padding: 14px;
  box-shadow: 0 12px 26px rgba(4, 17, 30, 0.24);
}

.profile-qa-card p {
  color: #ddedfb !important;
}

.profile-qa-question {
  margin-bottom: 0.5rem;
  color: #eff8ff !important;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.team-financing-section {
  background: linear-gradient(145deg, rgba(9, 35, 54, 0.09), rgba(27, 183, 219, 0.12));
}

.team-financing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.team-financing-copy .section-title {
  max-width: 16ch;
}

.team-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 1rem;
}

.team-search {
  width: 100%;
  border: 1px solid #cfe0ec;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-filter {
  border: 1px solid #cfe0ec;
  background: #fff;
  color: #1b466a;
  border-radius: 999px;
  padding: 7px 11px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.team-filter.active {
  background: linear-gradient(120deg, var(--lime), var(--cyan));
  color: #0a2b3f;
  border-color: transparent;
}

.team-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.team-card .btn-dark {
  background: #e8f3fb;
  border-color: #9dc2da;
  color: #0f3f62;
}

.team-card .btn-dark:hover {
  background: #d9eaf7;
  border-color: #86b2cf;
  color: #0b304b;
}

.seo-boost {
  background: linear-gradient(150deg, rgba(8, 28, 43, 0.06), rgba(17, 78, 114, 0.1));
}

.seo-boost-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 18px;
}

.resource-list {
  padding-left: 1.2rem;
  margin: 0;
}

.resource-list li {
  margin-bottom: 0.58rem;
}

.seo-link-grid {
  display: grid;
  gap: 8px;
  margin: 0.85rem 0;
}

.seo-link-grid-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-link-grid a {
  background: #f4f9fd;
  border: 1px solid #d6e8f4;
  border-radius: 10px;
  padding: 7px 10px;
  color: #194666;
  font-weight: 600;
}

.seo-link-grid a:hover {
  text-decoration: none;
  border-color: #a9d1ea;
}

.muted-small {
  font-size: 0.9rem;
  color: #5f6f83;
}

.faq-section {
  padding-top: 1.4rem;
}

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

.faq-item {
  background: linear-gradient(170deg, #ffffff, #f7fbfe);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(9, 24, 38, 0.1);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin-bottom: 0;
}

.panel h2 { margin-bottom: 0.9rem; }
.panel ul { padding-left: 1.1rem; margin: 0; }
.panel li { margin-bottom: 0.55rem; }

.site-footer {
  margin-top: 2.2rem;
  background: #08111b;
  color: #d0dfec;
  padding: 2.1rem 0 1.2rem;
}

.site-footer a { color: #c5ebff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.footer-logo { width: 74px; margin-bottom: 10px; }
.footer-lead { max-width: 32ch; }
.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.45rem;
  padding: 11px 15px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--lime), var(--cyan));
  color: #062721 !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(27, 183, 219, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-quote-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(56, 236, 20, 0.28);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  font-size: 0.86rem;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.quote-modal.open {
  display: flex;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 11, 19, 0.8);
  cursor: pointer;
}

.quote-modal-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: 92vh;
  overflow: auto;
  border-radius: 16px;
  border: 1px solid #cfe1ee;
  background: #fff;
  box-shadow: 0 24px 50px rgba(2, 11, 19, 0.38);
  padding: 1rem;
}

.quote-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.4rem;
}

.quote-modal-header h2 {
  margin-bottom: 0.35rem;
}

.quote-modal-close {
  border: 1px solid #bdd5e5;
  background: #f4f9fd;
  color: #173f60;
  border-radius: 10px;
  padding: 8px 11px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quote-modal-copy {
  color: #3f5f79;
  margin-bottom: 0.75rem;
}

.quote-modal-frame iframe {
  min-height: 760px;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .conversion-strip-grid,
  .split,
  .winterready-hero-layout,
  .article-hero-grid,
  .county-intro-grid,
  .team-hero-grid,
  .team-narrative-grid,
  .team-financing-grid {
    grid-template-columns: 1fr;
  }
  .emergency-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-grid,
  .post-grid,
  .faq-grid,
  .team-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .finance-steps,
  .finance-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .county-grid-wide,
  .seo-link-grid-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-boost-grid {
    grid-template-columns: 1fr;
  }
  .profile-comic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-insights-grid,
  .profile-qa-grid {
    grid-template-columns: 1fr;
  }
  .winterready-parallax-band {
    margin: 1rem 0 1.4rem;
    border: 1px solid #c2cfd9;
    border-radius: 18px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center right;
  }
  .winterready-parallax-overlay {
    max-width: 100%;
    padding: 1.15rem 1rem 1.2rem;
  }
  .winterready-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section::before {
    inset: -18% auto auto -22%;
    width: 72%;
    height: 56%;
  }
  .section::after {
    inset: auto -24% -30% auto;
    width: 72%;
    height: 56%;
  }
  .section-dark,
  .conversion-strip,
  .reviews-section,
  .trust-section,
  .cta-strip {
    border-radius: 22px;
  }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    right: 0;
    top: 78px;
    width: min(360px, 100vw);
    background: rgba(7, 16, 27, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 12px;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-group {
    width: 100%;
  }
  .main-nav .nav-parent::after {
    content: "";
  }
  .main-nav .sub-nav {
    position: static;
    display: flex;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
  }
  .main-nav .nav-cta,
  .main-nav .phone-link {
    width: 100%;
    justify-content: center;
  }
  .hero {
    min-height: 640px;
    padding-bottom: 3.2rem;
  }
  .hero::before {
    background: linear-gradient(105deg, rgba(4, 12, 20, 0.68), rgba(7, 24, 37, 0.46));
  }
  .hero-bg-image {
    object-position: 56% 48%;
  }
  .hero-copy {
    background: rgba(5, 14, 24, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 0.95rem 0.9rem 1rem;
  }
  .hero-copy h1 {
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
  }
  .hero-copy p {
    color: #f4f8ff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  .hero .btn-ghost,
  .hero .btn-dark,
  .emergency-cta .btn-dark {
    background: rgba(5, 14, 23, 0.42);
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
  }
  .hero-points li {
    background: rgba(4, 11, 19, 0.56);
    border-color: rgba(255, 255, 255, 0.24);
    color: #f3f8ff;
  }
  .emergency-cta {
    margin-top: 0;
    padding-top: 0.8rem;
  }
  .emergency-actions {
    width: 100%;
  }
  .emergency-actions .btn {
    width: 100%;
  }
  .hero-points,
  .stats-grid,
  .team-stats,
  .footer-grid,
  .footer-meta,
  .county-grid,
  .county-grid-wide,
  .service-grid,
  .post-grid,
  .resource-grid,
  .faq-grid,
  .team-grid,
  .finance-steps,
  .finance-plan-grid,
  .qualify-grid,
  .seo-link-grid-columns {
    grid-template-columns: 1fr;
  }
  .profile-comic-grid {
    grid-template-columns: 1fr;
  }
  .profile-issue {
    font-size: 0.69rem;
    letter-spacing: 0.06em;
  }
  .profile-lead {
    font-size: 0.98rem;
  }
  .team-more-link a {
    width: 100%;
    justify-content: space-between;
  }
  .post-thumb img,
  .team-photo,
  .team-card-featured .team-photo {
    aspect-ratio: auto;
    height: auto;
    transform: none;
  }
  .team-card:hover .team-photo {
    transform: none;
  }
  .section-dark p,
  .team-hero p,
  .page-hero p,
  .financing-hero p {
    color: #eaf5ff;
  }
  .section-dark .panel p,
  .section-dark .panel li,
  .section-dark .resource-card p,
  .section-dark .resource-card li,
  .section-dark .post-card p,
  .section-dark .service-card p,
  .section-dark .county-card p {
    color: #2d5b7b;
  }
  .post-meta,
  .muted-small,
  .team-dept,
  .quote-modal-copy {
    color: #2f4f6a;
  }
  .ghl-form-wrap iframe { min-height: 640px; }
  .roofle-widget iframe { min-height: 640px; }
  .map-section iframe { min-height: 420px; }
  .quote-modal-dialog {
    max-height: 95vh;
    padding: 0.8rem;
  }
  .quote-modal-frame iframe {
    min-height: 620px;
  }
  .winterready-short-card {
    justify-self: center;
    width: min(82vw, 320px);
  }
  .winterready-short-note {
    font-size: 0.78rem;
  }
  .winterready-parallax-band {
    min-height: 300px;
    background-image:
      linear-gradient(180deg, rgba(216, 220, 225, 0.95), rgba(216, 220, 225, 0.88)),
      url("/assets/images/uploads/2025/10/winter-ready-bg.webp");
  }
  .winterready-parallax-overlay .hero-actions .btn {
    width: 100%;
  }
  .footer-meta { display: block; }
}
