/* Roofngo — shared site styles */
:root {
  --navy: #0D2B59;
  --navy-deep: #091e3f;
  --carolina: #69ACD8;
  --carolina-dark: #4a8fb8;
  --green: #97C9A5;
  --green-dark: #6fa882;
  --cream: #F7F4EE;
  --cream-deep: #EDE8DF;
  --ink: #1A1F2E;
  --ink-soft: #3D4558;
  --muted: #6B7280;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(13, 43, 89, 0.12);
  --shadow-lg: 0 24px 60px rgba(13, 43, 89, 0.18);
  --radius: 10px;
  --radius-sm: 6px;
  --header-h: 80px;
  --sticky-bar-h: 72px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.has-sticky-bar { padding-bottom: var(--sticky-bar-h); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--carolina-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
:focus-visible {
  outline: 3px solid var(--carolina);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--navy); color: #fff; padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.container-wide { width: min(100% - 2rem, 1200px); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(13,43,89,0.08);
  box-shadow: 0 1px 0 rgba(13,43,89,0.04);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}
.site-logo {
  flex-shrink: 0;
  margin-inline-end: auto;
}
.site-logo img {
  width: clamp(160px, 18vw, 200px);
  height: auto;
}
.site-nav {
  display: none; align-items: center; gap: 0.25rem 1.25rem;
}
.site-nav a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.9375rem;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--navy); }
.header-actions {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.header-phone {
  display: none; align-items: center; gap: 0.4rem;
  color: var(--navy); font-weight: 600; text-decoration: none; font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--carolina-dark); }
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid rgba(13,43,89,0.15);
  border-radius: var(--radius-sm); background: var(--white); cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 900px) {
  .site-nav { display: flex; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}
.nav-drawer {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--white); padding: 1.5rem; overflow-y: auto;
  border-top: 1px solid rgba(13,43,89,0.08);
}
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block; padding: 0.85rem 0; color: var(--ink);
  text-decoration: none; font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid var(--cream-deep);
}
.nav-drawer .drawer-phone {
  margin-top: 1.25rem; color: var(--navy); font-size: 1.15rem;
}
.nav-drawer .btn { margin-top: 1rem; width: 100%; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.35rem; border-radius: var(--radius-sm);
  font-family: var(--font); font-weight: 600; font-size: 0.9375rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-deep); color: #fff; }
