/* Horizon Roofing Florida — white / light Florida corporate + navy & chrome */
:root {
  --navy: #0A3A8C;
  --navy-deep: #001F4D;
  --navy-mid: #003B8E;
  --steel: #3D5166;
  --steel-bright: #0B1C33;
  --glow: #003B8E;
  --chrome: #0B1C33;
  --accent: #0A3A8C;
  --accent-hover: #003B8E;
  --bg: transparent;
  --bg-base: #FFFFFF;
  --bg-soft: rgba(245, 248, 252, 0.72);
  --panel: rgba(255, 255, 255, 0.92);
  --text: #0B1C33;
  --muted: #5A6B7D;
  --line: rgba(10, 58, 140, 0.12);
  --white: #ffffff;
  --silver: #C5CDD8;
  --silver-dark: #8A9AAB;
  --teal-soft: #4A9A9C;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 18px rgba(11, 28, 51, 0.08);
  --shadow-lg: 0 12px 36px rgba(11, 28, 51, 0.12);
  --glow-soft: 0 0 24px rgba(10, 58, 140, 0.12);
  --header-h: 80px;
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg-base);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body > *:not(.roofing-bg):not(.florida-palms):not(.site-header) {
  z-index: 1;
}
body > .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--chrome);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
h1 { color: var(--steel-bright); }
p { margin: 0 0 1rem; }
.wrap { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.wrap-narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }

/* Header — white / light sticky */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(11, 28, 51, 0.06);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}
.logo { margin-right: auto; display: flex; align-items: center; }
.logo img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
  padding: 2px 6px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--steel);
}
.nav-desktop a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
}
.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: #FFFFFF;
  padding: 0.75rem 1rem 1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.7rem 0.25rem;
  font-weight: 600;
  color: var(--chrome);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: 0; }

