@font-face {
  font-family: "Alternate Gothic Compressed";
  src: url("/faithful/fonts/alternate-gothic-compressed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/faithful/fonts/montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/faithful/fonts/montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/faithful/fonts/montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/faithful/fonts/open-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/faithful/fonts/open-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #b81932;
  --red-dark: #99162b;
  --slate: #455660;
  --ink: #455660;
  --muted: #7b858b;
  --line: #d1d7db;
  --pale: #e6ebed;
  --white: #fff;
  --max: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Open Sans", serif;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

iframe,
video {
  max-width: 100%;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  color: #fff;
  padding-top: 27px;
}

.nav-wrap {
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content 210px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.5vw, 26px);
}

.nav-right {
  justify-content: flex-end;
}

.site-header a,
.site-header button {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 210px;
  margin: 0 auto;
}

/* brand-logo-img v2: raster brand logo sizing (overrides SVG width rules) */
.brand .brand-logo {
  height: 46px;
  width: auto;
  margin: 0;
  display: block;
  max-width: 320px;
}
.footer-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 320px;
}
.mobile-top img {
  height: 42px !important;
  width: auto !important;
  max-width: 240px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 64px;
  padding: 0 18px;
  background: var(--red);
  font-size: 15px;
  line-height: 1;
  transition: background 160ms ease;
}

.header-phone:hover {
  background: var(--red-dark);
}

.hamburger-menu {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  position: relative;
  z-index: 90;
}

.hamburger-menu span {
  display: block;
  width: 34px;
  height: 4px;
  margin: 6px 0 6px auto;
  background: #fff;
  border-radius: 2px;
}

.search-panel {
  position: absolute;
  top: 91px;
  right: 70px;
  width: 360px;
  padding: 22px;
  background: var(--red);
  display: none;
}

.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.search-panel.is-open {
  display: block;
}