.btn--accent {
  background: var(--carolina); color: var(--navy); border-color: var(--carolina);
}
.btn--accent:hover { background: var(--carolina-dark); color: #fff; }
.btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn--outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--green {
  background: var(--green); color: var(--navy); border-color: var(--green);
}
.btn--green:hover { background: var(--green-dark); color: #fff; }
.btn--block { width: 100%; }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 720px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  color: #fff;
  background-color: #0D2B59;
  background-image:
    linear-gradient(105deg, rgba(9,30,63,0.62) 0%, rgba(13,43,89,0.45) 38%, rgba(13,43,89,0.28) 68%, rgba(13,43,89,0.18) 100%),
    url("hero-rejuvenation.png");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(105,172,216,0.12), transparent 60%),
    linear-gradient(180deg, rgba(9,30,63,0.15) 0%, transparent 35%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; }
}
.hero__eyebrow {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--green);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.15rem, 5vw, 3.75rem);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 1rem; color: #fff;
  max-width: 16ch;
}
.hero__lede {
  font-size: 1.0625rem; color: rgba(255,255,255,0.88);
  max-width: 42ch; margin: 0 0 1.25rem;
}
.hero__bullets {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.hero__bullets li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.975rem; color: rgba(255,255,255,0.92);
}
.hero__bullets li::before {
  content: ""; flex-shrink: 0; width: 1.15rem; height: 1.15rem; margin-top: 0.15rem;
  background: var(--green); border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Form card */
.form-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden; color: var(--ink);
}
.form-card__header {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 1rem 1.25rem 0.95rem;
  text-align: center;
  border-bottom: 3px solid var(--navy);
}
.form-card__header img {
  width: 100%; max-width: 280px; margin: 0 auto 0.65rem;
}
.form-card__title {
  margin: 0; font-family: var(--display); font-size: 1.125rem;
  font-weight: 600; color: var(--navy); font-style: italic;
}
.form-card__sub {
  margin: 0.35rem 0 0; font-size: 0.8125rem; color: var(--ink-soft);
}
.form-card__body { padding: 1.25rem; }
.form-card__foot {
  padding: 0.85rem 1.25rem 1.15rem; background: var(--cream);
  font-size: 0.8125rem; color: var(--ink-soft); text-align: center;
}
.form-row { margin-bottom: 0.85rem; }
.form-row label {
  display: block; font-size: 0.8125rem; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 0.3rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  border: 1px solid rgba(13,43,89,0.18); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  background: var(--white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--carolina);
  box-shadow: 0 0 0 3px rgba(105,172,216,0.35);
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-thanks {
  display: none; padding: 1.5rem 1.25rem; text-align: center;
}
.form-thanks.is-visible { display: block; }
.form-thanks h3 {
  font-family: var(--display); color: var(--navy); margin: 0 0 0.5rem;
}
.form-thanks p { color: var(--ink-soft); margin: 0 0 1.25rem; }
.form-thanks__actions {
  display: flex; flex-direction: column; gap: 0.65rem;
}
.form-card.is-submitted .form-card__body,
.form-card.is-submitted .form-card__foot { display: none; }
.form-card.is-submitted .form-thanks { display: block; }

/* Sections */
.section { padding: 4rem 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy a { color: var(--carolina); }
.section-head {
  text-align: center; margin-bottom: 2.5rem; max-width: 36rem; margin-inline: auto;
}
.section-head--left { text-align: left; margin-inline: 0; }
.section-kicker {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--carolina-dark);
  margin-bottom: 0.5rem;
}
.section--navy .section-kicker { color: var(--green); }
.section-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--navy); margin: 0 0 0.65rem;
}
.section--navy .section-head h2 { color: #fff; }
.section-head p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.section--navy .section-head p { color: rgba(255,255,255,0.8); }

.brand-mark-row {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.brand-mark-row img { width: clamp(140px, 20vw, 190px); }

/* Service cards */
.card-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  background: var(--white); border: 1px solid rgba(13,43,89,0.08);
  border-radius: var(--radius); padding: 1.5rem 1.25rem 1.35rem;
  box-shadow: 0 4px 16px rgba(13,43,89,0.04);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.65rem; text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow); border-color: rgba(105,172,216,0.4);
}
.service-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.15rem;
  flex-shrink: 0;
  background: transparent;
  overflow: hidden;
}
.service-card__svg { width: 56px; height: 56px; display: block; }
.service-card h3 {
  font-family: var(--display); font-size: 1.2rem; margin: 0;
  color: var(--navy); letter-spacing: -0.01em;
}
.service-card p {
  margin: 0; flex: 1; font-size: 0.9375rem; color: var(--ink-soft);
}
.service-card a {
  font-weight: 600; font-size: 0.9rem; text-decoration: none; color: var(--carolina-dark);
}
.service-card a:hover { color: var(--navy); text-decoration: underline; }

/* Process */
.process-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.process-step {
  position: relative; padding: 1.5rem 1.25rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(13,43,89,0.08);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--display); font-size: 1.1rem; margin: 0 0 0.4rem; color: var(--navy);
}
.process-step p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

/* Promise */
.promise-block {
  max-width: 40rem; margin: 0 auto; text-align: center;
}
.promise-block blockquote {
  font-family: var(--display); font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600; line-height: 1.35; color: var(--navy);
  margin: 0 0 1rem; quotes: none;
}
.promise-block p { color: var(--ink-soft); margin: 0; }

/* Area chips */
.area-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.area-chip {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 0.85rem; text-align: center;
  background: var(--white); border: 1px solid rgba(13,43,89,0.1);
  border-radius: var(--radius-sm); text-decoration: none;
  color: var(--navy); font-weight: 600; font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s;
}
.area-chip:hover {
  border-color: var(--carolina); background: rgba(105,172,216,0.08); color: var(--navy);
}

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #163a6e 60%, #1e5080 100%);
  color: #fff;
}
.page-hero h1 {
  font-family: var(--display); font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15; margin: 0 0 0.75rem; letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0; max-width: 42ch; color: rgba(255,255,255,0.85); font-size: 1.05rem;
}
.breadcrumb {
  font-size: 0.8125rem; margin-bottom: 1rem; color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--carolina); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Content */
.prose { max-width: 42rem; }
.prose h2 {
  font-family: var(--display); color: var(--navy);
  font-size: 1.5rem; margin: 2rem 0 0.75rem;
}
.prose h3 {
  font-family: var(--display); color: var(--navy);
  font-size: 1.2rem; margin: 1.5rem 0 0.5rem;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.25rem; }
.content-split {
  display: grid; gap: 2.5rem; align-items: start;
}
@media (min-width: 900px) {
  .content-split { grid-template-columns: 1.2fr 0.8fr; }
}
.sidebar-card {
  background: var(--cream); border-radius: var(--radius); padding: 1.5rem;
  position: sticky; top: calc(var(--header-h) + 1rem);
}
.sidebar-card h2 {
  font-family: var(--display); font-size: 1.25rem; color: var(--navy); margin: 0 0 0.75rem;
}
.sidebar-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 1rem; }

