/* Raptor Roofing static site theme */
:root {
  --lime: #38ec14;
  --lime-dark: #2fd90f;
  --cyan: #1bb7db;
  --cyan-dark: #0ca3c8;
  --ink: #0d1520;
  --slate: #142235;
  --paper: #f4f8fb;
  --muted: #7d8ca1;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(4, 15, 27, 0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 236, 20, 0.11), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(27, 183, 219, 0.14), transparent 38%),
    var(--paper);
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 19, 31, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

h1, h2, h3, h4 {
  font-family: "Roboto Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

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

p { margin: 0 0 1rem; }

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

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

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

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

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

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

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

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #f5fbff;
}

.btn-dark {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #e7f3ff;
  background: rgba(255, 255, 255, 0.04);
}

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

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

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

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

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

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

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

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

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

.stat {
  margin: 0;
  color: var(--lime);
  font-family: "Roboto Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.section {
  padding: 3.2rem 0;
}

.section-dark {
  background: linear-gradient(120deg, #0a1624 10%, #0f2d43 100%);
  color: #e8f5ff;
}

.section-dark .eyebrow { color: var(--cyan); }
.section-dark p { color: #d3e6fb; }
.section-dark .panel,
.section-dark .faq-item {
  background: #fff;
  border-color: #d7e4ef;
}

.section-dark .panel h2,
.section-dark .panel h3,
.section-dark .faq-item h3 {
  color: var(--slate);
}

.section-dark .panel p,
.section-dark .panel li,
.section-dark .faq-item p {
  color: #425f79;
}

.section-dark .panel .eyebrow,
.section-dark .faq-item .eyebrow {
  color: var(--cyan-dark);
}

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

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

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

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

.service-card,
.county-card,
.panel,
.post-card {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(11, 30, 47, 0.08);
}

.service-card:hover,
.county-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  transition: transform 180ms ease;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

.page-hero {
  background: linear-gradient(130deg, #0b1a29, #123953);
  color: #ebf7ff;
  padding: 3.2rem 0 2.6rem;
}

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

.page-hero .panel p,
.page-hero .panel li,
.page-hero .panel .muted-small {
  color: #425f79;
}

.page-hero .panel h2,
.page-hero .panel h3,
.page-hero .panel .eyebrow {
  color: var(--slate);
}

.page-hero .panel img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

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

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

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

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

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

.article-hero {
  padding: 2.8rem 0 1.4rem;
  background: linear-gradient(130deg, #0a1826, #10344c);
  color: #e7f5ff;
}

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

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

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

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

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

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

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

.embed-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #cfe0ec;
  background: #fff;
}

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

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

.migrated-content {
  background: #fff;
  border: 1px solid #d5e4ef;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 6px 18px rgba(9, 24, 38, 0.07);
}

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

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

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

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

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

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

.roofle-widget {
  background: #fff;
  border: 1px solid #d5e4ef;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(9, 24, 38, 0.07);
}

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

.reviews-section {
  background: linear-gradient(150deg, rgba(27, 183, 219, 0.16), rgba(56, 236, 20, 0.12));
}

.reviews-widget {
  background: #fff;
  border: 1px solid #d5e4ef;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(9, 24, 38, 0.09);
}

.trust-section {
  background: linear-gradient(145deg, rgba(56, 236, 20, 0.12), rgba(27, 183, 219, 0.14));
}

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

.cta-strip {
  background: linear-gradient(140deg, rgba(56, 236, 20, 0.18), rgba(27, 183, 219, 0.17));
}

.cta-wrap {
  background: #fff;
  border: 1px solid #d4e5f2;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 8px 20px rgba(14, 37, 58, 0.09);
}

.page-copy {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: var(--radius);
  padding: 20px;
}

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

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

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

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

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

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

.finance-badge .label-main {
  font-family: "Roboto Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  color: #0f3a5a;
}

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

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

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

.finance-step {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(9, 24, 38, 0.07);
}

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

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

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

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

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

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

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

.finance-amount {
  font-family: "Roboto Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
  font-size: 2.15rem;
  margin-bottom: 0.55rem;
}

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

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

.qualify-item {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(9, 24, 38, 0.07);
}

.team-hero {
  background: linear-gradient(130deg, #0b1a29, #123953);
  color: #ecf8ff;
  padding: 3.4rem 0 2.7rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.team-card {
  background: #fff;
  border: 1px solid #d5e4ef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 30, 47, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 30, 47, 0.18);
}

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

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

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

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

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

.team-body {
  padding: 14px;
}

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

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

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

.team-financing-section {
  background: linear-gradient(145deg, rgba(56, 236, 20, 0.12), rgba(27, 183, 219, 0.14));
}

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

.conversion-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: start;
}

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

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

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

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

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

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

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

.hardie-guide .split,
.hardie-guide .seo-boost-grid {
  align-items: start;
}

.hardie-guide .panel {
  padding: 1.1rem;
}

.hardie-guide .panel > img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.hardie-guide .post-thumb img {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.hardie-guide .post-card-content h3,
.hardie-guide .faq-item h3 {
  color: #102338;
}

.hardie-guide .post-card-content p,
.hardie-guide .faq-item p,
.hardie-guide .panel p,
.hardie-guide .panel li {
  color: #425f79;
}

.team-profile-hero {
  padding: 2.8rem 0 2.35rem;
}

.team-profile-breadcrumb {
  margin-bottom: 1rem;
  color: #92acc2;
  font-size: 0.92rem;
}

.team-profile-breadcrumb a {
  color: #bfe7ff;
}

.team-profile-breadcrumb span {
  color: #ffffff;
}

.team-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.team-profile-roleline {
  margin-bottom: 0.65rem;
  color: #41ef12;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-profile-lead {
  max-width: 58ch;
  font-size: 1.08rem;
}

.team-profile-copy .chips {
  margin: 1rem 0 1.2rem;
}

.team-profile-copy .chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f3f9ff;
}

.team-profile-card {
  padding: 1rem;
}

.team-profile-image-wrap {
  margin-bottom: 0.95rem;
  overflow: hidden;
  border-radius: 14px;
  background: #08111b;
}

.team-profile-image {
  width: 100%;
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  object-position: center top;
}

.team-profile-card-copy h2 {
  margin-bottom: 0.35rem;
}

.team-profile-contact-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.team-profile-contact-list p {
  margin: 0;
}

.team-profile-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

.team-profile-story-card p + p {
  margin-top: 0.85rem;
}

.team-profile-facts {
  display: grid;
  gap: 0.9rem;
}

.team-profile-fact-row {
  border-top: 1px solid #dbe9f2;
  padding-top: 0.9rem;
}

.team-profile-fact-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.team-profile-fact-label {
  margin-bottom: 0.2rem;
  color: #1b6c93;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-profile-fact-value {
  margin: 0;
  color: #16324a;
  font-weight: 600;
}

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

.team-profile-support-card {
  padding: 16px;
}

.team-profile-support-title {
  margin-bottom: 0.55rem;
  color: #1a6f97;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.profile-qa-card {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(11, 30, 47, 0.08);
}

.profile-qa-question {
  margin-bottom: 0.45rem;
  color: #123d5c;
  font-weight: 700;
}

.seo-boost {
  background: linear-gradient(150deg, rgba(8, 28, 43, 0.04), rgba(27, 183, 219, 0.08));
}

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

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

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

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

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

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

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

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

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

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

.faq-item {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(9, 24, 38, 0.07);
}

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

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

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

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

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

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

.footer-logo { width: 74px; margin-bottom: 10px; }
.footer-brandmark {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin-bottom: 1rem;
}

.site-footer img {
  max-width: 100%;
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .article-hero-grid,
  .county-intro-grid,
  .team-hero-grid,
  .team-profile-grid,
  .team-profile-main-grid,
  .team-narrative-grid,
  .team-financing-grid,
  .conversion-strip-grid {
    grid-template-columns: 1fr;
  }
  .emergency-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-grid,
  .post-grid,
  .faq-grid,
  .team-grid,
  .team-profile-support-grid,
  .profile-qa-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .finance-steps,
  .finance-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .county-grid-wide,
  .seo-link-grid-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-boost-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    right: 0;
    top: 78px;
    width: min(360px, 100vw);
    background: rgba(7, 16, 27, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 12px;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-group {
    width: 100%;
  }
  .main-nav .nav-parent::after {
    content: "";
  }
  .main-nav .sub-nav {
    position: static;
    display: flex;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
  }
  .main-nav .nav-cta,
  .main-nav .phone-link {
    width: 100%;
    justify-content: center;
  }
  .hero {
    min-height: 640px;
    padding-bottom: 3.2rem;
  }
  .hero-bg-image {
    object-position: 56% 48%;
  }
  .emergency-cta {
    margin-top: 0;
    padding-top: 0.8rem;
  }
  .emergency-actions {
    width: 100%;
  }
  .emergency-actions .btn {
    width: 100%;
  }
  .hero-points,
  .stats-grid,
  .team-stats,
  .footer-grid,
  .footer-meta,
  .county-grid,
  .county-grid-wide,
  .service-grid,
  .post-grid,
  .faq-grid,
  .team-grid,
  .team-profile-support-grid,
  .profile-qa-grid,
  .finance-steps,
  .finance-plan-grid,
  .qualify-grid,
  .seo-link-grid-columns {
    grid-template-columns: 1fr;
  }
  .ghl-form-wrap iframe { min-height: 640px; }
  .roofle-widget iframe { min-height: 640px; }
  .map-section iframe { min-height: 420px; }
  .quote-modal-dialog {
    max-height: 95vh;
    padding: 0.8rem;
  }
  .quote-modal-frame iframe {
    min-height: 620px;
  }
  .footer-meta { display: block; }
}

/* Service-area pages: match original black single-row WordPress header. */
.header-meta {
  display: none;
}

body.sa-theme {
  background: #f6f7f9;
  color: #121a24;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

body.sa-theme h1,
body.sa-theme h2,
body.sa-theme h3,
body.sa-theme h4 {
  font-family: "Roboto Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
}

body.sa-theme .site-utility-bar,
body.sa-theme .quick-call-strip {
  display: none !important;
}

body.sa-theme .site-header {
  background: #000000;
  backdrop-filter: none;
  border-bottom: 2px solid #10bde2;
  box-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

body.sa-theme .site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.9);
  border-bottom-color: rgba(16, 189, 226, 0.9);
}

body.sa-theme .nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(2.2rem, 5vw, 5.5rem);
  padding: 28px 0;
}

body.sa-theme .brand {
  flex: 0 0 auto;
}

body.sa-theme .brand-wordmark {
  display: block;
  height: 67px;
  max-width: none;
  min-width: 0;
  width: auto;
}

body.sa-theme .main-nav {
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.35rem, 2vw, 2.8rem);
  justify-content: flex-start;
  min-width: 0;
}

body.sa-theme .main-nav > a,
body.sa-theme .main-nav .nav-parent,
body.sa-theme .main-nav .sub-nav a {
  color: #edf2f4;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 0.94rem + 0.32vw, 1.16rem);
  font-weight: 600;
  letter-spacing: 0;
}

body.sa-theme .main-nav > a,
body.sa-theme .main-nav .nav-parent {
  padding: 0.3rem 0;
  position: relative;
}

body.sa-theme .main-nav > a:hover,
body.sa-theme .main-nav .nav-parent:hover,
body.sa-theme .main-nav .sub-nav a:hover {
  color: #ffffff;
  text-decoration: none;
}

body.sa-theme .main-nav .nav-parent {
  border-bottom: 0;
  padding-right: 0.9rem;
}

body.sa-theme .main-nav .nav-parent::before {
  color: #a8afb6;
  content: "\25be";
  font-size: 0.68rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-48%);
}

body.sa-theme .main-nav > a:not(.phone-link)::after,
body.sa-theme .main-nav .nav-parent::after {
  background: #39eb19;
  bottom: -1rem;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}

body.sa-theme .main-nav > a:not(.phone-link):hover::after,
body.sa-theme .main-nav > a.current-nav-item::after,
body.sa-theme .nav-group:hover .nav-parent::after,
body.sa-theme .nav-group:focus-within .nav-parent::after,
body.sa-theme .nav-group.current-nav-item .nav-parent::after {
  transform: scaleX(1);
}

body.sa-theme .main-nav .sub-nav {
  background: #0a1119;
  border-color: rgba(104, 174, 214, 0.28);
  top: calc(100% + 18px);
  min-width: 290px;
}

body.sa-theme .main-nav .sub-nav a {
  border-color: rgba(104, 174, 214, 0.2);
  font-size: 0.84rem;
}

body.sa-theme .main-nav .phone-link {
  background: #41ef12;
  border: 0;
  border-radius: 10px;
  color: #07160d;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  white-space: nowrap;
}

body.sa-theme .main-nav .phone-link:hover {
  filter: brightness(0.95);
}

body.sa-theme .header-meta {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 1rem;
  margin-left: auto;
  min-width: max-content;
}

body.sa-theme .icon-link {
  color: #b2b2b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

body.sa-theme .icon-link svg {
  display: block;
  fill: currentColor;
  height: 0.98em;
  width: 0.98em;
}

body.sa-theme .icon-link:hover {
  color: #e7ebee;
  text-decoration: none;
}

body.sa-theme .standby-note {
  color: #939393;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  body.sa-theme .standby-note {
    display: none;
  }
}

body.sa-theme .site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #06101a 0%, #020911 100%);
  border-top: 4px solid #10bde2;
  padding: 2.8rem 0 1.2rem;
}

body.sa-theme .site-footer h2 {
  color: #d5e5f4;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  margin-bottom: 1rem;
}

body.sa-theme .footer-grid {
  align-items: start;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 1fr);
}

body.sa-theme .footer-brand {
  max-width: 29rem;
}

body.sa-theme .footer-brandmark {
  width: min(300px, 100%);
}

body.sa-theme .footer-lead {
  color: #d6e2ef;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 30ch;
}

body.sa-theme .footer-meta {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #98abc0;
  margin-top: 1.6rem;
  padding-top: 1rem;
}

body.sa-theme .page-hero {
  background:
    linear-gradient(108deg, rgba(6, 15, 25, 0.9), rgba(11, 37, 56, 0.78)),
    url("/hardie-siding-installation-indianapolis/assets/images/uploads/2024/12/roofing-indianapolis-compress.webp") center 44% / cover no-repeat;
  border-bottom: 4px solid var(--cyan);
  border-radius: 0;
  padding: 2.8rem 0 2.4rem;
}

body.sa-theme .page-hero h1 {
  font-size: clamp(2.05rem, 4.8vw, 4.1rem);
  margin-bottom: 0.75rem;
  max-width: 18.5ch;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.46);
}

