@font-face {
  font-family: "Open Sans Condensed";
  src: url("/assets/fonts/OpenSansCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Condensed";
  src: url("/assets/fonts/OpenSansCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --a-c-red: #c8102e;
  --a-c-red-hover: #ff1717;
  --a-c-navy: #1f2a44;
  --a-c-navy-deep: #172137;
  --a-c-baby-blue: #b9d9eb;
  --body-text: #101010;
  --muted: #5e6877;
  --surface: #ffffff;
  --light-panel: #f4f6f9;
  --font-heading: "Open Sans Condensed", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--body-text);
  background: var(--surface);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

p {
  margin: 0 0 1.25em;
  font-size: 1.125rem;
  line-height: 1.85;
}

h1,
h2,
h3,
h4,
.fl-heading-text {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

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

.captured-surface {
  min-height: 100vh;
  overflow: hidden;
}

.fl-page {
  background: white;
}

.fl-row-fixed-width,
.fl-row-content,
.wrap {
  width: min(100% - 100px, 1820px);
  margin: 0 auto;
}

.primary-header {
  position: relative;
  z-index: 100;
  background: var(--a-c-navy);
}

.header-utility {
  width: min(100% - 96px, 1820px);
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(185, 217, 235, 0.18);
  font-size: 0.94rem;
  line-height: 1.2;
}

.header-utility span {
  color: var(--a-c-baby-blue);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-utility a {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.header-utility a:hover {
  color: var(--a-c-baby-blue);
}

.header-inner {
  min-height: 115px;
  width: min(100% - 96px, 1820px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 410px;
  color: #fff;
}

.brand-seal {
  width: 78px;
  height: 78px;
  border: 4px solid var(--a-c-red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--a-c-red);
  background: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 26px;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 6px rgba(200, 16, 46, 0.28);
}

.brand-script {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex: 1;
}

.menu-item {
  position: relative;
  list-style: none;
}

.menu-link,
.menu-button,
.nav-button,
.fl-button,
.button {
  font-family: var(--font-heading);
  font-weight: 700;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
}

.menu-link:hover,
.menu-item:focus-within > .menu-link,
.menu-item:hover > .menu-link {
  color: var(--a-c-baby-blue);
}

.menu-link.has-sub::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -5px;
  opacity: 0.75;
}

.sub-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 30px);
  min-width: 280px;
  padding: 18px 0;
  margin: 0;
  list-style: none;
  background: white;
  box-shadow: 0 18px 45px rgba(10, 18, 34, 0.24);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.sub-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item:hover .sub-menu,
.menu-item:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu a {
  display: block;
  padding: 11px 24px;
  color: var(--a-c-navy);
  font-size: 0.98rem;
  line-height: 1.35;
}

.sub-menu a:hover {
  color: var(--a-c-red);
  background: #f4f6f9;
}

.nav-button,
.fl-button,
.button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 20px 35px;
  border: 0;
  border-radius: 50px;
  color: #fff;
  background: var(--a-c-red);
  text-align: center;
  text-transform: uppercase;
  font-size: 1.3125rem;
  line-height: 1.15;
  cursor: pointer;
}

.nav-button:hover,
.fl-button:hover,
.button:hover,
.form-submit:hover {
  color: #fff;
  background: var(--a-c-red-hover);
}

.mobile-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 31px;
  height: 4px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle span {
  position: relative;
  margin: 0 auto;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  top: -10px;
}

.mobile-toggle span::after {
  top: 10px;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 430px);
  padding: 34px;
  background: var(--a-c-navy);
  color: white;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  z-index: 150;
  box-shadow: -20px 0 45px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-close {
  float: right;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu a {
  display: block;
  clear: both;
  padding: 15px 0;
  border-bottom: 1px solid rgba(185, 217, 235, 0.18);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
}

.mobile-menu .mobile-sub a {
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 820px;
  color: white;
  background-color: var(--a-c-navy);
  background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.96) 0%, rgba(31, 42, 68, 0.74) 43%, rgba(31, 42, 68, 0.36) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero.compact {
  min-height: 395px;
  background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.93) 0%, rgba(31, 42, 68, 0.62) 100%), var(--hero-image);
}

.hero.services-hero {
  min-height: 510px;
  align-items: flex-end;
  padding-bottom: 86px;
}

.hero-content {
  width: min(100% - 100px, 1760px);
  margin: 0 auto;
}

.hero h1 {
  max-width: 1080px;
  color: white;
  font-size: 5.75rem;
  text-transform: uppercase;
}

.hero.compact h1 {
  font-size: 4rem;
  text-transform: uppercase;
}

.hero p {
  max-width: 850px;
  margin-top: 34px;
  color: white;
  font-size: 1.25rem;
  line-height: 1.8;
}

.hero .fl-button {
  margin-top: 28px;
}

.section {
  padding: 84px 0;
}

.navy-section {
  background: var(--a-c-navy);
  color: white;
}

.white-section {
  background: white;
  color: var(--body-text);
}

.light-section {
  background: var(--light-panel);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
  color: inherit;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.section-heading::after {
  content: "";
  width: 100px;
  height: 1px;
  background: var(--a-c-baby-blue);
}

.home-card-stack {
  display: grid;
  gap: 38px;
}

.service-band {
  position: relative;
  min-height: 415px;
  display: flex;
  align-items: center;
  padding: 74px 64px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.96) 0%, rgba(31, 42, 68, 0.75) 53%, rgba(31, 42, 68, 0.26) 100%), var(--card-image);
  background-position: center;
  background-size: cover;
}

.service-band:nth-child(even) {
  background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.96) 0%, rgba(31, 42, 68, 0.76) 48%, rgba(31, 42, 68, 0.14) 100%), var(--card-image);
}