/* FAQ */
.faq-list { max-width: 44rem; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(13,43,89,0.12);
}
.faq-item summary {
  padding: 1.15rem 0; cursor: pointer; font-weight: 600; color: var(--navy);
  font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.35rem; font-weight: 400; color: var(--carolina-dark);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a {
  padding: 0 0 1.15rem; color: var(--ink-soft); font-size: 0.975rem;
}

/* CTA band */
.cta-band {
  padding: 3.5rem 0; text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #163a6e 100%);
  color: #fff;
}
.cta-band h2 {
  font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}
.cta-band p { margin: 0 0 1.5rem; color: rgba(255,255,255,0.8); max-width: 36rem; margin-inline: auto; }
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.75);
  padding: 3rem 0 2rem; font-size: 0.9rem;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer h3 {
  font-family: var(--display); font-size: 0.875rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff; margin: 0 0 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.site-footer a:hover { color: var(--carolina); }
.footer-brand img {
  width: 160px; margin-bottom: 0.85rem;
  background: #fff; border-radius: 8px; padding: 0.5rem 0.65rem;
}
.footer-brand p { margin: 0; max-width: 28ch; line-height: 1.55; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem; font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
}

/* Sticky mobile bar */
.sticky-bar {
  display: flex; position: fixed; inset: auto 0 0 0; z-index: 90;
  height: var(--sticky-bar-h); background: var(--white);
  border-top: 1px solid rgba(13,43,89,0.12);
  box-shadow: 0 -8px 24px rgba(13,43,89,0.1);
}
@media (min-width: 900px) {
  .sticky-bar { display: none; }
  body.has-sticky-bar { padding-bottom: 0; }
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; text-decoration: none; font-weight: 700; font-size: 0.95rem;
}
.sticky-bar__call { background: var(--cream); color: var(--navy); }
.sticky-bar__quote { background: var(--navy); color: #fff; }

/* Utilities */
.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;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.two-col-list {
  display: grid; gap: 0.5rem 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .two-col-list { grid-template-columns: 1fr 1fr; }
}
.tag {
  display: inline-block; padding: 0.2rem 0.55rem; border-radius: 4px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; background: rgba(151,201,165,0.35); color: var(--navy);
}
.tag--soft { background: rgba(105,172,216,0.25); }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; justify-content: center;
  padding: 1.25rem 0; background: var(--cream-deep);
  font-size: 0.875rem; font-weight: 600; color: var(--ink-soft);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-strip .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}

/* Contact NAP */
.nap {
  font-style: normal;
}
.nap p { margin: 0 0 0.5rem; }
.nap a { font-weight: 600; color: var(--navy); text-decoration: none; }
.nap a:hover { color: var(--carolina-dark); text-decoration: underline; }

/* GHL embed + SMS consent */
.form-card__body--embed {
  padding: 0.75rem 1rem 1rem;
}
.ghl-embed-wrap {
  width: 100%;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
}
.ghl-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 1078px;
  border: 0;
}
.sms-consent {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}
.sms-consent a {
  color: var(--carolina-dark);
}
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose h2 {
  font-family: var(--display);
  color: var(--navy);
  margin-top: 2rem;
  font-size: 1.25rem;
}
.prose ul {
  padding-left: 1.25rem;
}

/* Insights / Knowledge Hub cards */
.insight-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .insight-grid { grid-template-columns: repeat(3, 1fr); }
}
.insight-card {
  background: var(--white);
  border: 1px solid rgba(13,43,89,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13,43,89,0.04);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.insight-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(105,172,216,0.45);
}
.insight-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--navy) 0%, #1e5080 100%);
}
.insight-card__media--navy {
  background:
    radial-gradient(ellipse 70% 80% at 70% 30%, rgba(105,172,216,0.35), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, #163a6e 100%);
}
.insight-card__media--carolina {
  background:
    radial-gradient(ellipse 60% 70% at 30% 70%, rgba(151,201,165,0.4), transparent 50%),
    linear-gradient(135deg, #4a8fb8 0%, var(--carolina) 100%);
}
.insight-card__media--green {
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(105,172,216,0.35), transparent 50%),
    linear-gradient(135deg, #6fa882 0%, var(--green) 100%);
}
.insight-card__media--cream {
  background:
    radial-gradient(ellipse 70% 60% at 40% 20%, rgba(13,43,89,0.12), transparent 55%),
    linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 100%);
}
.insight-card__glyph {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.75rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.03em;
  line-height: 1;
}
.insight-card__media--cream .insight-card__glyph { color: var(--navy); }
.insight-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.insight-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.insight-card h3 a {
  color: var(--navy);
  text-decoration: none;
}
.insight-card h3 a:hover { color: var(--carolina-dark); text-decoration: underline; }
.insight-card__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.insight-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Footer: 5 columns when Insights present */
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
}