/* Trust bar */
.trust-bar {
  background: linear-gradient(90deg, #000000, #001F4D 40%, #0A3A8C 60%, #001F4D);
  color: #E8EEF5;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(184, 192, 204, 0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0;
}
.trust-bar span { white-space: nowrap; }
.trust-bar .sep { opacity: 0.55; margin: 0 0.45rem; color: var(--silver); }
.trust-bar .palm-accent { margin: 0 0.35rem; opacity: 0.85; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s, border-color 0.15s;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 59, 142, 0.28);
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  border-color: var(--navy-deep);
  background: rgba(10, 58, 140, 0.06);
  color: var(--navy-deep);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--silver-dark);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-call {
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 59, 142, 0.25);
}
.btn-call:hover { background: var(--navy-deep); }
.btn-steel {
  background: linear-gradient(135deg, #C5CDD8, #E8EEF5);
  color: #0A0A0A;
}
.btn-steel:hover { background: var(--steel-bright); color: #000; }

/* Hero — light Florida corporate */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 90% 10%, rgba(10, 58, 140, 0.08), transparent 55%),
    linear-gradient(165deg, #FFFFFF 0%, #F5F8FC 55%, #E8F0FA 100%);
  color: var(--text);
  padding: 3.75rem 0 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 280px;
  background: radial-gradient(circle, rgba(10, 58, 140, 0.06), transparent 65%);
  pointer-events: none;
}
.hero h1 {
  color: var(--navy-deep);
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  max-width: 24ch;
  margin-bottom: 1rem;
  text-shadow: none;
}
.hero .lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 0;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.hero-logo-mark {
  margin-bottom: 1.1rem;
  max-width: min(420px, 100%);
  filter: drop-shadow(0 8px 24px rgba(11, 28, 51, 0.12));
}
.hero-card {
  background: var(--panel);
  border: 1px solid rgba(197, 205, 216, 0.28);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h2 {
  color: var(--steel-bright);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.hero-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--muted);
}
.hero-card input,
.hero-card select,
.hero-card textarea {
  width: 100%;
  margin-bottom: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: var(--bg-soft);
  color: var(--text);
}
.hero-card .btn { width: 100%; margin-top: 0.25rem; }

/* Hero with looping Gulf Coast metal video background */
.hero.hero-video {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 3.75rem;
  background: transparent;
  border-bottom: 1px solid var(--line);
}
.hero.hero-video::after { display: none; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(245, 248, 252, 0.82) 45%,
    rgba(232, 240, 250, 0.78) 100%
  );
}
.hero.hero-video .hero-grid {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 2rem));
}
.hero.hero-video .hero-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
}
.hero.hero-video h1,
.hero.hero-video .lede,
.hero.hero-video .eyebrow,
.hero.hero-video .finance-note {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
@media (max-width: 800px) {
  .hero.hero-video { min-height: auto; padding: 2.75rem 0 2.5rem; }
}

.hero-photo {
  padding: 2rem 0 0;
  background: var(--bg);
}
.hero-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.caption {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.55rem 0 0;
}

/* Page hero (inner) */
.page-hero {
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 2.75rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  max-width: 28ch;
}
.page-hero .lede {
  color: rgba(255,255,255,0.85);
  max-width: 42rem;
  margin: 0;
}
.page-hero .btn-secondary,
.page-hero .btn-outline {
  color: var(--white);
  border-color: rgba(184, 192, 204, 0.55);
  background: transparent;
}
.page-hero .btn-secondary:hover,
.page-hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--silver);
  color: var(--white);
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.85rem;
}
.breadcrumb a:hover { color: var(--glow); text-decoration: underline; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-soft { background: var(--bg-soft); }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head h2 { margin: 0; font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
.section-head p { margin: 0; color: var(--muted); max-width: 36rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* Cards / grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--glow-soft);
  border-color: rgba(0, 59, 142, 0.45);
}
.card-body { padding: 1.2rem 1.25rem 1.35rem; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--chrome); }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card img {
  width: 100%;
  height: 170px;
  min-height: 170px;
  object-fit: cover;
  display: block;
  background: #e8eef5;
}
.card .link-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--glow);
  font-weight: 700;
  font-size: 0.9rem;
}
.proof-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
}
.proof-card h3 { font-size: 1.05rem; color: var(--chrome); }
.proof-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 59, 142, 0.15);
  color: var(--glow);
  border: 1px solid rgba(0, 59, 142, 0.3);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid figure {
  margin: 0;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.gallery-strip a {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  border: 1px solid var(--line);
}
.gallery-strip img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.2s;
}
.gallery-strip a:hover img { transform: scale(1.05); }

/* Video */
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  border: 1px solid var(--line);
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

/* Portrait feature video (e.g. coatings spray) */
.video-wrap-portrait {
  max-width: 420px;
  margin-inline: auto;
}
.video-wrap-portrait video {
  max-height: min(72vh, 640px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
}

/* Content layouts */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.split-reverse > :first-child { order: 2; }
.content-block h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.content-block p,
.content-block li { color: var(--muted); }
.content-block ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1rem; }
.content-block li { margin-bottom: 0.4rem; }
.feature-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.feature-img.portrait,
.team-photo {
  aspect-ratio: 4 / 5;
  max-height: none;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
}
.team-photo-wrap { max-width: 380px; margin: 0 auto; }
.team-photo-wrap .caption {
  text-align: center;
  margin-top: 0.7rem;
  font-weight: 600;
  color: var(--chrome);
}
.check-list { list-style: none; padding: 0; }
.content-block ul.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--glow);
  font-weight: 800;
}

/* Areas */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.pill {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--chrome);
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.area-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.area-card h3 { margin-bottom: 0.4rem; }
.area-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Reviews */
.review-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-left: 4px solid var(--steel);
}
.stars { color: #F5A623; letter-spacing: 0.08em; margin-bottom: 0.5rem; font-size: 0.95rem; }
.review-card blockquote {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 0.98rem;
}
.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--chrome);
  font-size: 0.9rem;
}

/* Forms */
.form-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.form-row { margin-bottom: 0.9rem; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--chrome);
  margin-bottom: 0.3rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: var(--bg-soft);
  color: var(--text);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(0, 59, 142, 0.45);
  border-color: var(--steel);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-line {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
}
.contact-line strong {
  display: block;
  color: var(--chrome);
  font-size: 0.95rem;
}
.contact-line a { color: var(--glow); font-weight: 700; }

