
/* =========================================
   GLOBAL
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Avenir, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1400px, 92%);
  margin: 0 auto;
}


/* =========================================
   BRAND COLORS
========================================= */

:root {
  --black: #111111;
  --black-light: #1c1c1c;

  --red: #c90000;
  --red-hover: #a90000;

  --gold: #c9a24d;

  --green: #008f4c;
  --green-hover: #007a40;

  --white: #ffffff;
  --off-white: #f7f7f5;

  --gray: #666666;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar {
  background: #111111;
  color: #ffffff;
  font-size: 12px;
}

.top-bar-inner {
  min-height: 38px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.top-left span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-left i {
  color: var(--red);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 18px;

  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-right a {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #ffffff;

  transition: 0.3s ease;
}

.top-right a i {
  color: #ffffff;
}

.top-right a:hover {
  color: #dddddd;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  background: #ffffff;

  position: sticky;
  top: 0;

  z-index: 999;

  border-bottom: 1px solid #e7e7e7;

  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.header-inner {
  min-height: 92px;

  display: flex;
  align-items: center;

  gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.logo {
  display: flex;
  align-items: center;

  margin-right: auto;
}

.logo img {
  display: block;
  width: 200px;
  height: auto;
  
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.main-nav > a,
.dropdown-toggle {
  color: #111111;

  font-size: 14px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  background: none;
  border: 0;

  cursor: pointer;

  font-family: inherit;

  position: relative;

  padding: 36px 0;
}

.dropdown-toggle {
  display: flex;
  align-items: center;

  gap: 6px;

  text-decoration: none;
}


/* underline */

.main-nav > a::after,
.dropdown-toggle::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 25px;

  width: 0;
  height: 2px;

  background: var(--red);

  transition: width 0.3s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle.active::after {
  width: 100%;
}

.main-nav > a:hover,
.main-nav > a.active,
.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--red);
}


/* =========================================
   SERVICES DROPDOWN
========================================= */

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;

  top: 92px;
  left: 0;

  width: 260px;

  background: #ffffff;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);

  transition: 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.dropdown-menu a {
  display: block;

  color: #222222;

  padding: 14px 20px;

  border-bottom: 1px solid #eeeeee;

  font-size: 14px;

  transition: 0.25s ease;
}

.dropdown-menu a:hover {
  background: var(--off-white);

  color: var(--red);

  padding-left: 25px;
}


/* =========================================
   HEADER CTA
========================================= */

.header-cta {
  background: var(--green);

  color: #ffffff;

  padding: 15px 22px;

  text-transform: uppercase;

  font-size: 13px;
  font-weight: 700;

  border-radius: 2px;

  white-space: nowrap;

  transition: 0.3s ease;
}

.header-cta:hover {
  background: var(--green-hover);

  transform: translateY(-2px);
}


/* =========================================
   MOBILE BUTTON
========================================= */

.mobile-toggle {
  display: none;

  width: 34px;
  height: 28px;

  background: transparent;

  border: 0;

  padding: 0;

  cursor: pointer;

  flex-direction: column;
  justify-content: space-between;

  position: relative;

  z-index: 1001;
}

.mobile-toggle span {
  display: block;

  width: 100%;
  height: 3px;

  background: #111111;

  border-radius: 2px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


/* =========================================
   HAMBURGER → X
========================================= */

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(12.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-12.5px) rotate(-45deg);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

  .header-inner {
    min-height: 82px;

    gap: 18px;
  }

  .logo img {
    width: 185px;
  }


  /* MOBILE NAV */

  .main-nav {
    position: absolute;

    top: 82px;
    left: 0;

    width: 100%;

    background: #ffffff;

    display: none;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 20px 5%;

    border-top: 1px solid #eeeeee;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .dropdown-toggle {
    width: 100%;

    padding: 15px 0;

    color: #111111;
  }

  .main-nav > a::after,
  .dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }


  /* DROPDOWN */

  .dropdown-menu {
    position: static;

    width: 100%;

    opacity: 1;
    visibility: visible;

    transform: none;

    display: none;

    box-shadow: none;

    background: #f7f7f5;

    margin-top: 5px;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }


  /* IMPORTANT:
     CTA STAYS VISIBLE ON MOBILE */

  .header-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 15px;

    font-size: 11px;

    margin-left: auto;
  }


  .mobile-toggle {
    display: flex;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 650px) {

  .top-left {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;

    padding: 7px 0;
  }

  .top-right {
    justify-content: center;

    gap: 8px 14px;

    font-size: 10px;
  }


  /* hide emails in tiny header bar
     to prevent crowding */

  .top-right a:nth-child(2),
  .top-right a:nth-child(4) {
    display: none;
  }


  .header-inner {
    min-height: 74px;

    gap: 12px;
  }

  .logo img {
    width: 125px;
  }


  .main-nav {
    top: 74px;
  }


  /* MOBILE CTA */

  .header-cta {
    padding: 10px 11px;

    font-size: 9px;

    line-height: 1.2;

    text-align: center;
  }


  .mobile-toggle {
    width: 30px;
    height: 24px;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

}

/* =========================================
   HERO SECTION
========================================= */

.hero {
  min-height: 550px;

  position: relative;

  display: flex;
  align-items: center;

  background:
    url("../assets/images/main_hero.png")
    center center / cover no-repeat;

  overflow: hidden;
}


/* DARK OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.68) 45%,
      rgba(0, 0, 0, 0.20) 100%
    );
}


/* CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
}


/* HERO TEXT */

.hero-text {
  max-width: 700px;
  color: white;
}


.hero-eyebrow {
  color: var(--gold);

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 22px;
}


/* HERO HEADING */

.hero h1 {
   font-size: clamp(32px, 3vw, 46px);

  line-height: 1;

  font-weight: 800;

  letter-spacing: -2px;

  margin-bottom: 25px;
}


.hero h1 span {
  display: block;

  color: var(--gold);

  margin-top: 10px;
}


/* HERO DESCRIPTION */

.hero-description {
  max-width: 600px;

  font-size: 19px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 32px;
}


/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  align-items: center;

  gap: 16px;

  flex-wrap: wrap;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 26px;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  transition: 0.3s ease;
}


/* GREEN CTA */

.btn-green {
  background: var(--green);
  color: white;

  border: 2px solid var(--green);
}


.btn-green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);

  transform: translateY(-2px);
}


