/* Page-level layout helpers */

/* Home page: nav over hero video (overlap), then solid when scrolled */
.page-home main {
  margin-top: -64px; /* pull content up so hero sits under the header */
}

.page-home .hero {
  padding-top: 64px; /* space so hero content starts below nav */
}

.page-home .site-header {
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* Ensure header (and hamburger) are above hero overlay on home so menu is clickable */
@media (max-width: 767px) {
  .page-home .site-header {
    z-index: 200;
  }
}

/* Mobile: home header over video – very light bar so logo/hamburger readable, no heavy dark tint */
@media (max-width: 767px) {
  .page-home .site-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 60%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .page-home .site-header.is-scrolled {
    background-color: var(--color-white);
  }
}

.page-home .site-header .site-logo {
  color: var(--color-white);
  transition: color 0.2s ease;
}
.page-home .site-header .site-logo .site-logo-text {
  color: inherit;
}

.page-home .site-header .site-nav a {
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s ease;
}

.page-home .site-header .site-nav a:hover {
  color: var(--color-white);
}

/* Dropdown over hero: solid panel + dark text so it’s visible on video */
.page-home .site-header:not(.is-scrolled) .site-nav .has-dropdown > ul {
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.page-home .site-header:not(.is-scrolled) .site-nav .has-dropdown > ul a {
  color: var(--color-dark-text);
}
.page-home .site-header:not(.is-scrolled) .site-nav .has-dropdown > ul a:hover {
  color: var(--color-trust-blue);
  background: var(--color-light-gray);
}

.page-home .site-header .header-cta .btn-outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.page-home .site-header .header-cta .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.page-home .site-header .header-cta .btn-primary {
  background-color: var(--color-trust-blue);
  border-color: var(--color-trust-blue);
}

.page-home .site-header .hamburger {
  color: var(--color-white);
  transition: color 0.2s ease;
}

/* When scrolled past hero: solid nav bar */
.page-home .site-header.is-scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-subtle);
}

.page-home .site-header.is-scrolled .site-logo {
  color: var(--color-navy);
}
.page-home .site-header.is-scrolled .site-logo .site-logo-text {
  color: inherit;
}

.page-home .site-header.is-scrolled .site-nav a {
  color: var(--color-dark-text);
}

.page-home .site-header.is-scrolled .site-nav a:hover {
  color: var(--color-trust-blue);
}

.page-home .site-header.is-scrolled .header-cta .btn-outline {
  color: var(--color-trust-blue);
  border-color: var(--color-trust-blue);
}

.page-home .site-header.is-scrolled .header-cta .btn-outline:hover {
  background-color: var(--color-trust-blue);
  color: var(--color-white);
}

.page-home .site-header.is-scrolled .header-cta .btn-primary {
  background-color: var(--color-trust-blue);
  border-color: var(--color-trust-blue);
}

.page-home .site-header.is-scrolled .hamburger {
  color: var(--color-navy);
}

/* Mobile nav drawer on home: same white panel as other pages (no dark overlay) */
.page-home .site-nav.is-open {
  background-color: #fff;
}
.page-home .site-nav.is-open a {
  color: var(--color-dark-text);
  border-bottom-color: var(--color-light-gray);
}
.page-home .site-nav.is-open a:hover {
  color: var(--color-trust-blue);
}

/* When menu is open on home, remove header backdrop-filter so the fixed nav drawer
   is positioned relative to the viewport and fills the full height (not clipped by header). */