.search-panel input {
  width: 100%;
  height: 48px;
  border: 0;
  padding: 0 16px;
  font: inherit;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(rgba(69, 86, 96, 0.45), rgba(69, 86, 96, 0.45)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero.home {
  min-height: 666px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(69, 86, 96, 0.24);
}

.hero-title {
  position: relative;
  z-index: 2;
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding-bottom: 92px;
}

.hero h1 {
  margin: 0;
  max-width: 1140px;
  color: #fff;
  font-family: "Alternate Gothic Compressed", Impact, sans-serif;
  font-size: 105px;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero.home h1 {
  font-size: 200px;
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.diamond {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--red);
  transform: rotate(45deg);
  z-index: 3;
}

.diamond.left {
  left: -32px;
  bottom: 122px;
}

.diamond.right {
  right: -32px;
  bottom: 122px;
}

.section {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 100px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.section h2,
.section-title {
  margin: 0 0 32px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section h3 {
  margin: 0 0 18px;
  color: var(--slate);
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}

p {
  margin: 0 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 0 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

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

.paired-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 70px;
  text-align: center;
}

.paired-cards img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}

.paired-cards h3 {
  margin-top: 28px;
}

.gray-band {
  background: var(--pale);
}

.feature-grid {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 92px;
  align-items: center;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.quote-band {
  width: min(100% - 140px, 1180px);
  margin: 0 auto;
  padding: 118px 0;
  color: var(--red);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
}

.project-strip {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 70px 0 130px;
}

.strip-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  border-bottom: 10px solid #e1e5e7;
  padding-bottom: 36px;
}

.roof-paths,
.locations-showcase {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.compact {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 42px;
  align-items: end;
}

.section-heading.compact .small-label,
.section-heading.compact h2 {
  grid-column: 1;
}

.section-heading h2 {
  margin: 10px 0 16px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 700px;
}

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

.roof-path-card {
  min-height: 410px;
  display: grid;
  grid-template-rows: 190px auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
}

.roof-path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roof-path-card span {
  display: block;
  padding: 24px 24px 10px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.roof-path-card p {
  margin: 0;
  padding: 0 24px 26px;
  font-size: 15px;
  line-height: 24px;
}

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

.location-tile {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--slate);
}

.location-tile:nth-child(1),
.location-tile:nth-child(6) {
  grid-column: span 2;
}

.location-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.location-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(69, 86, 96, 0.08), rgba(69, 86, 96, 0.78));
}

.location-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-tile:hover img,
.roof-path-card:hover img {
  transform: scale(1.04);
}

.strip-links a {
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
}

.card-list {
  display: grid;
  gap: 72px;
}

.listing-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 64px;
  align-items: stretch;
  min-height: 430px;
  text-decoration: none;
  color: var(--ink);
}

.listing-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.listing-card:nth-child(even) .listing-image {
  order: 2;
}

.listing-image {
  min-height: 430px;
  background: var(--pale);
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-copy {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.listing-copy h2 {
  margin-bottom: 20px;
}

.small-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.detail-copy img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  margin-bottom: 56px;
}

.detail-panel {
  padding: 0 0 54px;
  border-bottom: 1px solid var(--line);
}

.sidebar {
  position: sticky;
  top: 30px;
  border-top: 1px solid var(--line);
}

.sidebar h3 {
  margin-top: 28px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.sidebar a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  font-size: 15px;
}

.accordion {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-title {
  width: 100%;
  min-height: 66px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-title::after {
  content: "+";
  float: right;
}

.accordion-item.is-open .accordion-title::after {
  content: "-";
}

.accordion-item p {
  display: none;
  padding-bottom: 24px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 70px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Open Sans", serif;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 60px;
  border: 0;
  background: #f0f0f0;
  padding: 13px 20px;
  font: inherit;
}

select {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #8f989e;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23455660' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 44px;
}

textarea {
  min-height: 350px;
}

.office-list h3 {
  margin-top: 0;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  text-decoration: underline;
}

.site-footer {
  background: var(--slate);
  color: #fff;
  padding: 78px 0 52px;
}

.footer-grid {
  width: min(100% - 96px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(280px, 0.72fr) minmax(0, 1.6fr);
  gap: 52px;
  align-items: start;
}

.footer-logo {
  width: 240px;
}

.footer-office {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
}

.footer-office strong,
.footer-news strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact h2 {
  margin: 0 0 52px;
  color: #fff;
  font-family: "Alternate Gothic Compressed", Impact, sans-serif;
  font-size: 48px;
  line-height: 44px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-contact p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 23px;
}

.footer-contact a,
.footer-links a,
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

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

.footer-column h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 20px;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 18px;
}

.mobile-call-fab {
  display: none;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.newsletter input {
  background: transparent;
  color: #fff;
  padding-left: 0;
  text-transform: uppercase;
}

.newsletter button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
}

.social {
  display: flex;
  gap: 26px;
  margin-top: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

@media (max-width: 980px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }

  .site-header {
    padding-top: 40px;
  }

  .nav-wrap {
    width: calc(100% - 80px);
    display: flex;
    justify-content: space-between;
  }

  .nav-left,
  .nav-right,
  .header-phone {
    display: none;
  }

  .brand img {
    width: 173px;
    margin: 0;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    width: min(86%, 360px);
    max-width: 100%;
    padding: 40px 32px calc(40px + env(safe-area-inset-bottom));
    background: #fff;
    color: var(--slate);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-105%);
    transition: transform 220ms ease;
    box-shadow: 6px 0 40px rgba(0, 0, 0, 0.28);
    display: block;
  }

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

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(20, 26, 30, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
  }

  .mobile-top img {
    width: 174px;
  }

  .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: -7px -10px -7px 0;
    border: 0;
    background: transparent;
    color: var(--red);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
    color: var(--slate);
    font-family: "Open Sans", serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-links a span {
    color: var(--red);
    font-size: 20px;
  }

  .mobile-links a:last-child {
    border-bottom: 1px solid var(--line);
  }

  .mobile-phone {
    min-height: 52px;
    font-size: 16px;
  }

  .hero,
  .hero.home {
    min-height: 650px;
  }

  .hero-title {
    width: calc(100% - 80px);
    padding-bottom: 42px;
  }

  .hero h1,
  .hero.home h1 {
    font-size: 70px;
    line-height: 0.94;
    letter-spacing: 0.04em;
  }

  .diamond {
    display: none;
  }

  .section,
  .feature-grid,
  .project-strip,
  .roof-paths,
  .locations-showcase,
  .quote-band,
  .footer-grid {
    width: calc(100% - 80px);
  }

  .section {
    padding: 52px 0;
  }

  .intro-grid,
  .feature-grid,
  .paired-cards,
  .listing-card,
  .listing-card:nth-child(even),
  .detail-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section h2,
  .section-title {
    font-size: 24px;
    line-height: 31px;
  }

  .paired-cards img {
    aspect-ratio: 1.05;
  }

  .gray-band .feature-grid {
    padding: 64px 0;
  }

  .quote-band {
    padding: 62px 0;
    font-size: 20px;
    line-height: 29px;
  }

  .strip-links {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .section-heading.compact {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 26px;
    line-height: 33px;
  }

  .roof-paths,
  .locations-showcase {
    padding: 58px 0;
  }

  .roof-path-grid,
  .location-grid,
  .footer-links,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .location-tile,
  .location-tile:nth-child(1),
  .location-tile:nth-child(6) {
    grid-column: auto;
    min-height: 250px;
  }

  .roof-path-card {
    min-height: 0;
  }

  .listing-card:nth-child(even) .listing-image {
    order: 0;
  }

  .listing-image {
    min-height: 310px;
  }

  .listing-copy {
    padding: 28px 0;
  }

  .sidebar {
    position: static;
  }

  textarea {
    min-height: 250px;
  }

  .site-footer {
    padding: 56px 0;
  }

  .footer-logo {
    width: 210px;
  }

  .footer-contact h2 {
    font-size: 38px;
    line-height: 36px;
    margin-bottom: 28px;
  }

  .footer-grid {
    width: calc(100% - 48px);
    gap: 30px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
  }

  .mobile-call-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  }

  .mobile-call-fab svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
  }

  /* Readability: keep body-copy at a legible size on phones */
  .roof-path-card p,
  .strip-links a,
  .sidebar a,
  .footer-column a,
  .footer-contact p,
  .footer-office {
    font-size: 15px;
    line-height: 24px;
  }

  .roof-path-card span {
    font-size: 19px;
    line-height: 25px;
  }

  /* Tap targets >= 44px for primary controls */
  .button {
    min-height: 50px;
    font-size: 14px;
    padding: 0 26px;
  }

  .sidebar a,
  .footer-column a {
    padding: 11px 0;
  }

  .accordion-title {
    min-height: 56px;
    padding: 10px 0;
  }

  .strip-links {
    gap: 16px 24px;
  }

  .strip-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Form fields: comfortable tap + readable input text */
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .form-grid {
    gap: 22px;
  }

  /* Keep the floating call button clear of the footer's last links */
  .site-footer {
    padding-bottom: 96px;
  }
}