/* OUTLINE BUTTON */

.btn-outline {
  color: white;

  border: 2px solid rgba(255, 255, 255, 0.8);
}


.btn-outline:hover {
  background: white;
  color: #111;

  transform: translateY(-2px);
}


/* =========================================
   HERO MOBILE
========================================= */

@media (max-width: 768px) {

  .hero {
    min-height: 600px;

    background-position: 65% center;
  }

  .hero-overlay {
    background:
      rgba(0, 0, 0, 0.70);
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-description {
    font-size: 17px;
  }
  .hero-content {
    padding-left: 25px;
    padding-right: 25px;
  }

}


@media (max-width: 500px) {

  .hero {
    min-height: 570px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* =========================================
   TRUST BAR
========================================= */

.trust-bar {
  background: #151515;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}


/* EACH TRUST ITEM */

.trust-item {
  min-height: 115px;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 25px 30px;

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: none;
}


/* ICON */

.trust-icon {
  flex-shrink: 0;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold);

  font-size: 32px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


/* TITLE */

.trust-item h3 {
  margin: 0 0 5px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;

  line-height: 1.4;
}


/* DESCRIPTION */

.trust-item p {
  margin: 0;

  color: #a9a9a9;

  font-size: 12px;

  line-height: 1.5;
}


/* HOVER */

.trust-item {
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.trust-item:hover {
  background: #1d1d1d;
}

.trust-item:hover .trust-icon {
  color: var(--green);
  transform: translateY(-3px);
}


/* =========================================
   TRUST BAR RESPONSIVE
========================================= */

@media (max-width: 1000px) {

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

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

}


@media (max-width: 600px) {

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

  .trust-item {
    min-height: 90px;

    border-right: none;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.12);

    padding: 20px;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
  background: #f7f7f5;
  padding: 85px 0 95px;
}


/* SECTION HEADING */

.services-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-label {
  color: var(--gold);

  font-size: 15px;
  font-weight: 800;

  letter-spacing: 3px;

  margin-bottom: 12px;
}

.services-heading h2 {
  color: var(--black);

 font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;

  line-height: 1.15;

  margin-bottom: 18px;
}

.section-intro {
  color: #666;

  font-size: 16px;
  line-height: 1.7;

  max-width: 680px;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
  display: block;

  background: #ffffff;

  overflow: hidden;

  border-bottom: 3px solid transparent;

  box-shadow:
    0 6px 25px rgba(0, 0, 0, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-7px);

  border-bottom-color: var(--gold);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.13);
}



/* =========================================
   SERVICE IMAGE
========================================= */

.service-image {
  height: 230px;

  overflow: hidden;

  background: #ddd;
}

.service-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {
  min-height: 105px;

  padding: 20px 22px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.service-number {
  display: block;

  color: var(--gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 6px;
}

.service-content h3 {
  color: #171717;

  font-size: 17px;
  font-weight: 700;

  line-height: 1.3;

  text-transform: uppercase;
}

.service-content p {
  color: #777;

  font-size: 12px;

  margin-top: 4px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


/* ARROW */

.service-arrow {
  flex-shrink: 0;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 3px solid #ddd;

  color: var(--green);

  font-size: 21px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover .service-arrow {
  background: var(--green-hover);

  color: #ffffff;

  border-color: var(--green-hover);

  transform: translateX(3px);
}



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 650px) {

  .services-section {
    padding: 60px 0 70px;
  }

  .services-heading {
    margin-bottom: 30px;
  }

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

  .service-image {
    height: 220px;
  }

  .services-heading h2 {
    font-size: 34px;
  }

}

/* =========================================
   FEATURED WIDE EXTERIOR CARD
========================================= */

.service-card-wide {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: 1.6fr 1fr;
}

.service-card-wide .service-image {
  height: 320px;
}

.service-card-wide .service-content {
  min-height: 100%;
  padding: 40px;

  background: #111111;
}

.service-card-wide .service-number {
  color: var(--gold);
}

.service-card-wide .service-content h3 {
  color: #ffffff;

  font-size: 28px;
}

.service-card-wide .service-content p {
  color: #aaaaaa;

  font-size: 13px;
}

.service-card-wide .service-arrow {
  border-color: rgba(255,255,255,0.25);
}


/* MOBILE */

@media (max-width: 768px) {

  .service-card-wide {
    grid-column: auto;
    display: block;
  }

  .service-card-wide .service-image {
    height: 220px;
  }

  .service-card-wide .service-content {
    min-height: 105px;
    padding: 20px 22px;

    background: #ffffff;
  }

  .service-card-wide .service-content h3 {
    color: #171717;
    font-size: 17px;
  }

  .service-card-wide .service-content p {
    color: #777777;
  }

}

/* =========================================
   WHY CHOOSE SUPREME
========================================= */

.why-us {
  background: #111111;
  padding: 95px 0;
  color: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 65px;
  align-items: center;
}


/* IMAGE */

.why-us-image {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}


/* IMAGE BADGE */

.why-image-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: var(--gold);
  color: #111111;

  padding: 15px 20px;

  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-image-badge i {
  font-size: 20px;
}


/* CONTENT */

.why-label {
  color: var(--gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 15px;
}

.why-us-content h2 {
  color: #ffffff;

 font-size: clamp(32px, 3vw, 46px);
  line-height: 1.12;

  margin-bottom: 22px;
}

.why-intro {
  max-width: 620px;

  color: #b5b5b5;

  font-size: 15px;
  line-height: 1.8;

  margin-bottom: 35px;
}


/* FEATURES */

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 28px 30px;

  margin-bottom: 38px;
}

.why-feature {
  display: flex;
  align-items: flex-start;

  gap: 15px;
}

.why-feature-icon {
  flex-shrink: 0;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(212, 169, 74, 0.45);

  color: var(--gold);

  font-size: 18px;
}

.why-feature h3 {
  color: #ffffff;

  font-size: 15px;
  text-transform: uppercase;

  margin-bottom: 7px;
}

.why-feature p {
  color: #999999;

  font-size: 13px;
  line-height: 1.6;

  margin: 0;
}


/* BUTTON */

.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  background: var(--green);
  color: #ffffff;

  padding: 17px 25px;

  font-size: 13px;
  font-weight: 700;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.why-btn:hover {
  background: #a9181e;
  transform: translateY(-2px);
}

.why-btn span {
  font-size: 19px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-us-image {
    height: 500px;
  }

}


@media (max-width: 600px) {

  .why-us {
    padding: 65px 0;
  }

  .why-us-image {
    height: 390px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-us-content h2 {
    font-size: 34px;
  }

}

/* =========================================
   RECENT PROJECTS
========================================= */

.projects-section {
  background: #f7f7f5;
  padding: 90px 0 100px;
}


/* HEADING */

.projects-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;

  margin-bottom: 45px;
}

.projects-heading h2 {
  color: #151515;

  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.15;

  margin: 0;
}

.projects-intro {
  max-width: 470px;

  color: #666666;

  font-size: 15px;
  line-height: 1.7;

  margin: 0 0 5px;
}


/* =========================================
   PROJECT GRID
========================================= */

.projects-grid {
  display: grid;

  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 285px);

  gap: 20px;
}


/* LARGE PROJECT */

.project-large {
  grid-row: 1 / 3;
}


/* =========================================
   PROJECT CARD
========================================= */

.project-card {
  position: relative;

  overflow: hidden;

  background: #111111;
}

.project-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}


/* DARK GRADIENT */

.project-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      rgba(0, 0, 0, 0.05) 100%
    );
}


/* =========================================
   PROJECT TEXT
========================================= */

.project-overlay {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 28px;

  z-index: 2;

  color: #ffffff;
}

.project-overlay p {
  color: var(--gold);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 7px;
}

.project-overlay h3 {
  color: #ffffff;

  font-size: 23px;
  line-height: 1.3;

  margin-bottom: 14px;
}

.project-large .project-overlay h3 {
  font-size: 30px;
}


/* LINK */

.project-overlay a {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1px;

  border-bottom: 1px solid var(--green);

  padding-bottom: 4px;
}

.project-overlay a span {
  color: var(--green-hover);

  font-size: 17px;

  transition: transform 0.3s ease;
}

.project-card:hover .project-overlay a span {
  transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .projects-heading {
    display: block;
  }

  .projects-intro {
    margin-top: 18px;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 280px;
  }

  .project-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

}


@media (max-width: 600px) {

  .projects-section {
    padding: 65px 0 70px;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card,
  .project-large {
    height: 320px;

    grid-column: auto;
    grid-row: auto;
  }

  .project-overlay {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .project-overlay h3,
  .project-large .project-overlay h3 {
    font-size: 22px;
  }

}
/* =========================================
   OUR REMODELING PROCESS
========================================= */

.process-section {
  background: #111111;
  color: #ffffff;

  padding: 90px 0;
}


/* HEADING */

.process-heading {
  max-width: 720px;

  margin-bottom: 40px;
}

.process-heading .section-label {
  color: var(--gold);
}

.process-heading h2 {
  color: #ffffff;

  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.15;

  margin-bottom: 18px;
}

.process-heading > p:last-child {
  color: #aaaaaa;

  font-size: 15px;
  line-height: 1.8;

  max-width: 650px;
}


/* =========================================
   PROCESS GRID
========================================= */

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* STEP */

.process-step {
  position: relative;

  min-height: 280px;

  padding: 32px 30px;

  border-right: 1px solid rgba(255, 255, 255, 0.15);

  transition: background 0.3s ease;
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: #181818;
}


/* NUMBER + ICON */

.process-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 45px;
}

.process-number {
  color: var(--gold);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;
}

.process-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(212, 169, 74, 0.5);

  color: var(--gold);

  font-size: 19px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.process-step:hover .process-icon {
  background: var(--gold);
  color: #111111;
}


/* TEXT */

.process-step h3 {
  color: #ffffff;

  font-size: 18px;
  text-transform: uppercase;

  margin-bottom: 13px;
}

.process-step p {
  color: #999999;

  font-size: 13px;
  line-height: 1.7;

  margin: 0;
}


/* =========================================
   PROCESS CTA
========================================= */



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

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

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step:nth-child(-n+2) {
    border-bottom:
      1px solid rgba(255, 255, 255, 0.15);
  }

}


@media (max-width: 600px) {

  .process-section {
    padding: 65px 0;
  }

  .process-heading {
    margin-bottom: 35px;
  }

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

  .process-step {
    min-height: auto;

    padding: 28px 20px;

    border-right: none;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.15);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .process-top {
    margin-bottom: 25px;
  }

 

}

/* =========================================
   FREE ESTIMATE SECTION
========================================= */

.estimate-section {
  background: #f7f7f5;
  padding-bottom: 40px;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.estimate-image-wrap {
  position: relative;

  min-height: 440px;

  display: flex;
  align-items: center;

  background:
    url("../assets/images/estimate_bg.png")
    center / cover no-repeat;

  overflow: hidden;
}

.estimate-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.38) 55%,
      rgba(0, 0, 0, 0.15) 100%
    );
}


/* TEXT OVER IMAGE */

.estimate-image-content {
  position: relative;

  z-index: 2;

  color: #ffffff;

  padding-bottom: 80px;
}

.estimate-label {
  color: var(--gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 14px;
}

.estimate-image-content h2 {
  max-width: 700px;

  color: #ffffff;

  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.1;

  margin-bottom: 18px;
}

.estimate-image-content > p:last-child {
  max-width: 620px;

  color: rgba(255,255,255,0.88);

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================
   WHITE OVERLAPPING BOX
========================================= */

.estimate-box {
  position: relative;

  z-index: 5;

  max-width: 1180px;

  margin: -110px auto 0;

  background: #ffffff;

  padding: 45px 60px;

  box-shadow:
    0 18px 50px rgba(0,0,0,0.12);
}


/* HEADING */

.estimate-box-heading {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 30px;
}

.estimate-box-heading h2 {
  color: #111111;

  font-size: clamp(32px, 3vw, 46px);

  margin-bottom: 12px;
}

.estimate-box-heading > p:last-child {
  color: #666666;

  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
   FORM
========================================= */

.estimate-form {
  width: 100%;
}

.form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 22px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.form-group label {
  color: #222222;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid #dddddd;

  background: #ffffff;

  padding: 15px 16px;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
  min-height: 52px;
}

.form-group textarea {
  resize: vertical;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);

  box-shadow:
    0 0 0 3px rgba(201,162,77,0.12);
}


/* FULL WIDTH TEXTAREA */

.full-width {
  margin-top: 22px;
}


/* =========================================
   FORM ACTIONS
========================================= */

.estimate-actions {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 28px;
}

.estimate-submit {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  border: none;

  background: var(--green);

  color: #ffffff;

  padding: 17px 25px;

  font-family: inherit;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.estimate-submit:hover {
  background: var(--green-hover);

  transform: translateY(-2px);
}

.estimate-submit span {
  font-size: 18px;
}


/* SCHEDULE LINK */

.schedule-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #111111;

  font-size: 13px;
  font-weight: 700;

  border-bottom:
    1px solid var(--gold);

  padding-bottom: 4px;
}

.schedule-link i {
  color: var(--gold);

  font-size: 17px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

  .estimate-image-wrap {
    min-height: 390px;
  }

  .estimate-box {
    margin-top: -70px;

    padding:
      40px 30px;
  }

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

}


@media (max-width: 550px) {

  .estimate-section {
    padding-bottom: 70px;
  }

  .estimate-image-wrap {
    min-height: 350px;
  }

  .estimate-image-content {
    padding-bottom: 55px;
  }

  .estimate-box {
    margin-top: -45px;

    padding:
      35px 22px;
  }

  .estimate-actions {
    align-items: flex-start;

    flex-direction: column;
  }

  .estimate-submit {
    width: 100%;
  }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #0d0d0d;
  color: #ffffff;

  padding-top: 65px;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    0.75fr
    1fr
    1.25fr;

  gap: 55px;

  padding-bottom: 40px;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #ffffff;
  color: #111111;
  padding-top: 70px;
  border-top: 1px solid #e5e5e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 55px;
  padding-bottom: 60px;
}

/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
  max-width: 340px;
}


/* LOGO */

.footer-logo {
  display: inline-block;

  margin-bottom: 22px;
}

.footer-logo img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


/* BRAND DESCRIPTION */

.footer-brand > p {
  color: #666666;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 11px;
}


/* COLUMN TITLE */

.footer-column h3 {
  color: #111111;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 10px;
}


/* GOLD LINE UNDER TITLE */

.footer-column h3::after {
  content: "";

  display: block;

  width: 30px;
  height: 2px;

   background: #c90000;

  margin-top: 10px;
}


/* LINKS */

.footer-column > a:not(.footer-estimate-btn),
.footer-column > p {
  color: #555555;

  font-size: 13px;

  line-height: 1.6;

  transition:
    color 0.3s ease;
}

.footer-column > a:not(.footer-estimate-btn):hover {
  color: #c90000;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact > a:not(.footer-estimate-btn),
.footer-contact > p {
  display: flex;

  align-items: flex-start;

  gap: 11px;
}

.footer-contact i {
  color: #c90000;


  width: 16px;

  margin-top: 4px;
}


/* =========================================
   FOOTER FREE ESTIMATE BUTTON
========================================= */

.footer-estimate-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  background: var(--green);

  color: #ffffff;

  padding: 14px 18px;

  margin-top: 10px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.4px;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.footer-estimate-btn:hover {
  background: var(--green-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-estimate-btn span {
  font-size: 17px;
}


/* =========================================
   SOCIAL ICONS
========================================= */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #dddddd;

  color: #111111;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.footer-social a:hover {
  background: #c90000;
  border-color: #c90000;
  color: #ffffff;
}

.footer-social i {
  margin: 0;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  background: #090909;

  border-top:
    1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  min-height: 70px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* COPYRIGHT */

.footer-bottom p {
  color: #777777;

  font-size: 12px;

  margin: 0;
}


/* PRIVACY LINKS */

.footer-legal {
  display: flex;

  gap: 25px;
}

.footer-legal a {
  color: #777777;

  font-size: 12px;

  transition:
    color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 45px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .site-footer {
    padding-top: 50px;
  }


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

    gap: 38px;

    padding-bottom: 40px;
  }


  .footer-logo img {
    width: 230px;
  }


  .footer-bottom-inner {
    min-height: auto;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 22px 0;
  }


  .footer-legal {
    flex-wrap: wrap;

    gap: 15px;
  }

}

/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.about-page-hero {
  min-height: 440px;

  position: relative;

  display: flex;
  align-items: center;

  background:
    url("../assets/images/about_hero.png")
    center / cover no-repeat;

  overflow: hidden;
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.72) 40%,
      rgba(0, 0, 0, 0.28) 72%,
      rgba(0, 0, 0, 0.10) 100%
    );
}

.about-page-hero-content {
  position: relative;
  z-index: 2;

  padding-top: 55px;
  padding-bottom: 55px;
}

.about-eyebrow {
  color: var(--gold);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 22px;
}

.about-page-hero h1 {
  max-width: 760px;

  color: var(--white);

  font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;

  line-height: 1.05;

  letter-spacing: -1.5px;

  margin-bottom: 20px;
}

.about-page-hero h1 span {
  display: block;

  color: var(--gold);
}

.about-hero-text {
  max-width: 580px;

  color: rgba(255,255,255,.84);

  font-size: 16px;

  line-height: 1.75;

  margin-bottom: 28px;
}

.about-hero-actions {
  display: flex;
  align-items: center;

  gap: 14px;

  flex-wrap: wrap;
}

.about-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  background: var(--accent);

  color: var(--white);

  padding: 17px 24px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .5px;

  transition:
    background .3s ease,
    transform .3s ease;
}

.about-primary-btn:hover {
  background: var(--accent-hover);

  color: var(--white);

  transform: translateY(-2px);
}

.about-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 15px 23px;

  border: 1px solid rgba(255,255,255,.75);

  color: var(--white);

  font-size: 12px;
  font-weight: 700;

  transition: all .3s ease;
}