.service-band:hover {
  transform: translateY(-4px);
}

.service-band-content {
  width: min(100%, 760px);
}

.service-band h3 {
  color: white;
  font-size: 2.75rem;
  text-transform: uppercase;
}

.service-band p {
  color: white;
  max-width: 760px;
  margin-top: 22px;
}

.service-band .fl-button {
  margin-top: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.split-section h2 {
  margin-bottom: 28px;
  font-size: 3.5rem;
  color: var(--a-c-navy);
}

.split-section p {
  color: #263247;
}

.image-shadow {
  position: relative;
  isolation: isolate;
}

.image-shadow::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--a-c-baby-blue);
  z-index: -1;
}

.image-shadow img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

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

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

.tile-card,
.taxonomy-card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  background: var(--a-c-navy);
  color: white;
  display: flex;
  align-items: flex-end;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.taxonomy-card {
  min-height: 310px;
}

.tile-card:hover,
.taxonomy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(8, 16, 32, 0.22);
}

.tile-card::before,
.taxonomy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  opacity: 0.62;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tile-card:hover::before,
.taxonomy-card:hover::before {
  transform: scale(1.04);
  opacity: 0.72;
}

.tile-card::after,
.taxonomy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 68, 0.06) 0%, rgba(31, 42, 68, 0.92) 80%);
}

.tile-content,
.taxonomy-content {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.tile-content h3,
.taxonomy-content h3 {
  color: white;
  font-size: 2.1rem;
  line-height: 1.04;
  text-transform: uppercase;
}

.taxonomy-content h3 {
  font-size: 1.72rem;
}

.tile-content p,
.taxonomy-content p {
  margin: 15px 0 0;
  color: white;
  font-size: 1rem;
  line-height: 1.65;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.decision-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  background: var(--a-c-navy-deep);
}

.decision-media {
  min-height: 520px;
  background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.1), rgba(31, 42, 68, 0.45)), var(--card-image);
  background-position: center;
  background-size: cover;
}

.decision-copy {
  padding: 72px 68px;
  color: white;
}

.decision-copy h2 {
  font-size: 3.4rem;
  text-transform: uppercase;
}

.decision-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.decision-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(185, 217, 235, 0.32);
}

