/*
Theme Name: Bricks Child
Description: Child theme for Bricks Builder
Author: AdQuest Digital
Template: bricks
Version: 1.0.0
Text Domain: bricks-child
*/

/* Your Roof Connection stylesheet begins below this line */
/*
 * THE ROOF CONNECTION
 * Global Bricks stylesheet
 *
 * Add this file in Bricks > Settings > Custom Code > Custom CSS,
 * or enqueue it as the single sitewide project stylesheet.
 *
 * Class convention:
 *   rc-*                 global utility or component
 *   rc-site-*            global template region
 *   rc-home-*            homepage-only component
 *   rc-service-*         service-template component (reserved)
 *   rc-location-*        location-template component (reserved)
 *   rc-standard-*        standard-page component (reserved)
 */

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */

:root {
  --rc-blue: #1f5d9b;
  --rc-blue-dark: #164979;
  --rc-navy: #08182c;
  --rc-navy-light: #102641;
  --rc-gold: #dfa334;
  --rc-gold-light: #f2be50;
  --rc-ink: #172234;
  --rc-muted: #667386;
  --rc-paper: #f6f7f8;
  --rc-line: #dce2e8;
  --rc-white: #fff;

  --rc-font-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --rc-font-body: "Inter", Arial, sans-serif;

  --rc-container: 1180px;
  --rc-container-wide: 1320px;
  --rc-container-narrow: 860px;
  --rc-gutter: clamp(22px, 4vw, 48px);
  --rc-section-space: clamp(76px, 8vw, 112px);

  --rc-radius-sm: 4px;
  --rc-radius-md: 7px;
  --rc-shadow: 0 15px 45px rgb(8 24 44 / 14%);

  --rc-header-height: 82px;
  --rc-header-height-mobile: 64px;
}

/* ==========================================================================
   02. GLOBAL DEFAULTS
   ========================================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--rc-header-height) + 18px);
}

body {
  color: var(--rc-ink);
  background: var(--rc-white);
  font-family: var(--rc-font-body);
}

body.rc-menu-open {
  overflow: hidden;
}

.rc-page *,
.rc-site-header *,
.rc-site-footer *,
.rc-scroll-cta * {
  box-sizing: border-box;
}

.rc-page img,
.rc-site-header img,
.rc-site-footer img {
  display: block;
  max-width: 100%;
}

.rc-page a,
.rc-site-header a,
.rc-site-footer a,
.rc-scroll-cta a {
  color: inherit;
  text-decoration: none;
}

.rc-page h1,
.rc-page h2,
.rc-page h3,
.rc-page p {
  margin-top: 0;
}

/* ==========================================================================
   03. LAYOUT
   ========================================================================== */

.rc-section {
  width: 100%;
  padding: var(--rc-section-space) var(--rc-gutter);
}

.rc-section--compact {
  padding-block: clamp(58px, 6vw, 84px);
}

.rc-section--dark {
  color: var(--rc-white);
  background: var(--rc-navy);
}

.rc-section--paper {
  background: var(--rc-paper);
}

.rc-container {
  width: min(100%, var(--rc-container));
  margin-inline: auto;
}

.rc-container--wide {
  width: min(100%, var(--rc-container-wide));
  margin-inline: auto;
}

.rc-container--narrow {
  width: min(100%, var(--rc-container-narrow));
  margin-inline: auto;
}

.rc-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

/* ==========================================================================
   04. TYPOGRAPHY
   ========================================================================== */

.rc-eyebrow {
  margin-bottom: 16px;
  color: var(--rc-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1.35;
  text-transform: uppercase;
}

.rc-eyebrow--blue {
  color: var(--rc-blue);
}

.rc-heading-xl,
.rc-heading-lg,
.rc-heading-md {
  font-family: var(--rc-font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rc-heading-xl {
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: 0.95;
}

.rc-heading-lg {
  font-size: clamp(39px, 4.2vw, 58px);
  line-height: 1.02;
}

.rc-heading-md {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
}

.rc-heading-accent span {
  color: var(--rc-gold-light);
}

.rc-copy-lg {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.rc-copy {
  color: var(--rc-muted);
  font-size: 16px;
  line-height: 1.75;
}

.rc-text-center {
  text-align: center;
}

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.rc-button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--rc-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.rc-button:hover {
  transform: translateY(-1px);
}

.rc-button--primary {
  color: var(--rc-ink);
  background: var(--rc-gold);
  box-shadow: 0 8px 24px rgb(223 163 52 / 20%);
}

.rc-button--primary:hover {
  background: var(--rc-gold-light);
}

.rc-button--outline {
  color: var(--rc-white);
  border-color: rgb(255 255 255 / 60%);
  background: rgb(6 18 32 / 45%);
}

.rc-button--blue {
  color: var(--rc-white);
  background: var(--rc-blue);
}

/* ==========================================================================
   06. GLOBAL HEADER
   ========================================================================== */

.rc-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: var(--rc-header-height);
  padding-inline: var(--rc-gutter);
  color: var(--rc-white);
  background: rgb(6 15 27 / 97%);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  backdrop-filter: blur(12px);
}

.rc-site-header__inner {
  width: min(100%, var(--rc-container-wide));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.rc-site-header__logo {
  width: 190px;
  flex: 0 0 190px;
}
.rc-site-header__actions {
  padding-left: 25px;
  display: flex;
  align-items: center;
  border-left: 1px solid #334158;
}

.rc-site-header__phone-copy {
  display: flex;
  flex-direction: column;
}

.rc-site-header__phone-icon {
  display: none;
}


.rc-site-header__logo img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.rc-site-nav {
  margin-left: auto;
}

.rc-site-nav .brx-nav-nested-items {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.rc-site-nav a {
  color: #dce3ec;
  font-size: 14px;
  font-weight: 600;
}

.rc-site-nav a:hover,
.rc-site-nav .current-menu-item > a,
.rc-site-nav .current-menu-ancestor > a {
  color: var(--rc-gold-light);
}

.rc-site-header__phone {
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #334158;
}

.rc-site-header__phone-label {
  color: var(--rc-gold-light);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rc-site-header__phone-number {
  color: var(--rc-white);
  font-size: 16px;
  font-weight: 800;
}

.rc-site-header__toggle {
  display: none;
}

/* ==========================================================================
   07. SCROLL CTA
   Add class "is-visible" with the script supplied in the build guide.
   ========================================================================== */

.rc-scroll-cta {
  position: fixed;
  z-index: 1100;
  left: 50%;
  bottom: 14px;
  width: min(650px, calc(100% - 28px));
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--rc-radius-md);
  box-shadow: 0 12px 40px rgb(0 0 0 / 32%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 100px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.rc-scroll-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.rc-scroll-cta__link {
  min-height: 56px;
  padding: 8px 12px;
  display: grid;
  place-items: center;
  color: var(--rc-white);
  background: var(--rc-blue);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.rc-scroll-cta__link--call {
  color: var(--rc-ink);
  background: var(--rc-gold);
}
.rc-scroll-cta__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rc-scroll-cta__link i,
.rc-scroll-cta__link svg {
  flex: 0 0 auto;
  margin: 0;
  line-height: 1;
}
/* ==========================================================================
   08. HOMEPAGE HERO
   ========================================================================== */

.rc-home-hero {
  position: relative;
  min-height: 650px;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--rc-white);
  background-position: center 52%;
  background-size: cover;
}

.rc-home-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(5 15 27 / 94%) 0%,
    rgb(8 25 44 / 82%) 42%,
    rgb(8 21 36 / 26%) 78%
  );
}

.rc-home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--rc-container-wide));
  margin-inline: auto;
  padding: 85px var(--rc-gutter) 95px;
}

.rc-home-hero__content {
  max-width: 790px;
}

.rc-home-hero__title {
  max-width: 790px;
  margin-bottom: 22px;
}


.rc-home-hero__copy {
  max-width: 680px;
  margin-bottom: 31px;
  color: #edf1f6;
}

.rc-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.rc-home-hero__note {
  margin: 20px 0 0;
  color: #bbc6d4;
  font-size: 12px;
}

/* ==========================================================================
   09. TRUST STRIP
   ========================================================================== */


   .rc-home-trust {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 44px), 1240px);
  margin: 0 auto -36px;
  transform: translateY(-36px);
  padding: 25px 32px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 20px;
  background: var(--rc-white);
  border-radius: var(--rc-radius-md);
  box-shadow: var(--rc-shadow);
}
/* Trust-bar background wrapper */