/* CTA band */
.cta-band {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0, 59, 142, 0.25), transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-band h2 {
  color: var(--white);
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}
.cta-band p { color: rgba(255,255,255,0.82); margin: 0 0 1.35rem; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .btn-secondary,
.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(184, 192, 204, 0.55);
  background: transparent;
}
.cta-band .btn-secondary:hover,
.cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: #05080F;
  color: #B8C0CC;
  padding: 3rem 0 1.5rem;
  font-size: 0.92rem;
  border-top: 1px solid rgba(184, 192, 204, 0.2);
}
.site-footer .footer-division {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: #B8C0CC;
  line-height: 1.45;
}
.site-footer .footer-division a {
  color: #E8EEF7;
  font-weight: 700;
  border-bottom: 1px solid rgba(184, 192, 204, 0.45);
}
.site-footer .footer-division a:hover { color: #fff; border-bottom-color: #fff; }
.site-footer .palm-accent { opacity: 0.7; vertical-align: middle; margin-right: 0.35rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  color: #E8EEF7;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.site-footer a:hover { color: var(--glow); }
.site-footer ul li { margin-bottom: 0.4rem; }
.footer-brand img {
  height: 48px;
  width: auto;
  max-width: 200px;
  margin-bottom: 0.85rem;
  object-fit: contain;
}
.footer-brand p { margin: 0 0 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8A93A0;
}

/* Misc */
.prose { max-width: 48rem; }
.prose p { color: var(--muted); }
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat {
  background: rgba(0, 59, 142, 0.08);
  border: 1px solid rgba(0, 59, 142, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--glow);
}
.stat span { font-size: 0.8rem; color: var(--muted); }
.map-embed {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  height: 280px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .split-reverse,
  .contact-grid,
  .two-col-text,
  .footer-grid { grid-template-columns: 1fr; }
  .split-reverse > :first-child { order: 0; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .btn-call { padding: 0.5rem 0.75rem; font-size: 0.82rem; }
  .logo img { height: 48px; max-width: 190px; }
  .grid-3,
  .gallery-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { font-size: 0.75rem; }
  .hero { padding: 2.75rem 0 2.5rem; }
  .section { padding: 2.75rem 0; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
}

/* Callouts */
.callout {
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin: 1.25rem 0 0;
  border: 1px solid var(--line);
  background: rgba(0, 59, 142, 0.06);
}
.callout strong { color: var(--chrome); }
.callout p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.callout-accent {
  background: rgba(0, 59, 142, 0.1);
  border-color: rgba(0, 59, 142, 0.35);
  border-left: 4px solid var(--steel);
}
.callout-steel {
  background: rgba(0, 59, 142, 0.08);
  border-color: rgba(0, 59, 142, 0.28);
  border-left: 4px solid var(--glow);
}
.finance-note {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--glow);
}
.page-hero .finance-note,
.cta-band .finance-note { color: rgba(255,255,255,0.85); }
.hero .finance-note { color: var(--navy); }
.content-block .finance-note { color: var(--glow); display: block; }

/* Cert strip */
.cert-strip {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow), var(--glow-soft);
}
.cert-strip h2,
.cert-strip h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.cert-strip p { margin: 0 0 0.85rem; color: var(--muted); font-size: 0.94rem; }
.cert-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cert-pill {
  background: rgba(0, 59, 142, 0.1);
  color: var(--chrome);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 59, 142, 0.28);
}
.cert-pill em {
  font-style: normal;
  color: var(--glow);
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Transparency / cost cards */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.cost-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cost-card .amount {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--glow);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.cost-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Featured niche band */
.niche-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.niche-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.niche-band p { color: rgba(255,255,255,0.85); max-width: 40rem; }
.niche-band .stat-row { margin-top: 1.25rem; }
.niche-band .btn-secondary {
  color: var(--white);
  border-color: rgba(184, 192, 204, 0.55);
  background: transparent;
}
.niche-band .stat {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184, 192, 204, 0.28);
}
.niche-band .stat strong { color: var(--silver); }
.niche-band .stat span { color: rgba(255,255,255,0.75); }

/* Nav dropdown (Services) */
.nav-item { position: relative; }
.nav-item > a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  display: inline-block;
  font-weight: 600;
  color: var(--steel);
}
.nav-item > a:hover,
.nav-item > a[aria-current="page"] {
  color: var(--glow);
  border-bottom-color: var(--steel);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 260px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 0.45rem;
  z-index: 1001;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: var(--steel) !important;
  border-bottom: 0 !important;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--navy) !important;
}
.nav-dropdown a.featured {
  color: var(--navy) !important;
}
.nav-mobile .sub {
  padding-left: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 960px) {
  .cost-grid { grid-template-columns: 1fr; }
}

