@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800%7CManrope:500,600,700&display=swap");

:root {
  --navy: #002f43;
  --navy-deep: #002b3e;
  --orange: #f15324;
  --gray-blue: #91a7b5;
  --ink: #042f43;
  --muted: #4d5b64;
  --line: #d9e2e7;
  --paper: #f3f7f8;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.56;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

a:hover {
  color: var(--orange);
}

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

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

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  padding: 12px 18px;
}

.skip-link:focus {
  top: 20px;
}

.wrap {
  width: min(1210px, calc(100vw - 70px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--navy);
  color: var(--white);
}

.home-header {
  height: 345px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .28);
}

.inner-header {
  height: 120px;
}

.header-wordmark {
  position: absolute;
  display: grid;
  line-height: .78;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
}

.home-header .header-wordmark {
  left: 34px;
  top: 116px;
}

.inner-header .header-wordmark {
  left: 36px;
  top: 38px;
}

.wordmark-main {
  display: block;
  font-size: 70px;
  line-height: .82;
  font-weight: 800;
}

.wordmark-sub {
  display: block;
  margin-top: 7px;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}

.inner-header .wordmark-main {
  font-size: 51px;
}

.inner-header .wordmark-sub {
  margin-top: 6px;
  font-size: 14px;
}

.desktop-nav {
  position: absolute;
  top: 31px;
  right: 34px;
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a:not(.contact-block):not(.header-phone) {
  color: var(--white);
  line-height: 58px;
}

.desktop-nav a.is-active,
.desktop-nav a:hover {
  color: var(--orange);
}

.chev {
  color: var(--orange);
  margin-left: 5px;
}

.search-link {
  width: 30px;
  height: 58px;
  position: relative;
  flex: 0 0 30px;
}

.search-link::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-link::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 37px;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.contact-block {
  width: 138px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.contact-block:hover {
  background: #d94218;
  color: var(--white);
}

.header-phone {
  min-width: 150px;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  color: var(--white);
  line-height: 1.1;
  text-align: center;
}

.header-phone span {
  display: block;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 1.5px;
}

.mobile-toggle {
  display: none;
}

.mobile-panel {
  display: none;
}

.home-hero {
  min-height: 745px;
  position: relative;
  background-image: linear-gradient(90deg, rgba(0, 47, 67, .84), rgba(0, 47, 67, .55)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.home-hero::after {
  content: "ROOFING";
  position: absolute;
  right: 28px;
  bottom: 8px;
  color: rgba(255, 255, 255, .12);
  font-size: 78px;
  line-height: 1;
  font-weight: 800;
}

.home-hero-copy {
  position: absolute;
  left: 85px;
  bottom: 78px;
  width: 455px;
}

.home-hero h1 {
  margin: 0 0 13px;
  font-size: 37px;
  line-height: 1.25;
  font-weight: 800;
}

.home-hero p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.28;
  color: rgba(255, 255, 255, .96);
}

.btn-arrow {
  display: inline-grid;
  grid-template-columns: auto 57px;
  min-width: 255px;
  min-height: 61px;
  border: 1px solid var(--orange);
  color: var(--white);
  background: transparent;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
}

.btn-arrow span {
  display: grid;
  place-items: center;
  padding: 0 22px;
}

.btn-arrow i {
  display: grid;
  place-items: center;
  align-items: center;
  justify-items: center;
  border-left: 1px solid var(--orange);
  font-style: normal;
  font-size: 31px;
  line-height: 1;
}

.btn-arrow:hover {
  background: var(--orange);
  color: var(--white);
}

.intro-panel {
  background: var(--white);
  padding: 92px 0 82px;
  text-align: center;
}

.intro-panel h2 {
  width: min(760px, 100%);
  margin: 0 auto 24px;
  font-size: 42px;
  line-height: 1.14;
  font-weight: 700;
  color: #32383d;
}

.intro-panel h2 strong,
.orange-text {
  color: var(--orange);
  font-weight: inherit;
}

.intro-panel p {
  width: min(820px, 100%);
  margin: 0 auto;
  font-size: 19px;
  color: var(--muted);
}

.dark-feature {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 100px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 56px;
  align-items: center;
}

.feature-grid h2 {
  margin: 0 0 19px;
  font-size: 52px;
  line-height: 1.05;
}

.feature-grid p {
  margin: 0 0 30px;
  font-size: 18px;
  color: rgba(255, 255, 255, .78);
}

.roof-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.roof-card {
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}

.roof-card img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  filter: saturate(.92);
}

.roof-card-body {
  padding: 24px 22px 28px;
}

.roof-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.16;
}

.roof-card p {
  margin: 0;
  font-size: 15px;
  color: #4a5961;
}

.market-section {
  padding: 88px 0 96px;
  background: var(--white);
}

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

.section-head h2 {
  margin: 0;
  font-size: 45px;
  line-height: 1.08;
}

.section-head p {
  margin: 0;
  width: min(470px, 100%);
  color: var(--muted);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.market-card {
  min-height: 185px;
  padding: 26px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background-color 200ms ease, color 200ms ease;
}

.market-card:hover {
  background: var(--navy);
  color: var(--white);
}

.market-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.16;
}

.market-card p {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

.evidence-band {
  background: var(--gray-blue);
  color: var(--white);
  padding: 96px 0;
}

.evidence-band h2 {
  width: min(950px, 100%);
  margin: 0 auto 25px;
  text-align: center;
  font-size: 45px;
  line-height: 1.12;
}

.evidence-band p {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
}

.value-tabs {
  padding: 92px 0;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.tab-buttons button,
.tab-buttons a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 18px 26px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.tab-buttons button.is-active,
.tab-buttons a.is-active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.link-tabs a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.tab-panel {
  display: none;
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h3 {
  margin: 0 0 14px;
  font-size: 34px;
}

.tab-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.notes-section {
  padding: 86px 0 95px;
  background: var(--paper);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.note-card {
  background: var(--white);
  padding: 32px;
  border-top: 4px solid var(--orange);
}

.note-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.18;
}

.note-card p {
  margin: 0;
  color: var(--muted);
}

.inner-hero {
  min-height: 760px;
  background: var(--gray-blue);
  position: relative;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
}

.inner-card {
  width: min(604px, calc(100vw - 48px));
  min-height: 438px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 46px 54px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.inner-card h1 {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.12;
}

.about-hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 47, 67, .9), rgba(0, 47, 67, .42)), var(--about-image);
  background-size: cover;
  background-position: center;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 570px) 330px;
  gap: 80px;
  align-items: end;
}

.about-hero-copy h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.04;
}

