:root {
  --navy-950: #071426;
  --navy-900: #0b1e36;
  --navy-800: #123456;
  --charcoal: #141c26;
  --blue-700: #155d9b;
  --blue-600: #1774bd;
  --blue-100: #e8f3fb;
  --yellow-500: #f7bf25;
  --yellow-400: #ffd34f;
  --yellow-100: #fff5cf;
  --ink: #10243c;
  --muted: #5c6b7c;
  --line: #d7dde4;
  --paper: #ffffff;
  --mist: #f4f5f6;
  --warm: #f7f4ee;
  --shadow-sm: 0 6px 18px rgba(7, 20, 38, 0.06);
  --shadow-md: 0 16px 40px rgba(7, 20, 38, 0.1);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --max: 1180px;
  --electric: #26a7e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.4vw, 5.15rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 3.6vw, 3.55rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

p {
  margin-bottom: 22px;
  color: var(--muted);
}

.time-sensitive-note {
  width: min(calc(100% - 40px), var(--max));
  margin: 24px auto;
  padding: 14px 18px;
  border-left: 4px solid var(--yellow-500);
  background: var(--yellow-100);
  color: var(--ink);
  font-size: 0.94rem;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--navy-950);
  color: #dfe9f3;
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar p {
  margin: 0;
  color: inherit;
}

.topbar-contact {
  display: flex;
  gap: 22px;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 36, 60, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 167, 232, 0.55), transparent);
  content: "";
}

.header-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 20px);
}

.nav a,
.footer-links a,
.topbar a {
  transition: color 160ms ease;
}

.nav a {
  color: #30465d;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav a[aria-current="page"] {
  color: var(--blue-700);
  text-decoration: underline;
  text-decoration-color: var(--yellow-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav a:hover,
.footer-links a:hover,
.topbar a:hover {
  color: var(--blue-600);
}

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

.site-menu {
  display: none;
}

.btn {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow-500);
  color: var(--navy-950);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--yellow-400);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  border-color: #b9c8d5;
  background: #ffffff;
  color: var(--navy-900);
}

.btn-secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-700);
}

.btn-dark {
  background: var(--navy-900);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-link {
  min-height: 44px;
  padding-inline: 0;
  color: var(--blue-700);
}

.btn-link::after,
.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.btn-link:hover::after,
.text-link:hover::after {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-500);
  content: "";
}

.eyebrow-light {
  color: #a9d7f7;
}

/* —— Hero stage (media-dominant) —— */
.hero-stage,
.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}

.hero-stage-grid,
.hero-grid {
  min-height: min(72vh, 720px);
  padding-block: 48px 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.hero-stage h1,
.home-hero h1 {
  max-width: 18ch;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 3.8vw, 3.55rem);
  line-height: 1.06;
}

.hero-copy {
  max-width: 42ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.hero-actions,
.cta-row,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-helper {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-proof-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-proof-score-xl {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--navy-950);
  line-height: 1;
}

.hero-proof-score-xl strong {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.06em;
}

.hero-proof-score-xl span {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--muted);
}

.hero-proof-meta p {
  margin: 0;
  line-height: 1.4;
}

.hero-proof-count {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
}

