/* =========================
   PASCOE ENGINEERING
   GLOBAL DESIGN FOUNDATION
   ========================= */

:root {
  --color-red: #ed2a24;
  --color-black: #17191b;
  --color-charcoal: #24272a;
  --color-grey-dark: #5e6368;
  --color-grey-light: #f5f6f7;
  --color-border: #e3e5e7;
  --color-white: #ffffff;

  --font-heading: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;

  --container-width: 1200px;
  --section-spacing: 96px;
  --border-radius: 8px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-charcoal);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

/* Layout */

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

.section {
  padding-block: var(--section-spacing);
}

.section-light {
  background: var(--color-grey-light);
}

/* Typography */

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--color-black);
  font-family: var(--font-heading);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin-top: 0;
  color: var(--color-grey-dark);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--color-red);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Buttons */

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-red);
}

.btn-primary:hover {
  background: #cf211c;
}

.btn-secondary {
  color: var(--color-black);
  border-color: var(--color-black);
  background: transparent;
}

.btn-secondary:hover {
  color: var(--color-white);
  background: var(--color-black);
}

/* Responsive */

@media (max-width: 768px) {
  :root {
    --section-spacing: 64px;
  }

  .container {
    width: min(100% - 28px, var(--container-width));
  }
}
/* Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e3e5e7;
}

.nav-container {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.site-logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.site-logo img {
  display: block;
  width: auto;
  height: 75px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 820px) {
  .nav-container {
    min-height: 78px;
  }

  .site-logo img {
    height: 62px;
  }
}

.site-nav a {
  color: #2b2b2b;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #e2231a;
}

.site-nav .nav-contact {
  padding: 11px 18px;
  color: #ffffff;
  background: #e2231a;
  border-radius: 4px;
}

.site-nav .nav-contact:hover {
  color: #ffffff;
  background: #c91f17;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #171717;
}

@media (max-width: 820px) {
  .nav-container {
    min-height: 72px;
  }

  .mobile-menu-button {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid #e3e5e7;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
  }

  .site-nav .nav-contact {
    margin-top: 8px;
    text-align: center;
  }
}
.site-nav a.active {
  color: #e2231a;
}
/* =========================
   Homepage Hero
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-white, #ffffff);
}

.hero-container {
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding-block: clamp(80px, 10vw, 140px);
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 640px;
  margin-bottom: 36px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero graphic */

.hero-graphic {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #fafafa 0%, #f1f1f1 100%);
  border: 1px solid #dfdfdf;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(to right, rgba(23, 23, 23, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 23, 23, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-graphic::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(23, 23, 23, 0.12);
  transform: rotate(-4deg);
}

.hero-graphic::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 1px;
  top: 34%;
  left: 12%;
  background: rgba(226, 35, 26, 0.85);
  transform: rotate(-14deg);
  transform-origin: left center;
}

.hero-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(170px, 20vw, 270px);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
}