.about-secondary-btn:hover {
  background: var(--white);

  color: var(--black);
}





/* =========================================================
   STORY / TEAM
========================================================= */

.about-story-section {
  background: var(--off-white);

  padding: 100px 0;
}

.about-story-grid {
  display: grid;

  grid-template-columns: 1.05fr .95fr;

  gap: 80px;

  align-items: center;
}

.about-story-image {
  position: relative;

  min-height: 600px;

  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 600px;

  display: block;

  object-fit: cover;
}

.about-image-card {
  position: absolute;

  left: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;

  gap: 15px;

  background: var(--black);

  color: var(--white);

  padding: 18px 22px;
}

.about-image-card i {
  color: var(--gold);

  font-size: 24px;
}

.about-image-card span {
  display: block;

  color: var(--gold);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.5px;

  margin-bottom: 4px;
}

.about-image-card strong {
  font-size: 13px;
}

.about-story-content h2 {
  max-width: 600px;

  color: var(--black);

 font-size: clamp(32px, 3vw, 46px);

  line-height: 1.1;

  margin-bottom: 25px;
}

.about-story-content > p {
  color: var(--gray);

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 16px;
}

.about-story-content .about-lead {
  color: #2e2e2e;

  font-size: 17px;

  font-weight: 500;
}

.about-story-points {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px 28px;

  margin-top: 35px;
}