.hero-proof-date {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-proof-date a {
  color: var(--blue-700);
  font-weight: 750;
}

/* Legacy proof line (inner pages) */
.hero-proof {
  max-width: 660px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  align-items: center;
}

.hero-proof-score {
  color: var(--navy-950);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.hero-proof p {
  margin: 0;
  color: #475d72;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-proof a {
  color: var(--blue-700);
  font-weight: 750;
}

.hero-stage-media,
.hero-visual {
  position: relative;
  margin: 0;
}

.hero-stage-media img,
.hero-visual img {
  width: 100%;
  min-height: 480px;
  max-height: 560px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.hero-stage-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(7, 20, 38, 0.88);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.image-note {
  position: absolute;
  right: 12px;
  bottom: 16px;
  z-index: 2;
  max-width: 250px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(7, 20, 38, 0.92);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.45;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

/* —— Dark proof band —— */
.proof-band,
.proof-moment {
  padding-block: clamp(64px, 8vw, 100px);
  background: var(--navy-950);
  color: #ffffff;
}

.proof-band-grid,
.proof-moment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(40px, 7vw, 80px);
}

.proof-moment-compact {
  padding-block: clamp(48px, 6vw, 72px);
}

.proof-moment-compact .featured-review {
  padding: clamp(26px, 4vw, 40px);
}

.proof-band-intro h2,
.proof-summary h2 {
  max-width: 18ch;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.proof-band-intro p,
.proof-summary p {
  max-width: 42ch;
  color: #c7d5e2;
}

.text-link-light {
  color: #ffffff;
}

.proof-band-quote,
.featured-review {
  margin: 0;
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--radius-md);
  background: var(--warm);
  box-shadow: var(--shadow-md);
}

.proof-band-quote blockquote,
.featured-review blockquote {
  margin: 0 0 28px;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.proof-band-quote blockquote::before {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow-500);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.5;
}

.proof-band-quote figcaption,
.featured-review figcaption,
.review-card figcaption {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.proof-band-quote figcaption strong,
.featured-review figcaption strong,
.review-card figcaption strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.proof-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 22px clamp(20px, 3vw, 42px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 2px 14px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-mark {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow-100);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 850;
}

.proof-item strong {
  color: var(--navy-950);
  font-size: 0.95rem;
}

.proof-item span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(76px, 9vw, 124px);
}

.section-sm {
  padding-block: clamp(58px, 7vw, 88px);
}

.section-mist {
  background: var(--mist);
}

.section-warm {
  background: var(--warm);
}

.section-charcoal {
  background: var(--charcoal);
  color: #ffffff;
}

.section-charcoal h2,
.section-charcoal h3 {
  color: #ffffff;
}

.section-charcoal p {
  color: #c4cdd8;
}

.section-head-light h2 {
  color: #ffffff;
}

.section-head-light p {
  color: #c4cdd8;
}

.section-dark {
  background: var(--navy-950);
  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p,
.section-dark li {
  color: #c4d2df;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

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

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card img[src*="products/"] {
  padding: 22px;
  background: #f1f3f3;
  object-fit: contain;
}

.service-card-body {
  padding: 28px;
}

.service-image-note {
  margin: -5px 0 14px;
  display: block;
  color: #718090;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-image-note a {
  color: var(--blue-700);
}

.service-card p {
  min-height: 82px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}

.commercial-callout {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.commercial-callout img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.commercial-copy {
  padding: clamp(34px, 5vw, 64px);
  align-self: center;
}

.commercial-copy h3 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.commercial-copy p {
  color: #c7d5e2;
}

.secondary-services {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.values-grid {
  margin-top: 0;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 14px;
}

.contact-attach-note {
  margin: 0;
  color: #c7d5e2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-attach-note a {
  color: #ffffff;
  font-weight: 700;
}

.section-dark .contact-quick-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: transparent;
}

.section-dark .contact-quick-actions .btn-secondary:hover {
  border-color: var(--yellow-400);
  color: var(--navy-950);
  background: var(--yellow-400);
}

.quiet-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.quiet-card p:last-child,
.service-card-body p:last-child,
.commercial-copy p:last-child {
  margin-bottom: 0;
}

.product-section {
  background: #ffffff;
}

.product-intro {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(36px, 7vw, 90px);
}

.product-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.product-intro > p {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.decision-line {
  margin-bottom: 30px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: #43596e;
  font-size: 0.78rem;
  font-weight: 800;
}

.decision-line span {
  position: relative;
}

.decision-line span + span::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow-500);
  content: "";
}

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

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

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

.product-media-photo {
  min-height: 280px;
  padding: 0;
  background: #dfe6ec;
}

.product-media-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-media-text {
  min-height: 280px;
  padding: 28px 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #123456 0%, #0b1e36 100%);
  color: #f3f7fa;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.product-media {
  min-height: 355px;
  padding: 28px 34px;
  display: grid;
  place-items: center;
  background: #f1f3f3;
}

.product-media-light {
  background: linear-gradient(180deg, #f6f7f8 0%, #eceff1 100%);
}

.product-media-dark {
  background: #121416;
}

.product-media img {
  width: 100%;
  height: 320px;
  object-fit: contain;
}

.product-card-body {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card-body h3 a {
  text-decoration: none;
}

.product-card-body h3 a:hover {
  color: var(--blue-700);
}

.product-card-body > p:not(.manufacturer-note) {
  flex: 1;
}

.product-type {
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.manufacturer-note {
  margin: 22px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #5c6b7c;
  font-size: 0.86rem;
  line-height: 1.45;
}

.option-paths {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.family-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.family-block {
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.family-block h3 {
  margin-bottom: 14px;
}

.family-block .ticks {
  margin-bottom: 0;
}

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

.assess-card {
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.assess-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.assess-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.assess-card .text-link {
  display: inline-block;
  margin-top: 12px;
}

.legacy-list {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.legacy-note {
  padding: 28px 30px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
}

.legacy-note h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.legacy-note p {
  margin-bottom: 0;
}

.footer-main-four {
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 0.8fr));
}

.option-path {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.option-path h3 {
  margin: 0;
}

.option-path > p:not(.manufacturer-note) {
  margin: 0;
  flex: 1;
  color: var(--ink-soft);
}

.option-path .manufacturer-note {
  width: 100%;
}

.product-disclaimer {
  margin: 22px 0 0;
  color: #6d7a88;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 70ch;
}

.manufacturer-note a {
  color: var(--blue-700);
  font-weight: 750;
}

.manufacturer-note-standalone {
  max-width: 620px;
}

.story-grid,
.split,
.contact-grid,
.reviews-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.story-photos,
.story-mosaic {
  position: relative;
  min-height: 520px;
}

.story-photos img,
.story-mosaic img {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.story-photos img:first-child,
.story-mosaic-main {
  top: 0;
  left: 0;
  width: 86%;
  height: 420px;
}

.story-photos img:last-child,
.story-mosaic-inset {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 250px;
  border: 8px solid var(--warm);
}

.story-copy .lead {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 650;
}

.ticks,
.article-shell ul,
.article-shell ol {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ticks li,
.article-shell li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  color: #344b61;
}

.ticks li::before,
.article-shell li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--yellow-500);
  border-radius: 50%;
  content: "";
}

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

/* Five-step processes keep the 3-column rhythm (3 + 2), not five skinny columns. */
.process-grid-five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 901px) {
  .process-grid-five .process-step:nth-child(4) {
    grid-column: 1;
  }
}

.process-step {
  padding: 32px 28px;
  border-top: 3px solid var(--yellow-500);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.step-number {
  margin-bottom: 48px;
  display: block;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step p:last-child {
  margin-bottom: 0;
}

/* Horizontal process stepper (homepage) */
.process-stepper {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.process-stepper-item {
  position: relative;
  padding: 28px 20px 32px;
  border-right: 1px solid var(--line);
}

.process-stepper-item:last-child {
  border-right: 0;
}

.process-stepper-num {
  display: block;
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-stepper-item h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.process-stepper-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.process-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.process-note p {
  max-width: 720px;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 245px);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: 1 / 3;
}

.reviews-archive-image {
  margin: 0;
}

.reviews-archive-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.reviews-archive-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Real-roof mosaic */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.gallery-mosaic-a {
  grid-row: 1 / 3;
}

.gallery-mosaic-e {
  grid-column: 2 / 4;
}

.gallery-caption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery-caption-light {
  color: #a8b4c2;
}

.reviews-section {
  overflow: hidden;
  background: var(--navy-900);
  color: #ffffff;
}

.reviews-section h2,
.reviews-section h3 {
  color: #ffffff;
}

.reviews-section p {
  color: #c6d4e1;
}

.reviews-grid {
  align-items: stretch;
}

.score-panel {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.score-label {
  display: block;
  color: #a9d7f7;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-number {
  margin: 16px 0 8px;
  display: block;
  color: #ffffff;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.score-panel p {
  margin-bottom: 0;
}

.score-breakdown {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.score-breakdown div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #c6d4e1;
  font-size: 0.86rem;
}

.score-breakdown dd {
  color: #ffffff;
  font-weight: 800;
}

.quote-list {
  display: grid;
  gap: 14px;
}

.quote-card {
  margin: 0;
  padding: 26px 28px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
}

.quote-card blockquote {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 690;
  line-height: 1.48;
}

.quote-card figcaption {
  color: var(--muted);
  font-size: 0.8rem;
}

.review-source {
  margin-top: 20px;
  color: #a9d7f7;
  font-size: 0.8rem;
}

.review-source a {
  color: #ffffff;
}

.review-evidence {
  background: #ffffff;
}

.review-card:nth-child(even) {
  background: #f2f7fb;
}

.review-card blockquote::before,
.proof-quote blockquote::before {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow-500);
  content: "“";
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.45;
}

.reviews-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.reviews-heading h2 {
  max-width: 780px;
}

.reviews-heading p {
  max-width: 720px;
  margin-bottom: 0;
}

.review-rating {
  min-width: 230px;
  padding-left: 30px;
  border-left: 3px solid var(--yellow-500);
  display: grid;
}

.review-rating strong {
  color: var(--navy-950);
  font-size: 2.8rem;
  letter-spacing: -0.055em;
  line-height: 1;
}

.review-rating span {
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
}

.review-rating small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.review-card {
  grid-column: span 2;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: var(--warm);
}

.review-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.review-card blockquote {
  flex: 1;
  margin-bottom: 28px;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 670;
  line-height: 1.55;
}

.score-and-source {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.score-breakdown-light {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.score-breakdown-light div {
  min-width: 145px;
  padding: 0;
  border: 0;
  color: var(--muted);
}

.score-breakdown-light dd {
  color: var(--navy-950);
}

/* —— Path tiles (service decision) —— */
.path-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.path-tile {
  overflow: hidden;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: #1a2430;
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.path-tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.path-tile img[src*="products/"] {
  padding: 28px;
  background: #0e141c;
  object-fit: contain;
}

.path-tile-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.path-tile-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
}

.path-tile-body p {
  margin: 0;
  flex: 1;
  color: #b8c4d0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.path-tile-note {
  color: #8a98a8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.path-tile-link {
  margin-top: 10px;
  color: var(--yellow-500);
  font-size: 0.88rem;
  font-weight: 800;
}

.path-tile-link::after {
  content: " →";
}

.path-secondary {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.path-secondary-item {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.path-secondary-item:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.path-secondary-item strong {
  font-size: 0.95rem;
}

.path-secondary-item span {
  color: #9aabbb;
  font-size: 0.84rem;
}

/* —— Product stages (equipment showroom) —— */
.product-stage-section {
  background: #ffffff;
}

.product-stages {
  display: grid;
  gap: 20px;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.product-stage:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
}

.product-stage:nth-child(even) .product-stage-media {
  order: 2;
}

.product-stage-media {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: #eef0f2;
}

.product-stage-media-photo {
  background: #d8dee4;
}

.product-stage-media-light {
  background: linear-gradient(180deg, #f5f6f7 0%, #e8ebed 100%);
}

.product-stage-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-stage-media-light img {
  width: auto;
  max-width: 72%;
  height: 240px;
  object-fit: contain;
}

.product-stage-copy {
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.product-stage-copy h3 {
  margin-bottom: 10px;
}

.product-stage-copy h3 a {
  text-decoration: none;
}

.product-stage-copy h3 a:hover {
  color: var(--blue-700);
}

.product-stage-copy > p:not(.manufacturer-note) {
  margin-bottom: 16px;
  max-width: 48ch;
}

/* —— Guides teaser —— */
.guides-teaser-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.guides-teaser-featured {
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: #ffffff;
}

.guides-teaser-featured .resource-meta {
  color: #a9d7f7;
  margin-bottom: 20px;
}

.guides-teaser-featured h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.guides-teaser-featured p {
  color: #c4d2df;
  max-width: 46ch;
}

.guides-teaser-featured .text-link {
  color: var(--yellow-500);
}

.guides-teaser-list {
  display: grid;
  gap: 12px;
}

.guides-teaser-list a {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 6px;
  background: #ffffff;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.guides-teaser-list a:hover {
  border-color: #b7c5d2;
  box-shadow: var(--shadow-sm);
}

.guides-teaser-list strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.guides-teaser-list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.guides-teaser-more {
  margin: 28px 0 0;
}

.score-breakdown-block {
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-actions-foot {
  margin-top: 32px;
}

.contact-closing {
  padding-block: clamp(80px, 10vw, 130px);
}

/* Equipment / reviews / blog page refinements */
.equipment-hero-media {
  display: grid;
  place-items: center;
  min-height: 480px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #1a2430 0%, #0b1e36 100%);
  box-shadow: var(--shadow-md);
}

.equipment-hero-media img {
  width: 70%;
  min-height: 0;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.equipment-hero-media figcaption {
  left: 16px;
  right: auto;
  bottom: 16px;
}

.equipment-hero-media figcaption a {
  color: #ffffff;
  font-weight: 700;
}

.path-tiles-on-light .path-tile {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.path-tiles-on-light .path-tile-body h3 {
  color: var(--navy-950);
}

.path-tiles-on-light .path-tile-body p {
  color: var(--muted);
}

.path-tiles-on-light .path-tile-link {
  color: var(--blue-700);
}

.path-tiles-on-light .path-tile img[src*="products/"] {
  background: #f1f3f3;
}

.path-secondary-light {
  grid-template-columns: 1fr;
}

.path-secondary-light .path-secondary-item {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.path-secondary-light .path-secondary-item span {
  color: var(--muted);
}

.path-secondary-light .path-secondary-item:hover {
  border-color: #b7c5d2;
  background: var(--warm);
}

.guides-compact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.guides-compact-list a {
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 18px 28px;
  align-items: baseline;
  text-decoration: none;
  transition: background 140ms ease;
}

.guides-compact-list a:hover {
  background: rgba(255, 255, 255, 0.7);
}

.guides-compact-list strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.guides-compact-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.legacy-logo-rail-on-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.section-charcoal .product-intro h2 {
  color: #ffffff;
}

.section-charcoal .product-intro > p {
  color: #c4cdd8;
}

.guide-band {
  overflow: hidden;
  background: var(--warm);
}

.guide-band-inner {
  padding-block: clamp(58px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.guide-band h2 {
  max-width: 780px;
  margin-bottom: 14px;
}

.guide-band p {
  max-width: 720px;
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

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

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

.faq-list summary {
  padding: 23px 42px 23px 0;
  position: relative;
  cursor: pointer;
  color: var(--navy-950);
  font-weight: 780;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--blue-700);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 42px 22px 0;
}

.contact-grid {
  align-items: start;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-details {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.contact-details li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #c6d4e1;
}

.contact-details strong {
  display: block;
  color: #ffffff;
}

.contact-details a {
  color: #ffffff;
}

.contact-panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.contact-panel h3 {
  font-size: 1.65rem;
}

.contact-panel-simple > p {
  color: #526577;
}

.contact-panel-simple a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.contact-page-copy,
.privacy-page-copy {
  max-width: 70ch;
}

.contact-page-hero h1 {
  color: #ffffff;
}

.contact-mail-disclosure {
  max-width: 62ch;
  margin: 0;
  color: #c7d5e2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-mail-disclosure-light {
  color: #526577;
}

.contact-send-list {
  padding-left: 1.2em;
}

.contact-location {
  max-width: 42ch;
}

.contact-location address {
  font-style: normal;
  line-height: 1.6;
}

.privacy-page-copy section {
  margin-top: 36px;
}

.privacy-page-copy a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.contact-panel-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-panel-actions .btn {
  margin-top: 0;
}

.form-intro {
  margin-bottom: 26px;
  font-size: 0.9rem;
}

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

.field-full {
  grid-column: 1 / -1;
}

.contact-panel label {
  margin-bottom: 6px;
  display: block;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.optional {
  color: #788898;
  font-weight: 500;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd7e1;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.contact-panel input,
.contact-panel select {
  height: 48px;
  padding-inline: 13px;
}

.contact-panel textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-panel input:focus,
.contact-panel select:focus,
.contact-panel textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(23, 116, 189, 0.13);
}

.contact-panel .btn {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  margin: 12px 0 0;
  color: #69798a;
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-note a {
  color: var(--blue-700);
  font-weight: 750;
}

.site-footer {
  padding-block: 58px 32px;
  background: #050f1d;
  color: #b9c7d3;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 48px;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
  filter: none;
}

.footer-brand p {
  max-width: 430px;
  color: #aab9c7;
  font-size: 0.9rem;
}

.footer-approval {
  display: block;
  width: 82px;
  margin: 0 0 16px;
}

.footer-brand .footer-approval img {
  display: block;
  width: 82px;
  height: 82px;
  margin: 0;
}

.footer-badges {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 440px;
}

.footer-badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.25;
  color: inherit;
  text-decoration: none;
}

a.footer-badge:hover,
a.footer-badge:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.footer-badge strong {
  color: #edf4fc;
  font-size: 0.82rem;
  font-weight: 780;
}

.footer-badge small {
  color: #9aaabd;
  font-size: 0.77rem;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: #d7e0e7;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 12px;
  color: #aab9c7;
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8192a2;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.footer-bottom a {
  color: #d7e0e7;
}

.mobile-cta {
  display: none;
}

/* Service pages */
.service-hero {
  overflow: hidden;
  background: var(--warm);
}

.service-hero-grid {
  min-height: 565px;
  padding-block: 62px;
}

.service-hero--text-only .service-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.service-hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
}

.service-hero-copy > p {
  max-width: 650px;
  font-size: 1.12rem;
}

.service-hero-image {
  position: relative;
}

.service-hero-image img {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.service-hero-image .image-note {
  right: 20px;
}

.service-hero-context {
  min-height: 330px;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(16, 50, 64, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #e7f0f2 0%, #f8f6f0 100%);
  box-shadow: var(--shadow-md);
}

.service-hero-context p {
  max-width: 31rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
}

.product-hero {
  background: linear-gradient(112deg, #f8f6f0 0%, #ffffff 58%, #eef3f5 100%);
}

.product-hero-image {
  min-height: 470px;
  padding: 34px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f6f7f8 0%, #e8ecee 100%);
}

.product-hero-dark {
  background: #121416;
}

.product-hero-image img {
  width: 100%;
  max-width: 420px;
  height: 400px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.product-hero-tall img {
  max-width: 340px;
}

.product-hero-image .image-note {
  color: #4d5b6a;
}

.product-hero-dark .image-note,
.product-hero-dark .image-note a {
  color: #d7dee6;
}

.product-hero-image .image-note a {
  color: inherit;
}

.service-proof-grid {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-proof-item {
  padding: 24px 30px;
}

.service-proof-item + .service-proof-item {
  border-left: 1px solid var(--line);
}

.service-proof-item strong,
.service-proof-item span {
  display: block;
}

.service-proof-item strong {
  color: var(--navy-950);
  font-size: 0.95rem;
}

.service-proof-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.feature {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--yellow-100);
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 850;
}

.feature p:last-child {
  margin-bottom: 0;
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.decision-layout h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.decision-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.decision-list div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.decision-list dt {
  margin-bottom: 4px;
  color: var(--navy-950);
  font-weight: 800;
}

.decision-list dd {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.decision-list-five div:last-child {
  grid-column: 1 / -1;
}

.split-image img {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.split-caption {
  margin: 10px 0 0;
  color: #5c6b7c;
  font-size: 0.86rem;
}

.cta-band {
  padding-block: clamp(66px, 8vw, 100px);
  background: var(--navy-900);
  color: #ffffff;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #c5d3df;
}

.cta-band .cta-row {
  flex: 0 0 auto;
}

/* Advice and article pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #ffffff;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 38, 0.98) 0%, rgba(7, 20, 38, 0.86) 48%, rgba(7, 20, 38, 0.22) 100%);
  content: "";
}

.page-hero-image {
  position: absolute;
  inset: 0 0 0 42%;
  width: 58%;
  height: 100%;
  object-fit: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 440px;
  padding-block: 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: #cfdae4;
  font-size: 1.08rem;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-hero-product {
  background: var(--navy-900);
}

.page-hero-product .page-hero-image {
  padding: 42px;
  background: #eef1f1;
  object-fit: contain;
}

.page-hero-text {
  background: linear-gradient(118deg, #071426, #0b1e36);
}

.page-hero-text::after {
  display: none;
}

.archive-source,
.product-source {
  overflow-wrap: anywhere;
}

.archive-source {
  margin-top: 6px;
  color: #64717c;
  font-size: 0.72rem;
  line-height: 1.35;
}

.image-note,
.split-caption,
.page-hero-caption {
  display: block;
  margin-top: 10px;
}

.page-hero .page-hero-caption {
  max-width: 680px;
  margin: 8px 0 0;
  color: #afbfcd;
  font-size: 0.72rem;
  line-height: 1.35;
}

.page-hero .product-source {
  margin-top: 18px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.roof-wide img,
.roof-front,
.installed-equipment {
  width: 100%;
  object-fit: cover;
}

.roof-wide img,
.roof-front {
  aspect-ratio: 1000 / 563;
}

.installed-equipment {
  aspect-ratio: 1000 / 750;
}

.copy-led-block {
  max-width: 860px;
}

.service-card {
  display: flex;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card-body .text-link {
  margin-top: auto;
}

.page-hero-source {
  margin-top: 18px;
  color: #afbfcd !important;
  font-size: 0.78rem !important;
}

.page-hero-source a {
  color: #ffffff;
}

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

.resource-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.editorial-card {
  grid-column: span 4;
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.editorial-card-featured {
  grid-column: span 8;
  min-height: 420px;
  padding: clamp(34px, 5vw, 58px);
  justify-content: flex-end;
  background: linear-gradient(118deg, rgba(7, 20, 38, 0.96), rgba(11, 30, 54, 0.82));
}

.editorial-card-featured h2,
.editorial-card-featured p,
.editorial-card-featured .resource-meta,
.editorial-card-featured .text-link {
  color: #ffffff;
}

.editorial-card h2,
.editorial-card h3 {
  margin-bottom: 16px;
}

.editorial-card p {
  flex: 1;
}

.editorial-card:hover {
  border-color: #b9d8eb;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.reading-time {
  margin-top: auto;
  padding-top: 18px;
  color: #758697;
  font-size: 0.78rem;
  font-weight: 700;
}

.equipment-hero {
  background: var(--navy-950);
}

.equipment-hero .service-hero-copy h1,
.equipment-hero .service-hero-copy p {
  color: #ffffff;
}

.equipment-hero .service-hero-copy p {
  color: #c9d7e3;
}

.equipment-stage {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, rgba(38, 167, 232, 0.2), transparent 35%), linear-gradient(145deg, #152c44, #080f18);
}

.equipment-stage::after {
  position: absolute;
  right: 8%;
  bottom: -50px;
  left: 8%;
  height: 120px;
  border-radius: 50%;
  background: rgba(38, 167, 232, 0.18);
  filter: blur(34px);
  content: "";
}

.equipment-stage img {
  position: relative;
  z-index: 1;
  width: 70%;
  height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.45));
}

.fit-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.fit-map article {
  min-height: 250px;
  padding: 32px;
  background: #ffffff;
}

.fit-map article:nth-child(2) {
  background: var(--mist);
}

.decision-hub-map {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decision-hub-map article {
  min-height: 210px;
}

.equipment-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.equipment-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 28px;
}

.equipment-row h3,
.equipment-row p {
  margin: 0;
}

.brand-label-rail {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-label {
  padding: 9px 13px;
  border: 1px solid #ccd8e2;
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.legacy-logo-rail {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: repeat(9, minmax(70px, 1fr));
  align-items: center;
  gap: 18px;
  background: #ffffff;
}

.legacy-logo-rail img {
  width: 100%;
  max-width: 96px;
  max-height: 44px;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.reviews-hero-score {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--yellow-500);
  color: var(--navy-950);
}

.reviews-hero-score strong {
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.reviews-hero-score span {
  display: block;
  margin-top: 18px;
  font-weight: 800;
}

.proof-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.proof-quote {
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.proof-quote:nth-child(3n + 1) {
  background: var(--warm);
}

.proof-quote blockquote {
  flex: 1;
  margin-bottom: 28px;
  color: var(--navy-950);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 680;
  line-height: 1.5;
}

.proof-quote figcaption {
  color: var(--muted);
  font-size: 0.82rem;
}

.proof-quote figcaption strong {
  display: block;
  color: var(--navy-900);
}

.resource-meta {
  margin-bottom: 38px;
  display: block;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resource-card p {
  min-height: 110px;
}

.article-shell {
  max-width: 820px;
}

.article-shell > p {
  font-size: 1.04rem;
}

.article-shell h2 {
  margin-top: 58px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.article-shell h2:first-child {
  margin-top: 0;
}

.article-shell ol {
  counter-reset: article-list;
}

.article-shell ol li {
  counter-increment: article-list;
}

.article-shell ol li::before {
  width: auto;
  height: auto;
  top: 0;
  border: 0;
  border-radius: 0;
  color: var(--blue-700);
  content: counter(article-list) ".";
  font-weight: 850;
}

.article-aside {
  margin: 42px 0;
  padding: 28px 30px;
  border-left: 4px solid var(--yellow-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--mist);
}

.article-aside p:last-child {
  margin-bottom: 0;
}

.article-footer-links {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}

@media (max-width: 1060px) {
  .nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    justify-self: end;
  }

  .site-menu {
    position: relative;
    display: block;
  }

  .site-menu summary {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--navy-950);
    font-size: 0;
    list-style: none;
  }

  .site-menu summary::-webkit-details-marker {
    display: none;
  }

  .site-menu summary::before {
    content: "☰";
    font-size: 1.25rem;
  }

  .site-menu[open] summary::before {
    content: "×";
    font-size: 1.8rem;
  }

  .menu-panel {
    position: absolute;
    top: 58px;
    right: 0;
    width: min(320px, calc(100vw - 40px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    background: #ffffff;
    box-shadow: var(--shadow-md);
  }

  .menu-panel a {
    padding: 12px 10px;
    border-bottom: 1px solid #edf1f4;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
  }

  .menu-panel a:last-child {
    border-bottom: 0;
  }

  .menu-panel a[aria-current="page"] {
    color: var(--blue-700);
    background: #edf6fc;
  }

  .hero-grid,
  .hero-stage-grid,
  .service-hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 36px;
  }

  .service-grid,
  .feature-grid,
  .resource-grid,
  .product-grid,
  .product-grid-core,
  .option-paths,
  .option-paths-three,
  .family-section-grid,
  .assess-grid,
  .path-tiles,
  .path-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-tiles .path-tile:last-child {
    grid-column: 1 / -1;
  }

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

  .process-stepper-item:nth-child(4),
  .process-stepper-item:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .product-stage,
  .product-stage:nth-child(even) {
    grid-template-columns: minmax(200px, 0.75fr) minmax(0, 1.25fr);
  }

  .product-stage:nth-child(even) .product-stage-media {
    order: 0;
  }

  .guides-teaser-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: 180px 180px 160px;
  }

  .gallery-mosaic-a {
    grid-row: 1 / 3;
  }

  .gallery-mosaic-e {
    grid-column: 1 / -1;
  }

  .service-card:last-child,
  .feature:last-child,
  .resource-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .service-grid-four .service-card:last-child {
    grid-column: auto;
  }

  .product-grid .product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .product-grid-two .product-card:last-child,
  .product-grid-core .product-card:last-child {
    grid-column: auto;
  }

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

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

  .review-card,
  .review-card:nth-child(4) {
    grid-column: auto;
  }

  .review-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .story-grid,
  .split,
  .reviews-grid,
  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 1220px) {
  .header-actions .phone-button {
    display: none;
  }
}

@media (max-width: 800px) {
  .topbar-contact a[href^="mailto:"] {
    display: none;
  }

  .header-actions .phone-button {
    display: none;
  }

  .brand img {
    width: 178px;
  }

  .hero-grid,
  .hero-stage-grid,
  .service-hero-grid,
  .story-grid,
  .split,
  .reviews-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-moment-grid,
  .proof-band-grid,
  .product-intro,
  .decision-layout,
  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .path-tiles,
  .path-secondary {
    grid-template-columns: 1fr;
  }

  .path-tiles .path-tile:last-child {
    grid-column: auto;
  }

  .process-stepper {
    grid-template-columns: 1fr;
  }

  .process-stepper-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-stepper-item:last-child {
    border-bottom: 0;
  }

  .process-stepper-item:nth-child(4),
  .process-stepper-item:nth-child(5) {
    border-top: 0;
  }

  .product-stage,
  .product-stage:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-stage:nth-child(even) .product-stage-media {
    order: 0;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px 160px;
  }

  .gallery-mosaic-a {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-mosaic-e {
    grid-column: 1 / -1;
  }

  .product-intro,
  .reviews-heading {
    gap: 26px;
  }

  .review-rating {
    max-width: 340px;
  }

  .hero-grid,
  .service-hero-grid {
    padding-block: 50px 68px;
  }

  .hero-visual,
  .service-hero-image {
    max-width: 650px;
  }

  .product-hero-image {
    width: 100%;
  }

  .service-hero-context {
    min-height: 240px;
  }

  .hero-visual img {
    min-height: 380px;
  }

  .proof-grid,
  .service-proof-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .proof-item,
  .service-proof-item {
    min-height: 88px;
  }

  .proof-item + .proof-item,
  .service-proof-item + .service-proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .commercial-callout {
    grid-template-columns: 1fr;
  }

  .commercial-callout img {
    min-height: 260px;
  }

  .story-grid {
    gap: 64px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .step-number {
    margin-bottom: 30px;
  }

  .process-note,
  .guide-band-inner,
  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-band-inner {
    display: flex;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .page-hero-image {
    inset: 0;
    width: 100%;
  }

  .page-hero::after {
    background: rgba(7, 20, 38, 0.84);
  }

  .page-hero-product .page-hero-image {
    opacity: 0.24;
  }

  .editorial-card,
  .editorial-card-featured {
    grid-column: span 6;
  }

  .fit-map {
    grid-template-columns: 1fr;
  }

  .decision-hub-map {
    grid-template-columns: 1fr;
  }

  .equipment-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legacy-logo-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

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

  .topbar-inner {
    min-height: 34px;
    justify-content: center;
  }

  .topbar-inner > p {
    display: none;
  }

  .topbar-contact {
    width: 100%;
    justify-content: center;
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand img {
    width: 154px;
  }

  .header-actions .quote-button {
    display: none;
  }

  h1 {
    font-size: clamp(2.15rem, 9.6vw, 2.5rem);
    line-height: 1.05;
  }

  .home-hero h1,
  .hero-stage h1,
  .service-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 8.5vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .home-hero .hero-grid,
  .hero-stage-grid,
  .service-hero-grid {
    min-height: 0;
    padding-block: 28px 40px;
  }

  .home-hero .hero-copy,
  .hero-stage .hero-copy {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .hero-proof,
  .hero-proof-block {
    margin-top: 18px;
    padding-top: 14px;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .hero-proof-score-xl strong {
    font-size: 2.4rem;
  }

  .proof-moment,
  .proof-band {
    padding-block: 48px;
  }

  .featured-review,
  .proof-band-quote {
    padding: 26px 22px;
  }

  .hero-stage-media img,
  .hero-visual img,
  .service-hero-image img {
    min-height: 0;
    height: 280px;
    border-radius: var(--radius-md);
  }

  .service-hero-context {
    min-height: 220px;
    padding: 28px;
    border-radius: var(--radius-md);
  }

  .path-tile img {
    height: 180px;
  }

  .product-stage-media img,
  .product-stage-media-light img {
    height: 220px;
  }

  .equipment-hero-media {
    min-height: 320px;
  }

  .equipment-hero-media img {
    width: 62%;
    max-height: 280px;
  }

  .guides-compact-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-stepper-three {
    grid-template-columns: 1fr;
  }

  .story-mosaic,
  .story-photos {
    min-height: 380px;
  }

  .story-mosaic-main,
  .story-photos img:first-child {
    height: 300px;
  }

  .story-mosaic-inset,
  .story-photos img:last-child {
    height: 170px;
  }

  .product-hero-image {
    min-height: 350px;
    height: auto;
    padding: 24px;
  }

  .product-hero-image img {
    width: 100%;
    height: 300px;
    border-radius: 0;
  }

  .image-note {
    right: 10px;
    bottom: 12px;
    max-width: 230px;
    padding: 12px 14px;
  }

  .section {
    padding-block: 70px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .service-grid,
  .feature-grid,
  .resource-grid,
  .product-grid,
  .option-paths,
  .option-paths-three,
  .family-section-grid,
  .assess-grid,
  .legacy-list,
  .secondary-services,
  .score-breakdown,
  .decision-list,
  .review-card-grid,
  .score-and-source {
    grid-template-columns: 1fr;
  }

  .product-grid .product-card:last-child:nth-child(odd),
  .product-grid-two .product-card:last-child,
  .review-card:last-child:nth-child(odd),
  .decision-list-five div:last-child {
    grid-column: auto;
  }

  .product-media {
    min-height: 300px;
    padding: 24px;
  }

  .product-media img {
    height: 260px;
  }

  .decision-line {
    gap: 8px 20px;
  }

  .review-rating {
    min-width: 0;
    padding-left: 20px;
  }

  .score-and-source {
    display: grid;
  }

  .score-breakdown-light {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child,
  .feature:last-child,
  .resource-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-card p,
  .resource-card p {
    min-height: 0;
  }

  .story-photos {
    min-height: 410px;
  }

  .story-photos img:first-child {
    width: 90%;
    height: 320px;
  }

  .story-photos img:last-child {
    width: 58%;
    height: 190px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 170px;
  }

  .gallery-grid img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .score-panel,
  .quote-card,
  .contact-panel,
  .resource-card {
    padding: 24px 22px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    max-width: 360px;
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero-inner {
    min-height: 390px;
    padding-block: 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  body:has(.site-menu[open]) .mobile-cta {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    min-height: 72px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 10px;
    border-top: 1px solid rgba(16, 36, 60, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 30px rgba(7, 20, 38, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-cta .btn {
    min-height: 50px;
  }

  @media (max-width: 390px) {
    .home-hero .hero-grid {
      padding-block: 24px 28px;
    }

    .home-hero .hero-copy {
      margin-bottom: 14px;
    }

    .home-hero .hero-actions {
      gap: 8px;
    }

    .home-hero .hero-proof {
      margin-top: 14px;
      padding-top: 12px;
    }
  }

  .editorial-card,
  .editorial-card-featured {
    grid-column: 1 / -1;
    min-height: 310px;
  }

  .proof-quote-grid {
    grid-template-columns: 1fr;
  }

  .equipment-stage {
    min-height: 360px;
  }

  .equipment-stage img {
    height: 310px;
  }
}

@media (max-width: 380px) {
  .score-breakdown-light {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .btn:hover,
  .path-tile:hover,
  .service-card:hover,
  .resource-card:hover {
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