.about-hero-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
}

.about-hero-panel {
  padding: 28px;
  background: rgba(0, 47, 67, .88);
  border-left: 4px solid var(--orange);
}

.about-hero-panel strong,
.about-hero-panel span {
  display: block;
}

.about-hero-panel strong {
  margin-bottom: 8px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 14px;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.about-proof-grid a,
.about-focus-grid a {
  display: block;
  padding: 26px;
  background: var(--paper);
  border-top: 3px solid var(--orange);
}

.about-proof-grid strong,
.about-proof-grid span {
  display: block;
}

.about-proof-grid strong,
.about-focus-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.about-proof-grid span,
.about-focus-grid p {
  margin: 0;
  color: var(--muted);
}

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

.white-story {
  padding: 92px 0;
  background: var(--white);
}

.story-lede {
  width: min(780px, 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.story-lede h2 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}

.story-lede p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
  align-items: start;
}

.two-col h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.two-col p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-hero {
  background: var(--navy);
  color: var(--white);
  min-height: 925px;
  position: relative;
  overflow: hidden;
}

.service-collage {
  position: absolute;
  inset: 0;
}

.service-collage img {
  position: absolute;
  object-fit: cover;
  opacity: .58;
  filter: brightness(.68) saturate(.85);
}

.tile-a {
  width: 515px;
  height: 430px;
  left: 370px;
  top: 177px;
}

.tile-b {
  width: 390px;
  height: 500px;
  right: -4px;
  top: 120px;
}

.tile-c {
  width: 396px;
  height: 410px;
  left: -205px;
  bottom: 20px;
}

.tile-d {
  width: 398px;
  height: 355px;
  left: 760px;
  bottom: 0;
}

.service-hero h1 {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100vw - 128px));
  margin: 0 auto;
  padding-top: 260px;
  font-size: 86px;
  line-height: 1.12;
  font-weight: 400;
}

.service-body {
  background: var(--white);
  padding: 82px 0 96px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 58px;
  align-items: start;
}

.article h2 {
  margin: 0 0 21px;
  font-size: 42px;
  line-height: 1.12;
}

.article h3 {
  margin: 36px 0 12px;
  font-size: 27px;
  line-height: 1.18;
}

.article p {
  margin: 0 0 20px;
  color: #273d49;
  font-size: 18px;
}

.side-panel {
  position: sticky;
  top: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 31px;
}

.side-panel h3 {
  margin: 0 0 17px;
  font-size: 23px;
}