/* Commercial account trust strip */
.commercial-trust {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow), var(--glow-soft);
  text-align: center;
}
.commercial-trust h2 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}
.commercial-trust > p {
  margin: 0 auto 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 40rem;
}
.commercial-trust .account-pills {
  justify-content: center;
  margin-bottom: 0.85rem;
}
.commercial-trust .account-pills .cert-pill {
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
}
.commercial-trust .trust-note {
  margin: 0.25rem auto 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}
.commercial-trust .link-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--glow);
}

/* Case study block */
.case-study {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.case-study .case-study-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
}
.case-study .case-study-media {
  margin: 0;
  background: var(--bg-soft);
}
.case-study .case-study-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.case-study .case-study-body {
  padding: 1.5rem 1.6rem 1.65rem;
}
.case-study .case-study-body h3 {
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
}
.case-study .case-study-body p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.case-study .case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}
.case-study .case-study-meta li {
  background: rgba(0, 59, 142, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}
.case-study .case-study-body .link-more {
  font-weight: 700;
  color: var(--glow);
}
@media (max-width: 860px) {
  .case-study .case-study-grid { grid-template-columns: 1fr; }
  .case-study .case-study-media img {
    min-height: 220px;
    max-height: 320px;
  }
}

/* Floating sticky Call Now */
.float-call {
  position: fixed;
  z-index: 200;
  right: 1.1rem;
  bottom: 1.1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-width: 148px;
  padding: 0.85rem 1.15rem;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 999px;
  border: 1px solid var(--navy-deep);
  box-shadow: 0 10px 28px rgba(0, 37, 92, 0.35);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.float-call:hover {
  background: var(--navy-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 37, 92, 0.4);
}
.float-call-label {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.float-call-phone {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.95;
}
@media (max-width: 640px) {
  .float-call {
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
    min-width: 0;
    flex-direction: row;
    gap: 0.55rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
  }
  .float-call-label { font-size: 1rem; }
  .float-call-phone { font-size: 0.9rem; }
  body { padding-bottom: 5.5rem; }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}
.faq-item h3 {
  font-size: 1.02rem;
  margin: 0 0 0.4rem;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.faq-item a { color: var(--glow); font-weight: 700; }

/* City / area cards with links */
.area-card a.area-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 700;
  color: var(--glow);
  font-size: 0.9rem;
}
.area-card h3 a { color: var(--chrome); }
.area-card h3 a:hover { color: var(--glow); }

/* Property manager band */
.pm-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}
.pm-band h2 { margin-bottom: 0.45rem; }
.pm-band p { color: var(--muted); margin-bottom: 0.75rem; }
a.pill:hover {
  border-color: var(--glow);
  color: var(--glow);
}

/* Brand logos grid */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem 1.25rem;
  align-items: stretch;
  margin: 1.25rem 0 0.75rem;
}
.brand-logo {
  background: #fff;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  box-shadow: var(--shadow);
  text-align: center;
}
.brand-logo img {
  max-width: 120px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-logo figcaption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.brand-caption {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
  max-width: 52rem;
}
.footer-legal {
  flex: 1 1 100%;
  width: 100%;
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: rgba(184,192,204,0.75);
  line-height: 1.45;
}

/* Specs grid (Worthouse etc.) */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.spec-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow);
}
.spec-card h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--glow);
}
.spec-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.proof-strip .cert-pill { font-size: 0.85rem; }
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.split-feature .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.split-feature .panel h3 {
  color: var(--glow);
  margin-bottom: 0.55rem;
}
.split-feature .panel p { color: var(--muted); margin: 0; }
@media (max-width: 800px) {
  .specs-grid,
  .split-feature { grid-template-columns: 1fr; }
}