@media (max-width: 767px) {
  body.nav-open.page-home .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Home page: lime green accents */
.page-home .hero h1 {
  position: relative;
  padding-bottom: var(--space-3);
}
.page-home .hero h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}
.page-home .hero-cta-wrap .btn-outline {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.page-home .hero-cta-wrap .btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-navy);
  border-color: var(--color-accent);
}
.page-home .services-section .section-title h2,
.page-home .featured-projects-header .section-title h2,
.page-home .why-choose-section .section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-2);
}
.page-home .services-section .section-title h2::after,
.page-home .featured-projects-header .section-title h2::after,
.page-home .before-after-videos .section-title h2::after,
.page-home .why-choose-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent 70%);
  border-radius: 2px;
}
.page-home .before-after-videos .section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-2);
}
.page-home .why-choose-item:nth-child(2) {
  border-left-color: var(--color-accent);
}
.page-home .why-choose-item:nth-child(2) .why-choose-icon {
  background: var(--color-accent);
  color: var(--color-navy);
}
.page-home .trust-strip .badge:first-child {
  background-color: var(--color-accent);
  color: var(--color-navy);
}
.page-home .cta-banner {
  border-top: 4px solid var(--color-accent);
}
.page-home .cta-banner .btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-navy);
  border-color: var(--color-accent);
}
.page-home .service-card .btn-outline:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-navy);
}

/* Global: lime green accents on all pages (hero, section titles, CTAs, trust strip) */
.hero h1 {
  position: relative;
  padding-bottom: var(--space-3);
}
.hero h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}
.hero-cta-wrap .btn-outline {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.hero-cta-wrap .btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-navy);
  border-color: var(--color-accent);
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-2);
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent 70%);
  border-radius: 2px;
}
.btn-outline:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-navy);
}
.cta-banner {
  border-top: 4px solid var(--color-accent);
}
.trust-strip .badge:first-child {
  background-color: var(--color-accent);
  color: var(--color-navy);
}

/* Hero: video on home (in HTML); image fallback for inner pages. */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-color: var(--color-navy);
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  overflow: hidden;
}

/* When hero has a parallax layer, image lives there so we don't double up */
.hero:has(.hero-parallax-bg),
.hero:has(.hero-bg-img) {
  background-image: none;
}

/* Default hero parallax image for inner pages (overridden by .services-page-hero) */
.hero .hero-parallax-bg {
  background-image: linear-gradient(180deg, rgba(31, 47, 70, 0.6) 0%, transparent 50%, rgba(31, 47, 70, 0.3) 100%), url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80");
}

@media (max-width: 767px) {
  .page-home .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(31, 47, 70, 0.7) 0%, rgba(31, 47, 70, 0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-7) 0;
}

@media (max-width: 767px) {
  .page-home .hero-inner {
    padding: var(--space-5) 0 var(--space-7);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 64px);
    min-height: calc(100dvh - 64px);
  }
}

.hero-inner .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .hero-inner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero-content {
    flex: 1;
    max-width: 600px;
  }
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

@media (max-width: 767px) {
  .page-home .hero h1 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    line-height: 1.2;
    margin-bottom: var(--space-3);
  }
}

.hero .text-muted {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-5);
}

@media (max-width: 767px) {
  .page-home .hero .text-muted {
    font-size: 0.9375rem;
    margin-bottom: var(--space-4);
  }
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .page-home .hero-cta-wrap {
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
  }
  .page-home .hero-cta-wrap .btn {
    width: 100%;
    min-height: 48px;
    padding: var(--space-4) var(--space-5);
    font-size: 1rem;
    justify-content: center;
  }
}

.hero-cta-wrap .btn-primary {
  background-color: var(--color-trust-blue);
  border-color: var(--color-trust-blue);
}

.hero-cta-wrap .btn-outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.hero-cta-wrap .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.trust-strip {
  background-color: var(--color-light-gray);
  padding: var(--space-5) 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
  align-items: center;
}

/* Our Services section (home) – parallax background with image */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  background-color: var(--color-navy);
  background-image: url("../assets/img/Basement%20Remodels/modernKitchen.jpg");
  background-size: cover;
  background-position: center;
}

.services-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.88) 100%);
  pointer-events: none;
}

.services-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(58, 117, 196, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.services-section-content {
  position: relative;
  z-index: 1;
}

/* Services page – What We Do section parallax with image (matches home) */
.services-content-section {
  position: relative;
  overflow: hidden;
}

.services-content-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  background-color: var(--color-navy);
  background-image: url("../assets/img/Basement%20Remodels/our%20servicesbackgroiound.jpg");
  background-size: cover;
  background-position: center;
}