.hero-line {
  position: absolute;
  height: 2px;
  background: var(--color-red, #e2231a);
  transform-origin: left center;
}

.hero-line-one {
  top: 24%;
  left: 8%;
  width: 46%;
  transform: rotate(-16deg);
}

.hero-line-two {
  right: 10%;
  bottom: 20%;
  width: 42%;
  transform: rotate(24deg);
  opacity: 0.85;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: #6a6a6a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll span:last-child {
  color: #e2231a;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.hero-scroll:hover span:last-child {
  transform: translateY(4px);
}

@media (max-width: 700px) {
  .hero-scroll {
    display: none;
  }
}
.section-accent-line {
  width: 72px;
  height: 2px;
  margin-bottom: 24px;
  background: #e2231a;
}

/* Responsive hero */

@media (max-width: 900px) {
  .hero-container {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 80px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-graphic {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .hero-container {
    padding-block: 64px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-graphic {
    min-height: 320px;
  }

  .hero-mark {
    width: 130px;
    height: 130px;
  }

  .hero-mark span {
    font-size: 4.5rem;
  }
}
/* Buttons */

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: #e2231a;
}

.btn-primary:hover {
  color: #ffffff;
  background: #c91f17;
}

.btn-secondary {
  color: #171717;
  border-color: #171717;
  background: transparent;
}

.btn-secondary:hover {
  color: #ffffff;
  background: #171717;
}
/* =========================
   Homepage About
   ========================= */

.home-about {
  position: relative;
  border-top: 1px solid #dfdfdf;
  background: #ffffff;
}
.home-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 1px;
  background: #e2231a;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.home-about-heading {
  position: sticky;
  top: 120px;
}

.home-about-heading h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.home-about-content {
  max-width: 700px;
}

.home-about-content p {
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.home-about-content p:first-child {
  position: relative;
  max-width: 680px;
  margin-bottom: 30px;
  color: #171717;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
}

.home-about-content p:not(:first-child) {
  max-width: 650px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #e2231a;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

@media (max-width: 800px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-about-heading {
    position: static;
  }

  .home-about-content {
    max-width: none;
  }
}

/* =========================
   Who We Help
   ========================= */

.who-we-help-heading {
  align-items: end;
}

.who-we-help-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.8;
}

.who-we-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: #bdbdbd;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.audience-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 3px;
  background: #e2231a;
  transition: width 0.25s ease;
}

.audience-card:hover .audience-card-accent {
  width: 100%;
}

.audience-card-label {
  margin: 10px 0 18px;
  color: #e2231a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}

.audience-card > p:not(.audience-card-label) {
  margin-bottom: 26px;
  line-height: 1.75;
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 18px;
  color: #4f4f4f;
}

.audience-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

.audience-card .text-link {
  margin-top: auto;
}

@media (max-width: 950px) {
  .who-we-help-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }
}

/* =========================
   Homepage Services Preview
   ========================= */

.services-preview {
  background: #f7f7f7;
}

.services-preview-heading {
  align-items: end;
}

.services-preview-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.8;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.services-preview-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.services-preview-card:hover {
  transform: translateY(-5px);
  border-color: #bdbdbd;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}

.services-preview-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: #e2231a;
  transition: width 0.25s ease;
}

.services-preview-card:hover .services-preview-accent {
  width: 100%;
}

.services-preview-label {
  margin: 10px 0 18px;
  color: #e2231a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-preview-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}

.services-preview-description {
  margin-bottom: 28px;
  line-height: 1.75;
}

.services-preview-list {
  margin-bottom: 30px;
  padding-top: 24px;
  border-top: 1px solid #d8d8d8;
}

.services-preview-list > p {
  margin-bottom: 16px;
  color: #171717;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.services-preview-list li {
  position: relative;
  padding-left: 18px;
  color: #4f4f4f;
  line-height: 1.5;
}

.services-preview-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

.services-preview-card .text-link {
  margin-top: auto;
}

.services-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #dfdfdf;
}

.services-preview-footer p {
  margin: 0;
}

@media (max-width: 950px) {
  .services-preview-grid {
    grid-template-columns: 1fr;
  }

  .services-preview-card {
    min-height: auto;
  }
}

@media (max-width: 650px) {
  .services-preview-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================
   Featured Services
   ========================= */

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #c9c9c9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.service-card-number {
  margin-bottom: 52px;
  color: #e2231a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 30px;
  line-height: 1.75;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #171717;
  font-weight: 700;
}

.service-card a span {
  color: #e2231a;
  transition: transform 0.2s ease;
}

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

@media (max-width: 950px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 36px;
  }
}
/* =========================
   Why Pascoe Engineering
   ========================= */

.why-us {
  background: #171717;
}

.why-us-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.why-us-intro {
  position: sticky;
  top: 120px;
}

.why-us-intro h2 {
  max-width: 620px;
  margin-bottom: 28px;
  color: #ffffff;
}

.why-us-intro > p:last-child {
  max-width: 580px;
  color: #b9b9b9;
  font-size: 1.05rem;
  line-height: 1.8;
}

.why-us-points {
  border-top: 1px solid #3a3a3a;
}

.why-us-point {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  padding-block: 34px;
  border-bottom: 1px solid #3a3a3a;
}

.why-us-accent {
  width: 38px;
  height: 2px;
  margin-top: 10px;
  background: #e2231a;
}

.why-us-point h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.35rem;
}

.why-us-point p {
  max-width: 640px;
  margin-bottom: 0;
  color: #b9b9b9;
  line-height: 1.75;
}

@media (max-width: 850px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .why-us-intro {
    position: static;
  }
}