.side-panel a,
.side-panel p {
  display: block;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, .82);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.side-panel a:hover {
  color: var(--orange);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.related-card {
  min-height: 162px;
  background: var(--paper);
  padding: 24px;
  border-top: 3px solid var(--orange);
}

.related-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.2;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.index-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

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

.index-card div {
  padding: 23px;
}

.index-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.index-card p {
  margin: 0;
  color: var(--muted);
}

.contact-page {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 47.2% 1fr;
  background: var(--white);
}

.contact-photo {
  min-height: 920px;
  background-image: var(--contact-image);
  background-size: cover;
  background-position: center;
}

.contact-copy {
  padding: 98px 12vw 76px 64px;
}

.contact-copy h1 {
  margin: 0 0 22px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 600;
}

.contact-copy p {
  font-size: 19px;
  color: var(--ink);
}

.contact-details {
  margin: 28px 0 32px;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form-title {
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 10px;
  margin-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

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

.form-grid label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  min-height: 41px;
  border: 0;
  border-bottom: 1px solid #98a1a7;
  border-radius: 0;
  padding: 8px 0;
  outline: none;
  background: #fff;
  color: var(--ink);
}

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

.form-grid textarea {
  min-height: 93px;
  resize: vertical;
}

.article .faq {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article .faq h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.article .faq details {
  margin: 0 0 12px;
  padding: 18px 20px;
  background: var(--paper);
  border-left: 4px solid var(--orange);
}

.article .faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.article .faq details p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 16px;
}

.submit-btn {
  width: max-content;
  border: 0;
  background: var(--orange);
  color: var(--white);
  padding: 17px 29px;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  padding: 64px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr 1fr;
  gap: 62px;
}

.footer-wordmark .wordmark-main {
  font-size: 45px;
}

.footer-wordmark .wordmark-sub {
  font-size: 15px;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 16px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, .78);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding: 20px 0;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
    font-size: 13px;
  }

  .wordmark-main {
    font-size: 58px;
  }

  .wordmark-sub {
    font-size: 21px;
  }

  .service-hero h1 {
    font-size: 70px;
  }

  .market-grid,
  .roof-card-grid,
  .index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .wrap {
    width: calc(100vw - 30px);
  }

  .home-header,
  .inner-header {
    height: 119px;
  }

  .home-header .header-wordmark,
  .inner-header .header-wordmark {
    left: 10px;
    top: 29px;
  }

  .wordmark-main,
  .inner-header .wordmark-main {
    font-size: 43px;
  }

  .wordmark-sub,
  .inner-header .wordmark-sub {
    margin-top: 5px;
    font-size: 13px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    position: absolute;
    right: 11px;
    top: 41px;
    width: 56px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 4px;
    background: rgba(0, 0, 0, .12);
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .mobile-toggle span,
  .mobile-toggle::before,
  .mobile-toggle::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
  }

  .mobile-toggle {
    gap: 6px;
  }

  .mobile-panel {
    position: fixed;
    inset: 119px 0 auto 0;
    z-index: 40;
    display: grid;
    transform: translateY(calc(-100% - 119px));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 250ms ease, opacity 180ms ease, visibility 180ms ease;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .menu-open .mobile-panel {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel a {
    padding: 18px 24px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    text-transform: uppercase;
    font-weight: 800;
  }

  .home-hero {
    min-height: 572px;
    background-position: center;
  }

  .home-hero-copy {
    left: 15px;
    right: 15px;
    bottom: 136px;
    width: auto;
  }

  .home-hero h1 {
    font-size: 36px;
    line-height: 1.32;
  }

  .home-hero p {
    font-size: 22px;
    line-height: 1.34;
  }

  .btn-arrow {
    min-width: 255px;
  }

  .intro-panel {
    padding: 92px 0 72px;
  }

  .intro-panel h2 {
    font-size: 37px;
  }

  .feature-grid,
  .two-col,
  .detail-layout,
  .contact-page,
  .footer-grid,
  .about-hero-grid,
  .about-proof-grid,
  .about-focus-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 620px;
    padding: 76px 0;
  }

  .about-hero-copy h1 {
    font-size: 42px;
  }

  .feature-grid h2 {
    font-size: 39px;
  }

  .roof-card-grid,
  .market-grid,
  .note-grid,
  .related-grid,
  .index-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .evidence-band h2,
  .article h2 {
    font-size: 36px;
  }

  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 650px;
    padding-top: 70px;
  }

  .inner-card {
    min-height: 388px;
    padding: 36px 28px;
  }

  .inner-card h1 {
    font-size: 38px;
  }

  .service-hero {
    min-height: 582px;
  }

  .tile-a {
    width: 323px;
    height: 329px;
    left: 0;
    top: 138px;
  }

  .tile-b {
    width: 165px;
    height: 265px;
    right: -88px;
    top: 560px;
  }

  .tile-c {
    display: none;
  }

  .tile-d {
    width: 166px;
    height: 145px;
    left: 224px;
    bottom: 0;
  }

  .service-hero h1 {
    width: calc(100vw - 30px);
    padding-top: 214px;
    font-size: 55px;
    line-height: 1.02;
  }

  .service-body {
    padding: 54px 0 72px;
  }

  .side-panel {
    position: relative;
    top: auto;
  }

  .contact-photo {
    min-height: 360px;
  }

  .contact-copy {
    padding: 54px 24px 70px;
  }

  .contact-copy h1 {
    font-size: 43px;
  }

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

  .legal-row {
    display: grid;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .wordmark-main,
  .inner-header .wordmark-main {
    font-size: 41px;
  }

  .wordmark-sub,
  .inner-header .wordmark-sub {
    font-size: 12px;
  }

  .service-hero h1 {
    font-size: 54px;
  }
}

/* ---- deep-page template (site-shell) — generated services/locations/property-type detail routes ---- */
/* Header bar: logo + nav + phone pill on the navy .site-header */
.site-shell .header-inner {
  width: min(1210px, calc(100vw - 70px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0;
  color: var(--white);
}

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

.site-shell .brand-logo img {
  height: 52px;
  width: auto;
}

.site-shell .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}

.site-shell .nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.site-shell .nav-links a:hover {
  color: var(--orange);
}

.site-shell .phone-pill {
  flex: 0 0 auto;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-shell .phone-pill:hover {
  background: var(--navy-deep);
  color: var(--white);
}

/* Generic CTA button used in the deep hero / footer */
.site-shell .btn,
.internal-links .btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  padding: 13px 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease;
}

.site-shell .btn:hover {
  background: var(--navy-deep);
  color: var(--white);
}

/* Content card wraps the deep hero + content grid */
.site-shell .content-card {
  background: var(--white);
}

/* Deep-page hero band — overrides the index-template .inner-hero card layout */
.site-shell .content-card .inner-hero {
  display: block;
  min-height: 0;
  background: var(--navy);
  color: var(--white);
  padding: clamp(44px, 6vw, 84px) max(24px, calc((100vw - 1180px) / 2));
}

.site-shell .content-card .inner-hero .eyebrow {
  color: var(--gray-blue);
}

.site-shell .content-card .inner-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
}

.site-shell .content-card .inner-hero p {
  margin: 0 0 26px;
  max-width: 800px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

/* Main article + side panel grid */
.site-shell .content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 4vw, 60px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) 24px;
}