.about-story-point {
  display: grid;

  grid-template-columns: 32px 1fr;

  gap: 12px;
}

.about-story-point > i {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,143,76,.10);

  color: var(--accent);

  border-radius: 50%;

  font-size: 12px;
}

.about-story-point h3 {
  color: var(--black);

  font-size: 14px;

  margin-bottom: 5px;
}

.about-story-point p {
  color: var(--gray);

  font-size: 12px;

  line-height: 1.6;
}


/* =========================================================
   APPROACH
========================================================= */

.about-approach-section {
  background: var(--black);
  padding: 80px 0 85px;
}

.about-dark-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 45px;
}

.about-dark-heading-left {
  max-width: 760px;
}

.about-dark-heading h2 {
  color: var(--white);

  font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;

  line-height: 1.05;

  margin: 0;
}

.about-dark-heading-right {
  max-width: 500px;
}

.about-dark-heading-right p {
  color: #b5b5b5;

  font-size: 17px;
  font-weight: 500;

  line-height: 1.6;

  margin: 0;

  max-width: 420px;
}


/* =========================================
   APPROACH GRID
========================================= */

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}


/* =========================================
   CARD
========================================= */

.about-approach-card {
  position: relative;

  padding: 34px 28px 36px;

  border-right: 1px solid rgba(255,255,255,.12);

  transition:
    background .3s ease,
    transform .3s ease;
}