@media (max-width: 520px) {
  .why-us-point {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* =========================
   Homepage Theme Variations
   ========================= */

/* Dark Why We Exist section */

.home-about-dark {
  color: #ffffff;
  background: #171717;
  border-top-color: #303030;
}

.home-about-dark h2,
.home-about-dark .home-about-content p:first-child {
  color: #ffffff;
}

.home-about-dark .home-about-content p:not(:first-child) {
  color: #b9b9b9;
}

.home-about-dark .text-link {
  color: #e2231a;
}

/* Light What You Can Expect section */

.why-us-light {
  color: #171717;
  background: #f7f7f7;
}

.why-us-light .why-us-intro h2,
.why-us-light .why-us-point h3 {
  color: #171717;
}

.why-us-light .why-us-intro > p:last-child,
.why-us-light .why-us-point p {
  color: #626262;
}

.why-us-light .why-us-points {
  border-top-color: #d8d8d8;
}

.why-us-light .why-us-point {
  border-bottom-color: #d8d8d8;
}
/* =========================
   Services Page Hero
   ========================= */

.services-hero {
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #dfdfdf;
}

.services-hero-grid {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding-block: clamp(80px, 10vw, 140px);
}

.services-hero-content {
  max-width: 760px;
}

.services-hero-content h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  line-height: 1.04;
}

.services-hero-description {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-hero-content .btn {
  margin-top: 18px;
}

/* Services Hero Graphic */

.services-hero-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
  border: 1px solid #dfdfdf;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
}

.services-hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(to right, rgba(23, 23, 23, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 23, 23, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.services-hero-panel::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 10%;
  width: 76%;
  height: 54%;
  border: 1px solid rgba(23, 23, 23, 0.14);
  transform: rotate(-5deg);
}

.services-hero-panel::after {
  content: "";
  position: absolute;
  top: 32%;
  left: 8%;
  width: 62%;
  height: 2px;
  background: #e2231a;
  transform: rotate(-15deg);
  transform-origin: left center;
}

.services-hero-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(170px, 19vw, 260px);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
}

.services-hero-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #626262;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   Service Categories
   ========================= */

.service-categories {
  background: #f5f5f5;
}

.service-categories-heading {
  max-width: 800px;
  margin-bottom: 64px;
}

.service-categories-heading h2 {
  margin-bottom: 24px;
}

.service-categories-heading > p:last-child {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.service-category-list {
  border-top: 1px solid #cccccc;
}

.service-category {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-block: 54px;
  border-bottom: 1px solid #cccccc;
}

.service-category-number {
  padding-top: 5px;
  color: #e2231a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

.service-category-label {
  margin-bottom: 12px;
  color: #e2231a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-category-content h3 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.service-category-content > p {
  max-width: 680px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.service-category-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-category-services li {
  position: relative;
  padding-left: 18px;
  color: #2b2b2b;
  font-weight: 600;
}

.service-category-services li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

.service-category-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  white-space: nowrap;
  color: #171717;
  font-weight: 700;
}

.service-category-link span {
  color: #e2231a;
  transition: transform 0.2s ease;
}

.service-category-link:hover span {
  transform: translateX(5px);
}

/* Responsive Services Page */

@media (max-width: 950px) {
  .services-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 80px;
  }

  .services-hero-panel {
    min-height: 420px;
  }

  .service-category {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .service-category-link {
    grid-column: 2;
    margin-top: 4px;
  }
}

@media (max-width: 650px) {
  .services-hero-grid {
    padding-block: 64px;
  }

  .services-hero-panel {
    min-height: 330px;
  }

  .service-categories-heading {
    margin-bottom: 42px;
  }

  .service-category {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 42px;
  }

  .service-category-link {
    grid-column: auto;
    margin-top: 8px;
    white-space: normal;
  }

  .service-category-services {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Detailed Service Sections
   ========================= */

.service-detail-section {
  scroll-margin-top: 110px;
  background: #ffffff;
}

.service-detail-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}

.service-detail-intro h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.service-detail-intro > p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.service-detail-card {
  display: grid;
  min-height: 500px;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(30px, 4vw, 48px);
  background: #ffffff;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-detail-card:hover {
  z-index: 1;
  background: #fafafa;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.07);
}

.service-detail-number {
  padding-top: 4px;
  color: #e2231a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-detail-card-content {
  display: flex;
  flex-direction: column;
}

.service-detail-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.service-detail-card-content > p {
  margin-bottom: 34px;
  line-height: 1.8;
}

.service-detail-projects {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #dedede;
}

.service-detail-projects > p {
  margin-bottom: 16px;
  color: #171717;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-projects ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-projects li {
  position: relative;
  padding-left: 18px;
  color: #4f4f4f;
  line-height: 1.5;
}

.service-detail-projects li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

/* Responsive detailed services */

@media (max-width: 850px) {
  .service-detail-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

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

  .service-detail-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 24px;
  }
}
/* Residential Development variation */

.service-detail-section-alt {
  background: #f5f5f5;
}

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

.service-detail-grid-three .service-detail-card {
  min-height: 540px;
}

.service-detail-card-featured {
  color: #ffffff;
  background: #171717;
}

.service-detail-card-featured:hover {
  background: #202020;
}

.service-detail-card-featured h3 {
  color: #ffffff;
}

.service-detail-card-featured .service-detail-card-content > p {
  color: #b9b9b9;
}

.service-detail-kicker {
  margin-bottom: 18px !important;
  color: #e2231a !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-card-featured .text-link {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #3a3a3a;
}

@media (max-width: 1100px) {
  .service-detail-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .service-detail-grid-three {
    grid-template-columns: 1fr;
  }

  .service-detail-grid-three .service-detail-card {
    min-height: auto;
  }
}
/* =========================
   Engineering Support
   ========================= */

.service-support {
  scroll-margin-top: 110px;
  color: #ffffff;
  background: #171717;
}

.service-support-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}

.service-support-intro h2 {
  max-width: 680px;
  margin-bottom: 0;
  color: #ffffff;
}

.service-support-intro > p {
  max-width: 680px;
  margin-bottom: 0;
  color: #b9b9b9;
  font-size: 1.08rem;
  line-height: 1.8;
}

.service-support-list {
  border-top: 1px solid #3a3a3a;
}

.service-support-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding-block: 42px;
  border-bottom: 1px solid #3a3a3a;
}

.service-support-number {
  padding-top: 5px;
  color: #e2231a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-support-item h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.service-support-item p {
  max-width: 760px;
  margin-bottom: 0;
  color: #b9b9b9;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .service-support-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
}

@media (max-width: 520px) {
  .service-support-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* =========================
   Services Process
   ========================= */

.services-process {
  background: #ffffff;
}

.services-process-heading {
  max-width: 780px;
  margin-bottom: 64px;
}

.services-process-heading h2 {
  margin-bottom: 22px;
}

.services-process-heading > p:last-child {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
}

.process-step {
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}

.process-step-number {
  margin-bottom: 54px;
  color: #e2231a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.process-step p {
  margin-bottom: 0;
  line-height: 1.75;
}

/* =========================
   Services CTA
   ========================= */

.services-cta {
  color: #ffffff;
  background: #171717;
}

.services-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.services-cta h2 {
  max-width: 650px;
  margin-bottom: 0;
  color: #ffffff;
}

.services-cta-content {
  max-width: 680px;
}

.services-cta-content p {
  margin-bottom: 30px;
  color: #b9b9b9;
  font-size: 1.08rem;
  line-height: 1.8;
}

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

@media (max-width: 800px) {
  .services-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .services-process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .process-step-number {
    margin-bottom: 28px;
  }
}
/* =========================
   Site Footer
   ========================= */

.site-footer {
  color: #ffffff;
  background: #101010;
  border-top: 3px solid #e2231a;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.65fr) minmax(260px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  padding-block: 56px;
}

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

.footer-logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.footer-logo img {
  width: auto;
  height: 58px;
}

.footer-statement {
  max-width: 320px;
  margin-bottom: 0;
  color: #b9b9b9;
  font-size: 1.05rem;
  line-height: 1.75;
}

.footer-heading {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.footer-navigation a {
  color: #b9b9b9;
  transition: color 0.2s ease;
}

.footer-navigation a:hover {
  color: #ffffff;
}

.footer-contact > p:not(.footer-heading) {
  max-width: 430px;
  margin-bottom: 22px;
  color: #b9b9b9;
  line-height: 1.75;
}

.footer-email {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-email:hover {
  color: #e2231a;
}

.footer-contact .text-link {
  color: #e2231a;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 18px;
  border-top: 1px solid #303030;
}

.footer-bottom p {
  margin: 0;
  color: #858585;
  font-size: 0.82rem;
}

@media (max-width: 850px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 60px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo img {
    height: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
/* =========================
   Homepage Call to Action
   ========================= */

.home-cta {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #dfdfdf;
}

.home-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 2px;
  background: #e2231a;
}

.home-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.home-cta h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.home-cta-content {
  max-width: 680px;
}

.home-cta-content > p {
  margin-bottom: 30px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.home-cta-actions .text-link {
  margin-top: 0;
}

@media (max-width: 800px) {
  .home-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .home-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-cta-actions .btn {
    width: 100%;
  }

  .home-cta-actions .text-link {
    width: fit-content;
  }
}
/* ===================================================
   Internal Page Hero
=================================================== */

.page-hero{

    padding:140px 0 100px;

    background:#fff;

}

.page-hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.page-hero-content{

    max-width:720px;

}

.page-hero h1{

    margin-bottom:28px;

}

.page-hero-description{

    max-width:620px;

    font-size:1.15rem;

    line-height:1.9;

}

.page-hero-graphic{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:420px;

}

.page-hero-grid-pattern{

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(#ececec 1px,transparent 1px),
        linear-gradient(90deg,#ececec 1px,transparent 1px);

    background-size:36px 36px;

}

.page-hero-graphic img{

    position:relative;

    width:180px;

}
/* ==========================================
   Internal Page Hero - Mobile
========================================== */

@media (max-width: 900px) {

    .page-hero{
        padding:120px 0 80px;
    }

    .page-hero-grid{

        grid-template-columns:1fr;

        gap:56px;

    }

    .page-hero-content{

        max-width:100%;

    }

    .page-hero-description{

        max-width:100%;

    }

    .page-hero-graphic{

        min-height:260px;

        order:2;

    }

    .page-hero-graphic img{

        width:140px;

    }

}
/* =========================
   About - Our Approach
   ========================= */

.about-approach {
  background: #f7f7f7;
}

.about-approach-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}

.about-approach-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.about-approach-heading > p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-approach-list {
  border-top: 1px solid #d8d8d8;
}

.approach-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding-block: 38px;
  border-bottom: 1px solid #d8d8d8;
}

.approach-accent {
  width: 40px;
  height: 2px;
  margin-top: 11px;
  background: #e2231a;
}

.approach-label {
  margin-bottom: 10px;
  color: #e2231a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach-item h3 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.approach-item p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .about-approach-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
}

@media (max-width: 520px) {
  .approach-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* =========================
   About - Who We Work With
   ========================= */

.about-clients {
  background: #ffffff;
}

.about-clients-heading {
  align-items: end;
}

.about-clients-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.8;
}

.about-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-client {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid #e4e4e4;
}

.about-client-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 3px;
  background: #e2231a;
}

.about-client-label {
  margin: 10px 0 18px;
  color: #e2231a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-client h3 {
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.about-client > p:last-child {
  margin-bottom: 0;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .about-clients-grid {
    grid-template-columns: 1fr;
  }

  .about-client {
    min-height: auto;
  }
}
/* =========================
   About - Founder
   ========================= */

.about-founder {
  background: #f7f7f7;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: center;
}

.about-founder-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #ffffff 0%, #ededed 100%);
  border: 1px solid #dfdfdf;
}

.about-founder-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(to right, rgba(23, 23, 23, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 23, 23, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.about-founder-visual::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 10%;
  width: 64%;
  height: 2px;
  background: #e2231a;
  transform: rotate(-14deg);
  transform-origin: left center;
}

.about-founder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(150px, 18vw, 230px);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.12));
}

.about-founder-content {
  max-width: 700px;
}

.about-founder-content h2 {
  margin-bottom: 26px;
}

.about-founder-lead {
  margin-bottom: 24px;
  color: #171717;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.55;
}

.about-founder-content > p:not(.eyebrow):not(.about-founder-lead) {
  margin-bottom: 20px;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-visual {
    min-height: 340px;
    order: 2;
  }

  .about-founder-content {
    order: 1;
  }
}
/* =========================
   About - Call to Action
   ========================= */

.about-cta {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #dfdfdf;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 2px;
  background: #e2231a;
}

.about-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.about-cta h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.about-cta-content {
  max-width: 680px;
}

.about-cta-content > p {
  margin-bottom: 30px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.about-cta-actions .text-link {
  margin-top: 0;
}

@media (max-width: 800px) {
  .about-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .about-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-cta-actions .btn {
    width: 100%;
  }

  .about-cta-actions .text-link {
    width: fit-content;
  }
}
/* =========================
   Knowledge Guide
   ========================= */

.guide-hero {
  padding-block: clamp(90px, 10vw, 140px);
  background: #ffffff;
  border-bottom: 1px solid #dfdfdf;
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
}

.guide-hero-content {
  max-width: 760px;
}

.guide-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 1;
}

.guide-hero-description {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.8;
}

.guide-at-a-glance {
  padding: 32px;
  background: #f7f7f7;
  border: 1px solid #dfdfdf;
  border-top: 3px solid #e2231a;
}

.guide-meta-label,
.guide-meta-title {
  color: #171717;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-meta-label {
  margin-bottom: 28px;
  color: #e2231a;
}

.guide-meta-group + .guide-meta-group {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #d8d8d8;
}

.guide-meta-group p {
  margin-bottom: 10px;
}

.guide-meta-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-meta-group li {
  position: relative;
  padding-left: 17px;
}

.guide-meta-group li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

.guide-quick-answer {
  padding-block: 56px;
  color: #ffffff;
  background: #171717;
}

.guide-content-narrow {
  max-width: 980px;
}

.guide-answer {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.55;
}

.guide-article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(50px, 8vw, 110px);
  justify-content: center;
  align-items: start;
}

.guide-toc {
  position: sticky;
  top: 120px;
}

.guide-toc-title {
  margin-bottom: 18px;
  color: #171717;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-toc ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-toc a {
  color: #626262;
  font-size: 0.92rem;
  line-height: 1.45;
}

.guide-toc a:hover {
  color: #e2231a;
}

.guide-body > section {
  scroll-margin-top: 120px;
}

.guide-body > section + section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid #dfdfdf;
}

.guide-body h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.guide-body p {
  font-size: 1.06rem;
  line-height: 1.85;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  position: relative;
  padding-left: 24px;
  color: #4f4f4f;
  line-height: 1.65;
}

.guide-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 2px;
  background: #e2231a;
}