.decision-list h3 {
  color: white;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.decision-list p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.cta-band {
  min-height: 430px;
  display: flex;
  align-items: center;
  color: white;
  background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.95) 0%, rgba(31, 42, 68, 0.62) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.cta-band h2 {
  font-size: 4rem;
  text-transform: uppercase;
}

.index-intro {
  max-width: 1040px;
  margin-bottom: 46px;
}

.index-intro h2 {
  color: inherit;
  font-size: 3.25rem;
  text-transform: uppercase;
}

.index-intro p {
  margin-top: 18px;
  color: inherit;
}

.navy-section .index-intro p {
  color: rgba(255, 255, 255, 0.84);
}

.white-section .index-intro h2 {
  color: var(--a-c-navy);
}

.white-section .index-intro p {
  color: #263247;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 365px;
  gap: 72px;
  align-items: start;
}

.detail-copy {
  max-width: 960px;
}

.detail-copy h2 {
  margin: 2.1rem 0 1rem;
  color: var(--a-c-navy);
  font-size: 3rem;
}

.detail-copy p {
  color: #263247;
}

.detail-copy a {
  color: var(--a-c-red);
  font-weight: 700;
}

.detail-copy .tile-card,
.detail-copy .tile-card *,
.detail-copy .tile-card:hover {
  color: #fff;
}

.detail-copy ul {
  margin: 24px 0 32px;
  padding-left: 22px;
}

.detail-copy li {
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.side-panel {
  position: sticky;
  top: 28px;
  padding: 34px;
  color: white;
  background: var(--a-c-navy);
}

.side-panel h2 {
  font-size: 2.35rem;
  color: white;
  text-transform: uppercase;
}

.side-panel p,
.side-panel li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
}

.side-panel ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.side-panel li {
  padding: 14px 0;
  border-top: 1px solid rgba(185, 217, 235, 0.24);
}

.faq-list {
  margin-top: 54px;
  border-top: 1px solid #d9dce4;
}

.faq-item {
  border-bottom: 1px solid #d9dce4;
}

.faq-q {
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--a-c-red);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 0 24px;
}

.faq-item.is-open .faq-a {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 86px;
  align-items: start;
}

.contact-card h2,
.location-card h3 {
  color: var(--a-c-navy);
  font-size: 2.15rem;
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: #fff;
  background: var(--a-c-red);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card p {
  color: #263247;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-lines {
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.contact-lines li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.contact-lines .icon {
  color: var(--a-c-red);
  font-size: 1.55rem;
}

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

.roof-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border: 1px solid rgba(31, 42, 68, 0.14);
  box-shadow: 0 24px 60px rgba(10, 18, 34, 0.12);
}

.roof-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--a-c-red), var(--a-c-baby-blue));
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--a-c-navy);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 42, 68, 0.25);
  border-radius: 0;
  background: #f8fafc;
  color: var(--body-text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(185, 217, 235, 0.65);
  border-color: var(--a-c-red);
  background: #fff;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 6px;
}

.form-status {
  margin: 0;
  color: var(--a-c-navy);
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 68px;
}

.map-panel {
  min-height: 430px;
  background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.16), rgba(31, 42, 68, 0.05)), var(--card-image);
  background-position: center;
  background-size: cover;
  border-left: 10px solid var(--a-c-baby-blue);
}

.footer-map,
.contact-map {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.footer-map {
  margin-top: 22px;
  height: 185px;
  border: 1px solid rgba(185, 217, 235, 0.22);
}

.contact-map {
  min-height: 430px;
  border-left: 10px solid var(--a-c-baby-blue);
}

.footer-map iframe,
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(1.03);
}

.primary-footer {
  padding: 72px 0 58px;
  background: var(--a-c-navy);
  color: white;
}