.about-approach-card:last-child {
  border-right: none;
}

.about-approach-card:hover {
  background: rgba(255,255,255,.025);
}


/* NUMBER */

.approach-number {
  position: absolute;

  top: 22px;
  right: 22px;

  color: rgba(255,255,255,.24);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}


/* ICON */

.about-approach-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(201,162,77,.55);

  color: var(--gold);

  margin-bottom: 26px;

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease;
}

.about-approach-icon i {
  font-size: 19px;
}

.about-approach-card:hover .about-approach-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}


/* TEXT */

.about-approach-card h3 {
  color: var(--white);

  font-size: 15px;
  font-weight: 700;

  text-transform: uppercase;

  margin-bottom: 12px;
}

.about-approach-card p {
  color: #999999;

  font-size: 13px;
  line-height: 1.75;

  margin: 0;
}
@media (max-width: 1000px) {

  .about-dark-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-approach-card:nth-child(2) {
    border-right: none;
  }

  .about-approach-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

}

@media (max-width: 650px) {

  .about-approach-section {
    padding: 65px 0;
  }

  .about-approach-grid {
    grid-template-columns: 1fr;
  }

  .about-approach-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .about-approach-card:last-child {
    border-bottom: none;
  }

}

/* =========================================================
   VALUES
========================================================= */