.services-content-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.88) 100%);
  pointer-events: none;
}

.services-content-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(58, 117, 196, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.services-content-section-inner {
  position: relative;
  z-index: 1;
}

/* Services listing page – grid of service cards (project-card style + hover) */
.services-listing-section {
  position: relative;
}

.services-listing-inner {
  position: relative;
  z-index: 1;
}

.services-listing-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .services-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .services-listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-listing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reuse project-card hover; service cards are links so same interaction */
.service-listing-card {
  min-height: 0;
}

/* Portfolio: View more / View less per group */
.portfolio-group-more-wrap {
  display: contents;
}
.portfolio-group--collapsed .portfolio-group-more-wrap {
  display: none;
}
.portfolio-group-actions {
  margin-top: var(--space-5);
  margin-bottom: 0;
  text-align: center;
}
.portfolio-group-actions .portfolio-group-toggle {
  min-width: 12rem;
}

/* Services page hero – parallax bg with service hero image */
.services-page-hero {
  position: relative;
}

.hero-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, rgba(31, 47, 70, 0.6) 0%, transparent 50%, rgba(31, 47, 70, 0.3) 100%);
}

.services-page-hero .hero-parallax-bg {
  background-image: linear-gradient(180deg, rgba(31, 47, 70, 0.35) 0%, transparent 45%, rgba(31, 47, 70, 0.2) 100%), url("../assets/img/Basement%20Remodels/servicesHero.jpg");
  background-size: cover;
  background-position: center;
}

.portfolio-page-hero .hero-parallax-bg {
  background-image: linear-gradient(180deg, rgba(31, 47, 70, 0.35) 0%, transparent 45%, rgba(31, 47, 70, 0.2) 100%), url("../assets/img/Basement%20Remodels/portfoliiohero.jpg");
  background-size: cover;
  background-position: center;
}

.about-page-hero .hero-parallax-bg {
  background-image: linear-gradient(180deg, rgba(31, 47, 70, 0.35) 0%, transparent 45%, rgba(31, 47, 70, 0.2) 100%), url("../assets/img/Basement%20Remodels/AboutHero.jpg");
  background-size: cover;
  background-position: center;
}

.services-page-hero .hero-inner {
  z-index: 1;
}

.services-page-hero::before {
  z-index: 1;
}

/* Why Choose Us – vertical list, vibrant */
.why-choose-section {
  background: linear-gradient(180deg, rgba(58, 117, 196, 0.06) 0%, var(--color-white) 30%, var(--color-white) 70%, rgba(31, 47, 70, 0.05) 100%);
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-trust-blue);
  background: var(--color-white);
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.why-choose-item:hover {
  box-shadow: 0 6px 20px rgba(58, 117, 196, 0.15);
  transform: translateX(4px);
}

.why-choose-item:nth-child(1) { border-left-color: var(--color-trust-blue); }
.why-choose-item:nth-child(2) { border-left-color: var(--color-navy); }
.why-choose-item:nth-child(3) { border-left-color: var(--color-trust-blue); }

.why-choose-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-trust-blue), var(--color-navy));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-icon svg {
  width: 24px;
  height: 24px;
}

.why-choose-item:nth-child(1) .why-choose-icon { background: var(--color-trust-blue); }
.why-choose-item:nth-child(2) .why-choose-icon { background: var(--color-navy); }
.why-choose-item:nth-child(3) .why-choose-icon { background: var(--color-trust-blue); }

.why-choose-body h3 {
  color: var(--color-navy);
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
}

.why-choose-body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted-text);
  line-height: 1.5;
}

.why-choose-item + .why-choose-item {
  margin-top: var(--space-3);
}

.services-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Service cards with images */
.service-card {
  padding: 0;
  overflow: hidden;
}

.service-card .card-image-link {
  display: block;
  line-height: 0;
}