.rc-trust-section {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.rc-trust-section--paper {
  background: var(--rc-paper);
}

.rc-trust-section--navy {
  background: var(--rc-navy);
}
.rc-rating,
.rc-trust-item {
  min-height: 67px;
  display: flex;
  justify-content: center;
}

.rc-rating {
  flex-direction: column;
  border-right: 1px solid var(--rc-line);
}

.rc-stars {
  color: var(--rc-gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.rc-rating__title {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 800;
}

.rc-rating__meta,
.rc-trust-item__copy {
  margin: 0;
  color: var(--rc-muted);
  font-size: 11px;
  line-height: 1.5;
}

.rc-trust-item {
  align-items: center;
  gap: 12px;
}

.rc-trust-item__icon {
  color: var(--rc-blue);
  font-family: var(--rc-font-heading);
  font-size: 25px;
  font-weight: 800;
}

.rc-trust-item__title {
  color: var(--rc-ink);
  font-size: 12px;
  font-weight: 800;
}
.rc-trust-section--navy {
  background: var(--rc-navy);
}


/*
=========================================================================

DECISION

=========================================================================
*/


.rc-copy-decision {
  margin: 0px 0px 26px;
}



/*
==========================================================================
   10. INTRO / CHECKLIST
   ========================================================================== */

.rc-home-intro__heading {
  max-width: 500px;
  margin-bottom: 0;
}

.rc-check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.rc-check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
}

.rc-check-list li::before {
  content: "\2713";
  position: absolute;
  top: -2px;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--rc-white);
  background: var(--rc-blue);
  border-radius: 50%;
  font-size: 12px;
}

/* ==========================================================================
   11. SERVICES
   ========================================================================== */

.rc-section-heading {
  max-width: 790px;
  margin: 0 auto 45px;
  text-align: center;
}

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

.rc-service-card {
  overflow: hidden;
  color: var(--rc-white);
  background: var(--rc-navy-light);
  border: 1px solid #1b3859;
  border-radius: var(--rc-radius-sm);
}

.rc-service-card__media {
  aspect-ratio: 4 / 2.65;
  overflow: hidden;
}

.rc-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-service-card__body {
  padding: 24px 22px 26px;
}

.rc-service-card__title {
  margin-bottom: 11px;
  font-family: var(--rc-font-heading);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-service-card__copy {
  min-height: 73px;
  color: #b9c6d5;
  font-size: 13px;
  line-height: 1.6;
}

.rc-service-card a.rc-service-card__link {
  color: var(--rc-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.rc-service-card a.rc-service-card__link:hover,
.rc-service-card a.rc-service-card__link:focus-visible {
  color: var(--rc-white);
}

.rc-home-services__note {
  margin: 28px 0 0;
  padding: 20px;
  color: #bfcbda;
  background: #0c2039;
  border-left: 3px solid var(--rc-gold);
  font-size: 13px;
  text-align: center;
}
/* Three-column variation for reusable card grids */

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

@media (max-width: 991px) {
  .rc-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .rc-card-grid--3 {
    grid-template-columns: 1fr;
  }
}
.rc-copy--light {
  color: #d9e2ec;
}
/* ==========================================================================
   12. PROCESS
   ========================================================================== */

.rc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc-process-step {
  min-height: 215px;
  padding: 20px 28px;
  border-left: 1px solid var(--rc-line);
}

.rc-process-step__number {
  display: block;
  margin-bottom: 22px;
  color: #d7e2ee;
  font-family: var(--rc-font-heading);
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
}

.rc-copy-process {
  margin: 16px 0px;
}

/* ==========================================================================
   13. PROJECT FEATURE
   ========================================================================== */

.rc-home-projects {
  min-height: 680px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.6fr;
  color: var(--rc-white);
  background: #113761;
}

.rc-project-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

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

.rc-project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgb(0 0 0 / 55%));
}

.rc-project-image__label {
  position: absolute;
  z-index: 1;
  bottom: 25px;
  left: 28px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rc-home-projects__copy {
  padding: clamp(65px, 8vw, 110px) clamp(32px, 4vw, 55px);
  align-self: center;
}

.rc-testimonial-quote {
  margin: 35px 0 0;
  padding-top: 28px;
  color: #eff4f9;
  border-top: 1px solid #3b5b7c;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
}

.rc-testimonial-quote cite {
  display: block;
  margin-top: 14px;
  color: var(--rc-gold-light);
  font-family: var(--rc-font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   14. REVIEWS
   ========================================================================== */

.rc-reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.rc-google-score {
  min-width: 190px;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.rc-review-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rc-review-card {
  min-height: 280px;
  padding: 30px;
  background: var(--rc-paper);
  border-top: 3px solid var(--rc-blue);
}

.rc-review-card__quote {
  min-height: 120px;
  color: #364357;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
margin: 16px 0px;
}
.rc-review-card__author {
  display: block;
  margin: 22px 0 0;
  color: var(--rc-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.rc-review-card__meta {
  display: block;
  margin: 4px 0 0;
  color: var(--rc-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   15. SERVICE AREAS
   ========================================================================== */

.rc-home-areas {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.rc-area-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px 20px;
  list-style: none;
}

.rc-area-list li {
  position: relative;
  padding-left: 17px;
  color: #e4eaf0;
  font-size: 13px;
}

.rc-area-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--rc-gold);
  border-radius: 50%;
}

/* ==========================================================================
   16. CONTACT / FORM
   ========================================================================== */

.rc-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 90px);
}

.rc-contact__copy {
  padding-top: 35px;
}

.rc-contact__phone {
  margin-top: 20px;
  display: inline-flex;
  flex-direction: column;
}

.rc-contact .rc-contact__phone .rc-contact__phone-label {
  color: var(--rc-muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rc-contact .rc-contact__phone .rc-contact__phone-number {
  color: var(--rc-blue);
  font-family: var(--rc-font-heading);
  font-size: 30px;
  font-weight: 700;
}
.rc-form {
  min-height: 505px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--rc-white);
  box-shadow: 0 18px 55px rgb(22 42 67 / 10%);
}

.rc-form__title {
  margin: 0 0 24px;
  color: var(--rc-ink);
  font-family: var(--rc-font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.rc-form__element {
  width: 100%;
  display: block;
}

.rc-form .form-group {
  margin: 0 0 17px;
}

.rc-form label {
  margin: 0 0 7px;
  display: block;
  color: var(--rc-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
}

.rc-form input,
.rc-form textarea,
.rc-form select {
  width: 100%;
  min-height: 51px;
  margin: 0;
  padding: 12px 14px;
  color: var(--rc-ink);
  background: #fbfcfd;
  border: 1px solid #ccd3da;
  border-radius: 3px;
  font: inherit;
}

.rc-form textarea {
  min-height: 110px;
  resize: vertical;
}

.rc-form input:focus,
.rc-form textarea:focus,
.rc-form select:focus {
  border-color: var(--rc-blue);
  outline: 2px solid #8cb8e2;
}

.rc-form button[type="submit"],
.rc-form .bricks-button,
.rc-form .rc-button {
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  padding: 0 24px;
  color: var(--rc-ink);
  background: var(--rc-gold);
  border: 0;
  border-radius: var(--rc-radius-sm);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.rc-form button[type="submit"]:hover,
.rc-form .bricks-button:hover,
.rc-form .rc-button:hover {
  background: var(--rc-gold-light);
}

.rc-form__disclaimer {
  margin-top: 15px;
  display: block;
  color: #8893a1;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}
/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.rc-site-footer {
  padding: 0 var(--rc-gutter) 100px;
  color: #b8c4d1;
  background: #050f1e;
  font-size: 12px;
}

/* Footer CTA */

.rc-site-footer__cta {
  width: min(100%, var(--rc-container));
  margin-inline: auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid #1d2b3e;
}

.rc-site-footer__cta-copy {
  max-width: 650px;
}

.rc-site-footer__cta-title {
  margin: 8px 0 0;
  color: var(--rc-white);
  font-family: var(--rc-font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

/* Main footer grid */

.rc-site-footer__inner {
  width: min(100%, var(--rc-container));
  margin-inline: auto;
  padding: 54px 0 46px;
  display: grid;
  grid-template-columns:
    minmax(260px, 1.35fr)
    repeat(3, minmax(150px, 0.8fr));
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.rc-site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rc-site-footer__logo {
  width: 190px;
  margin-bottom: 22px;
}

.rc-site-footer__description {
  max-width: 330px;
  margin: 0 0 18px;
  color: #b8c4d1;
  font-size: 13px;
  line-height: 1.75;
}

.rc-site-footer__trust {
  margin: 0;
  color: var(--rc-gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.6;
  text-transform: uppercase;
}

/* Contact information */

.rc-site-footer__contact {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--rc-white);
  font-size: 13px;
  font-weight: 600;
}

.rc-site-footer__contact a {
  transition: color 180ms ease;
}

.rc-site-footer__contact a:hover {
  color: var(--rc-gold-light);
}

/* Footer navigation columns */

.rc-site-footer__column {
  min-width: 0;
}

.rc-site-footer__heading {
  margin: 0 0 20px;
  color: var(--rc-white);
  font-family: var(--rc-font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
}

.rc-site-footer__links {
  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.rc-site-footer__links a {
  color: #b8c4d1;
  font-size: 12px;
  line-height: 1.45;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.rc-site-footer__links a:hover {
  color: var(--rc-gold-light);
  transform: translateX(3px);
}

/* Bottom legal row */

.rc-site-footer__bottom {
  width: min(100%, var(--rc-container));
  margin-inline: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #758295;
  border-top: 1px solid #1d2b3e;
}

.rc-site-footer__copyright {
  margin: 0;
}

.rc-site-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rc-site-footer__legal a:hover {
  color: var(--rc-white);
}
/* Footer — tablet */

@media (max-width: 991px) {
  .rc-site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-site-footer__brand {
    grid-column: 1 / -1;
  }
}

/* Footer — mobile */

@media (max-width: 767px) {
  .rc-site-footer {
    padding-inline: 22px;
  }

  .rc-site-footer__cta {
    padding: 38px 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .rc-site-footer__cta .rc-button {
    width: 100%;
  }

  .rc-site-footer__inner {
    padding: 44px 0 38px;
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .rc-site-footer__brand {
    grid-column: auto;
  }

  .rc-site-footer__logo {
    margin-inline: 0;
  }

  .rc-site-footer__contact {
    align-items: flex-start;
  }

  .rc-site-footer__column {
    padding-top: 28px;
    border-top: 1px solid #1d2b3e;
  }

  .rc-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .rc-site-footer__legal {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   LOCATION PAGE
   Reusable structure for individual city and service-area pages
   ========================================================================== */

/* Hero */

.rc-location-hero .rc-service-hero__media img {
  object-position: 48% center;
}

/* Local introduction */

.rc-location-intro {
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);
  grid-template-areas:
    "heading copy"
    "context copy";
  gap: 34px clamp(50px, 7vw, 90px);
  align-items: start;
}

.rc-location-intro__heading {
  grid-area: heading;
}

.rc-location-intro__heading .rc-heading-lg {
  margin-bottom: 0;
}

.rc-location-intro__copy {
  grid-area: copy;
}

.rc-location-intro__copy .rc-copy {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.85;
}

/* Local context panel */

.rc-location-context {
  grid-area: context;
  padding: 27px 28px;
  background: var(--rc-paper);
  border-left: 4px solid var(--rc-gold-light);
}

.rc-location-context__label {
  display: block;
  margin-bottom: 15px;
  color: var(--rc-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rc-location-context__list {
  margin: 0;
  padding-left: 18px;
  color: #445269;
  font-size: 12px;
  line-height: 1.85;
}
/* Dark navy section utility */

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

/* Ensure the location-services content uses the full container width */

.rc-location-services {
  width: 100%;
}

.rc-location-service-grid {
  width: 100%;
}
/* Service section */

.rc-location-services .rc-section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
  text-align: center;
}

.rc-location-services .rc-section-heading .rc-copy {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.rc-location-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #2d4560;
  border-left: 1px solid #2d4560;
}

.rc-location-service-card {
  position: relative;
  min-height: 300px;
  padding: 38px 40px 70px;
  background: #0d223b;
  border-right: 1px solid #2d4560;
  border-bottom: 1px solid #2d4560;
}

.rc-location-service-card__number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #36506d;
  font-family: var(--rc-font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.rc-location-service-card__title {
  position: relative;
  max-width: 75%;
  margin: 0 0 18px;
  color: var(--rc-white);
  font-family: var(--rc-font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-location-service-card__copy {
  position: relative;
  max-width: 470px;
  margin: 0;
  color: #b8c6d4;
  font-size: 13px;
  line-height: 1.75;
}

.rc-location-service-card .rc-text-link {
  position: absolute;
  bottom: 33px;
  left: 40px;
}

/* Why choose us */

.rc-location-proof {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  gap: clamp(50px, 7vw, 80px);
  align-items: center;
}

.rc-location-proof__media {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
}

.rc-location-proof__media > .brxe-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rc-location-proof__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.rc-location-proof__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-location-proof__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 70%,
    rgb(0 0 0 / 68%)
  );
}

.rc-location-proof__media .rc-image-label {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 27px;
  margin: 0;
}

.rc-location-proof__list {
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dfe4e9;
}

.rc-location-proof__list li {
  position: relative;
  margin: 0;
  padding: 13px 8px 13px 23px;
  color: #445269;
  font-size: 13px;
  border-bottom: 1px solid #dfe4e9;
}

.rc-location-proof__list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--rc-gold-light);
  border-radius: 50%;
}

/* Nearby communities */

.rc-location-nearby {
  padding: 72px var(--rc-gutter);
  color: var(--rc-white);
  background: var(--rc-blue-dark);
}

.rc-location-nearby__inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);
  gap: 16px 80px;
  align-items: center;
}

.rc-location-nearby__inner .rc-eyebrow {
  grid-column: 1 / -1;
}

.rc-location-nearby__inner .rc-heading-md {
  margin: 0;
}

.rc-location-nearby__inner .rc-copy {
  margin: 0;
  line-height: 1.9;
}

/* Tablet */

@media (max-width: 991px) {
  .rc-location-intro {
    gap: 30px 50px;
  }

  .rc-location-service-card {
    padding-right: 30px;
    padding-left: 30px;
  }

  .rc-location-service-card .rc-text-link {
    left: 30px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .rc-location-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy"
      "context";
    gap: 26px;
  }

  .rc-location-intro__copy .rc-copy {
    font-size: 14px;
  }

  .rc-location-service-grid {
    grid-template-columns: 1fr;
  }

  .rc-location-service-card {
    min-height: 285px;
    padding: 31px 25px 70px;
  }

  .rc-location-service-card__number {
    right: 22px;
  }

  .rc-location-service-card .rc-text-link {
    left: 25px;
  }

  .rc-location-proof {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .rc-location-proof__media {
    min-height: 400px;
  }

  .rc-location-nearby {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .rc-location-nearby__inner {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .rc-location-nearby__inner .rc-eyebrow {
    grid-column: auto;
  }
}
/* ==========================================================================
   IMAGE GALLERY PAGE
   Featured homepage hero + responsive lightbox project grid
   ========================================================================== */

   .rc-gallery-intro .rc-copy {
  max-width: 780px;
  margin-inline: auto;
}
.rc-gallery-heading {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.rc-gallery-heading .rc-heading-lg {
  color: var(--rc-white);
}

.rc-gallery-heading .rc-copy {
  max-width: 900px;
  margin: 20px auto 0;
  color: #c4d1de;
}
.rc-gallery-grid {
   width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(280px, 28vw, 390px);
  gap: 12px;
}

.rc-gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #102b4a;
}

.rc-gallery-item--wide {
  grid-column: span 2;
}

/* Make the Bricks Image element fill the gallery item */

.rc-gallery-item > .rc-gallery-item__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Make the lightbox link fill the gallery item */

.rc-gallery-item__image > a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

/* Account for responsive images output inside a picture element */

.rc-gallery-item__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.rc-gallery-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}

.rc-gallery-item:hover .rc-gallery-item__image img {
  transform: scale(1.025);
}

/* Visible project label */

.rc-gallery-item .rc-image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 70px 24px 22px;
  color: var(--rc-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase;
  background: linear-gradient(
    transparent,
    rgb(4 18 34 / 88%)
  );
  pointer-events: none;
}

/* Keyboard focus indication for the lightbox link */

.rc-gallery-item:has(
  .rc-gallery-item__image a:focus-visible
) {
  outline: 3px solid var(--rc-gold-light);
  outline-offset: 3px;
}

/* Tablet */

@media (max-width: 991px) {
  .rc-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 320px;
  }

  .rc-gallery-item--wide {
    grid-column: span 2;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .rc-gallery-intro {
    text-align: left;
  }

  .rc-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
    gap: 10px;
  }

  .rc-gallery-item--wide {
    grid-column: span 1;
  }

  .rc-gallery-item .rc-image-label {
    padding: 60px 20px 18px;
  }
}
/* ==========================================================================
   CONTACT INTRODUCTION
   ========================================================================== */

.rc-contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.rc-contact-intro__copy {
  max-width: 620px;
}

.rc-contact-card {
  padding: clamp(34px, 5vw, 54px);
  display: grid;
  gap: 22px;
  background: #102b4a;
  border-left: 4px solid var(--rc-gold-light);
}

.rc-contact-card__business {
  margin: 0;
  color: var(--rc-white);
  font-family: var(--rc-font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-contact-card__address {
  margin: 0;
  color: var(--rc-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.rc-contact-card__details {
  padding-top: 22px;
  display: grid;
  gap: 10px;
  border-top: 1px solid #36516e;
}

.rc-contact-card__name {
  margin: 0 0 4px;
  color: #c4d1de;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rc-contact-card__link {
  width: fit-content;
  color: var(--rc-white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.rc-contact-card__link:hover {
  color: var(--rc-gold-light);
}

@media (max-width: 767px) {
  .rc-contact-intro {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .rc-contact-card {
    padding: 32px 24px;
  }
}
/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */

@media (max-width: 1050px) {
  :root {
    --rc-header-height: 72px;
  }

  .rc-site-header__logo {
    width: 170px;
    flex-basis: 170px;
  }

  .rc-site-nav .brx-nav-nested-items {
    gap: 16px;
  }

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

  .rc-home-projects {
    grid-template-columns: 1fr 1fr;
  }

  .rc-home-projects__main-image {
    grid-row: span 2;
  }
}

@media (max-width: 767px) {
  :root {
    --rc-header-height: var(--rc-header-height-mobile);
    --rc-gutter: 22px;
  }

  html {
    scroll-padding-top: calc(var(--rc-header-height-mobile) + 12px);
  }

  .rc-site-header {
    height: var(--rc-header-height-mobile);
    padding-inline: 14px;
  }

    .rc-site-header__inner {
    gap: 8px;
  }

  .rc-site-header__logo {
    width: 145px;
    flex: 0 0 145px;
  }

  .rc-site-header__logo img {
    height: 52px;
  }

  /* Push the mobile navigation controls to the right */

  .rc-site-nav {
    margin-left: auto;
  }

  /* Orange hamburger */

  .rc-site-nav .bricks-mobile-menu-toggle {
    width: 28px;
    height: 22px;
  }

  .rc-site-nav .bricks-mobile-menu-toggle span {
    height: 2px;
    background-color: var(--rc-gold-light);
  }

  /* Hide desktop phone copy */

  .rc-site-header__phone-copy {
    display: none;
  }

  /* Circular mobile phone button */

  .rc-site-header__actions {
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    display: grid;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgb(230 166 48 / 70%);
    border-radius: 50%;
  }

  .rc-site-header__actions > .bricks-link-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
  }

  .rc-site-header__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-gold-light);
    font-size: 17px;
    line-height: 1;
  }
  .rc-split,
  .rc-home-areas,
  .rc-contact {
    grid-template-columns: 1fr;
  }

  .rc-home-hero {
    min-height: 665px;
    align-items: flex-end;
    background-position: 64% center;
  }

  .rc-home-hero::before {
    background: linear-gradient(
      0deg,
      rgb(5 15 27 / 98%) 0%,
      rgb(6 18 32 / 88%) 55%,
      rgb(8 20 35 / 45%) 100%
    );
  }

  .rc-home-hero__inner {
    padding: 145px var(--rc-gutter) 66px;
  }

  .rc-heading-xl {
    font-size: clamp(49px, 15.3vw, 64px);
    line-height: 0.93;
  }

  .rc-heading-lg {
    font-size: 42px;
  }

  .rc-button-group {
    display: grid;
  }

  .rc-button {
    width: 100%;
  }

  .rc-home-hero__note {
    text-align: center;
  }

  .rc-home-trust {
  width: calc(100% - 28px);
  margin: 0 auto -25px;
  padding: 20px;
  transform: translateY(-25px);
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

  .rc-rating {
    grid-column: 1 / -1;
    align-items: center;
    margin-bottom: 13px;
    padding-bottom: 17px;
    border-right: 0;
    border-bottom: 1px solid var(--rc-line);
  }

  .rc-trust-item {
    min-height: 71px;
    padding: 9px;
    justify-content: flex-start;
  }

  .rc-trust-item:nth-child(even) {
    border-right: 1px solid #e3e7eb;
  }

  .rc-service-grid,
  .rc-review-grid {
    grid-template-columns: 1fr;
  }

  .rc-service-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .rc-service-card__media {
    height: 100%;
    min-height: 210px;
    aspect-ratio: auto;
  }

  .rc-service-card__copy,
  .rc-review-card__quote {
    min-height: 0;
  }

  .rc-process-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .rc-process-step {
    min-height: 185px;
    padding: 12px 18px;
  }

  .rc-home-projects {
    grid-template-columns: 1fr;
  }

  .rc-home-projects__main-image {
    min-height: 420px;
    grid-row: auto;
  }

  .rc-home-projects__copy {
    padding: 70px var(--rc-gutter);
  }

  .rc-reviews-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

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

  .rc-contact__copy {
    padding-top: 0;
  }

  .rc-scroll-cta {
    bottom: 8px;
    width: calc(100% - 16px);
    min-height: 54px;
  }

  .rc-scroll-cta__link {
    min-height: 54px;
    font-size: 10.5px;
  }
}

@media (max-width: 480px) {
  .rc-service-card {
    grid-template-columns: 1fr;
  }

  .rc-service-card__media {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .rc-button,
  .rc-scroll-cta {
    transition: none;
  }
}
/* ========================================================================== 
   SERVICE PAGE TEMPLATE ADDITIONS

   Paste this entire block at the END of the existing Roof Connection global
   stylesheet. These classes are reusable across all service pages.
   ========================================================================== */

/* 18. SERVICE HERO */

.rc-service-hero {
  min-height: 650px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  overflow: hidden;
  color: var(--rc-white);
  background: var(--rc-navy);
}

.rc-service-hero__content {
  padding: 95px clamp(38px, 7vw, 118px) 105px;
  align-self: center;
}

.rc-service-hero__title {
  max-width: 720px;
  margin-bottom: 22px;
}

.rc-service-hero__copy {
  max-width: 680px;
  margin-bottom: 31px;
  color: #edf1f6;
}

.rc-service-hero__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-left: 6px solid var(--rc-gold);
}

.rc-service-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.rc-service-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgb(0 0 0 / 53%));
}

.rc-service-hero__media-label {
  position: absolute;
  z-index: 1;
  bottom: 25px;
  left: 28px;
  color: var(--rc-white);
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.rc-service-trust {
  margin-top: -36px;
}

/* 19. SERVICE INTRODUCTION */

.rc-service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 7vw, 90px);
  align-items: center;
}

.rc-service-intro__copy > .rc-copy {
  margin-bottom: 18px;
}

.rc-text-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rc-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.rc-text-link:hover,
.rc-text-link:focus-visible {
  color: var(--rc-blue-dark);
}

.rc-text-link__arrow {
  font-size: 17px;
}

.rc-service-intro__media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.rc-service-intro__media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.rc-service-intro__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgb(0 0 0 / 60%));
}

.rc-service-intro__media-label {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 27px;
  color: var(--rc-white);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* 20. WARNING SIGNS */

.rc-service-signs__intro {
  max-width: 700px;
  margin-inline: auto;
}

.rc-service-signs__intro .rc-copy {
  color: #aebdcd;
}

.rc-sign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #29405a;
}

.rc-sign-card {
  min-height: 180px;
  padding: 30px;
  display: flex;
  gap: 20px;
  background: #0e233d;
}

.rc-sign-card__number {
  color: #5e7690;
  font-family: var(--rc-font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.rc-sign-card__title {
  margin-bottom: 8px;
  color: var(--rc-white);
  font-family: var(--rc-font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-sign-card__copy {
  margin: 0;
  color: #b8c6d4;
  font-size: 12px;
  line-height: 1.65;
}

/* 21. ROOFING OPTIONS */

.rc-service-options__intro {
  width: 100%;
  max-width: 750px;
  margin-bottom: 0;
}

.rc-option-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.rc-option-card {
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: var(--rc-paper);
  border: 1px solid #e2e7ec;
}

.rc-option-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  align-self: stretch;
  overflow: hidden;
}

.rc-option-card__media img {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-option-card__media > .brxe-image,
.rc-option-card__media > figure {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.rc-option-card__media > .brxe-image img,
.rc-option-card__media > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-option-card__body {
  padding: 43px 34px;
}

.rc-option-card__title {
  margin-bottom: 14px;
  font-family: var(--rc-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-option-card__copy {
  color: var(--rc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.rc-option-card__list {
  margin: 18px 0 0;
  padding-left: 0;
  color: #46556a;
  font-size: 12px;
  line-height: 1.75;
  list-style: none;
}

.rc-option-card__list li {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 0 0 17px;
}

.rc-option-card__list li::before {
  content: "\2022";
  position: absolute;
  top: 0;
  left: 0;
  color: currentColor;
  font-size: 1em;
  line-height: inherit;
}

.rc-option-card__body > :last-child {
  margin-bottom: 0;
}

.rc-option-card--dark {
  grid-template-columns: 1fr;
  color: var(--rc-white);
  background: #12385f;
  border-color: #234e76;
}

.rc-option-card--dark .rc-option-card__body {
  padding-top: 30px;
}

.rc-option-card--dark .rc-option-card__copy,
.rc-option-card--dark .rc-option-card__list {
  color: #c6d3df;
}

/* 22. SERVICE PROCESS */

.rc-service-process {
  color: var(--rc-white);
  background: #12385f;
}

.rc-service-process__intro {
  max-width: 700px;
  margin-bottom: 50px;
}

.rc-service-process__intro .rc-copy {
  color: #c0cfdd;
}

.rc-service-process__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rc-service-process__step {
  min-height: 225px;
  padding: 28px 25px;
  border-left: 1px solid #36597b;
}

.rc-service-process__step:first-child {
  border-left: 0;
}

.rc-service-process__number {
  display: block;
  margin-bottom: 26px;
  color: var(--rc-gold-light);
  font-family: var(--rc-font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.rc-service-process__title {
  margin-bottom: 10px;
  font-family: var(--rc-font-heading);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-service-process__copy {
  margin: 0;
  color: #c0cfdd;
  font-size: 12px;
  line-height: 1.65;
}

/* 23. SERVICE PROJECT FEATURE */

.rc-service-project {
  min-height: 650px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  color: var(--rc-white);
  background: #0a1c31;
}

.rc-service-project__media {
  position: relative;
  overflow: hidden;
}

.rc-service-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-service-project__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgb(0 0 0 / 65%));
}

.rc-service-project__media-label {
  position: absolute;
  z-index: 1;
  bottom: 27px;
  left: 30px;
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.rc-service-project__body {
  padding: clamp(68px, 7vw, 95px) clamp(32px, 5vw, 60px);
  align-self: center;
}

.rc-service-project__body > .rc-copy {
  color: #c4d1de;
  font-size: 14px;
}

/* 24. SERVICE AREA BAND */

.rc-service-area-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 75px);
  align-items: center;
}

.rc-service-area-band__heading {
  margin-bottom: 0;
  color: var(--rc-white);
  font-family: var(--rc-font-heading);
  font-size: clamp(36px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.rc-service-area-band__copy {
  margin: 0;
  color: #bdcad7;
  font-size: 13px;
  line-height: 2;
}

/* TABLET */

@media (max-width: 991px) {
  .rc-service-hero {
    grid-template-columns: 1fr 1fr;
  }

  .rc-service-hero__content {
    padding-inline: 42px;
  }

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

  .rc-option-card {
    grid-template-columns: 1fr;
  }

  .rc-option-card__media {
    height: 240px;
  }

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

  .rc-service-process__step:nth-child(4) {
    border-left: 0;
  }

  .rc-service-project {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .rc-service-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .rc-service-hero__media {
    order: 1;
    min-height: 285px;
    border-bottom: 5px solid var(--rc-gold);
    border-left: 0;
  }

  .rc-service-hero__content {
    order: 2;
    padding: 54px var(--rc-gutter) 68px;
  }

  .rc-service-hero__title {
    font-size: clamp(48px, 14.5vw, 62px);
  }

  .rc-service-hero__copy {
    font-size: 16px;
    line-height: 1.55;
  }

  .rc-service-trust {
    margin-top: -25px;
  }

  .rc-service-intro,
  .rc-service-project,
  .rc-service-area-band {
    grid-template-columns: 1fr;
  }

  .rc-service-intro {
    gap: 35px;
  }

  .rc-service-intro__media {
    min-height: 390px;
  }

  .rc-sign-grid,
  .rc-option-grid {
    grid-template-columns: 1fr;
  }

  .rc-sign-card {
    min-height: 0;
    padding: 25px 22px;
  }

  .rc-option-card {
    min-height: 0;
  }

  .rc-option-card__body {
    padding: 32px 25px;
  }

  .rc-service-process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rc-service-process__step {
    min-height: 190px;
    padding: 22px 17px;
  }

  .rc-service-process__step:nth-child(odd) {
    border-left: 0;
  }

  .rc-service-process__step:nth-child(4) {
    border-left: 1px solid #36597b;
  }

  .rc-service-project__media {
    min-height: 410px;
  }

  .rc-service-project__body {
    padding: 68px var(--rc-gutter);
  }

  .rc-service-area-band {
    gap: 22px;
  }
}
/* ==========================================================================
   ACTION STEPS
   Reusable split-layout instructions or immediate-action component
   ========================================================================== */

.rc-action-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: start;
}

.rc-action-layout__heading .rc-heading-lg {
  margin-bottom: 0;
}

.rc-action-list {
  display: grid;
  gap: 1px;
  background: #d9e0e7;
}

.rc-action-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 27px;
  background: var(--rc-paper);
}

.rc-number-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  color: var(--rc-white);
  background: var(--rc-blue);
  border-radius: 50%;
  font-family: var(--rc-font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.rc-action-item__copy {
  margin: 0;
  color: var(--rc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.rc-action-item__copy strong {
  color: var(--rc-ink);
}

@media (max-width: 767px) {
  .rc-action-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .rc-action-item {
    padding: 22px 20px;
  }
}
/* ==========================================================================
   INFORMATION CARDS
   Reusable cards for categories, conditions, benefits, and comparisons
   ========================================================================== */

.rc-info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rc-info-card {
  min-height: 360px;
  padding: 34px 30px;
  background: var(--rc-paper);
  border-top: 4px solid var(--rc-blue);
}

.rc-info-card__number {
  margin: 0 0 28px;
  color: #bdcbd9;
  font-family: var(--rc-font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.rc-info-card__title {
  margin-bottom: 14px;
  color: var(--rc-ink);
  font-family: var(--rc-font-heading);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-info-card__copy {
  margin: 0;
  color: var(--rc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.rc-info-card__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.rc-info-card__list li {
  position: relative;
  margin: 0;
  padding: 7px 0 7px 20px;
  color: #435269;
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid #dfe4e9;
}

.rc-info-card__list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--rc-gold-light);
  border-radius: 50%;
}

@media (max-width: 991px) {
  .rc-info-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .rc-info-card-grid {
    grid-template-columns: 1fr;
  }

  .rc-info-card {
    min-height: 0;
    padding: 30px 24px;
  }
}
/* Supporting note beneath a process or explanatory section */

.rc-process-note {
  max-width: 940px;
  margin: 30px 0 0;
  padding: 18px 20px;
  color: #aebfd0;
  background: #0e2d4e;
  border-left: 3px solid var(--rc-gold-light);
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .rc-process-note {
    margin-top: 24px;
  }
}
/* ==========================================================================
   FAQ ACCORDION ICONS
   Creates plus/minus icons without relying on Bricks icon settings
   ========================================================================== */

.rc-faq__accordion .accordion-title-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 58px 20px 18px;
}

/* Hide the standard Bricks arrow */

.rc-faq__accordion .accordion-title-wrapper > .icon {
  display: none;
}

/* Create the circular icon */

.rc-faq__accordion .accordion-title-wrapper::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--rc-blue);
  background: var(--rc-white);
  border: 1px solid #d5dde6;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

/* Change plus to minus when the item is open */

.rc-faq__accordion .brx-open .accordion-title-wrapper::after {
  content: "\2212";
  color: var(--rc-white);
  background: var(--rc-blue);
  border-color: var(--rc-blue);
}

/* RESTORED COMPONENTS — baseline before location-page CSS. */

/* Correct the open FAQ icon, including files affected by character encoding. */

.rc-faq__accordion .brx-open .accordion-title-wrapper::after {
  content: "\2212";
}

/* Reusable two-column FAQ layout. */

.rc-faq {
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
  gap: clamp(40px,7vw,90px);
  align-items: start;
}

.rc-faq__heading, .rc-faq__accordion {
  min-width: 0;
}

.rc-faq__accordion {
  width: 100%;
}

@media (min-width:992px) {
  .rc-faq__heading {
    position: sticky;
    top: 120px;
  }
}

@media (max-width:991px) {
  .rc-faq {
    grid-template-columns: 1fr;
  }
}

/* Company-history credibility band. */
.rc-credibility-band__inner .rc-heading-md span {
  color: var(--rc-gold-light);
}

.rc-credibility-band {
  position: relative;
  z-index: 1;
  padding: clamp(44px,6vw,76px) var(--rc-gutter);
  color: var(--rc-white);
  background: var(--rc-blue);
}

.rc-credibility-band__inner {
  width: min(100%,var(--rc-container));
  margin-inline: auto;
  text-align: center;
  align-items: center;
  text-align: center;
}

.rc-credibility-band__inner .rc-heading-lg {
  max-width: 980px;
  margin: 0 auto 18px;
  color: var(--rc-white);
}

.rc-credibility-band__inner .rc-copy {
  max-width: 900px;
  margin-inline: auto;
  color: #d9e2ec;
}

.rc-trust--below-band, .rc-service-trust.rc-trust--below-band {
  margin-top: clamp(22px,3vw,36px);
}

/* Reusable two-column editorial content. */

.rc-split-copy {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
  gap: clamp(40px,7vw,90px);
  align-items: start;
}

.rc-split-copy > * {
  min-width: 0;
}

@media (max-width:767px) {
  .rc-split-copy {
    grid-template-columns: 1fr;
  }
}

/* Reusable alternating image-and-copy features. */

.rc-feature-list {
  display: grid;
  gap: 28px;
}

.rc-feature {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr);
  align-items: stretch;
  min-height: 520px;
  overflow: hidden;
  background: #102b4a;
}

.rc-feature--reverse {
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
}

.rc-feature--reverse .rc-feature__media {
  order: 2;
}

.rc-feature__media {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 480px;
  overflow: hidden;
}

.rc-feature__media > .brxe-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.rc-feature__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.rc-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rc-feature__content {
  align-self: center;
  min-width: 0;
  padding: clamp(40px,5vw,60px);
}

.rc-feature__title {
  margin-bottom: 18px;
  color: var(--rc-white);
  font-family: var(--rc-font-heading);
  font-size: clamp(36px,4vw,48px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rc-feature__copy {
  margin: 0;
  color: #c4d1de;
  font-size: 14px;
  line-height: 1.75;
}

.rc-feature__list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #36516e;
}

.rc-feature__list li {
  position: relative;
  margin: 0;
  padding: 11px 8px 11px 19px;
  color: #d6e0ea;
  font-size: 12px;
  line-height: 1.5;
  border-bottom: 1px solid #36516e;
}

.rc-feature__list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 2px;
  width: 5px;
  height: 5px;
  background: var(--rc-gold-light);
  border-radius: 50%;
}

.rc-text-link--light {
  color: var(--rc-gold-light);
}

@media (max-width:991px) {
  .rc-feature__content {
    padding: 40px;
  }
}

@media (max-width:767px) {
  .rc-feature, .rc-feature--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .rc-feature--reverse .rc-feature__media {
    order: 0;
  }
  .rc-feature__media {
    height: 300px;
    min-height: 300px;
  }
  .rc-feature__content {
    padding: 38px 24px;
  }
  .rc-feature__list {
    grid-template-columns: 1fr;
  }
}

/* Reusable numbered capability grid. */

.rc-capability-grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  width: 100%;
  max-width: none;
  gap: 1px;
  overflow: hidden;
  background: #dbe1e7;
}

.rc-capability-card {
  min-width: 0;
  min-height: 164px;
  padding: clamp(28px,4vw,40px);
  background: #f6f7f8;
}

.rc-capability-card__number {
  display: block;
  margin-bottom: 4px;
  color: #cbd7e3;
  font-family: var(--rc-font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.rc-capability-card__title {
  margin: 0;
  color: var(--rc-ink);
  font-family: var(--rc-font-heading);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

@media (max-width:767px) {
  .rc-capability-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .rc-capability-card {
    min-height: 138px;
    padding: 24px 20px;
  }
}

/* Add this modifier beside rc-service-process__grid; retain the base class. */

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

@media (max-width:767px) {
  .rc-process-grid--3 {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

/* Reusable project gallery: copy at left, image mosaic at right. */

.rc-project-gallery {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.9fr)
    minmax(0, 1fr)
    minmax(0, 1fr);
  grid-template-rows: 430px 350px;
  grid-template-areas:
    "copy wide wide"
    "copy small-one small-two";
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  color: var(--rc-white);
  background: var(--rc-navy);
}

.rc-project-gallery__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(40px,5vw,70px);
}

.rc-project-gallery__copy .rc-button {
  width: auto;
  margin-top: 24px;
  align-self: flex-start;
}

.rc-project-gallery__item {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #102b4a;
}

.rc-project-gallery__item--wide {
  grid-area: wide;
}

.rc-project-gallery > .rc-project-gallery__item:nth-child(3) {
  grid-area: small-one;
}

.rc-project-gallery > .rc-project-gallery__item:nth-child(4) {
  grid-area: small-two;
}

/* The item is a <figure>; the label is its <figcaption>. */

.rc-project-gallery__item > .brxe-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.rc-project-gallery__item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.rc-project-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Reusable image-label appearance */

.rc-image-label {
  margin: 0;
  color: var(--rc-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Labels over project-gallery images */

.rc-project-gallery__item .rc-image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 60px 30px 24px;
  background: linear-gradient(
    transparent,
    rgb(4 18 34 / 78%)
  );
}

/* Labels over location-proof images */
/* Location testimonial */

.rc-location-proof .rc-testimonial-quote {
  margin: 30px 0 0;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--rc-line);
  border-left: 3px solid var(--rc-gold-light);
}

.rc-location-proof .rc-testimonial-quote__text {
  margin: 0;
  color: var(--rc-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 400;
  line-height: 1.45;
}

.rc-location-proof .rc-testimonial-quote__author {
  margin: 16px 0 0;
  color: var(--rc-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.rc-location-proof__media {
  position: relative;
  overflow: hidden;
}

.rc-location-proof__media .rc-image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 60px 24px 22px;
  background: linear-gradient(
    transparent,
    rgb(4 18 34 / 78%)
  );
}
@media (max-width:991px) {
  .rc-project-gallery {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: auto 420px 320px;
    grid-template-areas:
      "copy copy"
      "wide wide"
      "small-one small-two";
  }
}

@media (max-width:767px) {
  .rc-project-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto 320px 300px 300px;
    grid-template-areas:
      "copy"
      "wide"
      "small-one"
      "small-two";
  }

  .rc-project-gallery__copy {
    padding: 48px 24px;
  }
}