.about-values-section {
  background: var(--white);

  padding: 100px 0;
}

.about-values-grid {
  display: grid;

  grid-template-columns: .85fr 1.15fr;

  gap: 100px;
}

.about-values-intro {
  position: sticky;

  top: 130px;

  align-self: start;
}

.about-values-intro h2 {
  color: var(--black);

  font-size: clamp(32px, 3vw, 46px);

  line-height: 1.1;

  margin-bottom: 20px;
}

.about-values-intro > p:last-child {
  max-width: 450px;

  color: var(--gray);

  font-size: 15px;

  line-height: 1.8;
}

.about-value-item {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 28px;

  padding: 30px 0;

  border-bottom: 1px solid #e6e6e6;
}

.about-value-item:first-child {
  padding-top: 0;
}

.about-value-number {
  color: var(--gold);

  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
}

.about-value-item h3 {
  color: var(--black);

  font-size: 22px;

  margin-bottom: 8px;
}

.about-value-item p {
  max-width: 580px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   EXPERIENCE SPLIT
========================================================= */

.about-experience-section {
  display: grid;

  grid-template-columns: 1.15fr .85fr;

  min-height: 620px;
}

.about-experience-image img {
  width: 100%;
  height: 100%;

  min-height: 620px;

  display: block;

  object-fit: cover;
}

.about-experience-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #161616;

  padding: 70px;
}