.service-card .card-image {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-card .card-body {
  padding: var(--space-5);
}

.services-grid--with-images .service-card h3 {
  margin-bottom: var(--space-3);
}

/* Featured Projects – card carousel */
.featured-projects {
  padding-bottom: var(--space-6);
}

.featured-projects-header .section-title--left {
  text-align: left;
  margin-bottom: var(--space-5);
}

.featured-projects-carousel {
  position: relative;
  padding: 0 var(--container-padding-mobile);
}

@media (min-width: 768px) {
  .featured-projects-carousel {
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
  }
}

.featured-projects-carousel-inner {
  overflow: hidden;
  margin-bottom: var(--space-5);
}

.featured-projects-carousel .carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-projects-carousel .carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-right: var(--space-4);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .featured-projects-carousel .carousel-slide {
    flex: 0 0 50%;
    padding-right: var(--space-5);
  }
}

/* Project card */
.project-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: var(--color-navy);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(31, 47, 70, 0.2);
}

.project-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card-image img,
.project-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6) var(--space-5);
  background: linear-gradient(to top, rgba(31, 47, 70, 0.95) 0%, rgba(31, 47, 70, 0.4) 60%, transparent);
  transition: background 0.35s ease;
}

.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(31, 47, 70, 0.98) 0%, rgba(31, 47, 70, 0.5) 70%, transparent);
}

.project-card-location {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-1);
}

.project-card-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

.project-card-action {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-trust-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1;
}

/* Before & After vertical (iPhone) videos */
.before-after-videos {
  padding-top: var(--space-7);
  padding-bottom: var(--space-6);
}
.before-after-videos .section-title {
  margin-bottom: var(--space-6);
}
.before-after-videos .section-title a {
  color: var(--color-trust-blue);
  font-weight: 600;
}
.before-after-videos .section-title a:hover {
  text-decoration: underline;
}
/* Before & After carousel: one large video, prev/next arrows, only active plays */
.before-after-carousel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}
.before-after-stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.before-after-slide {
  display: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--color-dark-text);
}
.before-after-slide.active {
  display: block;
}
.before-after-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}
.before-after-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.before-after-videos .vertical-video-label {
  display: block;
  padding: var(--space-3) var(--space-4);
  text-align: center;
  background: var(--color-light-gray);
}
/* Before & After: on mobile, stack video then arrows then counter for cleaner layout */
.before-after-carousel {
  flex-wrap: wrap;
}
.before-after-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-trust-blue);
  background: var(--color-white);
  color: var(--color-trust-blue);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.before-after-arrow:hover {
  background: var(--color-trust-blue);
  color: var(--color-white);
  transform: scale(1.05);
}
.before-after-arrow:focus-visible {
  outline: 2px solid var(--color-trust-blue);
  outline-offset: 2px;
}
.before-after-counter {
  flex: 1 1 100%;
  text-align: center;
  margin-top: var(--space-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted-text);
}
.before-after-arrows-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
/* Desktop: arrows participate in row so we get [prev] [stage] [next] */
@media (min-width: 600px) {
  .before-after-arrows-wrap {
    display: contents;
  }
  .before-after-prev {
    order: 0;
  }
  .before-after-stage {
    order: 1;
  }
  .before-after-next {
    order: 2;
  }
  .before-after-counter {
    order: 3;
    flex: 1 1 100%;
  }
}
@media (max-width: 599px) {
  .before-after-carousel {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-3) 0;
  }
  .before-after-arrows-wrap {
    order: 1;
  }
  .before-after-stage {
    order: 0;
    width: 100%;
  }
  .before-after-counter {
    order: 2;
    margin-top: 0;
  }
  /* Arrows in a row below video, comfortable touch targets */
  .before-after-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.1rem;
  }
}
@media (min-width: 600px) {
  .before-after-stage {
    max-width: 380px;
  }
}
@media (min-width: 768px) {
  .before-after-carousel {
    gap: var(--space-5);
    flex-direction: row;
  }
  .before-after-stage {
    max-width: 420px;
  }
  .before-after-arrow {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    font-size: 1.75rem;
  }
}