.content-block a,
.prose a { color: var(--glow); font-weight: 600; }
.content-block a:hover,
.prose a:hover { text-decoration: underline; }


.direct-cell {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--glow);
}
.direct-cell a {
  color: var(--glow);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 59, 142, 0.45);
}
.direct-cell a:hover { color: var(--navy-deep); border-bottom-color: var(--navy-deep); }
.service-map {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.worthouse-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(0, 59, 142,0.35));
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.model-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.model-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}
.model-card .model-body { padding: 0.9rem 1rem 1.1rem; }
.model-card h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.model-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }


/* Free roof render / specialty software preview */
.render-showcase {
  position: relative;
  padding: 3.25rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.render-showcase .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .render-showcase .wrap { grid-template-columns: 1fr; }
}
.render-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 59, 142, 0.08);
  border: 1px solid rgba(0, 59, 142, 0.2);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.render-showcase h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--steel-bright);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.render-showcase .render-lede {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
.render-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.render-points li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--text);
  font-size: 0.98rem;
}
.render-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: none;
}
.render-form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.render-form-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--steel-bright);
}
.render-form-card .sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.render-drop {
  display: block;
  border: 1.5px dashed var(--silver-dark);
  border-radius: 14px;
  padding: 1.1rem;
  text-align: center;
  cursor: pointer;
  background: var(--bg-soft);
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 0.9rem;
}
.render-drop:hover, .render-drop:focus-within {
  border-color: var(--navy);
  background: rgba(0, 59, 142, 0.06);
}
.render-drop strong { display: block; color: var(--steel-bright); margin-bottom: 0.25rem; }
.render-drop span { color: var(--muted); font-size: 0.85rem; }
.render-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.render-drop-wrap { position: relative; }
.render-preview {
  display: none;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 0.75rem;
}
.render-preview.show { display: block; }
.render-form-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0.55rem 0 0.3rem;
}
.render-form-card input,
.render-form-card select,
.render-form-card textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
}
.render-form-card .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
@media (max-width: 520px) {
  .render-form-card .row-2 { grid-template-columns: 1fr; }
}
.render-form-card .btn { width: 100%; margin-top: 1rem; }
.render-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.render-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 59, 142, 0.08);
  border: 1px solid rgba(0, 59, 142, 0.18);
  color: var(--navy);
}
.render-success {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 59, 142, 0.08);
  border: 1px solid rgba(0, 59, 142, 0.22);
  color: var(--text);
  margin-top: 0.75rem;
}
.render-success.show { display: block; }


/* Free GPS roof quote */
.gps-quote {
  padding: 3.25rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.gps-quote .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .gps-quote .wrap { grid-template-columns: 1fr; }
}
.gps-quote .gps-visual,
.render-showcase .render-visual {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: block;
}
.render-showcase .render-visual {
  margin: 1rem 0 0.35rem;
}
.render-showcase .render-visual-caption {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.gps-quote h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  line-height: 1.18;
  margin: 0 0 0.85rem;
  color: var(--steel-bright);
}
.gps-quote .gps-lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.gps-accuracy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: rgba(0, 59, 142, 0.08);
  border: 1px solid rgba(0, 59, 142, 0.22);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.gps-form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.gps-form-card h3 { margin: 0 0 0.35rem; color: var(--steel-bright); font-size: 1.25rem; }
.gps-form-card .sub { margin: 0 0 1rem; color: var(--muted); font-size: 0.9rem; }
.gps-form-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0.55rem 0 0.3rem;
}
.gps-form-card input,
.gps-form-card select,
.gps-form-card textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
}
.gps-form-card .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
@media (max-width: 520px) {
  .gps-form-card .row-2 { grid-template-columns: 1fr; }
}
.gps-form-card .btn { width: 100%; margin-top: 1rem; }
.gps-success {
  display: none;
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 59, 142, 0.08);
  border: 1px solid rgba(0, 59, 142, 0.22);
  color: var(--text);
}
.gps-success.show { display: block; }