.guide-callout {
  margin-block: 64px;
  padding: 28px 30px;
  background: #f7f7f7;
  border-left: 3px solid #e2231a;
}

.guide-callout-label {
  margin-bottom: 12px;
  color: #e2231a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-callout p:last-child {
  margin-bottom: 0;
}

.guide-faq-list {
  border-top: 1px solid #d8d8d8;
}

.guide-faq-list details {
  padding-block: 22px;
  border-bottom: 1px solid #d8d8d8;
}

.guide-faq-list summary {
  cursor: pointer;
  color: #171717;
  font-weight: 700;
}

.guide-faq-list details p {
  margin: 16px 0 0;
}

.guide-related {
  background: #f7f7f7;
}

.guide-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.guide-related-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  border-top: 3px solid #e2231a;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.guide-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.guide-related-label {
  margin-bottom: 20px;
  color: #e2231a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-related-card h3 {
  margin-bottom: 16px;
}

.guide-related-card > p:not(.guide-related-label) {
  margin-bottom: 24px;
  line-height: 1.7;
}

.guide-related-card span {
  margin-top: auto;
  color: #171717;
  font-weight: 700;
}

.guide-service-grid,
.guide-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.guide-service-grid h2,
.guide-cta-grid h2 {
  margin-bottom: 0;
}