/* Legacy vertical-videos-row (e.g. portfolio) – full-width scroll so you can scroll all the way left/right */
.vertical-videos-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}
.vertical-videos-scroll-wrap::-webkit-scrollbar {
  height: 6px;
}
.vertical-videos-scroll-wrap::-webkit-scrollbar-track {
  background: var(--color-light-gray);
  border-radius: 3px;
}
.vertical-videos-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--color-muted-text);
  border-radius: 3px;
}
.vertical-videos-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--space-4);
  align-items: flex-start;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .vertical-videos-row {
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
  }
}
.vertical-video-card {
  flex: 0 0 auto;
  min-width: 140px;
  max-width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--color-dark-text);
}
.vertical-video-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  vertical-align: top;
}
.vertical-video-label {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted-text);
  text-align: center;
  background: var(--color-light-gray);
}
@media (min-width: 768px) {
  .vertical-videos-row {
    gap: var(--space-5);
  }
  .vertical-video-card {
    min-width: 160px;
    max-width: 260px;
  }
}
@media (min-width: 1100px) {
  .vertical-videos-row {
    gap: var(--space-6);
  }
  .vertical-video-card {
    min-width: 170px;
    max-width: 280px;
  }
}

.project-card:hover .project-card-action {
  background: var(--color-navy);
  transform: translate(4px, -4px);
}

/* Carousel nav – progress bar + counter + arrows */
.featured-projects-carousel .carousel-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding-mobile);
}

@media (min-width: 768px) {
  .featured-projects-carousel .carousel-nav {
    padding: 0 var(--container-padding-desktop);
  }
}

.carousel-progress {
  width: 100%;
  height: 3px;
  background: var(--color-light-gray);
  border-radius: 2px;
  overflow: hidden;
}

.carousel-progress-fill {
  height: 100%;
  background: var(--color-trust-blue);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
}

.carousel-counter {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted-text);
}

.featured-projects-carousel .carousel-btn-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-trust-blue);
  background: var(--color-white);
  color: var(--color-trust-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.featured-projects-carousel .carousel-btn-round:hover {
  background: var(--color-trust-blue);
  color: var(--color-white);
}

/* ========================================
   How It Works – interactive timeline
   Aperture-style background + parallax on scroll
   ======================================== */

.timeline-section {
  position: relative;
  padding: var(--space-8) 0;
  overflow: hidden;
  background: var(--color-navy);
}

/* Parallax aperture layer with image (moves with scroll) */
.timeline-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  background-color: var(--color-navy);
  background-image: url("../assets/img/Basement%20Remodels/timelienBackground.jpg");
  background-size: cover;
  background-position: center;
}

.timeline-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Aperture overlay: darker edges, lighter center so image shows through */
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(31, 47, 70, 0.5) 0%, rgba(31, 47, 70, 0.75) 40%, rgba(31, 47, 70, 0.9) 100%);
  pointer-events: none;
}

.timeline-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.8;
  pointer-events: none;
}

.timeline-section-content {
  position: relative;
  z-index: 1;
}

.timeline-section .section-title {
  margin-bottom: var(--space-7);
  position: relative;
  z-index: 1;
}

.timeline-section .section-title h2 {
  position: relative;
  display: inline-block;
  color: var(--color-white);
}

.timeline-section .section-title .text-muted {
  color: rgba(255, 255, 255, 0.8);
}

.timeline-section .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-trust-blue), rgba(255, 255, 255, 0.6));
  border-radius: 2px;
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

/* Vertical progress line (fills as you scroll) */
.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  margin-left: -3px;
  background: rgba(58, 117, 196, 0.2);
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
  box-shadow: inset 0 0 6px rgba(31, 47, 70, 0.08);
}

.timeline-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--color-trust-blue), var(--color-navy));
  border-radius: 3px;
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  box-shadow: 0 0 12px rgba(58, 117, 196, 0.4);
}