.footer-grid {
  width: min(100% - 100px, 1820px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.05fr;
  gap: 42px;
  align-items: start;
}

.footer-brand .brand-lockup {
  min-width: 0;
  margin-bottom: 24px;
}

.footer-brand .brand-seal {
  width: 64px;
  height: 64px;
  font-size: 1.55rem;
  margin-right: 18px;
}

.footer-brand .brand-script {
  font-size: 1.75rem;
  white-space: normal;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-col h4 {
  margin-bottom: 18px;
  color: white;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.footer-col a:hover {
  color: var(--a-c-baby-blue);
}

.secondary-footer {
  padding: 18px 0;
  background: #172036;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.secondary-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mobile-bottom-bar {
  display: none;
}

.fade-up,
.fade-left,
.fade-right,
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-left {
  transform: translateX(-18px);
}

.fade-right {
  transform: translateX(18px);
}

.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1180px) {
  .desktop-nav,
  .nav-button.header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    min-height: 94px;
  }

  .header-utility {
    width: min(100% - 48px, 1180px);
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 10px 0;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-script {
    white-space: normal;
  }

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

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

@media (max-width: 820px) {
  .fl-row-fixed-width,
  .fl-row-content,
  .wrap,
  .hero-content,
  .footer-grid,
  .header-inner {
    width: min(calc(100vw - 32px), 740px);
  }

  .header-inner {
    gap: 12px;
  }

  .header-utility {
    width: min(calc(100vw - 32px), 740px);
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .header-utility span {
    width: 100%;
    text-align: center;
    font-size: 0.94rem;
  }

  .brand-seal {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
    margin-right: 14px;
  }

  .brand-script {
    max-width: 230px;
    font-size: 1.55rem;
  }

  .hero {
    min-height: 720px;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(31, 42, 68, 0.95) 0%, rgba(31, 42, 68, 0.8) 100%), var(--hero-image);
  }

  .hero.compact,
  .hero.services-hero {
    min-height: 360px;
    padding-bottom: 0;
    align-items: center;
  }

  .hero h1 {
    max-width: 300px;
    margin-inline: auto;
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .hero.compact h1 {
    font-size: 1.95rem;
  }

  .hero p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .service-band {
    min-height: 480px;
    padding: 42px 28px;
    align-items: flex-end;
  }

  .service-band h3 {
    font-size: 1.55rem;
    overflow-wrap: break-word;
  }

  .service-band-content {
    max-width: 100%;
  }

  .service-band p {
    max-width: 280px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .split-section,
  .decision-panel,
  .detail-shell,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 42px;
  }

  .split-section h2,
  .index-intro h2,
  .decision-copy h2,
  .cta-band h2 {
    font-size: 2.6rem;
  }

  .image-shadow::before {
    inset: 12px -12px -12px 12px;
  }

  .tile-grid,
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }

  .decision-media {
    min-height: 330px;
  }

  .decision-copy {
    padding: 44px 28px;
  }

  .side-panel {
    position: static;
  }

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

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

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit {
    width: 100%;
  }

  .contact-map {
    min-height: 320px;
  }

  .secondary-footer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-bottom-bar {
    position: sticky;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-bottom-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: white;
    background: var(--a-c-red);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-bottom-bar a:first-child {
    background: var(--a-c-navy);
  }
}

/* ---- deep-page template (site-header / content-shell) — services, roof-systems, locations detail routes ----
   Generated interior template; reuses existing .detail-copy / .side-panel / .faq-item rules above.
   Scoped to template-only classes so homepage (.primary-header / fl-builder) styles stay untouched. */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--a-c-navy);
  color: #fff;
}

.site-header .header-inner {
  width: min(100% - 48px, 1320px);
  min-height: 92px;
  gap: 30px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  height: 54px;
  width: auto;
}

.site-header .desktop-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .desktop-nav a:hover {
  color: var(--a-c-red-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
}

.phone-link {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--a-c-red-hover);
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 50px;
  background: var(--a-c-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease;
  white-space: nowrap;
}

.quote-button:hover {
  background: var(--a-c-red-hover);
}

/* homepage nav CTA variant — inherits .nav-button pill, just prevent wrapping */
.header-cta {
  white-space: nowrap;
}

.site-header .menu-button {
  display: none;
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}

/* mobile drawer: hidden until .is-open is toggled by the page script */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--a-c-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 24px 18px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 13px 0;
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

/* interior hero band */
.interior-hero {
  background: linear-gradient(135deg, var(--a-c-navy) 0%, var(--a-c-navy-deep) 100%);
  color: #fff;
  padding: clamp(46px, 6vw, 88px) 0;
}

.interior-hero .wrap {
  width: min(100% - 48px, 1320px);
}

.interior-hero p {
  color: var(--a-c-red-hover);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.interior-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

/* content shell: article + sticky side panel */
.content-shell {
  background: #fff;
  padding: clamp(40px, 5vw, 72px) 0;
}

.content-shell .wrap {
  width: min(100% - 48px, 1320px);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.article-body p,
.content-shell .detail-copy p {
  margin: 0 0 1.1rem;
}

.article-body h2 {
  color: var(--a-c-navy);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 2.1rem 0 1rem;
}

.article-body a {
  color: var(--a-c-red);
  font-weight: 700;
}

/* dl Q&A inside article copy */
.article-body dl,
.content-shell .detail-copy dl {
  background: #f4f6f9;
  border-left: 4px solid var(--a-c-red);
  margin: 34px 0 0;
  padding: 24px 26px;
}

.article-body dt,
.content-shell .detail-copy dt {
  color: var(--a-c-navy);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 18px 0 8px;
}

.article-body dt:first-child,
.content-shell .detail-copy dt:first-child {
  margin-top: 0;
}

.article-body dd,
.content-shell .detail-copy dd {
  margin: 0 0 12px;
}

/* details/summary FAQ variant */
.faq {
  background: #f4f6f9;
  border-left: 4px solid var(--a-c-red);
  margin: 38px 0 0;
  padding: 26px 28px 18px;
}

.faq h2 {
  color: var(--a-c-navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0 0 12px;
}

.faq details {
  border-bottom: 1px solid #d9dce4;
  padding: 13px 0;
}

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  color: var(--a-c-red);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.faq summary:hover {
  color: var(--a-c-red-hover);
}

.faq details p {
  margin: 10px 0 4px;
}

/* button-based FAQ block (script toggles .is-open on .faq-item) */
.faq-block {
  margin-top: 44px;
  border-top: 1px solid #d9dce4;
}

.faq-block h2 {
  color: var(--a-c-navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 26px 0 6px;
}

.faq-block .faq-q {
  font-size: 1.2rem;
}

.faq-block .faq-item > p {
  display: none;
  margin: 0;
  padding: 0 0 22px;
}

.faq-block .faq-item.is-open > p {
  display: block;
}

/* side panel CTA button */
.red-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--a-c-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.red-button:hover {
  background: var(--a-c-red-hover);
}

/* full-width red CTA band */
.red-cta {
  background: var(--a-c-red);
  color: #fff;
  padding: clamp(44px, 6vw, 78px) 0;
  text-align: center;
}

.red-cta .wrap {
  width: min(100% - 48px, 1320px);
}

.red-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.red-cta p {
  font-size: 1.25rem;
  margin: 0 0 26px;
  opacity: 0.95;
}

.white-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 38px;
  border-radius: 50px;
  background: #fff;
  color: var(--a-c-red);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.white-button:hover {
  background: var(--a-c-navy);
  color: #fff;
}

/* footer */
.site-footer {
  background: var(--a-c-navy);
  color: rgba(255, 255, 255, 0.88);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 64px);
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) 0 30px;
}

.site-footer .site-logo img {
  height: 60px;
  margin-bottom: 18px;
}

.site-footer .footer-col h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-footer .footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  padding: 4px 0;
  text-decoration: none;
}

.site-footer .footer-col a:hover {
  color: var(--a-c-red-hover);
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--a-c-red-hover);
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  margin-left: 14px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* internal-links block (deep pages only, rendered after footer) */
.internal-links {
  background: #f4f6f9;
  border-top: 4px solid var(--a-c-red);
  padding: clamp(34px, 4vw, 56px) 0;
}

.internal-links h2 {
  color: var(--a-c-navy);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0 auto 18px;
  width: min(100% - 48px, 1320px);
}

.internal-links ul {
  display: grid;
  gap: 8px 30px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(100% - 48px, 1320px);
}

.internal-links a {
  color: var(--a-c-navy);
  font-weight: 700;
  text-decoration: none;
}

.internal-links a:hover {
  color: var(--a-c-red);
  text-decoration: underline;
}

/* responsive collapse */
@media (max-width: 1180px) {
  .site-header .desktop-nav {
    display: none;
  }

  .site-header .menu-button {
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .two-col,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .site-header .phone-link {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* brand-logo-css */.brand-logo{height:34px;width:auto;display:block;max-width:300px}.brand-lockup{display:inline-flex;align-items:center}