body.sa-theme .page-hero p {
  color: #e8f2fb;
  max-width: 64ch;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.44);
}

body.sa-theme .page-hero .btn-ghost {
  background: rgba(7, 14, 24, 0.45);
  border-color: rgba(235, 246, 255, 0.35);
}

body.sa-theme .page-hero .btn-ghost:hover {
  background: rgba(7, 14, 24, 0.78);
}

body.sa-theme .page-hero::before,
body.sa-theme .page-hero::after,
body.sa-theme .section::before,
body.sa-theme .section::after,
body.sa-theme .reviews-section::before,
body.sa-theme .reviews-section::after,
body.sa-theme .trust-section::before,
body.sa-theme .trust-section::after,
body.sa-theme .cta-strip::before,
body.sa-theme .cta-strip::after,
body.sa-theme .conversion-strip::before,
body.sa-theme .conversion-strip::after {
  display: none;
}

body.sa-theme .section {
  background: #f6f7f9;
}

body.sa-theme .panel,
body.sa-theme .post-card,
body.sa-theme .faq-item,
body.sa-theme .service-card,
body.sa-theme .county-card {
  border-color: #d8e2ea;
  box-shadow: 0 10px 28px rgba(8, 24, 38, 0.08);
}

body.sa-theme .panel h2,
body.sa-theme .panel h3,
body.sa-theme .post-card h3,
body.sa-theme .faq-item h3,
body.sa-theme .service-card h3,
body.sa-theme .county-card h3,
body.sa-theme .section-title {
  color: #102233;
}