@media (max-width: 767px) {
  .timeline-step {
    grid-template-columns: 52px 1fr;
  }
  .timeline-progress {
    left: 26px;
    margin-left: -3px;
  }
}

.timeline-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
  padding-bottom: var(--space-7);
  opacity: 0.5;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.3s ease;
  transition-delay: 0s;
}

.timeline-step:nth-child(1) { transition-delay: 0.05s; }
.timeline-step:nth-child(2) { transition-delay: 0.1s; }
.timeline-step:nth-child(3) { transition-delay: 0.15s; }
.timeline-step:nth-child(4) { transition-delay: 0.2s; }
.timeline-step:nth-child(5) { transition-delay: 0.25s; }

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step.is-active .timeline-step-content {
  box-shadow: 0 8px 24px rgba(58, 117, 196, 0.18);
  border-color: var(--color-trust-blue);
}

.timeline-step.is-active .timeline-step-marker {
  background: var(--color-trust-blue);
  color: var(--color-white);
  animation: timeline-marker-pulse 2.2s ease-in-out infinite;
}

/* Alternate left/right on desktop */
@media (min-width: 768px) {
  .timeline-step {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-5);
    align-items: center;
    padding-bottom: var(--space-8);
  }

  .timeline-step .timeline-step-marker {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-step:nth-child(odd) .timeline-step-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
  }

  .timeline-step:nth-child(even) .timeline-step-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
  }
}

.timeline-step-marker {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-trust-blue);
  color: var(--color-trust-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}

.timeline-step:nth-child(odd) .timeline-step-marker {
  border-color: var(--color-trust-blue);
}

.timeline-step:nth-child(even) .timeline-step-marker {
  border-color: var(--color-navy);
}

@media (max-width: 767px) {
  .timeline-step-marker {
    margin-left: 0;
  }
}

.timeline-step-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  border: 2px solid var(--color-light-gray);
  border-left-width: 4px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.timeline-step:nth-child(odd) .timeline-step-content {
  border-left-color: var(--color-trust-blue);
}

.timeline-step:nth-child(even) .timeline-step-content {
  border-left-color: var(--color-navy);
}

.timeline-step-content:hover {
  box-shadow: 0 6px 20px rgba(58, 117, 196, 0.12);
  transform: translateY(-2px);
}

.timeline-step:nth-child(odd) .timeline-step-content:hover {
  border-color: rgba(58, 117, 196, 0.4);
}

.timeline-step:nth-child(even) .timeline-step-content:hover {
  border-color: rgba(31, 47, 70, 0.4);
}

.timeline-step-content h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
}

.timeline-step-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.timeline-cta {
  text-align: center;
  margin-top: var(--space-7);
}

.timeline-cta .btn-primary {
  box-shadow: 0 4px 14px rgba(58, 117, 196, 0.35);
}