/* Palm accents */
.palm-accent {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("/images/palm-accent.svg") center / contain no-repeat;
  vertical-align: middle;
  flex-shrink: 0;
  filter: none;
  opacity: 0.9;
}
.palm-accent.lg { width: 48px; height: 48px; }
.palm-accent.sm { width: 20px; height: 20px; }
.section-divider-palms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.25rem 0 0.5rem;
  opacity: 0.85;
}
.section-divider-palms::before,
.section-divider-palms::after {
  content: "";
  height: 1px;
  width: min(140px, 28vw);
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
}

/* Capability / family story */
.capability {
  padding: 3.5rem 0;
  background: var(--bg);
  position: relative;
}
.capability .wrap { position: relative; }
.capability-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.capability .eyebrow { color: var(--navy); }
.capability h2 {
  color: var(--steel-bright);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  max-width: 28ch;
}
.capability .lede-block {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}
.capability .parent-note {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.98rem;
}
.capability .parent-note a {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 59, 142, 0.3);
}
.capability .parent-note a:hover { border-bottom-color: var(--navy); }
.capability-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
.capability-stat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.capability-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.capability-stat span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}
.systems-heading {
  margin: 1.5rem 0 0.75rem;
  color: var(--steel-bright);
  font-size: 1.15rem;
}
.systems-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.system-pill {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--steel);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(11, 28, 51, 0.04);
}
.capability-aside {
  background: linear-gradient(165deg, var(--navy-deep), var(--navy));
  color: #E8EEF7;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.capability-aside::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: 110px;
  height: 110px;
  background: url("/images/palm-accent.svg") center / contain no-repeat;
  opacity: 0.18;
  filter: brightness(2);
  pointer-events: none;
}
.capability-aside h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.capability-aside ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.capability-aside li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.94rem;
}
.capability-aside li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--silver);
  font-weight: 800;
}
.capability-aside .aside-note {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .capability-layout { grid-template-columns: 1fr; }
  .capability-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .capability-stats { grid-template-columns: 1fr; }
}


/* Animated roofing ambient background (replaces florida palms) */
.roofing-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background-color: transparent;
  background-image: url("/images/bg/shingle-bg.jpg");
  background-repeat: repeat;
  background-size: 420px auto;
  opacity: 0.55;
  animation: roofing-bg-drift 48s linear infinite;
  mix-blend-mode: multiply;
}
@keyframes roofing-bg-drift {
  0% { background-position: 0 0; }
  100% { background-position: 240px 120px; }
}
@media (prefers-reduced-motion: reduce) {
  .roofing-bg { animation: none; }
}
/* Legacy palms disabled sitewide */
.florida-palms { display: none !important; }