.guide-service-grid > div:last-child p,
.guide-cta-grid > div:last-child p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.guide-cta {
  color: #ffffff;
  background: #171717;
}

.guide-cta h2 {
  color: #ffffff;
}

.guide-cta p {
  color: #b9b9b9;
}

.guide-disclaimer {
  padding-block: 24px;
  background: #101010;
  border-top: 1px solid #303030;
}

.guide-disclaimer p {
  margin: 0;
  color: #8f8f8f;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Responsive guide */

@media (max-width: 950px) {
  .guide-hero-grid,
  .guide-service-grid,
  .guide-cta-grid {
    grid-template-columns: 1fr;
  }

  .guide-article-layout {
    grid-template-columns: 1fr;
  }

  .guide-toc {
    position: static;
    padding-bottom: 32px;
    border-bottom: 1px solid #dfdfdf;
  }

  .guide-related-grid {
    grid-template-columns: 1fr;
  }

  .guide-related-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .guide-hero {
    padding-block: 64px;
  }

  .guide-at-a-glance {
    padding: 26px 22px;
  }

  .guide-quick-answer {
    padding-block: 44px;
  }

  .guide-body > section + section {
    margin-top: 52px;
    padding-top: 52px;
  }

  .guide-callout {
    padding: 24px 22px;
  }
}
/* =========================
   Services Landing Page
   ========================= */

.practice-areas {
  background: #f7f7f7;
}

.practice-areas-heading,
.project-journey-heading {
  align-items: end;
}

.practice-areas-heading > p,
.project-journey-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.8;
}