.site-shell .article-body {
  font-size: 17px;
  line-height: 1.7;
}

.site-shell .article-body p {
  margin: 0 0 18px;
}

.site-shell .article-body h2 {
  margin: 34px 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--navy);
}

.site-shell .article-body a {
  color: var(--orange);
  text-decoration: underline;
}

/* FAQ block (details/summary) */
.site-shell .faq {
  margin-top: 36px;
  border-left: 4px solid var(--orange);
  background: #f2f6f8;
  padding: 24px 26px 26px;
}

.site-shell .faq h2 {
  margin: 0 0 8px;
}

.site-shell .faq details {
  border-bottom: 1px solid rgba(0, 47, 67, 0.14);
  padding: 12px 0;
}

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

.site-shell .faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.site-shell .faq summary:hover {
  color: var(--orange);
}

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

/* Deep-page footer (mirrors .site-footer styling for the .footer variant) */
.site-shell .footer {
  background: var(--navy);
  color: var(--white);
}

.site-shell .footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 18px;
}

.site-shell .footer h3 {
  margin: 0 0 18px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 16px;
}

.site-shell .footer p,
.site-shell .footer li,
.site-shell .footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-shell .footer a:hover {
  color: var(--orange);
}

.site-shell .footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-shell .footer .btn {
  margin-top: 14px;
  color: var(--white);
}

/* Related-links band rendered after the shell */
.internal-links {
  background: #f2f6f8;
  padding: clamp(36px, 5vw, 56px) 24px;
}

.internal-links h2 {
  max-width: 1180px;
  margin: 0 auto 18px;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 30px);
}

.internal-links ul {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 28px;
}

.internal-links a {
  display: inline-block;
  padding: 6px 0;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 47, 67, 0.22);
}

.internal-links a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

@media (max-width: 900px) {
  .site-shell .content-grid {
    grid-template-columns: 1fr;
  }

  .site-shell .nav-links {
    display: none;
  }

  .site-shell .header-inner {
    width: calc(100vw - 30px);
  }
}