.about-experience-content h2 {
  max-width: 540px;

  color: var(--white);

  font-size: clamp(32px, 3vw, 46px);

  line-height: 1.1;

  margin-bottom: 25px;
}

.about-experience-content > p {
  color: #aaa;

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 15px;
}

.about-text-link {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  width: fit-content;

  color: var(--gold);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .8px;

  margin-top: 18px;
}

.about-text-link:hover {
  color: var(--white);
}


/* =========================================================
   SERVICES SNAPSHOT
========================================================= */

.about-services-section {
  background: var(--off-white);

  padding: 100px 0;
}

.about-services-heading {
  display: grid;

  grid-template-columns: 1.2fr .8fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 50px;
}

.about-services-heading h2 {
  max-width: 750px;

  color: var(--black);

  font-size: clamp(38px, 4.5vw, 54px);

  line-height: 1.08;

  margin: 0;
}

.about-services-heading > p {
  color: var(--gray);

  font-size: 15px;

  line-height: 1.8;

  margin: 0;
}

.about-services-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid #ddd;
}

.about-services-list a {
  display: flex;

  align-items: center;
  justify-content: space-between;

  min-height: 88px;

  padding: 0 22px;

  border-bottom: 1px solid #ddd;
}

.about-services-list a:nth-child(odd) {
  border-right: 1px solid #ddd;
}

.about-services-list span {
  color: var(--black);

  font-size: 16px;
  font-weight: 700;

  text-transform: uppercase;
}

.about-services-list i {
  color: var(--accent);

  transition: transform .3s ease;
}

.about-services-list a:hover i {
  transform: translateX(5px);
}

.about-services-list a:hover span {
  color: var(--accent);
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {
  position: relative;

  min-height: 420px;

  display: flex;
  align-items: center;

  background:
    url("../assets/images/about_cta.png")
    center / cover no-repeat;

  overflow: hidden;
}

/* DARK OVERLAY */
.about-final-cta::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.58);

  z-index: 1;
}

.about-final-cta-inner {
  position: relative;
  z-index: 2;

  width: 100%;

  display: flex;
  justify-content: flex-end;
}

.about-final-copy {
  max-width: 600px;

  padding: 55px 0;
}
.about-final-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
}

.about-final-content .section-label {
  justify-content: center;
}

.about-final-content h2 {
  color: var(--white);

  font-size: clamp(32px, 3vw, 46px);

  line-height: 1.08;

  margin-bottom: 20px;
}
.about-final-copy .section-label {
  color: var(--gold);

  margin-bottom: 12px;
}

.about-final-copy h2 {
  color: var(--white);

  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.1;

  margin-bottom: 15px;
}

.about-final-copy > p {
  color: rgba(255,255,255,.82);

  font-size: 15px;
  line-height: 1.7;

  max-width: 530px;

  margin-bottom: 26px;
}