body.sa-theme .panel p,
body.sa-theme .panel li,
body.sa-theme .post-card-content p,
body.sa-theme .faq-item p,
body.sa-theme .service-card p,
body.sa-theme .county-card p,
body.sa-theme .muted-small {
  color: #415f79;
}

body.sa-theme .hardie-guide .page-hero {
  background: linear-gradient(118deg, #071521 0%, #0b2133 52%, #143951 100%);
  border-bottom-color: #10bde2;
}

body.sa-theme .hardie-guide .page-hero h1 {
  max-width: 14ch;
}

body.sa-theme .hardie-guide .page-hero .panel {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem;
}

body.sa-theme .hardie-guide .page-hero .panel img {
  border-radius: 16px;
}

body.sa-theme .hardie-guide .section {
  padding: 3.7rem 0;
}

body.sa-theme .hardie-guide .seo-boost {
  background: linear-gradient(180deg, #eef4f8 0%, #f6f7f9 100%);
}

body.sa-theme .hardie-guide .section-dark {
  background: linear-gradient(135deg, #081520 8%, #0f3148 100%);
  color: #eaf4fb;
}

body.sa-theme .hardie-guide .section-dark > .container > *:not(.panel) {
  color: inherit;
}

body.sa-theme .hardie-guide .section-dark .eyebrow {
  color: #8ad8ef;
}

body.sa-theme .hardie-guide .section-dark > .container > article > h2,
body.sa-theme .hardie-guide .section-dark > .container > article > p,
body.sa-theme .hardie-guide .section-dark > .container > article > ul,
body.sa-theme .hardie-guide .section-dark > .container > article > li {
  color: inherit;
}

body.sa-theme .hardie-guide .section-dark > .container > article > p,
body.sa-theme .hardie-guide .section-dark > .container > article > li {
  color: #d3e6f6;
}

body.sa-theme .hardie-guide .panel {
  padding: 1.35rem;
}

body.sa-theme .hardie-guide .panel > img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

body.sa-theme .hardie-guide .post-card {
  display: flex;
  flex-direction: column;
}

body.sa-theme .hardie-guide .post-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 19rem;
  padding: 1rem;
  background: linear-gradient(180deg, #f0f5f8 0%, #e7edf2 100%);
  border-bottom: 1px solid #dbe4eb;
}

body.sa-theme .hardie-guide .post-thumb img {
  width: auto;
  max-width: 100%;
  max-height: 18rem;
  height: auto;
}

body.sa-theme .hardie-guide .post-card-content {
  flex: 1 1 auto;
}

body.sa-theme .hardie-guide .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.sa-theme .hardie-guide .faq-item {
  height: 100%;
}

body.sa-theme .hardie-guide .resource-list li,
body.sa-theme .hardie-guide .panel li {
  color: #425f79;
}

body.sa-theme .team-profile-hero {
  background: linear-gradient(180deg, #f7f8fa 0%, #edf2f6 100%);
  border-bottom: 1px solid #dae3eb;
  color: #102233;
  padding: 3.1rem 0 2.65rem;
}

body.sa-theme .team-profile-hero h1 {
  color: #102233;
  margin-bottom: 0.35rem;
  max-width: none;
  text-shadow: none;
}

body.sa-theme .team-profile-hero p {
  color: #486377;
  text-shadow: none;
}

body.sa-theme .team-profile-breadcrumb {
  color: #70879c;
}

body.sa-theme .team-profile-breadcrumb a {
  color: #0e749b;
}

body.sa-theme .team-profile-breadcrumb span {
  color: #102233;
}

body.sa-theme .team-profile-roleline {
  color: #0f7ea9;
}

body.sa-theme .team-profile-copy .chip {
  background: #edf5fb;
  border-color: #d6e5f0;
  color: #204d6d;
}

body.sa-theme .team-profile-hero .btn-dark {
  background: #102233;
  border-color: #102233;
  color: #eef6fb;
}

body.sa-theme .team-profile-hero .btn-ghost {
  background: #ffffff;
  border-color: #d1dfe8;
  color: #154c6d;
}

body.sa-theme .team-profile-hero .btn-ghost:hover {
  background: #f4f8fb;
}

body.sa-theme .team-profile-card {
  box-shadow: 0 18px 40px rgba(8, 24, 38, 0.1);
}

body.sa-theme .team-profile-image-wrap {
  background: #0c1116;
}

body.sa-theme .team-profile-card-copy h2,
body.sa-theme .team-profile-fact-value,
body.sa-theme .profile-qa-question {
  color: #102233;
}

body.sa-theme .team-profile-fact-label,
body.sa-theme .team-profile-support-title {
  color: #0f7ea9;
}

body.sa-theme .team-profile-story-card,
body.sa-theme .team-profile-facts-card,
body.sa-theme .team-profile-support-card,
body.sa-theme .profile-qa-card {
  background: #ffffff;
}

body.sa-theme .conversion-strip {
  background: linear-gradient(180deg, #edf3f7 0%, #f7f8fa 100%);
}

body.sa-theme .conversion-strip .panel {
  background: #ffffff;
}

/* Performance-friendly: no reveal transitions on service-area pages. */
body.sa-theme .reveal,
html.js body.sa-theme .reveal,
html.js body.sa-theme .reveal.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 760px) {
  body.sa-theme .nav-wrap {
    min-height: 78px;
    grid-template-columns: auto auto;
    column-gap: 1rem;
    padding: 0;
  }

  body.sa-theme .brand-wordmark {
    width: 168px;
    height: auto;
    min-width: 0;
  }

  body.sa-theme .main-nav {
    top: 78px;
  }

  body.sa-theme .header-meta {
    display: none;
  }

  body.sa-theme .main-nav .phone-link {
    width: 100%;
    justify-content: center;
  }

  body.sa-theme .page-hero {
    background-position: 58% 42%;
    padding: 2rem 0 1.8rem;
  }

  body.sa-theme .hardie-guide .post-thumb {
    min-height: 15rem;
  }

  body.sa-theme .hardie-guide .post-thumb img {
    max-height: 14rem;
  }

  body.sa-theme .hardie-guide .faq-grid,
  .conversion-strip-grid {
    grid-template-columns: 1fr;
  }
}