.practice-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.practice-area-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.practice-area-card:hover {
  transform: translateY(-5px);
  border-color: #bdbdbd;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.practice-area-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 3px;
  background: #e2231a;
  transition: width 0.25s ease;
}

.practice-area-card:hover .practice-area-accent {
  width: 100%;
}

.practice-area-label {
  margin: 10px 0 18px;
  color: #e2231a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practice-area-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}

.practice-area-card > p:not(.practice-area-label) {
  margin-bottom: 28px;
  line-height: 1.75;
}

.practice-area-list {
  margin-bottom: 30px;
  padding-top: 24px;
  border-top: 1px solid #d8d8d8;
}

.practice-area-list > p {
  margin-bottom: 16px;
  color: #171717;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.practice-area-list li {
  position: relative;
  padding-left: 18px;
  color: #4f4f4f;
  line-height: 1.5;
}

.practice-area-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

.practice-area-card .text-link {
  margin-top: auto;
}

.project-journey {
  background: #ffffff;
}

.project-journey-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}

.project-journey-step {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.project-journey-label {
  margin-bottom: 44px;
  color: #e2231a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-journey-step h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.project-journey-step p:last-child {
  margin-bottom: 0;
  line-height: 1.7;
}

.services-help {
  color: #ffffff;
  background: #171717;
}

.services-help-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.services-help h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.services-help-content {
  max-width: 680px;
}

.services-help-content p {
  margin-bottom: 30px;
  color: #b9b9b9;
  font-size: 1.08rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .project-journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 950px) {
  .practice-area-grid {
    grid-template-columns: 1fr;
  }

  .practice-area-card {
    min-height: auto;
  }
}

@media (max-width: 800px) {
  .services-help-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .project-journey-list {
    grid-template-columns: 1fr;
  }

  .project-journey-step {
    min-height: auto;
  }

  .project-journey-label {
    margin-bottom: 24px;
  }
}
/* =========================
   Practice Area Pages
   ========================= */

.practice-overview {
  background: #ffffff;
}

.practice-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.practice-overview h2 {
  margin-bottom: 0;
}

.practice-overview-content {
  max-width: 680px;
}

.practice-overview-lead {
  color: #171717;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.55;
}

.practice-overview-content p {
  line-height: 1.8;
}

.practice-projects {
  background: #f7f7f7;
}

.practice-projects-heading,
.practice-services-heading {
  align-items: end;
}

.practice-projects-heading > p,
.practice-services-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.8;
}