.timeline-cta .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(58, 117, 196, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .timeline-section-bg,
  .services-section-bg,
  .services-content-section-bg,
  .hero-parallax-bg {
    transform: none !important;
  }
  .timeline-step {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
  .timeline-step.is-visible,
  .timeline-step.is-active {
    transform: none;
  }
  .timeline-step.is-active .timeline-step-marker {
    animation: none;
    box-shadow: 0 0 0 4px rgba(58, 117, 196, 0.25);
  }
  .timeline-progress-fill {
    transition: none;
  }
}

.section {
  padding: var(--space-7) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-title h2 {
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: var(--space-4);
  background-color: var(--color-white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.sticky-mobile-cta.is-visible {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

.sticky-mobile-cta .btn {
  flex: 1;
  min-width: 140px;
}

/* Service detail pages – breadcrumb, short hero, content */
.service-breadcrumb {
  padding-top: var(--space-5);
  padding-bottom: var(--space-2);
  font-size: 0.875rem;
}

.service-breadcrumb a {
  color: var(--color-trust-blue);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
}

.service-breadcrumb span:last-of-type {
  color: var(--color-muted-text);
}

.service-breadcrumb [aria-hidden="true"] {
  margin: 0 var(--space-2);
  color: var(--color-muted-text);
}

/* Same size as home page hero (60vh desktop, full height mobile) */
.hero--short {
  min-height: 60vh;
}
@media (max-width: 767px) {
  .hero--short {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

.service-detail-content .container {
  max-width: 720px;
}

.service-detail-lead {
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
}

.service-detail-body h2 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
}

.service-detail-list {
  margin: 0 0 var(--space-5);
  padding-left: var(--space-5);
  line-height: 1.7;
}

.service-detail-list li {
  margin-bottom: var(--space-2);
}

.service-detail-cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.cta-banner {
  background-color: var(--color-trust-blue);
  color: var(--color-white);
  padding: var(--space-7) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  margin-bottom: var(--space-5);
  opacity: 0.95;
}

.cta-banner .btn-outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.cta-banner .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-trust-blue);
}

.testimonial-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-carousel .carousel-slide {
  min-width: 100%;
  padding: 0 var(--space-3);
}

.testimonial-card {
  min-height: 260px;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.testimonial-stars {
  color: #f4b400;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
  display: block;
}
.testimonial-card p {
  flex: 1;
  margin-bottom: var(--space-4);
  font-style: normal;
  line-height: 1.7;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
  color: var(--color-dark-text);
}
.testimonial-card footer {
  margin-top: auto;
  font-size: 0.9375rem;
  color: var(--color-dark-text);
}
.testimonial-meta {
  font-weight: 400;
  color: var(--color-muted-text);
}

.testimonial-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.testimonial-carousel .carousel-dots {
  margin-top: 0;
}

.testimonial-carousel .carousel-prev,
.testimonial-carousel .carousel-next {
  position: static;
  transform: none;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .testimonial-carousel {
    max-width: 100%;
  }
  .testimonial-carousel .carousel-slide {
    padding: 0;
  }
  .testimonial-card {
    min-height: 300px;
    max-width: 100%;
  }
  .testimonial-carousel-controls {
    gap: var(--space-2);
  }
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-light-gray);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.carousel-dot.is-active {
  background: transparent;
  color: var(--color-trust-blue);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-trust-blue);
  background: var(--color-white);
  color: var(--color-trust-blue);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--color-trust-blue);
  color: var(--color-white);
}

.carousel-prev {
  left: var(--space-4);
}

.carousel-next {
  right: var(--space-4);
}

.faq-accordion .faq-item {
  border-bottom: 1px solid var(--color-light-gray);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  color: var(--color-navy);
  cursor: pointer;
  min-height: 44px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-trust-blue);
  outline-offset: 2px;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  padding-bottom: var(--space-4);
  color: var(--color-muted-text);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

/* ========================================
   Contact / Get a Free Quote page
   ======================================== */

.contact-page .quote-section {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.contact-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 380px;
    gap: var(--space-7);
  }
}

.quote-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-light-gray);
}

.quote-card-title {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.quote-card-lead {
  margin-bottom: var(--space-5);
  font-size: 0.9375rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.form-group .required {
  color: var(--color-muted-text);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-trust-blue);
  box-shadow: 0 0 0 3px rgba(58, 117, 196, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: var(--space-3);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 500px) {
  .form-row--half {
    flex-direction: row;
    gap: var(--space-4);
  }
  .form-row--half .form-group {
    flex: 1;
  }
}

.btn--full {
  width: 100%;
  margin-top: var(--space-2);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-card {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.contact-info-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.contact-info-list a {
  color: var(--color-white);
  font-weight: 600;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.map-placeholder {
  background: var(--color-light-gray);
  border-radius: var(--radius-md);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-muted-text);
}

.map-placeholder span {
  font-weight: 600;
  color: var(--color-navy);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 240px;
  background: var(--color-light-gray);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 240px;
}

.contact-page .section--alt {
  background-color: var(--color-light-gray);
}

.contact-page .section-title {
  text-align: center;
}

.contact-page .section-title h2 {
  margin-bottom: var(--space-2);
}