.about-final-content > p {
  max-width: 650px;

  margin: 0 auto 32px;

  color: rgba(255,255,255,.8);

  font-size: 16px;

  line-height: 1.75;
}

.about-final-buttons {
  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}

.about-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 15px 26px;

  border: 1px solid rgba(255,255,255,.7);

  color: var(--white);

  font-size: 12px;
  font-weight: 800;
}

.about-secondary-light:hover {
  background: var(--white);

  color: var(--black);
}
.about-final-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  min-height: 52px;

  padding: 0 24px;

  background: var(--accent);
  border: 2px solid var(--accent);

  color: var(--white);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;

  transition: all .3s ease;
}

.about-final-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);

  color: var(--white);

  transform: translateY(-2px);
}
.about-final-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  border: 1px solid rgba(255,255,255,.7);

  color: var(--white);

  font-size: 11px;
  font-weight: 800;

  transition: all .3s ease;
}

.about-final-contact:hover {
  background: var(--white);
  color: var(--black);
}

.about-final-actions {
  display: flex;
  align-items: center;

  gap: 14px;
}

/* =========================================
   MEET THE OWNERS
========================================= */

.owners-section {
    padding: 100px 0;
    background: #f7f7f5;
}

.owners-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.owners-heading h2 {
    margin: 12px 0 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: #111;
}

.owners-heading > p:last-child {
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}


/* OWNER GRID */

.owners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 950px;
    margin: 0 auto;
}


/* CARD */

.owner-card {
    background: #fff;
    overflow: hidden;
    border-bottom: 4px solid #d71920;
}


/* IMAGE */

.owner-image {
    height: 420px;
    overflow: hidden;
    background: #eee;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.owner-card:hover .owner-image img {
    transform: scale(1.03);
}


/* CONTENT */

.owner-info {
    padding: 28px 30px 32px;
}

.owner-info h3 {
    margin: 0 0 5px;
    font-size: 27px;
    color: #111;
}

.owner-info span {
    display: inline-block;
    margin-bottom: 16px;

    color: #d71920;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.owner-info p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 768px) {

    .owners-section {
        padding: 70px 0;
    }

    .owners-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .owner-image {
        height: 390px;
    }

    .owners-heading {
        margin-bottom: 35px;
    }
}

/* =========================================
   ESTIMATE FORM MESSAGES
========================================= */

.estimate-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin: 25px 0 30px;
    padding: 18px 20px;

    border-radius: 4px;

    font-size: 14px;
    line-height: 1.6;
}

.estimate-message i {
    font-size: 20px;
    margin-top: 2px;
}

.estimate-message strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
}

.estimate-message p {
    margin: 0;
}


/* SUCCESS */

.estimate-message-success {
    background: #edf8f2;
    border-left: 4px solid var(--sr-green);
    color: #1e5631;
}

.estimate-message-success i {
    color: var(--sr-green);
}


/* ERROR */

.estimate-message-error {
    background: #fff1f1;
    border-left: 4px solid #d71920;
    color: #8b1e24;
}

.estimate-message-error i {
    color: #d71920;
}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .about-intro-grid,
  .about-story-grid,
  .about-dark-heading,
  .about-values-grid,
  .about-services-heading {
    grid-template-columns: 1fr;
  }

  .about-story-grid,
  .about-values-grid {
    gap: 50px;
  }

  .about-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-approach-card:nth-child(2) {
    border-right: none;
  }

  .about-approach-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .about-experience-section {
    grid-template-columns: 1fr;
  }

  .about-experience-image img {
    min-height: 480px;
  }

  .about-values-intro {
    position: static;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .about-page-hero {
    min-height: 420px;
  }

  .about-page-hero h1 {
    font-size: 38px;
  }

  .about-intro-strip,
  .about-story-section,
  .about-approach-section,
  .about-values-section,
  .about-services-section {
    padding: 70px 0;
  }

  .about-story-image,
  .about-story-image img {
    min-height: 0;
    height: 430px;
  }

  .about-story-points {
    grid-template-columns: 1fr;
  }

  .about-approach-grid {
    grid-template-columns: 1fr;
  }

  .about-approach-card {
    border-right: none;

    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .about-approach-card:last-child {
    border-bottom: none;
  }

  .about-experience-content {
    padding: 60px 25px;
  }

  .about-services-list {
    grid-template-columns: 1fr;
  }

  .about-services-list a:nth-child(odd) {
    border-right: none;
  }

  .about-services-list a {
    min-height: 75px;

    padding: 0 10px;
  }

  .about-services-list span {
    font-size: 14px;
  }

  .about-value-item {
    grid-template-columns: 45px 1fr;
  }

  .about-final-cta {
    min-height: 520px;
  }

}