.practice-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.practice-project-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4e4e4;
}

.practice-project-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 3px;
  background: #e2231a;
}

.practice-project-label {
  margin: 10px 0 18px;
  color: #e2231a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practice-project-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.practice-project-card > p:last-child {
  margin-bottom: 0;
  line-height: 1.75;
}

.practice-services {
  background: #ffffff;
}

.practice-service-list {
  border-top: 1px solid #d8d8d8;
}

.practice-service-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding-block: 36px;
  border-bottom: 1px solid #d8d8d8;
}

.practice-service-accent {
  width: 40px;
  height: 2px;
  margin-top: 11px;
  background: #e2231a;
}

.practice-service-item h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.practice-service-item p {
  max-width: 760px;
  margin-bottom: 0;
  line-height: 1.8;
}

.practice-process {
  background: #f7f7f7;
}

.practice-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}

.practice-process-step {
  min-height: 330px;
  padding: 32px;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.practice-process-label {
  margin-bottom: 44px;
  color: #e2231a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practice-process-step h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.practice-process-step p:last-child {
  margin-bottom: 0;
  line-height: 1.7;
}

.practice-guides {
  background: #ffffff;
}

.practice-cta {
  color: #ffffff;
  background: #171717;
}

.practice-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.practice-cta h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.practice-cta-grid > div:last-child {
  max-width: 680px;
}

.practice-cta-grid > div:last-child p {
  margin-bottom: 30px;
  color: #b9b9b9;
  font-size: 1.08rem;
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .practice-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 850px) {
  .practice-overview-grid,
  .practice-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 650px) {
  .practice-project-grid,
  .practice-process-grid {
    grid-template-columns: 1fr;
  }

  .practice-project-card,
  .practice-process-step {
    min-height: auto;
  }

  .practice-service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .practice-process-label {
    margin-bottom: 24px;
  }
}
/* =========================
   Land Development
   ========================= */

.land-coordination {
  color: #ffffff;
  background: #171717;
}

.land-coordination-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.land-coordination h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: #ffffff;
}

.land-coordination-content {
  max-width: 680px;
}

.land-coordination-lead {
  color: #ffffff !important;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.55;
}

.land-coordination-content p {
  color: #b9b9b9;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .land-coordination-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* =========================
   Engineering Support
   ========================= */

.support-collaboration {
  color: #ffffff;
  background: #171717;
}

.support-collaboration-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.support-collaboration h2 {
  max-width: 650px;
  margin-bottom: 0;
  color: #ffffff;
}

.support-collaboration-content {
  max-width: 680px;
}

.support-collaboration-lead {
  color: #ffffff !important;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.55;
}

.support-collaboration-content p {
  color: #b9b9b9;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .support-collaboration-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* =========================
   Knowledge Centre Landing
   ========================= */

.knowledge-featured {
  background: #ffffff;
}

.knowledge-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
}

.knowledge-featured h2 {
  max-width: 700px;
  margin-bottom: 24px;
}

.knowledge-featured-lead {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.knowledge-featured-summary {
  padding: 32px;
  background: #f7f7f7;
  border: 1px solid #dfdfdf;
  border-top: 3px solid #e2231a;
}

.knowledge-summary-label {
  margin-bottom: 28px;
  color: #e2231a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-summary-group + .knowledge-summary-group {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #d8d8d8;
}

.knowledge-summary-group > p {
  margin-bottom: 12px;
  color: #171717;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-summary-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.knowledge-summary-group li {
  position: relative;
  padding-left: 18px;
}

.knowledge-summary-group li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

.knowledge-categories {
  background: #f7f7f7;
}

.knowledge-categories-heading {
  align-items: end;
}

.knowledge-categories-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.8;
}

.knowledge-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.knowledge-category-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4e4e4;
}

.knowledge-category-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 3px;
  background: #e2231a;
}

.knowledge-category-label,
.knowledge-guide-type {
  color: #e2231a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-category-label {
  margin: 10px 0 18px;
}

.knowledge-category-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
}

.knowledge-category-card > p:not(.knowledge-category-label) {
  line-height: 1.75;
}

.knowledge-category-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.knowledge-category-card li {
  position: relative;
  padding-left: 18px;
  color: #4f4f4f;
}

.knowledge-category-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: #e2231a;
}

.knowledge-category-card .text-link {
  margin-top: auto;
}

.knowledge-library {
  scroll-margin-top: 110px;
  background: #ffffff;
}