/* Fixed Florida palms — full-color, prominent, subtle sway + scroll parallax */
.florida-palms {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.florida-palms .fp {
  position: absolute;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  will-change: transform;
  transform-origin: bottom center;
}
.florida-palms .fp-left {
  left: -2%;
  bottom: -6%;
  width: min(520px, 52vw);
  height: min(640px, 85vh);
  background-image: url("/images/palm-color-left-bg.png");
  opacity: 0.92;
  animation: palm-sway-left 7.5s ease-in-out infinite;
}
.florida-palms .fp-right {
  right: -2%;
  bottom: -6%;
  width: min(520px, 52vw);
  height: min(640px, 85vh);
  background-image: url("/images/palm-color-right-bg.png");
  opacity: 0.92;
  animation: palm-sway-right 8.2s ease-in-out infinite;
}
.florida-palms .fp-left-high {
  left: 0%;
  top: 6%;
  width: min(320px, 34vw);
  height: min(400px, 50vh);
  background-image: url("/images/palm-color-left-bg.png");
  opacity: 0.85;
  transform-origin: center bottom;
  animation: palm-sway-left-high 9s ease-in-out infinite;
}
.florida-palms .fp-right-high {
  right: 1%;
  top: 12%;
  width: min(300px, 32vw);
  height: min(380px, 48vh);
  background-image: url("/images/palm-color-right-bg.png");
  opacity: 0.85;
  transform-origin: center bottom;
  animation: palm-sway-right-high 8.6s ease-in-out infinite;
}
@keyframes palm-sway-left {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}
@keyframes palm-sway-right {
  0%, 100% { transform: rotate(1.5deg); }
  50% { transform: rotate(-1.5deg); }
}
@keyframes palm-sway-left-high {
  0%, 100% { transform: scaleX(-1) rotate(-9.5deg); }
  50% { transform: scaleX(-1) rotate(-6.5deg); }
}
@keyframes palm-sway-right-high {
  0%, 100% { transform: rotate(4.5deg); }
  50% { transform: rotate(7.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .florida-palms .fp {
    animation: none !important;
  }
}
main,
.site-footer,
.trust-bar {
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .florida-palms .fp-left,
  .florida-palms .fp-right {
    width: min(280px, 58vw);
    height: min(320px, 48vh);
    opacity: 0.88;
  }
  .florida-palms .fp-left-high,
  .florida-palms .fp-right-high { display: none; }
}


/* Job photo gallery (emergency tarp / hurricane pages) */
.job-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.job-gallery figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 28, 51, 0.06);
}
.job-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.job-gallery figcaption {
  text-align: center;
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.disclaimer-box {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-left: 4px solid var(--steel);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.disclaimer-box strong { color: var(--chrome); }
.checklist-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 8px 24px rgba(11, 28, 51, 0.05);
  height: 100%;
}
.checklist-card h3 { margin-top: 0; color: var(--steel-bright); }
.storm-lead-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(11, 28, 51, 0.08);
}
.storm-lead-card h3 { margin: 0 0 0.35rem; color: var(--steel-bright); }
.storm-lead-card .sub { color: var(--muted); margin-bottom: 1rem; font-size: 0.92rem; }
.storm-lead-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0.75rem 0 0.3rem;
  color: var(--chrome);
}
.storm-lead-card input,
.storm-lead-card select,
.storm-lead-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fff;
}
.storm-lead-card textarea { min-height: 100px; resize: vertical; }
.storm-lead-card .btn { width: 100%; margin-top: 1rem; }
.page-hero.hero-video {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0b1c33;
  padding: 5rem 0 4rem;
  min-height: 420px;
}
.page-hero.hero-video .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero.hero-video .breadcrumb { color: rgba(255,255,255,0.65); }
.page-hero.hero-video h1,
.page-hero.hero-video .lede { color: #fff; }
.page-hero.hero-video .lede { opacity: 0.92; max-width: 42rem; }
.page-hero.hero-video .wrap { position: relative; z-index: 2; }
@media (max-width: 900px) {
  .job-gallery { grid-template-columns: 1fr; }
}
@media (min-width: 701px) and (max-width: 900px) {
  .job-gallery { grid-template-columns: 1fr 1fr; }
}


.page-hero.hero-video .hero-video-overlay {
  background: linear-gradient(
    165deg,
    rgba(8, 18, 36, 0.78) 0%,
    rgba(11, 28, 51, 0.72) 50%,
    rgba(8, 18, 36, 0.82) 100%
  );
}
.page-hero.hero-video .btn-outline {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}
.page-hero.hero-video .btn-outline:hover {
  background: rgba(255,255,255,0.12);
}


/* Commercial / inner page video heroes */
.page-hero.page-hero-video {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: #0B1424;
  color: #E8EEF5;
}
.page-hero-video .hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-video .hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-video .hero-video-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(10,20,40,0.78), rgba(10,20,40,0.55));
}
.page-hero-video .page-hero-content,
.page-hero-video .wrap {
  position: relative;
  z-index: 2;
}
.page-hero-video h1,
.page-hero-video .lede,
.page-hero-video .eyebrow {
  color: #F5F8FC !important;
}