.knowledge-library-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 52px;
}

.knowledge-library-heading h2 {
  margin-bottom: 0;
}

.knowledge-library-heading > p {
  max-width: 620px;
  margin-bottom: 0;
  line-height: 1.8;
}

.knowledge-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}

.knowledge-guide-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 34px;
  background: #ffffff;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.knowledge-guide-card:hover {
  background: #fafafa;
  transform: translateY(-3px);
}

.knowledge-guide-type {
  margin-bottom: 20px;
}

.knowledge-guide-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.knowledge-guide-card > p:not(.knowledge-guide-type) {
  margin-bottom: 24px;
  line-height: 1.75;
}

.knowledge-guide-card span {
  margin-top: auto;
  color: #171717;
  font-weight: 700;
}

.knowledge-services {
  background: #f7f7f7;
}

.knowledge-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.knowledge-service-link {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  border-top: 3px solid #e2231a;
}

.knowledge-service-link p {
  margin-bottom: 22px;
  color: #171717;
  font-size: 1.35rem;
  font-weight: 700;
}

.knowledge-service-link span {
  color: #e2231a;
  font-weight: 700;
}

.knowledge-cta {
  color: #ffffff;
  background: #171717;
}

.knowledge-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.knowledge-cta h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.knowledge-cta-grid > div:last-child {
  max-width: 680px;
}

.knowledge-cta-grid > div:last-child p {
  margin-bottom: 30px;
  color: #b9b9b9;
  font-size: 1.08rem;
  line-height: 1.8;
}

@media (max-width: 950px) {
  .knowledge-featured-grid,
  .knowledge-library-heading,
  .knowledge-cta-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-category-grid,
  .knowledge-service-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-category-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .knowledge-guide-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-guide-card {
    min-height: auto;
  }
}
/* =========================
   Contact Page
   ========================= */

.contact-hero {
  padding-block: clamp(90px, 10vw, 140px);
  background: #ffffff;
  border-bottom: 1px solid #dfdfdf;
}

.contact-hero-content {
  max-width: 900px;
}

.contact-hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 1;
}

.contact-hero-content > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.8;
}

.contact-main {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.contact-information {
  max-width: 570px;
}

.contact-information h2 {
  margin-bottom: 24px;
}

.contact-information > p:not(.eyebrow) {
  line-height: 1.8;
}

.contact-detail-list {
  margin-top: 42px;
  border-top: 1px solid #d8d8d8;
}

.contact-detail {
  padding-block: 24px;
  border-bottom: 1px solid #d8d8d8;
}

.contact-detail-label {
  margin-bottom: 8px;
  color: #e2231a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail > p:last-child,
.contact-detail a {
  margin-bottom: 0;
  color: #171717;
  line-height: 1.7;
}

.contact-detail a {
  font-weight: 700;
}

.contact-detail a:hover {
  color: #e2231a;
}

.contact-form-panel {
  padding: clamp(30px, 5vw, 48px);
  background: #f7f7f7;
  border: 1px solid #dfdfdf;
  border-top: 3px solid #e2231a;
}

.contact-form {
  display: grid;
  gap: 24px;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  color: #171717;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-field label span {
  color: #777777;
  font-size: 0.78rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: #171717;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #e2231a;
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.1);
}

.contact-form .btn {
  width: fit-content;
}

.contact-form-note {
  margin-bottom: 0;
  color: #777777;
  font-size: 0.8rem;
  line-height: 1.6;
}

.contact-faq {
  background: #f7f7f7;
}

.contact-faq-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.contact-faq-heading h2 {
  margin-bottom: 0;
}

.contact-faq-list {
  border-top: 1px solid #d8d8d8;
}

.contact-faq-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 100px);
  padding-block: 30px;
  border-bottom: 1px solid #d8d8d8;
}

.contact-faq-item h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.contact-faq-item p {
  max-width: 680px;
  margin-bottom: 0;
  line-height: 1.75;
}

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

  .contact-information {
    max-width: none;
  }
}

@media (max-width: 650px) {
  .contact-hero {
    padding-block: 64px;
  }

  .contact-form-row,
  .contact-faq-item {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 28px 22px;
  }

  .contact-form .btn {
    width: 100%;
  }
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* =========================
   Contact Thank You
   ========================= */

.contact-thank-you {
  display: flex;
  min-height: calc(100vh - 96px);
  align-items: center;
  background: #ffffff;
}

.contact-thank-you-content {
  max-width: 820px;
}

.contact-thank-you h1 {
  max-width: 760px;
  margin-bottom: 26px;
}

.contact-thank-you-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.contact-thank-you-actions .text-link {
  margin-top: 0;
}

@media (max-width: 560px) {
  .contact-thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-thank-you-actions .btn {
    width: 100%;
  }
}