:root {
  --ink: #121c18;
  --muted: #56635d;
  --paper: #f7f3ec;
  --surface: #fffdf9;
  --line: #ddd6cb;
  --line-strong: #cfc5b7;
  --pine: #173c32;
  --pine-2: #285748;
  --clay: #bd613c;
  --clay-dark: #93472c;
  --gold: #c19a52;
  --blue: #d8e5ea;
  --radius-card: 16px;
  --radius-feature: 22px;
  --shadow: 0 18px 48px rgba(31, 42, 35, 0.1);
  --shadow-soft: 0 12px 32px rgba(31, 42, 35, 0.08);
  --button-shadow: 0 10px 24px rgba(189, 97, 60, 0.24);
  color-scheme: light;
}

/* Shared HemMatch footer */
.site-footer {
  --footer-bg: #0d2f46;
  --footer-bg-deep: #09263a;
  --footer-muted: rgba(255, 255, 255, 0.76);
  background: var(--footer-bg);
  color: #fff;
  padding: 0;
}

.site-footer .site-footer-main {
  padding: 78px 0 70px;
}

.site-footer .site-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 0.95fr 1fr 1.35fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.site-footer .site-footer-column {
  min-width: 0;
}

.site-footer .site-footer-column h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer .site-footer-list,
.site-footer .site-footer-address,
.site-footer .site-footer-contact-links {
  display: grid;
  gap: 12px;
}

.site-footer .site-footer-list a,
.site-footer .site-footer-list span,
.site-footer .site-footer-address span,
.site-footer .site-footer-contact-links a {
  color: var(--footer-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.site-footer .site-footer-list a,
.site-footer .site-footer-contact-links a {
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer .site-footer-list a:hover,
.site-footer .site-footer-list a:focus-visible,
.site-footer .site-footer-contact-links a:hover,
.site-footer .site-footer-contact-links a:focus-visible {
  color: #fff;
}

.site-footer .site-footer-list a:hover,
.site-footer .site-footer-list a:focus-visible {
  transform: translateX(3px);
}

.site-footer .site-footer-more {
  color: #fff;
  font-weight: 700;
  margin-top: 4px;
}

.site-footer .site-footer-placeholders span {
  cursor: default;
}

.site-footer .site-footer-certifications {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

.site-footer .site-footer-certifications img {
  display: block;
  width: auto;
  max-width: 94px;
  max-height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer .site-footer-address {
  margin: 0 0 24px;
  font-style: normal;
}

.site-footer .site-footer-contact-links {
  gap: 14px;
}

.site-footer .site-footer-contact-links a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  overflow-wrap: anywhere;
}

.site-footer .site-footer-contact-icon {
  color: #fff;
  display: block;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.site-footer .site-footer-bottom {
  background: var(--footer-bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .site-footer-bottom .inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .site-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-footer .site-footer-top {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.site-footer .site-footer-top:hover,
.site-footer .site-footer-top:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1050px) {
  .site-footer .site-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer .site-footer-contact-details {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .site-footer .site-footer-main {
    padding: 52px 0 46px;
  }

  .site-footer .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
  }

  .site-footer .site-footer-column h2 {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .site-footer .site-footer-list,
  .site-footer .site-footer-address,
  .site-footer .site-footer-contact-links {
    gap: 10px;
  }

  .site-footer .site-footer-list a,
  .site-footer .site-footer-list span,
  .site-footer .site-footer-address span,
  .site-footer .site-footer-contact-links a {
    font-size: 14px;
  }

  .site-footer .site-footer-trust,
  .site-footer .site-footer-contact-details {
    grid-column: 1 / -1;
  }

  .site-footer .site-footer-trust {
    padding-top: 4px;
  }

  .site-footer .site-footer-certifications {
    min-height: 0;
    gap: 24px;
  }

  .site-footer .site-footer-certifications img {
    max-width: 86px;
    max-height: 64px;
  }

  .site-footer .site-footer-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    padding-top: 4px;
  }

  .site-footer .site-footer-contact-details h2 {
    grid-column: 1 / -1;
  }

  .site-footer .site-footer-address {
    margin: 0;
  }

  .site-footer .site-footer-bottom .inner {
    min-height: 64px;
  }
}

@media (max-width: 430px) {
  .site-footer .site-footer-grid {
    gap: 38px 18px;
  }

  .site-footer .site-footer-contact-details {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer .site-footer-contact-details h2 {
    margin-bottom: -4px;
  }

  .site-footer .site-footer-bottom p {
    font-size: 13px;
  }
}

/* Local SEO pages */
.location-page,
.area-hub-page {
  background: var(--paper);
}

.location-page main,
.area-hub-page main {
  overflow: hidden;
}

.location-page main .inner,
.area-hub-page main .inner,
.location-page .location-nearby .inner {
  box-sizing: border-box;
  padding-inline: clamp(22px, 4vw, 40px);
  width: 100%;
}

.location-hero {
  align-items: center;
  background: url("/assets/hemmatch-roofing-hero-poster.jpg") 50% 45% / cover no-repeat;
  color: #fff;
  display: flex;
  min-height: 640px;
  position: relative;
}

.location-hero::before {
  background: rgba(8, 28, 23, 0.62);
  content: "";
  inset: 0;
  position: absolute;
}

.location-hero-inner {
  padding-block: 132px 96px;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  margin-bottom: 30px;
}

.location-hero .breadcrumbs,
.location-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
}

.location-hero h1 {
  color: #fff;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.02;
  max-width: 12ch;
}

.location-hero-copy {
  font-size: 19px;
  line-height: 1.65;
  margin: 30px 0 36px;
  max-width: 690px;
}

.location-hero-copy p + p {
  margin-top: 13px;
}

.location-section {
  padding-block: 96px;
}

.location-section h2,
.area-hub-page h1 {
  color: var(--pine);
}

.location-section h2 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  margin-bottom: 28px;
}

.location-section h3 {
  color: var(--pine);
}

.location-section p {
  color: #4d5c56;
  font-size: 18px;
  line-height: 1.72;
}

.location-section p + p {
  margin-top: 18px;
}

.location-prose-grid,
.location-cost-grid,
.location-trust-grid,
.location-form-layout,
.location-faq-layout {
  display: grid;
  gap: 72px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-highlight {
  background: #eaf2ed;
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: 8px;
  padding: 42px;
}

.location-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.location-inline-links a,
.location-cost-grid a,
.location-all-services a {
  color: var(--clay);
  font-weight: 700;
}

.location-green-band {
  background: var(--pine);
}

.location-green-band h2,
.location-green-band p {
  color: #fff;
}

.location-green-band .location-footnote {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.location-callout {
  border-left: 3px solid var(--clay);
  font-weight: 700;
  padding-left: 18px;
}

.location-process {
  background: #f3eee7;
}

.location-process-grid,
.location-services-grid {
  display: grid;
  gap: 18px;
}

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

.location-process-grid article,
.location-service-card {
  background: #fffdf9;
  border: 1px solid #ddd3c7;
  border-radius: 8px;
  padding: 30px;
}

.location-process-grid article > span {
  align-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  margin-bottom: 28px;
  width: 38px;
}

.location-process-grid h3,
.location-service-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.location-process-grid p,
.location-service-card p {
  font-size: 16px;
}

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

.location-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  transition: border-color 160ms ease, transform 160ms ease;
}

.location-service-card:hover {
  border-color: var(--clay);
  transform: translateY(-2px);
}

.location-service-card p {
  grid-column: 1;
}

.location-service-card > span {
  color: var(--clay);
  font-size: 24px;
  grid-column: 2;
  grid-row: 1;
}

.location-all-services {
  margin-top: 28px;
}

.location-form-section {
  background: #eaf2ed;
}

.location-form-layout {
  align-items: start;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.location-form-intro {
  position: sticky;
  top: 104px;
}

.location-form-section .location-lead-form {
  margin: 0;
  max-width: none;
}

.location-faq-layout {
  grid-template-columns: 0.55fr 1.45fr;
}

.location-faq details {
  border-top: 1px solid #d8cec2;
  padding: 24px 0;
}

.location-faq details:last-child {
  border-bottom: 1px solid #d8cec2;
}

.location-faq summary {
  color: var(--pine);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  padding-right: 32px;
  position: relative;
}

.location-faq summary::-webkit-details-marker {
  display: none;
}

.location-faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 0;
}

.location-faq details[open] summary::after {
  content: "−";
}

.location-faq details p {
  font-size: 16px;
  max-width: 68ch;
  padding-top: 18px;
}

.location-nearby {
  background: #f3eee7;
  border-top: 1px solid #ded4c7;
  padding-block: 26px;
}

.location-nearby .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.location-nearby a {
  color: var(--pine);
  font-size: 14px;
  font-weight: 700;
}

.area-hub-hero {
  background: #eaf2ed;
  border-bottom: 1px solid rgba(23, 63, 53, 0.12);
  padding-block: 132px 90px;
}

.area-hub-hero .breadcrumbs,
.area-hub-hero .breadcrumbs a {
  color: #64736c;
}

.area-hub-hero h1 {
  font-size: clamp(54px, 7vw, 84px);
  line-height: 1;
}

.area-hub-hero p {
  color: #4d5c56;
  font-size: 20px;
  line-height: 1.65;
  margin-top: 28px;
  max-width: 720px;
}

.area-hub-list {
  padding-block: 88px 104px;
}

.area-hub-list .eyebrow {
  color: var(--clay);
  margin-bottom: 20px;
}

.area-hub-feature {
  margin-bottom: 64px;
}

.area-hub-feature > a {
  align-items: center;
  border-bottom: 1px solid #d9cfc2;
  color: var(--pine);
  display: flex;
  font-size: 32px;
  font-weight: 700;
  justify-content: space-between;
  padding-block: 22px;
}

.area-hub-areas ul {
  display: grid;
  gap: 0 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-hub-areas a {
  align-items: center;
  border-bottom: 1px solid #dfd6ca;
  color: var(--pine);
  display: flex;
  font-size: 17px;
  font-weight: 650;
  justify-content: space-between;
  padding-block: 17px;
}

.area-hub-feature a span:last-child,
.area-hub-areas a span:last-child {
  color: var(--clay);
}

@media (max-width: 900px) {
  .location-prose-grid,
  .location-cost-grid,
  .location-trust-grid,
  .location-form-layout,
  .location-faq-layout {
    gap: 40px;
  }

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

  .location-form-intro {
    position: static;
  }

  .area-hub-areas ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .location-hero {
    background-image: url("/assets/hemmatch-roofing-hero-poster.jpg");
    min-height: 570px;
  }

  .location-hero-inner {
    padding-block: 116px 70px;
  }

  .location-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .location-hero-copy {
    font-size: 16px;
    line-height: 1.62;
    margin-block: 24px 30px;
  }

  .location-section {
    padding-block: 64px;
  }

  .location-section h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .location-section p {
    font-size: 16px;
  }

  .location-prose-grid,
  .location-cost-grid,
  .location-trust-grid,
  .location-faq-layout,
  .location-process-grid,
  .location-services-grid {
    grid-template-columns: 1fr;
  }

  .location-highlight,
  .location-process-grid article,
  .location-service-card {
    padding: 26px;
  }

  .location-form-section .location-lead-form {
    padding: 24px;
  }

  .location-nearby .inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .area-hub-hero {
    padding-block: 112px 64px;
  }

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

  .area-hub-hero p {
    font-size: 17px;
  }

  .area-hub-list {
    padding-block: 62px 72px;
  }

  .area-hub-feature {
    margin-bottom: 44px;
  }

  .area-hub-feature > a {
    font-size: 24px;
  }

  .area-hub-areas ul {
    grid-template-columns: 1fr;
  }
}

/* Primary site navigation. */
#om-takfirman,
#vara-tjanster,
#contact {
  scroll-margin-top: 78px;
}

.header-services-menu {
  position: relative;
}

.header-services-menu summary {
  align-items: center;
  color: rgba(15, 29, 24, 0.72);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 7px;
  list-style: none;
  min-height: 44px;
  white-space: nowrap;
}

.header-services-menu summary::-webkit-details-marker {
  display: none;
}

.header-services-menu summary span {
  font-size: 15px;
  transition: transform 160ms ease;
}

.header-services-menu[open] summary,
.header-services-menu summary:hover {
  color: var(--pine);
}

.header-services-menu[open] summary span {
  transform: rotate(180deg);
}

.header-services-dropdown {
  background: #fffdfa;
  border: 1px solid rgba(207, 197, 183, 0.72);
  box-shadow: 0 18px 42px rgba(15, 29, 24, 0.14);
  display: grid;
  left: 50%;
  min-width: 230px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 4px);
  transform: translateX(-50%);
  z-index: 50;
}

.header-services-dropdown a {
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  min-height: 42px;
  padding: 11px 13px;
}

.header-services-dropdown a:hover {
  background: var(--mint-soft);
}

.header-services-dropdown a:last-child {
  border-top: 1px solid rgba(207, 197, 183, 0.72);
  color: var(--clay-dark);
  margin-top: 5px;
  padding-top: 14px;
}

.mobile-site-menu .mobile-menu-label {
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 12px 0 4px;
  text-transform: uppercase;
}

@media (min-width: 1101px) {
  .header-services-menu::after {
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
  }
}

@media (max-width: 1100px) {
  #om-takfirman,
  #vara-tjanster,
  #contact {
    scroll-margin-top: 66px;
  }
}

/* Search landing page: compact, conversion-led layout. */
body {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  min-height: clamp(560px, 70vh, 660px);
  padding-bottom: 66px;
  padding-top: 76px;
}

.hero::before {
  background:
    radial-gradient(ellipse at center, rgba(14, 24, 20, 0.46) 0%, rgba(14, 24, 20, 0.3) 48%, rgba(14, 24, 20, 0.16) 100%),
    linear-gradient(180deg, rgba(14, 24, 20, 0.08), rgba(14, 24, 20, 0.58));
}

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

.hero h1 {
  font-size: clamp(48px, 5.1vw, 68px);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 820px;
}

.hero p {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 790px;
}

.hero-actions {
  margin-bottom: 28px;
}

.hero-actions .btn {
  min-height: 58px;
  padding-inline: 30px;
}

.hero-trust-row {
  gap: 10px;
  max-width: none;
}

.hero-trust-row li {
  background: rgba(19, 36, 30, 0.28);
  border-color: rgba(255, 255, 255, 0.32);
  font-size: 12.5px;
  min-height: 34px;
  padding: 6px 13px;
}

.hero-trust-row .trust-placeholder {
  border-style: dashed;
  color: rgba(255, 255, 255, 0.78);
}

.service-focus {
  background: var(--paper);
  border-top: 0;
  padding-block: 80px;
}

.service-focus-heading {
  max-width: 720px;
}

.service-focus-heading h2 {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 16px;
}

.service-focus-heading .lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
}

.service-focus-list {
  border: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.service-focus-item {
  align-content: start;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 13px 18px;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  min-height: 190px;
  padding: 26px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-focus-item:hover {
  border-color: rgba(189, 97, 60, 0.52);
  box-shadow: var(--shadow-soft);
  color: inherit;
  padding: 26px;
  transform: translateY(-3px);
}

.service-focus-item > span {
  grid-column: 1;
  padding-top: 5px;
}

.service-focus-item h3 {
  font-size: 24px;
  grid-column: 2;
}

.service-focus-item p {
  font-size: 15px;
  grid-column: 2 / 4;
  line-height: 1.62;
  max-width: 440px;
}

.service-focus-item strong {
  grid-column: 3;
  grid-row: 1;
}

.service-material-note {
  background: rgba(234, 242, 234, 0.72);
  border-left: 3px solid var(--pine);
  color: #43534b;
  font-size: 14px;
  margin-top: 22px;
  max-width: 760px;
  padding: 12px 15px;
}

.process-band {
  padding-block: 82px;
}

.process-band .inner {
  max-width: 1180px;
}

.process-band h2 {
  font-size: clamp(40px, 4vw, 52px);
}

.process-intro {
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
}

.process-list {
  gap: 16px;
  margin-top: 38px;
}

.process-step,
.process-step:first-child,
.process-step:last-child {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-height: 220px;
  padding: 28px;
  transform: none;
}

.process-step::before {
  height: 38px;
  margin-bottom: 24px;
  width: 38px;
}

.process-step h3 {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 11px;
}

.process-step p {
  font-size: 15.5px;
  line-height: 1.6;
}

.process-cta {
  justify-content: flex-start;
  margin-top: 30px;
}

#contact {
  background: var(--paper);
  padding-block: 84px;
}

.contact-conversion-layout {
  max-width: 880px;
}

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

.contact-heading h2 {
  color: var(--pine);
  font-size: clamp(38px, 4.2vw, 52px);
}

.contact-heading .lead {
  font-size: 18px;
  margin-inline: auto;
}

.contact-card {
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 42, 35, 0.09);
  margin: 0 auto;
  max-width: 780px;
  padding: 32px;
}

.form-progress {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 28px;
}

.form-progress-item {
  align-items: center;
  color: #7a847f;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  white-space: nowrap;
}

.form-progress-item::first-letter {
  font-size: 14px;
}

.form-progress-item.is-active,
.form-progress-item.is-complete {
  color: var(--pine);
}

.form-progress-line {
  background: var(--line);
  height: 1px;
}

.form-progress-item.is-complete + .form-progress-line {
  background: rgba(23, 60, 50, 0.55);
}

.form-step[hidden] {
  display: none;
}

.form-step {
  display: grid;
  gap: 20px;
}

.form-step .form-group-heading {
  margin-bottom: 0;
}

.form-step-heading h3 {
  color: var(--pine);
  font-size: 25px;
  margin: 18px 0 0;
}

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

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

.form-next {
  justify-self: end;
  margin-top: 4px;
  min-width: 180px;
}

.form-step-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.form-step-actions .btn {
  min-width: 230px;
}

.form-back {
  background: transparent;
  border: 0;
  color: var(--pine);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  padding: 10px 0;
}

.contact-guarantee-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 16px auto 0;
  max-width: 780px;
}

#faq {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .hero {
    min-height: 590px;
    padding: 62px 20px 42px;
  }

  .hero-media {
    object-position: center 46%;
  }

  .hero h1 {
    font-size: clamp(39px, 11.5vw, 48px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 520px;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .hero-actions .btn {
    min-height: 54px;
    width: min(100%, 330px);
  }

  .hero-trust-row {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-trust-row li {
    justify-content: center;
  }

  .service-focus {
    padding-block: 52px;
  }

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

  .service-focus-heading .lead {
    font-size: 16px;
  }

  .service-focus-list {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .service-focus-item,
  .service-focus-item:hover {
    border-radius: 8px;
    gap: 9px 14px;
    min-height: 0;
    padding: 20px;
    transform: none;
  }

  .service-focus-item h3 {
    font-size: 21px;
  }

  .service-focus-item p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .service-material-note {
    margin-top: 16px;
  }

  .process-band {
    padding-block: 56px;
  }

  .process-band .eyebrow,
  .process-band h2,
  .process-intro {
    margin-left: 0;
    max-width: 100%;
  }

  .process-band h2 {
    font-size: 35px;
  }

  .process-intro {
    font-size: 16px;
  }

  .process-list {
    gap: 12px;
    margin-top: 28px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-height: 0;
    padding: 20px;
  }

  .process-step::before {
    height: 34px;
    left: auto;
    margin: 0 0 16px;
    position: relative;
    top: auto;
    width: 34px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step h3 {
    font-size: 19px;
  }

  .process-step p {
    font-size: 14.5px;
  }

  .process-cta {
    margin-top: 22px;
  }

  .process-cta .btn {
    width: 100%;
  }

  #contact {
    padding-block: 56px;
  }

  .contact-heading {
    margin-bottom: 24px;
    text-align: left;
  }

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

  .contact-heading .lead {
    font-size: 16px;
  }

  .contact-card {
    border-radius: 8px;
    padding: 20px;
  }

  .form-progress-item span {
    display: none;
  }

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

  .form-next,
  .form-step-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .form-step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .form-back {
    align-self: center;
  }
}

/* Compact certification mark in the hero. */
.hero-certifications {
  align-items: center;
  background: rgba(5, 31, 52, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 14px auto 0;
  padding: 11px 16px 13px;
  width: fit-content;
}

.hero-certifications p {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-certification-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-certification-items span {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  line-height: 1.1;
  min-height: 28px;
  padding: 0 14px;
  white-space: nowrap;
}

.hero-certification-items span:last-child {
  border-right: 0;
}

.hero-certification-items sup {
  font-size: 7px;
  margin-left: 1px;
}

@media (max-width: 640px) {
  .hero-certifications {
    margin-top: 10px;
    padding: 10px 12px 11px;
  }

  .hero-certification-items span {
    font-size: 12px;
    min-height: 24px;
    padding: 0 10px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.locked {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(247, 243, 236, 0.82);
  border-bottom: 1px solid rgba(221, 214, 203, 0.74);
  display: flex;
  justify-content: center;
  left: 0;
  min-height: 44px;
  padding: 4px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.header-brand {
  align-items: center;
  color: var(--pine);
  display: inline-flex;
  font-family: inherit;
  font-size: 16px;
  gap: 14px;
  left: clamp(18px, 4vw, 54px);
  letter-spacing: -0.02em;
  position: absolute;
}

.header-brand-mark {
  color: var(--pine);
  display: block;
  height: 24px;
  width: 24px;
}

.header-brand-text {
  display: inline-flex;
  transform: translateY(0);
}

.header-brand-name {
  font-weight: 600;
}

.header-brand-accent {
  color: inherit;
  font-weight: 700;
}

.header-trust {
  align-items: center;
  color: var(--pine);
  display: inline-flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: absolute;
  right: clamp(18px, 4vw, 54px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: fit-content;
}

.brand-mark {
  align-items: center;
  background: #18362f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  font-size: 15px;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  margin-top: -2px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: center;
}

.nav-links a {
  color: #3f4b45;
  font-size: 13px;
  font-weight: 760;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta,
.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  transform: translateY(0);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  background: var(--clay);
  box-shadow: var(--button-shadow);
  color: #fff;
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 253, 249, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(15, 24, 19, 0.16);
}

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

.header-cta {
  border-radius: 999px;
  font-size: 13px;
  min-height: 38px;
  padding: 0 15px;
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 4vw, 54px);
}

.inner {
  margin: 0 auto;
  max-width: 1180px;
}

.eyebrow {
  color: #995136;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.accent-word {
  color: var(--clay);
}

.lead {
  color: #4c5851;
  font-size: clamp(17px, 2vw, 20px);
  margin: 0;
  max-width: 760px;
}

.hero {
  background-image:
    radial-gradient(ellipse at center, rgba(14, 24, 20, 0.52) 0%, rgba(14, 24, 20, 0.36) 38%, rgba(14, 24, 20, 0.18) 70%, rgba(14, 24, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(14, 24, 20, 0.08) 0%, rgba(14, 24, 20, 0.3) 48%, rgba(14, 24, 20, 0.68) 100%),
    var(--hero-image);
  align-items: center;
  background-position: center 42%;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: clamp(560px, 74vh, 690px);
  padding: clamp(74px, 9vw, 118px) clamp(18px, 4vw, 54px) 82px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(18, 28, 24, 0.3));
  bottom: 0;
  content: "";
  height: 22%;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 0.98;
  margin: 0 auto 18px;
  max-width: 720px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28);
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.35;
  margin: 0 auto 26px;
  max-width: 680px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto;
  max-width: 720px;
  padding: 0;
}

.trust-row li {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  gap: 6px;
  list-style: none;
  min-height: 30px;
  padding: 5px 10px;
}

.trust-row svg {
  height: 13px;
  stroke-width: 1.8;
  width: 13px;
}

.trust-section {
  background: transparent;
  display: none;
  margin-top: 0;
  padding: 18px clamp(18px, 4vw, 54px) 24px;
  position: relative;
  z-index: 4;
}

.benefit-grid,
.service-grid,
.why-grid,
.review-grid,
.faq-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(207, 197, 183, 0.88);
  border-radius: 18px;
  box-shadow: var(--shadow);
  gap: 0;
  margin-top: 0;
  overflow: hidden;
}

.benefit-mobile-heading {
  display: none;
}

.benefit,
.service-card,
.why-card,
.review,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.benefit {
  align-items: start;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(207, 197, 183, 0.76);
  border-radius: 0;
  display: grid;
  gap: 13px;
  grid-template-columns: 34px 1fr;
  min-height: 116px;
  padding: 20px;
}

.benefit:last-child {
  border-right: 0;
}

.icon {
  align-items: center;
  background: #edf3ee;
  border-radius: 999px;
  color: var(--pine);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.icon svg {
  display: block;
  height: 17px;
  stroke-width: 1.9;
  width: 17px;
}

.benefit h3,
.service-card h3,
.why-card h3,
.review h3 {
  font-size: 17px;
  margin: 0 0 6px;
}

.benefit p,
.service-card p,
.why-card p,
.review p,
.faq-item p {
  color: var(--muted);
  margin: 0;
}

.benefit p,
.service-card p,
.why-card p,
.review p,
.faq-item p,
.project-mini span,
.project-feature span,
.text-stack p,
.seo-text {
  color: #4b5750;
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

[data-section="Intro"] .split {
  display: block;
  max-width: 720px;
  text-align: center;
}

.text-stack p {
  font-size: 18.5px;
  margin: 0 0 18px;
}

.strong-line {
  color: var(--ink) !important;
  font-size: clamp(34px, 4.4vw, 54px) !important;
  font-weight: 900;
  line-height: 1.04 !important;
  margin: 34px auto !important;
  max-width: 680px;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.62), rgba(247, 243, 236, 0)),
    var(--paper);
  padding-bottom: 96px;
  padding-top: 96px;
}

.intro-layout {
  align-items: center;
  display: grid;
  gap: clamp(64px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1120px;
  position: relative;
}

.intro-statement {
  position: relative;
}

.intro-statement:not(.intro-statement-solution) {
  border-left: 3px solid rgba(189, 97, 60, 0.72);
  padding-left: 24px;
}

.intro-eyebrow {
  color: var(--clay);
  font-size: 10.5px !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2 !important;
  margin: 0 0 14px !important;
  text-transform: uppercase;
}

.intro-statement h2 {
  color: var(--pine);
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.04;
  margin: 0 0 22px;
  max-width: 480px;
}

.intro-statement h2 span {
  color: var(--clay);
  display: block;
}

.intro-statement p {
  color: #46544d;
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 480px;
}

.intro-statement p:last-child {
  margin-bottom: 0;
}

.intro-statement-solution {
  background:
    radial-gradient(circle at 92% 8%, rgba(189, 97, 60, 0.11), transparent 34%),
    linear-gradient(145deg, #f0f6ef 0%, #e5efe5 100%);
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 26px;
  box-shadow: 0 28px 78px rgba(31, 42, 35, 0.14);
  padding: clamp(34px, 3.4vw, 42px);
}

.intro-statement-solution h2 {
  color: var(--pine);
}

.intro-solution-kicker {
  display: block;
}

.solution-mark {
  align-items: center;
  background: var(--pine);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 31px;
  justify-content: center;
  margin-bottom: 18px;
  width: 31px;
}

.solution-mark svg {
  height: 15px;
  stroke-width: 2.5;
  width: 15px;
}

.intro-cta {
  box-shadow: 0 14px 30px rgba(189, 97, 60, 0.24);
  margin-top: 28px;
  min-height: 48px;
  padding-left: 36px;
  padding-right: 36px;
}

.stat-panel {
  background: transparent;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.stat-panel div {
  background: transparent;
  padding: 24px 20px 24px 0;
}

.stat-panel strong {
  color: var(--clay) !important;
  display: block;
  font-size: 36px;
  line-height: 1;
}

.stat-panel span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
  margin-top: 36px;
}

.service-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 0;
  overflow: hidden;
}

.service-image {
  background:
    linear-gradient(135deg, rgba(23, 60, 50, 0.35), rgba(189, 97, 60, 0.18)),
    var(--image);
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  height: 176px;
  margin-bottom: 18px;
}

.service-card div:last-child {
  padding: 0 2px;
}

.process-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(189, 97, 60, 0.2), transparent 28%),
    linear-gradient(135deg, #173c32 0%, #254f43 52%, #153229 100%);
  color: #fff;
  padding-bottom: clamp(74px, 8vw, 112px);
  padding-top: clamp(74px, 8vw, 112px);
}

.process-band h2 {
  max-width: 760px;
}

.process-intro {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 560px;
}

.process-band .lead {
  color: rgba(255, 255, 255, 0.78);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  position: relative;
}

.process-step {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  min-height: 158px;
  padding: 20px 22px;
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
  z-index: 1;
}

.process-step:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(189, 97, 60, 0.66), rgba(189, 97, 60, 0.12));
  content: "";
  height: 1px;
  left: calc(100% + 4px);
  position: absolute;
  top: 35px;
  width: 10px;
}

.process-step:first-child {
  border-radius: 16px;
}

.process-step:last-child {
  border-radius: 16px;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 44px rgba(4, 14, 10, 0.22);
  transform: translateY(-5px);
}

.process-step::before {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(240, 199, 155, 0.74);
  border-radius: 999px;
  color: #f0c79b;
  content: counter(process);
  counter-increment: process;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  margin-bottom: 16px;
  width: 30px;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 17px;
  margin: 0 0 10px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.process-cta {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 34px;
}

.process-cta p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 750;
  margin: 0;
}

.process-cta .btn {
  min-height: 50px;
  padding-left: 30px;
  padding-right: 30px;
}

[data-section="WhyChooseUs"] {
  background: var(--paper);
  padding-bottom: 104px;
  padding-top: 104px;
}

[data-section="WhyChooseUs"] h2 {
  font-size: clamp(40px, 4.8vw, 60px);
  margin-bottom: 0;
  max-width: 940px;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.why-card {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(207, 197, 183, 0.64);
  border-radius: 12px;
  min-height: 188px;
  padding: 30px;
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.55;
}

.project-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 36px;
}

.project-feature {
  background-image:
    linear-gradient(180deg, rgba(23, 33, 28, 0.05), rgba(23, 33, 28, 0.72)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  color: #fff;
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-mini {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 24px 0;
}

.project-mini strong,
.project-feature strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.project-mini span,
.project-feature span {
  color: var(--muted);
}

.project-feature span {
  color: rgba(255, 255, 255, 0.82);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.review {
  border-color: rgba(207, 197, 183, 0.76);
  box-shadow: 0 18px 50px rgba(31, 42, 35, 0.08);
  padding: 26px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.review small {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 18px;
}

.faq-grid {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.faq-item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 850;
  gap: 18px;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  width: 100%;
}

.faq-question span:first-child {
  font-size: 17px;
}

.faq-toggle {
  align-items: center;
  color: var(--clay);
  display: inline-flex;
  font-size: 22px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.cta-band {
  background: var(--pine);
  color: #fff;
}

.cta-wrap {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.cta-wrap p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 690px;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid #d8d3ca;
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  width: 100%;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--pine) 50%),
    linear-gradient(135deg, var(--pine) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 2px rgba(35, 68, 57, 0.1);
}

@media (min-width: 720px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full,
  .form-grid .btn,
  .hp-field {
    grid-column: 1 / -1;
  }
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 14px 0 0;
}

.form-status[data-status="success"] {
  color: var(--pine);
  font-weight: 750;
}

.form-status[data-status="error"] {
  color: var(--clay-dark);
  font-weight: 750;
}

.hp-field {
  display: none;
}

.form-consent {
  align-items: flex-start;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  font-size: 12px;
  gap: 11px;
  line-height: 1.55;
}

.form-consent input {
  accent-color: var(--pine);
  flex: 0 0 auto;
  height: 18px;
  margin: 2px 0 0;
  width: 18px;
}

.form-consent a {
  color: var(--pine);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(23, 60, 50, 0.35);
  text-underline-offset: 3px;
}

[data-section="Assurances"] {
  background: #eef5ef;
  border: 0;
  padding-bottom: 56px;
  padding-top: 48px;
}

.assurance-feature {
  align-items: start;
  display: grid;
  gap: clamp(48px, 5.5vw, 72px);
  grid-template-areas:
    "copy list"
    "cta list"
    "note list";
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  margin: 0 auto;
  max-width: 1120px;
  padding: 0;
}

.assurance-copy {
  grid-area: copy;
}

.assurance-list-wrap {
  grid-area: list;
  padding-top: 94px;
}

.assurance-feature h2 {
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.06;
  margin-bottom: 14px;
  max-width: 620px;
}

.assurance-feature p {
  color: #46544d;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
  margin: 0;
  max-width: 500px;
}

.assurance-cta {
  grid-area: cta;
  justify-self: start;
  margin-top: -38px;
}

.assurance-note {
  grid-area: note;
  font-size: 12px !important;
  line-height: 1.45 !important;
  margin-top: -54px !important;
  max-width: 440px !important;
}

.assurance-points {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.assurance-points li {
  color: var(--pine);
  font-size: 17px;
  font-weight: 800;
}

.assurance-points li::before {
  color: var(--clay);
  content: "✓";
  margin-right: 8px;
}

.seo-text {
  columns: 2 320px;
  column-gap: 48px;
  color: var(--muted);
}

.seo-text h2 {
  color: var(--ink);
  column-span: all;
}

.seo-text p {
  break-inside: avoid;
  margin: 0 0 18px;
}

.footer {
  background: #111815;
  color: #fff;
  padding: 38px clamp(18px, 4vw, 54px);
}

.footer .inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.footer-links,
.footer-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-links {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a,
.footer-contact a {
  color: inherit;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.62);
  gap: 14px;
}

/* Legal pages */
.legal-body {
  background: var(--surface);
}

.legal-site-header .header-brand {
  text-decoration: none;
}

.legal-home-link {
  color: var(--pine);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  right: clamp(18px, 4vw, 54px);
}

.legal-home-link::after {
  content: " →";
}

.legal-shell {
  margin: 0 auto;
  max-width: 1180px;
}

.legal-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 104px clamp(24px, 5vw, 64px) 72px;
}

.legal-hero .legal-shell {
  max-width: 1180px;
}

.legal-kicker {
  color: var(--clay);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.legal-hero h1 {
  color: var(--ink);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 68px;
  line-height: 1.02;
  margin: 0;
  max-width: 900px;
}

.legal-lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  margin: 28px 0 0;
  max-width: 720px;
}

.legal-updated {
  color: #76817b;
  font-size: 13px;
  margin: 28px 0 0;
}

.legal-layout {
  display: grid;
  gap: 72px;
  grid-template-columns: 210px minmax(0, 780px);
  justify-content: center;
  padding: 72px clamp(24px, 5vw, 64px) 112px;
}

.legal-nav {
  align-self: start;
  display: grid;
  gap: 10px;
  position: sticky;
  top: 88px;
}

.legal-nav p {
  color: var(--ink);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

.legal-nav a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.legal-nav a:hover,
.legal-content a:hover,
.legal-home-link:hover {
  color: var(--clay-dark);
}

.legal-content {
  min-width: 0;
}

.legal-draft-note {
  background: #fff4ee;
  border-left: 3px solid var(--clay);
  color: #713b28;
  margin-bottom: 48px;
  padding: 20px 22px;
}

.legal-draft-note strong {
  display: block;
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
}

.legal-draft-note p {
  color: inherit;
  font-size: 14px;
  margin: 0;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding: 38px 0 8px;
  scroll-margin-top: 76px;
}

.legal-content section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-content h2 {
  color: var(--ink);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 29px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.legal-content p,
.legal-content li,
.legal-details dd,
.legal-details dt,
.legal-table {
  color: #46544d;
  font-size: 16px;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--pine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(23, 60, 50, 0.32);
  text-underline-offset: 3px;
}

.legal-placeholder {
  background: #fff0e8;
  box-decoration-break: clone;
  color: #853f29;
  font-weight: 700;
  padding: 2px 4px;
}

.legal-details {
  border-bottom: 1px solid var(--line);
  margin: 24px 0 26px;
}

.legal-details div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 14px 0;
}

.legal-details dt {
  color: var(--ink);
  font-weight: 750;
}

.legal-details dd {
  margin: 0;
}

.legal-table-wrap {
  margin: 24px 0 28px;
  overflow-x: auto;
}

.legal-table {
  border-collapse: collapse;
  min-width: 680px;
  width: 100%;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f0f5f1;
  color: var(--pine);
  font-size: 13px;
  font-weight: 800;
}

.legal-table td {
  font-size: 14px;
  line-height: 1.58;
}

.legal-contact-section {
  border-bottom: 1px solid var(--line);
  margin-top: 32px;
  padding-bottom: 38px !important;
}

.legal-contact-section .legal-kicker {
  margin-bottom: 12px;
}

.legal-footer .footer-links a[aria-current="page"] {
  color: #fff;
  font-weight: 750;
}

@media (max-width: 820px) {
  .legal-hero {
    padding-bottom: 58px;
    padding-top: 84px;
  }

  .legal-hero h1 {
    font-size: 54px;
  }

  .legal-layout {
    gap: 48px;
    grid-template-columns: 1fr;
    padding-bottom: 88px;
    padding-top: 56px;
  }

  .legal-nav {
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 20px;
    position: static;
  }

  .legal-nav p {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .legal-home-link {
    font-size: 12px;
    right: 16px;
  }

  .legal-hero {
    padding: 72px 20px 48px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-lead {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 22px;
  }

  .legal-layout {
    gap: 38px;
    padding: 40px 20px 72px;
  }

  .legal-content h2 {
    font-size: 25px;
  }

  .legal-content p,
  .legal-content li,
  .legal-details dd,
  .legal-details dt {
    font-size: 15px;
  }

  .legal-draft-note {
    margin-bottom: 38px;
  }

  .legal-content section {
    padding-top: 32px;
  }

  .legal-details div {
    gap: 4px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .benefit-grid,
  .service-grid,
  .why-grid,
  .review-grid,
  .faq-grid,
  .process-list,
  .split,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-bottom: 1px solid rgba(207, 197, 183, 0.76);
    border-right: 0;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .process-step {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    min-height: auto;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
  }

  [data-section="Assurances"] {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .assurance-feature h2 {
    font-size: clamp(44px, 6.4vw, 52px);
  }

  [data-section="WhyChooseUs"] {
    padding-bottom: 88px;
    padding-top: 88px;
  }

  [data-section="WhyChooseUs"] h2 {
    font-size: clamp(36px, 6vw, 48px);
  }

  .why-card {
    min-height: 156px;
    padding: 26px;
  }

  .process-step:first-child {
    border-radius: 14px;
  }

  .process-step:last-child {
    border-radius: 14px;
  }

  .project-feature {
    min-height: 420px;
  }

  .cta-wrap,
  .footer .inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 680px;
  }

  .intro-statement,
  .intro-statement-solution {
    padding-left: 0;
    text-align: left;
  }

  .intro-statement h2,
  .intro-statement p {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-statement:not(.intro-statement-solution) {
    border-left: 0;
    padding-left: 34px;
    padding-right: 34px;
  }

  .intro-statement-solution {
    padding: 34px;
  }
}

@media (max-width: 768px) {
  .assurance-feature {
    gap: 28px;
    grid-template-areas:
      "copy"
      "list"
      "cta"
      "note";
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .assurance-list-wrap {
    padding-top: 0;
  }

  .assurance-cta {
    justify-self: stretch;
    margin-top: 4px;
  }

  .assurance-note {
    margin-top: -14px !important;
  }

}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 40px;
    padding: 4px 16px;
  }

  .header-brand {
    font-size: 13px;
    gap: 10px;
    left: 16px;
  }

  .header-brand-mark {
    height: 19px;
    width: 19px;
  }

  .header-trust {
    display: none;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    height: 36px;
    width: 36px;
  }

  .brand strong {
    font-size: 17px;
    line-height: 1.1;
  }

  .brand small {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(14, 24, 20, 0.24) 0%, rgba(14, 24, 20, 0.44) 36%, rgba(14, 24, 20, 0.92) 100%),
      var(--hero-image);
    background-position: 66% center;
    display: flex;
    min-height: 600px;
    padding: 0 18px 42px;
    align-items: center;
  }

  .hero::after {
    height: 14%;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 46px);
    letter-spacing: 0;
    line-height: 1;
    margin: 0 auto 14px;
    max-width: 330px;
    text-align: center;
  }

  .hero p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto 20px;
    max-width: 320px;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 240px;
    width: 240px;
  }

  .hero-actions .btn {
    min-height: 54px;
    padding: 0 16px;
    width: 240px;
  }

  .hero-actions .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: none;
    color: #fff;
    min-height: 46px;
  }

  .trust-row {
    display: none;
  }

  .trust-section {
    display: block;
    margin-top: 0;
    padding: 24px 28px 34px;
  }

  .benefit-mobile-heading {
    color: #995136;
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.2;
    margin: 0 0 10px;
    text-align: center;
    text-transform: uppercase;
  }

  .benefit-grid {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .benefit {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
    min-width: 0;
    min-height: 70px;
    padding: 14px 0;
  }

  .benefit > div {
    align-self: stretch;
    border-bottom: 1px solid rgba(207, 197, 183, 0.72);
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .benefit:nth-child(2n) {
    border-right: 0;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit:last-child > div {
    border-bottom: 0;
  }

  .benefit .icon {
    flex: 0 0 36px;
    height: 36px;
    margin-bottom: 0;
    width: 36px;
  }

  .benefit .icon svg {
    height: 17px;
    width: 17px;
  }

  .benefit h3 {
    font-size: clamp(18px, 5vw, 21px);
    font-weight: 680;
    line-height: 1.18;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .benefit p {
    display: none;
  }

  .section {
    padding: 50px 18px;
  }

  .section h2 {
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.08;
  }

  [data-section="Intro"] h2,
  .strong-line {
    font-size: clamp(29px, 8.5vw, 36px) !important;
    line-height: 1.06 !important;
  }

  .intro-section {
    padding-bottom: 54px;
    padding-top: 40px;
  }

  .intro-layout {
    gap: 22px;
  }

  .intro-statement {
    padding-top: 0;
    text-align: left;
  }

  .intro-statement p {
    font-size: 16px;
    line-height: 1.54;
    margin-bottom: 10px;
  }

  .intro-statement-solution {
    border-radius: 20px;
    padding: 26px;
  }

  .intro-statement h2 {
    font-size: clamp(28px, 8vw, 33px) !important;
    line-height: 1.06 !important;
    margin-bottom: 18px;
  }

  .intro-statement-solution h2 {
    font-size: clamp(27px, 7.7vw, 32px) !important;
    margin-bottom: 18px;
  }

  .intro-solution-kicker {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }

  .intro-solution-kicker .solution-mark {
    flex: 0 0 28px;
    height: 28px;
    margin: 0;
    width: 28px;
  }

  .intro-solution-kicker .solution-mark svg {
    height: 13px;
    width: 13px;
  }

  .intro-solution-kicker .intro-eyebrow {
    margin: 0 !important;
  }

  .intro-statement:not(.intro-statement-solution) {
    padding-left: 28px;
    padding-right: 28px;
  }

  .intro-statement:not(.intro-statement-solution) .intro-eyebrow {
    display: none;
  }

  .intro-cta {
    width: 100%;
  }

  .lead,
  .text-stack p {
    font-size: 16px;
    line-height: 1.58;
  }

  .text-stack p {
    margin-bottom: 14px;
  }

  .split {
    gap: 22px;
  }

  .assurance-grid .benefit p {
    display: block;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .stat-panel {
    grid-template-columns: 1fr;
  }

  .process-intro {
    font-size: 16px;
  }

  .process-band h2,
  .process-intro {
    margin-left: 23px;
    max-width: calc(100% - 23px);
  }

  .process-cta {
    margin-top: 30px;
  }

  .process-cta .btn {
    width: 100%;
  }

  [data-section="WhyChooseUs"] {
    background: var(--paper);
    padding-bottom: 68px;
    padding-top: 72px;
  }

  [data-section="WhyChooseUs"] h2 {
    font-size: clamp(32px, 8.6vw, 38px);
    margin-left: 25px;
    max-width: calc(100% - 25px);
  }

  .why-grid {
    margin-top: 26px;
  }

  .why-card {
    min-height: 150px;
    padding: 24px;
  }

  [data-section="Assurances"] {
    padding-bottom: 56px;
    padding-top: 48px;
  }

  .assurance-feature {
    gap: 24px;
  }

  .assurance-feature h2 {
    font-size: clamp(36px, 9vw, 40px);
  }

  .assurance-feature p {
    font-size: 17px;
  }

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

  .assurance-feature .btn {
    width: 100%;
  }
}

/* Search-ready homepage additions */
.svg-sprite {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.hero {
  background: #20332d;
  overflow: hidden;
}

.hero::before {
  background:
    radial-gradient(ellipse at center, rgba(14, 24, 20, 0.52) 0%, rgba(14, 24, 20, 0.36) 38%, rgba(14, 24, 20, 0.18) 70%, rgba(14, 24, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(14, 24, 20, 0.08) 0%, rgba(14, 24, 20, 0.3) 48%, rgba(14, 24, 20, 0.68) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero::after {
  z-index: 1;
}

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

.trust-row svg,
.icon svg,
.solution-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-focus {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: 72px;
  padding-top: 72px;
}

.service-focus-heading {
  max-width: 760px;
}

.service-focus-heading h2 {
  color: var(--pine);
  font-size: clamp(36px, 4.8vw, 54px);
}

.service-focus-list {
  border-bottom: 1px solid var(--line-strong);
  margin-top: 42px;
}

.service-focus-item {
  align-items: center;
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 22px;
  grid-template-columns: 38px minmax(170px, 0.72fr) minmax(260px, 1fr) 28px;
  padding: 26px 4px;
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.service-focus-item:hover {
  color: var(--clay-dark);
  padding-left: 10px;
  padding-right: 10px;
}

.service-focus-item > span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.service-focus-item h3 {
  color: var(--pine);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  margin: 0;
}

.service-focus-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.service-focus-item strong {
  color: var(--clay);
  font-size: 22px;
  font-weight: 500;
  justify-self: end;
}

.service-material-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 22px 0 0;
}

.faq-answer a {
  color: var(--pine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(189, 97, 60, 0.48);
  text-underline-offset: 3px;
}

.guide-links {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.guide-links-layout {
  align-items: start;
  display: grid;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
}

.guide-links h2 {
  color: var(--pine);
  font-size: clamp(34px, 4.5vw, 50px);
  max-width: 520px;
}

.guide-link-list {
  border-bottom: 1px solid var(--line-strong);
}

.guide-link-list a {
  align-items: center;
  border-top: 1px solid var(--line-strong);
  display: flex;
  font-size: 17px;
  font-weight: 700;
  justify-content: space-between;
  min-height: 66px;
  padding: 14px 2px;
  transition: color 180ms ease;
}

.guide-link-list a:hover,
.guide-link-list strong {
  color: var(--clay);
}

@media (max-width: 940px) {
  .guide-links-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    background-image: none;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(14, 24, 20, 0.24) 0%, rgba(14, 24, 20, 0.44) 36%, rgba(14, 24, 20, 0.92) 100%);
  }

  .hero-media {
    object-position: 66% center;
  }

  .service-focus {
    padding: 52px 24px;
  }

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

  .service-focus-list {
    margin-top: 32px;
  }

  .service-focus-item {
    gap: 10px 14px;
    grid-template-columns: 28px 1fr 22px;
    padding: 21px 0;
  }

  .service-focus-item h3 {
    font-size: 21px;
  }

  .service-focus-item p {
    font-size: 14.5px;
    grid-column: 2 / 4;
    line-height: 1.55;
  }

  .service-focus-item strong {
    grid-column: 3;
    grid-row: 1;
  }

  .service-material-note {
    font-size: 13px;
  }

  .guide-links {
    padding: 56px 24px;
  }

  .guide-links-layout {
    gap: 30px;
  }

  .guide-links h2 {
    font-size: 34px;
  }

  .guide-link-list a {
    font-size: 15.5px;
    min-height: 60px;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

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

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

  .trust-section {
    padding: 22px 24px 32px;
  }

  .benefit-mobile-heading {
    font-size: 10.5px;
    margin-bottom: 8px;
  }

  .benefit-grid {
    gap: 0;
  }

  .benefit {
    gap: 14px;
    min-height: 66px;
    padding: 13px 0;
  }

  .benefit .icon {
    flex-basis: 34px;
    height: 34px;
    width: 34px;
  }

  .benefit .icon svg {
    height: 16px;
    width: 16px;
  }

  .benefit h3 {
    font-size: clamp(17px, 4.8vw, 19px);
  }
}

/* Final mobile refinements for legal pages */
@media (max-width: 560px) {
  .legal-body {
    overflow-x: hidden;
  }

  .legal-site-header {
    min-height: 48px;
    padding-bottom: 5px;
    padding-top: 5px;
  }

  .legal-site-header .header-brand {
    font-size: 13px;
    gap: 9px;
    left: 16px;
  }

  .legal-site-header .header-brand-mark {
    height: 20px;
    width: 20px;
  }

  .legal-site-header .header-brand-text,
  .legal-site-header .header-brand span:last-child {
    display: inline-flex;
  }

  .legal-home-link {
    font-size: 12px;
    right: 16px;
  }

  .legal-hero {
    padding: 48px 20px 42px;
  }

  .legal-kicker {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .legal-hero h1 {
    font-size: 34px;
    line-height: 1.08;
    max-width: 100%;
  }

  .legal-lead {
    font-size: 16px;
    line-height: 1.58;
    margin-top: 22px;
    max-width: 100%;
  }

  .legal-updated {
    font-size: 12px;
    margin-top: 24px;
  }

  .legal-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-footer {
    padding: 28px 20px;
  }

  .legal-footer .inner {
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .legal-footer p,
  .legal-footer a {
    font-size: 13px;
    line-height: 1.45;
  }

  .legal-footer .footer-links,
  .legal-footer .footer-contact {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    width: 100%;
  }

  .legal-footer .footer-links span {
    display: none;
  }
}

@media (max-width: 380px) {
  .legal-site-header .header-brand {
    font-size: 12px;
    gap: 7px;
  }

  .legal-site-header .header-brand-mark {
    height: 18px;
    width: 18px;
  }

  .legal-home-link {
    font-size: 11px;
  }

  .legal-hero h1 {
    font-size: 32px;
  }
}

/* Keep the main-page footer calm and readable on narrow screens. */
@media (max-width: 640px) {
  .site-header:not(.legal-site-header) .header-brand {
    font-size: 13px;
    gap: 9px;
    justify-content: flex-start;
    left: 16px;
    right: auto;
  }

  .site-header:not(.legal-site-header) .header-brand-mark {
    height: 20px;
    position: static;
    width: 20px;
  }

  .site-header:not(.legal-site-header) .header-brand-text {
    display: inline-flex;
  }

  .footer:not(.legal-footer) {
    padding: 30px 20px 32px;
  }

  .footer:not(.legal-footer) .inner {
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .footer:not(.legal-footer) p,
  .footer:not(.legal-footer) a {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer:not(.legal-footer) .footer-links {
    display: grid;
    gap: 7px 18px;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    width: 100%;
  }

  .footer:not(.legal-footer) .footer-links span {
    display: none;
  }

  .footer:not(.legal-footer) .footer-links a:last-of-type {
    grid-column: 1 / -1;
  }

  .footer:not(.legal-footer) .footer-contact {
    flex-direction: column;
    gap: 5px;
    width: 100%;
  }
}

/* Service and guide pages */
.content-body {
  background: var(--surface);
}

.content-header-link {
  color: var(--pine);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  right: clamp(18px, 4vw, 54px);
}

.content-header-link:hover {
  color: var(--clay-dark);
}

.content-hero {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.86), rgba(232, 241, 233, 0.84)),
    var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 92px clamp(24px, 5vw, 64px) 74px;
}

.content-shell {
  margin: 0 auto;
  max-width: 1120px;
}

.breadcrumbs {
  align-items: center;
  color: #66716b;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  margin-bottom: 40px;
}

.breadcrumbs a:hover {
  color: var(--clay-dark);
}

.content-kicker {
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.content-hero h1 {
  color: var(--pine);
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1.02;
  margin: 0;
  max-width: 900px;
}

.content-lead {
  color: #4b5851;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 780px;
}

.content-meta {
  color: #78817d;
  font-size: 12px;
  margin: 26px 0 0;
}

.content-layout {
  display: grid;
  gap: clamp(54px, 8vw, 104px);
  grid-template-columns: minmax(0, 1fr) 280px;
  padding: 82px clamp(24px, 5vw, 64px) 104px;
}

.content-article {
  min-width: 0;
}

.content-article > p:first-child {
  color: #33423b;
  font-size: 21px;
  line-height: 1.7;
}

.content-article h2 {
  color: var(--pine);
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.1;
  margin: 64px 0 20px;
  max-width: 720px;
}

.content-article h3 {
  color: var(--pine);
  font-size: 22px;
  line-height: 1.25;
  margin: 34px 0 12px;
}

.content-article p,
.content-article li {
  color: #4b5851;
  font-size: 17px;
  line-height: 1.75;
}

.content-article p {
  margin: 0 0 20px;
}

.content-article ul,
.content-article ol {
  margin: 18px 0 28px;
  padding-left: 22px;
}

.content-article li + li {
  margin-top: 10px;
}

.content-article a:not(.btn) {
  color: var(--pine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(189, 97, 60, 0.46);
  text-underline-offset: 4px;
}

.content-callout {
  background: #edf4ee;
  border-left: 3px solid var(--clay);
  margin: 38px 0;
  padding: 26px 28px;
}

.content-callout strong {
  color: var(--pine);
  display: block;
  font-size: 17px;
  margin-bottom: 7px;
}

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

.content-facts {
  border-bottom: 1px solid var(--line-strong);
  margin: 32px 0 42px;
}

.content-facts div {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(150px, 0.42fr) 1fr;
  padding: 20px 0;
}

.content-facts dt {
  color: var(--pine);
  font-weight: 800;
}

.content-facts dd {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.content-aside {
  align-self: start;
  position: sticky;
  top: 78px;
}

.content-aside-box {
  background: var(--pine);
  border-radius: 18px;
  color: #fff;
  padding: 28px;
}

.content-aside-box h2 {
  font-size: 25px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.content-aside-box p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.content-aside-box .btn {
  box-shadow: none;
  min-height: 48px;
  width: 100%;
}

.content-aside-links {
  border-bottom: 1px solid var(--line);
  margin-top: 28px;
}

.content-aside-links p {
  color: #78817d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.content-aside-links a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  min-height: 50px;
}

.content-aside-links a:hover {
  color: var(--clay-dark);
}

.content-cta-band {
  background: var(--pine);
  color: #fff;
  padding: 74px clamp(24px, 5vw, 64px);
}

.content-cta-inner {
  align-items: center;
  display: flex;
  gap: 46px;
  justify-content: space-between;
}

.content-cta-band h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.06;
  margin: 0 0 12px;
  max-width: 700px;
}

.content-cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  margin: 0;
}

.source-list {
  border-top: 1px solid var(--line);
  margin-top: 52px;
  padding-top: 28px;
}

.source-list h2 {
  font-size: 24px;
  margin-top: 0;
}

.source-list li,
.source-list p {
  font-size: 14px;
}

@media (max-width: 860px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

  .content-aside-box {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .content-header-link {
    font-size: 12px;
    right: 16px;
  }

  .content-hero {
    padding: 58px 22px 50px;
  }

  .breadcrumbs {
    font-size: 11px;
    margin-bottom: 30px;
  }

  .content-hero h1 {
    font-size: 40px;
    overflow-wrap: break-word;
  }

  .content-lead {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 22px;
  }

  .content-layout {
    gap: 54px;
    padding: 54px 22px 70px;
  }

  .content-article > p:first-child {
    font-size: 18px;
  }

  .content-article h2 {
    font-size: 30px;
    margin-top: 50px;
  }

  .content-article h3 {
    font-size: 20px;
  }

  .content-article p,
  .content-article li {
    font-size: 16px;
    line-height: 1.68;
  }

  .content-callout {
    margin: 30px 0;
    padding: 22px;
  }

  .content-facts div {
    gap: 7px;
    grid-template-columns: 1fr;
  }

  .content-aside-box {
    border-radius: 14px;
    padding: 24px;
  }

  .content-cta-band {
    padding: 58px 22px;
  }

  .content-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .content-cta-band h2 {
    font-size: 34px;
  }

  .content-cta-band .btn {
    width: 100%;
  }
}

/* Cohesive premium pass for the main landing page. */
.section {
  padding: clamp(64px, 6.5vw, 92px) clamp(18px, 4vw, 54px);
}

.eyebrow {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: #f0c79b;
}

.section h2 {
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.06;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(189, 97, 60, 0.42);
  outline-offset: 3px;
}

.intro-section {
  padding-bottom: 88px;
  padding-top: 88px;
}

.intro-statement-solution {
  background: #eaf2ea;
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-soft);
}

.intro-statement p {
  line-height: 1.62;
  max-width: 500px;
}

.service-focus {
  padding-bottom: 72px;
  padding-top: 72px;
}

.process-band {
  background: var(--pine);
  padding-bottom: 88px;
  padding-top: 88px;
}

.process-band h2 {
  margin-bottom: 0;
}

.process-step {
  border-radius: var(--radius-card);
}

.process-step:first-child,
.process-step:last-child {
  border-radius: var(--radius-card);
}

[data-section="WhyChooseUs"] {
  padding-bottom: 88px;
  padding-top: 88px;
}

[data-section="WhyChooseUs"] h2 {
  font-size: clamp(40px, 4.4vw, 52px);
}

.why-card {
  border-radius: var(--radius-card);
  min-height: 180px;
  padding: 28px;
}

.why-card h3 {
  align-items: center;
  display: flex;
  font-size: 18px;
  gap: 10px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.why-card h3 svg,
.assurance-points svg,
.form-privacy-note svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 svg {
  color: var(--clay);
  flex: 0 0 19px;
  height: 19px;
  stroke-width: 2.2;
  width: 19px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
}

[data-section="Assurances"] {
  padding-bottom: 72px;
  padding-top: 72px;
}

.assurance-feature {
  column-gap: clamp(56px, 6vw, 76px);
  grid-template-areas:
    "copy list"
    "actions list";
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  row-gap: 30px;
}

.assurance-copy .eyebrow {
  font-size: 11px !important;
  line-height: 1.2 !important;
  margin: 0 0 14px !important;
}

.assurance-list-wrap {
  align-self: start;
  padding-top: 78px;
}

.assurance-feature h2 {
  font-size: clamp(38px, 4vw, 50px);
  margin-bottom: 16px;
}

.assurance-feature p {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
}

.assurance-actions {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-area: actions;
  justify-items: start;
}

.assurance-cta {
  grid-area: auto;
  justify-self: auto;
  margin-top: 0;
}

.assurance-note {
  grid-area: auto;
  margin-top: 0 !important;
}

.assurance-points {
  gap: 22px;
}

.assurance-points li {
  align-items: center;
  display: flex;
  font-size: 16px;
  gap: 11px;
  line-height: 1.35;
}

.assurance-points li::before {
  content: none;
}

.assurance-points svg {
  color: var(--clay);
  flex: 0 0 18px;
  height: 18px;
  stroke-width: 2.3;
  width: 18px;
}

#contact {
  padding-bottom: 88px;
  padding-top: 88px;
}

.contact-card {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.form-group-heading {
  border-bottom: 1px solid var(--line);
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  margin: 8px 0 2px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.form-group-heading:first-child {
  margin-top: 0;
}

.form-privacy-note {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  gap: 9px;
  line-height: 1.5;
  margin: 0;
}

.form-privacy-note svg {
  color: var(--pine);
  flex: 0 0 17px;
  height: 17px;
  stroke-width: 1.9;
  width: 17px;
}

.form-grid > .btn {
  min-height: 56px;
}

#faq {
  padding-bottom: 80px;
  padding-top: 80px;
}

#faq .inner {
  max-width: 920px;
}

.faq-question {
  padding: 24px 0;
}

.faq-question span:first-child {
  font-size: 18px;
  line-height: 1.4;
}

.guide-links {
  padding-bottom: 72px;
  padding-top: 72px;
}

.footer:not(.legal-footer) {
  padding-bottom: 34px;
  padding-top: 34px;
}

.footer:not(.legal-footer) .footer-layout {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(160px, 1fr) auto minmax(240px, 1fr);
  text-align: left;
}

.footer:not(.legal-footer) .footer-links {
  gap: 20px;
  justify-content: center;
}

.footer:not(.legal-footer) .footer-contact {
  justify-content: flex-end;
  justify-self: end;
}

.footer:not(.legal-footer) a {
  transition: color 160ms ease;
}

.footer:not(.legal-footer) a:hover {
  color: #fff;
}

@media (max-width: 940px) {
  .footer:not(.legal-footer) .footer-layout {
    gap: 18px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer:not(.legal-footer) .footer-links,
  .footer:not(.legal-footer) .footer-contact {
    justify-content: flex-start;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .assurance-feature {
    gap: 26px;
    grid-template-areas:
      "copy"
      "list"
      "actions";
    grid-template-columns: 1fr;
  }

  .assurance-list-wrap {
    padding-top: 0;
  }

  .assurance-actions {
    gap: 12px;
    justify-items: stretch;
  }

  .assurance-cta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 20px;
  }

  .section h2 {
    font-size: clamp(32px, 8.8vw, 36px);
    line-height: 1.08;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .intro-section {
    padding-bottom: 56px;
    padding-top: 44px;
  }

  .intro-layout {
    gap: 20px;
  }

  .intro-statement p {
    line-height: 1.58;
  }

  .intro-statement-solution {
    border-radius: 20px;
    padding: 24px;
  }

  .service-focus {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .process-band {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .process-band .eyebrow,
  .process-band h2,
  .process-intro {
    margin-left: 23px;
    max-width: calc(100% - 23px);
  }

  .process-list {
    gap: 0;
    margin-top: 32px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    background: transparent;
    border: 0;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    min-height: 0;
    padding: 25px 0 25px 54px;
    transform: none;
  }

  .process-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-step:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
    transform: none;
  }

  .process-step::before {
    left: 0;
    margin: 0;
    position: absolute;
    top: 24px;
  }

  .process-step:not(:last-child)::after {
    background: rgba(240, 199, 155, 0.32);
    bottom: -10px;
    display: block;
    height: auto;
    left: 15px;
    top: 56px;
    width: 1px;
  }

  .process-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .process-step p {
    font-size: 15px;
    line-height: 1.55;
  }

  .process-cta {
    margin-top: 26px;
  }

  [data-section="WhyChooseUs"] {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  [data-section="WhyChooseUs"] .eyebrow,
  [data-section="WhyChooseUs"] h2 {
    margin-left: 30px;
    max-width: calc(100% - 30px);
  }

  [data-section="WhyChooseUs"] h2 {
    font-size: clamp(32px, 8.6vw, 37px);
  }

  .why-grid {
    border-bottom: 1px solid var(--line);
    gap: 0;
    margin-top: 28px;
  }

  .why-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
    padding: 22px 0;
  }

  .why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 15px;
    line-height: 1.55;
    padding-left: 29px;
  }

  [data-section="Assurances"] {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .assurance-feature h2 {
    font-size: clamp(34px, 9vw, 39px);
  }

  .assurance-feature p {
    font-size: 16px;
  }

  .assurance-points {
    gap: 18px;
  }

  .assurance-points li {
    font-size: 16px;
  }

  #contact {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .contact-card {
    border-radius: 14px;
  }

  #faq {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .faq-question {
    padding: 21px 0;
  }

  .faq-question span:first-child {
    font-size: 17px;
  }

  .guide-links {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .footer:not(.legal-footer) {
    padding: 32px 24px 34px;
  }

  .footer:not(.legal-footer) .footer-layout {
    align-items: start;
    gap: 16px;
    justify-items: start;
    text-align: left;
  }

  .footer:not(.legal-footer) .footer-links {
    display: flex;
    gap: 8px 18px;
    justify-content: flex-start;
    width: auto;
  }

  .footer:not(.legal-footer) .footer-contact {
    align-items: flex-start;
    gap: 4px;
    width: auto;
  }
}

/* Final hero polish: calmer type, a more useful crop and a cleaner handoff. */
@media (min-width: 641px) {
  .hero {
    border-bottom: 1px solid rgba(207, 197, 183, 0.72);
  }

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

  .hero h1 {
    font-size: clamp(44px, 4.6vw, 64px);
    line-height: 1.02;
    margin-bottom: 22px;
    max-width: 930px;
  }

  .hero p {
    font-size: clamp(19px, 1.65vw, 23px);
    line-height: 1.42;
    margin-bottom: 30px;
    max-width: 820px;
  }

  .hero-media {
    object-position: center 55%;
  }

  .hero::after {
    background: linear-gradient(180deg, transparent, rgba(18, 28, 24, 0.16));
    height: 12%;
  }

  .intro-section {
    padding-top: 64px;
  }
}

/* Global navigation and the restored mobile process cards. */
.site-header[data-section="Navbar"] {
  display: block;
  min-height: 0;
  padding: 0;
}

.header-utility {
  background: var(--pine);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 clamp(20px, 4vw, 56px);
}

.header-utility-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 32px;
  width: 100%;
}

.header-utility-contact,
.header-utility-nav {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 9px;
  line-height: 1;
}

.header-utility a {
  transition: color 160ms ease, opacity 160ms ease;
}

.header-utility a:hover {
  color: #fff;
}

.header-main {
  padding: 0 clamp(20px, 4vw, 56px);
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 64px;
  width: 100%;
}

/* Services overview. */
.services-overview-page {
  background: var(--paper);
}

.services-overview-page .site-header {
  position: relative;
  z-index: 20;
}

.services-overview-hero {
  background: var(--pine);
  color: #fff;
  overflow: hidden;
  padding: 92px 0 88px;
  position: relative;
}

.services-overview-hero::before {
  background: linear-gradient(90deg, rgba(10, 30, 24, 0.92), rgba(10, 30, 24, 0.52));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.services-overview-hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 48%;
  position: absolute;
  width: 100%;
}

.services-overview-hero .inner {
  position: relative;
  z-index: 2;
}

.services-overview-hero .eyebrow {
  color: #f0b58f;
}

.services-overview-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 12px 0 22px;
  max-width: 760px;
}

.services-overview-hero p:last-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  max-width: 660px;
}

.services-overview-listing {
  padding-block: 88px 100px;
}

.services-overview-listing .service-focus-heading {
  max-width: 680px;
}

.services-overview-listing .service-focus-list {
  margin-top: 0;
}

.services-overview-listing .service-focus-item {
  background: var(--surface);
}

.services-overview-footer {
  margin-top: 0;
}

@media (max-width: 640px) {
  .services-overview-hero {
    padding: 58px 0 56px;
  }

  .services-overview-hero .inner,
  .services-overview-listing .inner {
    box-sizing: border-box;
    padding-inline: 24px;
    width: 100%;
  }

  .services-overview-hero h1 {
    font-size: 36px;
    line-height: 1.08;
    margin: 10px 0 18px;
  }

  .services-overview-hero p:last-child {
    font-size: 16px;
    line-height: 1.55;
  }

  .services-overview-listing {
    padding-block: 48px 60px;
  }

  .services-overview-listing .service-focus-heading h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .services-overview-listing .service-focus-heading .lead {
    line-height: 1.55;
    max-width: 31ch;
  }

  .services-overview-listing .service-focus-list {
    margin-top: 0;
  }

  .services-overview-listing .service-focus-item,
  .services-overview-listing .service-focus-item:hover {
    padding: 18px;
  }
}

.site-header[data-section="Navbar"] .header-brand {
  font-size: 17px;
  gap: 12px;
  justify-self: start;
  left: auto;
  position: static;
}

.site-header[data-section="Navbar"] .header-brand-mark {
  height: 26px;
  width: 26px;
}

.header-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2vw, 30px);
  justify-content: center;
}

.header-nav a,
.header-phone {
  color: rgba(15, 29, 24, 0.72);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.header-nav a,
.header-phone,
.header-quote {
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-nav a:hover,
.header-phone:hover {
  color: var(--pine);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-self: end;
}

.header-quote {
  align-items: center;
  background: var(--clay);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  white-space: nowrap;
}

.header-quote:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
}

.site-header[data-section="Navbar"] .header-trust {
  display: none;
}

.mobile-menu-toggle,
.mobile-site-menu {
  display: none;
}

.mobile-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--pine);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.mobile-menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 20px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 840px) {
  .site-header[data-section="Navbar"] {
    min-height: 58px;
  }

  .header-utility {
    display: block;
    padding-inline: clamp(14px, 4vw, 24px);
  }

  .header-utility-inner {
    justify-content: center;
    min-height: 30px;
  }

  .header-utility-contact {
    display: none;
  }

  .header-utility-nav {
    font-size: 10px;
    gap: 7px;
    white-space: nowrap;
  }

  .header-main {
    padding: 0 clamp(20px, 5vw, 42px);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    min-height: 58px;
  }

  .header-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-site-menu {
    background: rgba(250, 247, 241, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(15, 29, 24, 0.12);
    gap: 0;
    grid-template-columns: 1fr;
    left: 0;
    padding: 10px clamp(20px, 5vw, 42px) 20px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .mobile-site-menu:not([hidden]) {
    display: grid;
  }

  .mobile-site-menu a {
    align-items: center;
    border-bottom: 1px solid rgba(207, 197, 183, 0.68);
    color: var(--ink);
    display: flex;
    font-size: 15px;
    font-weight: 650;
    min-height: 50px;
  }

  .mobile-site-menu a:last-child {
    border-bottom: 0;
  }

  .mobile-site-menu .mobile-menu-phone {
    color: var(--pine);
  }

  .mobile-site-menu .mobile-menu-email {
    border-bottom: 0;
    color: rgba(15, 29, 24, 0.68);
    font-size: 13px;
    min-height: 44px;
  }

  .mobile-site-menu .mobile-menu-quote {
    background: var(--clay);
    border: 0;
    border-radius: 999px;
    color: #fff;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .site-header[data-section="Navbar"] {
    min-height: 52px;
    padding: 0;
  }

  .header-main {
    padding: 0 16px;
  }

  .header-utility {
    padding-inline: 16px;
  }

  .header-inner {
    min-height: 52px;
  }

  .site-header[data-section="Navbar"] .header-brand {
    font-size: 15px;
    gap: 10px;
  }

  .site-header[data-section="Navbar"] .header-brand-mark {
    height: 22px;
    width: 22px;
  }

  .process-band .eyebrow,
  .process-band h2,
  .process-intro {
    margin-left: 0;
    max-width: 100%;
  }

  .process-list {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: none;
    min-height: 164px;
    padding: 22px;
    transform: none;
  }

  .process-step:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    transform: none;
  }

  .process-step::before {
    font-size: 14px;
    height: 34px;
    left: auto;
    margin: 0 0 18px;
    position: relative;
    top: auto;
    width: 34px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step h3 {
    font-size: 19px;
    margin-bottom: 9px;
  }

  .process-step p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .process-cta {
    margin-top: 30px;
  }
}

/* Clean primary header. */
.site-header.header-clean {
  justify-content: space-between;
  min-height: 54px;
  padding: 5px clamp(18px, 4vw, 54px);
}

.site-header.header-clean .header-brand {
  font-size: 16px;
  gap: 12px;
  left: auto;
  position: static;
}

.site-header.header-clean .header-brand-mark {
  height: 24px;
  width: 24px;
}

.site-header.header-clean .header-quote {
  background: rgba(238, 235, 228, 0.78);
  border: 1px solid rgba(23, 63, 53, 0.14);
  box-shadow: none;
  color: rgba(15, 29, 24, 0.76);
  font-size: 12.5px;
  font-weight: 650;
  min-height: 34px;
  padding: 0 15px;
}

.site-header.header-clean .header-quote:hover {
  background: rgba(230, 226, 217, 0.94);
  border-color: rgba(23, 63, 53, 0.24);
  color: var(--ink);
}

/* Consent mode controls. */
.cookie-consent {
  align-items: center;
  background: rgba(250, 247, 241, 0.98);
  border: 1px solid rgba(207, 197, 183, 0.9);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 18px 46px rgba(15, 29, 24, 0.18);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 50%;
  max-width: 1040px;
  padding: 20px 22px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  z-index: 80;
}

.cookie-consent-copy strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.cookie-consent-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.cookie-consent-copy a {
  color: var(--pine);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.cookie-button {
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 750;
  min-height: 38px;
  padding: 0 16px;
  white-space: nowrap;
}

.cookie-button-primary {
  background: var(--pine);
  color: #fff;
}

.cookie-button-primary:hover {
  background: #0f3129;
}

.cookie-button-secondary {
  background: transparent;
  border-color: rgba(23, 63, 53, 0.3);
  color: var(--pine);
}

.cookie-settings-link {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.cookie-settings-link:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .site-header.header-clean {
    min-height: 50px;
    padding: 4px 16px;
  }

  .site-header.header-clean .header-brand {
    font-size: 14px;
    gap: 9px;
  }

  .site-header.header-clean .header-brand-mark {
    height: 21px;
    width: 21px;
  }

  .site-header.header-clean .header-quote {
    font-size: 11.5px;
    min-height: 31px;
    padding: 0 12px;
  }

  .cookie-consent {
    bottom: 10px;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 17px;
    width: calc(100% - 20px);
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-button {
    padding: 0 10px;
  }
}

/* Final search landing overrides. Keep this block last. */
body {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  min-height: clamp(560px, 70vh, 660px);
  padding-bottom: 66px;
  padding-top: 76px;
}

.hero::before {
  background:
    radial-gradient(ellipse at 50% 44%, rgba(14, 24, 20, 0.56) 0%, rgba(14, 24, 20, 0.34) 45%, rgba(14, 24, 20, 0.16) 76%),
    linear-gradient(180deg, rgba(14, 24, 20, 0.08), rgba(14, 24, 20, 0.58));
}

.hero-content { max-width: 900px; }
.hero h1 {
  font-size: clamp(48px, 5.1vw, 68px);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 820px;
}
.hero p {
  color: #fff;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 690px;
  text-shadow: 0 2px 12px rgba(7, 16, 13, 0.5);
}
.hero-actions { margin-bottom: 36px; }
.hero-actions .btn { min-height: 58px; padding-inline: 30px; }
.hero-trust-row {
  display: grid;
  gap: 8px 10px;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  max-width: none;
}
.hero-trust-row .hero-trust-warranty {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 9px;
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 38px;
  padding: 0;
}
.hero-trust-row .hero-trust-warranty svg {
  color: #fff;
  height: 20px;
  stroke-width: 2;
  width: 20px;
}
.hero-trust-warranty-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.hero-trust-warranty-copy strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.hero-trust-warranty-copy > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 600;
  margin-top: 3px;
}
.hero-trust-row li {
  background: rgba(19, 36, 30, 0.28);
  border-color: rgba(255, 255, 255, 0.32);
  font-size: 12.5px;
  min-height: 34px;
  padding: 6px 13px;
}
.hero-trust-row .trust-placeholder {
  border-style: dashed;
  color: rgba(255, 255, 255, 0.78);
}

.service-focus {
  background: var(--paper);
  border-top: 0;
  padding-block: 80px;
}
.service-focus-heading { max-width: 720px; }
.service-focus-heading h2 { font-size: clamp(38px, 4vw, 52px); margin-bottom: 16px; }
.service-focus-heading .lead { font-size: 18px; line-height: 1.6; max-width: 650px; }
.service-focus-list {
  border: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}
.service-focus-item,
.service-focus-item:hover {
  align-content: start;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 13px 18px;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  min-height: 190px;
  padding: 26px;
}
.service-focus-item:hover {
  border-color: rgba(189, 97, 60, 0.52);
  box-shadow: var(--shadow-soft);
  color: inherit;
  transform: translateY(-3px);
}
.service-focus-item > span { grid-column: 1; padding-top: 5px; }
.service-focus-item h3 { font-size: 24px; grid-column: 2; }
.service-focus-item p {
  font-size: 15px;
  grid-column: 2 / 4;
  line-height: 1.62;
  max-width: 440px;
}
.service-focus-item strong { grid-column: 3; grid-row: 1; }
.service-focus-item-all,
.service-focus-item-all:hover {
  align-content: center;
}
.service-focus-item-all > span,
.service-focus-item-all h3,
.service-focus-item-all strong {
  align-self: center;
}
.service-material-note {
  background: rgba(234, 242, 234, 0.72);
  border-left: 3px solid var(--pine);
  color: #43534b;
  font-size: 14px;
  margin-top: 22px;
  max-width: 760px;
  padding: 12px 15px;
}

/* Guides overview */
.guides-index-page { background: var(--surface); }
.guides-index-hero {
  background: rgba(234, 242, 234, 0.72);
  border-bottom: 1px solid var(--line);
  padding: 112px 0 104px;
}
.guides-index-hero .inner,
.guides-index-listing .inner { max-width: 1120px; }
.guides-index-hero h1 {
  color: var(--pine);
  font-size: 64px;
  line-height: 1.05;
  margin: 16px 0 0;
  max-width: 820px;
}
.guides-index-hero .lead {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 680px;
}
.guides-index-listing {
  background: var(--surface);
  padding: 96px 0 104px;
}
.guides-index-grid {
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guide-index-card {
  align-items: start;
  border-bottom: 1px solid var(--line-strong);
  color: inherit;
  display: grid;
  gap: 18px;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  padding: 34px 0;
  text-decoration: none;
}
.guide-index-card:nth-child(odd) {
  border-right: 1px solid var(--line-strong);
  padding-right: 36px;
}
.guide-index-card:nth-child(even) { padding-left: 36px; }
.guide-index-number {
  color: var(--clay);
  font-size: 14px;
  font-weight: 700;
  padding-top: 4px;
}
.guide-index-copy { display: grid; gap: 12px; }
.guide-index-copy strong {
  color: var(--pine);
  font-size: 24px;
  line-height: 1.25;
}
.guide-index-copy span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.guide-index-arrow {
  color: var(--clay);
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease;
}
.guide-index-card:hover .guide-index-copy strong,
.guide-index-card:focus-visible .guide-index-copy strong { color: var(--clay); }
.guide-index-card:hover .guide-index-arrow,
.guide-index-card:focus-visible .guide-index-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .guides-index-hero { padding: 88px 0 80px; }
  .guides-index-hero h1 { font-size: 52px; }
  .guides-index-listing { padding: 72px 0 80px; }
  .guides-index-grid { grid-template-columns: 1fr; }
  .guide-index-card:nth-child(odd),
  .guide-index-card:nth-child(even) {
    border-right: 0;
    padding: 30px 0;
  }
}

@media (max-width: 640px) {
  .guides-index-hero { padding: 50px 0 48px; }
  .guides-index-hero .inner,
  .guides-index-listing .inner {
    box-sizing: border-box;
    padding-inline: 24px;
    width: 100%;
  }
  .guides-index-hero h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-top: 10px;
    max-width: 12ch;
  }
  .guides-index-hero .lead {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 18px;
    max-width: 31ch;
  }
  .guides-index-listing { padding: 28px 0 56px; }
  .guides-index-grid {
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    overflow: hidden;
  }
  .guide-index-card:nth-child(odd),
  .guide-index-card:nth-child(even) {
    border-bottom: 1px solid var(--line-strong);
    gap: 12px;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    padding: 22px 18px;
  }
  .guide-index-card:last-child { border-bottom: 0; }
  .guide-index-number { font-size: 12px; padding-top: 3px; }
  .guide-index-copy { gap: 8px; }
  .guide-index-copy strong { font-size: 19px; line-height: 1.28; }
  .guide-index-copy span { font-size: 14px; line-height: 1.55; }
  .guide-index-arrow { font-size: 20px; }
}

.process-band { padding-block: 82px; }
.process-band .inner { max-width: 1180px; }
.process-band h2 { font-size: clamp(40px, 4vw, 52px); }
.process-intro { font-size: 18px; line-height: 1.6; max-width: 620px; }
.process-list { gap: 16px; margin-top: 38px; }
.process-step,
.process-step:first-child,
.process-step:last-child {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-height: 220px;
  padding: 28px;
  transform: none;
}
.process-step::before { height: 38px; margin-bottom: 24px; width: 38px; }
.process-step h3 { font-size: 21px; line-height: 1.3; margin-bottom: 11px; }
.process-step p { font-size: 15.5px; line-height: 1.6; }
.process-cta { justify-content: flex-start; margin-top: 30px; }

#contact { background: var(--paper); padding-block: 84px; }
.contact-conversion-layout { max-width: 880px; }
.contact-heading { margin: 0 auto 30px; max-width: 720px; text-align: center; }
.contact-heading h2 { color: var(--pine); font-size: clamp(38px, 4.2vw, 52px); }
.contact-heading .lead { font-size: 18px; margin-inline: auto; }
.contact-card {
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 42, 35, 0.09);
  margin: 0 auto;
  max-width: 780px;
  padding: 32px;
}
.form-progress {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 28px;
}
.form-progress-item {
  align-items: center;
  color: #7a847f;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  white-space: nowrap;
}
.form-progress-item.is-active,
.form-progress-item.is-complete { color: var(--pine); }
.form-progress-line { background: var(--line); height: 1px; }
.form-progress-item.is-complete + .form-progress-line { background: rgba(23, 60, 50, 0.55); }
.form-step[hidden] { display: none; }
.form-step { display: grid; gap: 20px; }
.form-step .form-group-heading { margin-bottom: 0; }
.form-step-heading h3 { color: var(--pine); font-size: 25px; margin: 18px 0 0; }
.form-contact-fields {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-field-full { grid-column: 1 / -1; }
.form-next { justify-self: end; margin-top: 4px; min-width: 180px; }
.form-step-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}
.form-step-actions .btn { min-width: 230px; }
.form-back {
  background: transparent;
  border: 0;
  color: var(--pine);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  padding: 10px 0;
}
.contact-guarantee-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 16px auto 0;
  max-width: 780px;
}
#faq { background: var(--surface); border-top: 1px solid var(--line); }

@media (max-width: 640px) {
  .hero { min-height: 590px; padding: 62px 20px 42px; }
  .hero-media { object-position: center 46%; }
  .hero h1 { font-size: clamp(39px, 11.5vw, 48px); line-height: 1.02; margin-bottom: 18px; }
  .hero p { font-size: 17px; line-height: 1.5; margin-bottom: 24px; max-width: 500px; }
  .hero-actions { margin-bottom: 30px; }
  .hero-actions .btn { min-height: 54px; width: min(100%, 330px); }
  .hero-trust-row {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    max-width: 330px;
  }
  .hero-trust-row li { justify-content: center; }
  .hero-trust-row .hero-trust-warranty {
    min-height: 36px;
    padding: 0;
  }
  .hero-trust-row .hero-trust-warranty svg {
    height: 18px;
    width: 18px;
  }
  .hero-trust-warranty-copy strong { font-size: 16px; }
  .hero-trust-warranty-copy > span { font-size: 10.5px; }
  .service-focus { padding-block: 52px; }
  .service-focus-heading h2 { font-size: 34px; }
  .service-focus-heading .lead { font-size: 16px; }
  .service-focus-list { gap: 12px; grid-template-columns: 1fr; margin-top: 28px; }
  .service-focus-item,
  .service-focus-item:hover {
    border-radius: 8px;
    gap: 9px 14px;
    min-height: 0;
    padding: 20px;
    transform: none;
  }
  .service-focus-item h3 { font-size: 21px; }
  .service-focus-item p { font-size: 14.5px; line-height: 1.55; }
  .service-material-note { margin-top: 16px; }
  .process-band { padding-block: 56px; }
  .process-band .eyebrow,
  .process-band h2,
  .process-intro { margin-left: 0; max-width: 100%; }
  .process-band h2 { font-size: 35px; }
  .process-intro { font-size: 16px; }
  .process-list { gap: 12px; margin-top: 28px; }
  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-height: 0;
    padding: 20px;
  }
  .process-step::before {
    height: 34px;
    left: auto;
    margin: 0 0 16px;
    position: relative;
    top: auto;
    width: 34px;
  }
  .process-step:not(:last-child)::after { display: none; }
  .process-step h3 { font-size: 19px; }
  .process-step p { font-size: 14.5px; }
  .process-cta { margin-top: 22px; }
  .process-cta .btn { width: 100%; }
  #contact { padding-block: 56px; }
  .contact-heading { margin-bottom: 24px; text-align: left; }
  .contact-heading h2 { font-size: 34px; }
  .contact-heading .lead { font-size: 16px; }
  .contact-card { border-radius: 8px; padding: 20px; }
  .form-progress-item span { display: none; }
  .form-contact-fields { grid-template-columns: 1fr; }
  .form-next,
  .form-step-actions .btn { min-width: 0; width: 100%; }
  .form-step-actions { align-items: stretch; flex-direction: column-reverse; gap: 8px; }
  .form-back { align-self: center; }
}

/* Official certification artwork placeholder supplied for the hero. */
.hero-certifications {
  background: transparent;
  border: 0;
  display: block;
  margin: 12px auto 0;
  padding: 0;
  width: 190px;
}

.hero-certifications img {
  border-radius: 4px;
  display: block;
  height: 110px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

@media (max-width: 640px) {
  .hero-certifications {
    margin-top: 10px;
    width: 164px;
  }

  .hero-certifications img {
    height: 95px;
  }
}

/* Official brand assets, kept at their original proportions. */
.hero-certification-block {
  margin: 17px auto 0;
  padding-top: 13px;
  position: relative;
  text-align: center;
}

.hero-certification-block::before {
  background: rgba(255, 255, 255, 0.28);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 88px;
}

.hero p.hero-certification-label {
  color: rgba(255, 255, 255, 0.96);
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0 0 8px;
  text-shadow: 0 1px 8px rgba(7, 16, 13, 0.42);
}

.hero-official-logos {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
}

.official-logo-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 6px;
  justify-content: center;
  padding: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.official-logo-card span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.official-logo-card:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.official-logo-card img {
  display: block;
  height: auto;
  object-fit: contain;
  width: auto;
}

.official-logo-card-heta {
  width: 40px;
}

.official-logo-card-heta img {
  max-height: 39px;
  max-width: 40px;
}

.official-logo-card-id06 {
  width: 40px;
}

.official-logo-card-id06 img {
  max-height: 39px;
  max-width: 40px;
}

@media (max-width: 640px) {
  .hero-certification-block {
    margin-top: 15px;
    padding-top: 12px;
  }

  .hero-certification-block::before { width: 76px; }

  .hero p.hero-certification-label {
    font-size: 11px;
    margin-bottom: 7px;
  }

  .hero-official-logos {
    gap: 21px;
    margin-top: 0;
  }

  .official-logo-card-heta {
    width: 37px;
  }

  .official-logo-card-heta img {
    max-height: 36px;
    max-width: 37px;
  }

  .official-logo-card-id06 {
    width: 37px;
  }

  .official-logo-card-id06 img {
    max-height: 36px;
    max-width: 37px;
  }

  .official-logo-card span { font-size: 9px; }
}

/* Editorial roofing-company introduction below the hero. */
.hero-transition {
  bottom: -1px;
  display: block;
  height: clamp(48px, 5vw, 76px);
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.hero-transition path {
  fill: #faf7f1;
}

.roofing-intro {
  background: #faf7f1;
  padding-block: clamp(64px, 7vw, 92px);
}

.roofing-intro-inner {
  max-width: 1120px;
}

.roofing-intro-figure {
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.roofing-intro-figure img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.roofing-intro-copy {
  margin: 48px auto 0;
  max-width: 760px;
}

.roofing-intro-copy h2 {
  font-size: clamp(38px, 4.5vw, 54px);
  margin-bottom: 24px;
  max-width: 620px;
}

.roofing-intro-copy > p:not(.eyebrow) {
  color: #4c5851;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.roofing-intro-copy .btn {
  margin-top: 14px;
}

@media (max-width: 640px) {
  .hero-transition {
    height: 40px;
  }

  .roofing-intro {
    padding-block: 48px 56px;
  }

  .roofing-intro-figure {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
  }

  .roofing-intro-copy {
    margin-top: 32px;
  }

  .roofing-intro-copy h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .roofing-intro-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.68;
    margin-bottom: 16px;
  }

  .roofing-intro-copy .btn {
    margin-top: 10px;
    width: 100%;
  }
}

/* Dedicated quote flow and the compact contact form on the home page. */
.contact-card-simple {
  max-width: 760px;
}

.contact-card-simple > .btn {
  margin-top: 24px;
  width: 100%;
}

.contact-quote-link {
  color: #59645e;
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0 0;
}

.contact-quote-link a {
  color: var(--pine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(200, 103, 60, 0.55);
  text-underline-offset: 4px;
}

.quote-body {
  background: #f4f0e9;
}

.quote-header {
  background: rgba(250, 247, 241, 0.98);
  border-bottom: 1px solid #ded6ca;
  position: relative;
}

.quote-page {
  background:
    linear-gradient(rgba(23, 63, 53, 0.94), rgba(23, 63, 53, 0.94)) top / 100% 330px no-repeat,
    #f4f0e9;
  padding: 76px 24px 104px;
}

.quote-shell {
  margin: 0 auto;
  max-width: 1000px;
}

.quote-intro {
  color: #fff;
  margin: 0 auto 48px;
  max-width: 760px;
  text-align: center;
}

.quote-intro .eyebrow {
  color: #f4bd93;
}

.quote-intro h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.05;
  margin: 13px 0 20px;
}

.quote-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 640px;
}

.quote-trust {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.quote-trust li {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 700;
}

.quote-form {
  background: #fffdfa;
  border: 1px solid #d8cfc2;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(20, 42, 35, 0.12);
  margin: 0 auto;
  max-width: 900px;
  padding: 52px;
}

.quote-form-section {
  border-bottom: 1px solid #ded6ca;
  margin-bottom: 44px;
  padding-bottom: 44px;
}

.quote-form-section:last-of-type {
  margin-bottom: 32px;
  padding-bottom: 38px;
}

.quote-form-section-heading {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.quote-form-section-heading > span {
  align-items: center;
  border: 1px solid #c8673c;
  border-radius: 50%;
  color: #a94f2c;
  display: inline-flex;
  flex: 0 0 38px;
  font-size: 13px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
}

.quote-form-section-heading p {
  color: #a94f2c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.quote-form-section-heading h2 {
  color: var(--pine);
  font-size: 27px;
  line-height: 1.2;
  margin: 0;
}

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

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

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

.conditional-fields[hidden] {
  display: none;
}

.quote-form .field label {
  color: #243b34;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 9px;
}

.quote-form .field label span {
  color: #707872;
  font-size: 13px;
  font-weight: 500;
}

.quote-form .field input,
.quote-form .field select,
.quote-form .field textarea {
  background-color: #fff;
  border-color: #d4cdc1;
  border-radius: 6px;
  min-height: 56px;
}

.quote-form .field textarea {
  min-height: 124px;
}

.file-input {
  border: 0 !important;
  height: 1px !important;
  min-height: 0 !important;
  opacity: 0;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  width: 1px !important;
}

.file-drop {
  align-items: center;
  background: #f5f7f4;
  border: 1px dashed #aab7b0;
  border-radius: 6px;
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  min-height: 112px;
  padding: 22px;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease;
}

.file-drop:hover {
  background: #edf3ef;
  border-color: var(--pine);
}

.file-drop strong {
  color: var(--pine);
  font-size: 15px;
}

.file-drop span {
  color: #66716b !important;
  font-size: 13px !important;
}

.quote-consent {
  margin-top: 0;
}

.quote-submit {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  text-align: center;
}

.quote-submit .btn {
  min-width: 280px;
}

.quote-submit .form-status {
  margin: 16px 0 0;
}

@media (max-width: 720px) {
  .quote-page {
    background-size: 100% 230px;
    padding: 44px 16px 72px;
  }

  .quote-intro {
    margin-bottom: 28px;
  }

  .quote-intro h1 {
    font-size: 34px;
    margin: 10px 0 0;
  }

  .quote-intro > p:not(.eyebrow),
  .quote-trust {
    display: none;
  }

  .quote-form {
    padding: 28px 22px;
  }

  .quote-form-section {
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

  .quote-form-section-heading {
    gap: 13px;
    margin-bottom: 24px;
  }

  .quote-form-section-heading > span {
    flex-basis: 34px;
    height: 34px;
  }

  .quote-form-section-heading h2 {
    font-size: 23px;
  }

  .quote-form-grid,
  .conditional-fields {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .quote-submit .btn {
    min-width: 0;
    width: 100%;
  }

  .contact-card-simple {
    padding: 22px;
  }
}

/* Services overview: calm editorial presentation instead of card-heavy UI. */
.services-overview-page .services-overview-hero {
  align-items: flex-end;
  display: flex;
  min-height: clamp(430px, 48vw, 560px);
  padding: 0;
}

.services-overview-page .services-overview-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 30, 24, 0.88) 0%, rgba(10, 30, 24, 0.58) 48%, rgba(10, 30, 24, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 30, 24, 0.46), transparent 55%);
}

.services-overview-page .services-overview-hero img {
  object-position: center 55%;
}

.services-overview-page .services-overview-hero .inner {
  padding-bottom: 76px;
  padding-top: 150px;
}

.services-overview-page .services-overview-hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.services-overview-page .services-overview-hero h1 {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.02;
  margin: 0 0 22px;
  max-width: 720px;
}

.services-overview-page .services-overview-hero p:last-child {
  font-size: 18px;
  line-height: 1.6;
  max-width: 570px;
}

.services-overview-page .services-overview-listing {
  background: var(--paper);
  padding-block: 52px 96px;
}

.services-overview-page .services-overview-listing .inner {
  max-width: 1180px;
}

.services-overview-page .services-overview-listing .service-focus-list {
  border-top: 1px solid var(--line);
  column-gap: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  row-gap: 0;
}

.services-overview-page .services-overview-listing .service-focus-item,
.services-overview-page .services-overview-listing .service-focus-item:hover {
  align-content: center;
  align-items: start;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 8px 16px;
  grid-template-columns: 36px minmax(0, 1fr) 32px;
  min-height: 164px;
  padding: 30px 4px;
  transform: none;
  transition: color 160ms ease, padding 160ms ease;
}

.services-overview-page .services-overview-listing .service-focus-item:hover {
  color: var(--pine);
  padding-left: 10px;
}

.services-overview-page .services-overview-listing .service-focus-item > span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  grid-column: 1;
  letter-spacing: 0.08em;
  padding-top: 7px;
}

.services-overview-page .services-overview-listing .service-focus-item h3 {
  color: var(--pine);
  font-size: 24px;
  font-weight: 700;
  grid-column: 2;
  line-height: 1.2;
}

.services-overview-page .services-overview-listing .service-focus-item p {
  color: #52615a;
  font-size: 15px;
  grid-column: 2 / 4;
  line-height: 1.6;
  max-width: 44ch;
}

.services-overview-page .services-overview-listing .service-focus-item strong {
  align-items: center;
  border: 1px solid rgba(189, 97, 60, 0.42);
  border-radius: 50%;
  color: var(--clay);
  display: flex;
  font-size: 17px;
  grid-column: 3;
  grid-row: 1;
  height: 30px;
  justify-content: center;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
  width: 30px;
}

.services-overview-page .services-overview-listing .service-focus-item:hover strong {
  background: var(--clay);
  color: #fff;
}

@media (max-width: 720px) {
  .services-overview-page .services-overview-hero {
    min-height: 390px;
  }

  .services-overview-page .services-overview-hero::before {
    background: linear-gradient(0deg, rgba(10, 30, 24, 0.92) 0%, rgba(10, 30, 24, 0.58) 66%, rgba(10, 30, 24, 0.22) 100%);
  }

  .services-overview-page .services-overview-hero img {
    object-position: 58% center;
  }

  .services-overview-page .services-overview-hero .inner {
    padding: 142px 24px 44px;
  }

  .services-overview-page .services-overview-hero .eyebrow {
    font-size: 10px;
    margin-bottom: 11px;
  }

  .services-overview-page .services-overview-hero h1 {
    font-size: clamp(36px, 11vw, 43px);
    line-height: 1.06;
    margin-bottom: 17px;
    max-width: 9ch;
  }

  .services-overview-page .services-overview-hero p:last-child {
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 31ch;
  }

  .services-overview-page .services-overview-listing {
    padding-block: 18px 58px;
  }

  .services-overview-page .services-overview-listing .inner {
    padding-inline: 24px;
  }

  .services-overview-page .services-overview-listing .service-focus-list {
    column-gap: 0;
    grid-template-columns: 1fr;
  }

  .services-overview-page .services-overview-listing .service-focus-item,
  .services-overview-page .services-overview-listing .service-focus-item:hover {
    gap: 7px 13px;
    grid-template-columns: 32px minmax(0, 1fr) 30px;
    min-height: 0;
    padding: 23px 0;
  }

  .services-overview-page .services-overview-listing .service-focus-item > span {
    font-size: 10px;
    padding-top: 6px;
  }

  .services-overview-page .services-overview-listing .service-focus-item h3 {
    font-size: 20px;
  }

  .services-overview-page .services-overview-listing .service-focus-item p {
    font-size: 14px;
    line-height: 1.52;
  }

  .services-overview-page .services-overview-listing .service-focus-item strong {
    font-size: 15px;
    height: 28px;
    width: 28px;
  }
}

/* Keep the shared footer independent from older page-specific footer rules. */
.footer.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 0;
  text-align: left;
}

.footer.site-footer .site-footer-main > .inner.site-footer-grid {
  align-items: start;
  display: grid;
  flex-direction: initial;
  grid-template-columns: 1.15fr 0.78fr 0.95fr 0.92fr 1.3fr;
  gap: clamp(26px, 2.75vw, 44px);
  justify-content: initial;
  text-align: left;
}

.footer.site-footer .site-footer-bottom > .inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

.footer.site-footer .site-footer-column,
.footer.site-footer .site-footer-address,
.footer.site-footer .site-footer-contact-links {
  font-style: normal;
  text-align: left;
}

.footer.site-footer .site-footer-list,
.footer.site-footer .site-footer-address,
.footer.site-footer .site-footer-contact-links {
  display: grid;
}

.footer.site-footer .site-footer-list > *,
.footer.site-footer .site-footer-address > *,
.footer.site-footer .site-footer-contact-links > * {
  display: block;
}

.footer.site-footer .site-footer-contact-links > a {
  display: grid;
}

@media (max-width: 1050px) {
  .footer.site-footer .site-footer-main > .inner.site-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .footer.site-footer .site-footer-main > .inner.site-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer.site-footer .site-footer-main {
    padding: 54px 0 46px;
  }

  .footer.site-footer .site-footer-services .site-footer-list,
  .footer.site-footer .site-footer-roofs .site-footer-list {
    column-gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 11px;
  }

  .footer.site-footer .site-footer-trust,
  .footer.site-footer .site-footer-contact-details {
    grid-column: auto;
  }

  .footer.site-footer .site-footer-contact-details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer.site-footer .site-footer-bottom > .inner {
    flex-direction: row;
  }
}

@media (max-width: 430px) {
  .footer.site-footer .site-footer-main > .inner.site-footer-grid {
    gap: 34px;
  }

  .footer.site-footer .site-footer-main > .inner,
  .footer.site-footer .site-footer-bottom > .inner {
    padding-inline: 24px;
  }

  .footer.site-footer .site-footer-column h2 {
    margin-bottom: 16px;
  }

  .footer.site-footer .site-footer-list a,
  .footer.site-footer .site-footer-list span,
  .footer.site-footer .site-footer-address span,
  .footer.site-footer .site-footer-contact-links a {
    font-size: 14px;
  }

  .footer.site-footer .site-footer-bottom > .inner {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    min-height: 58px;
  }

  .footer.site-footer .site-footer-top {
    flex: 0 0 38px;
    height: 38px;
    margin: 0;
    width: 38px;
  }

  .footer.site-footer .site-footer-main {
    padding-bottom: 36px;
  }

  .footer.site-footer .site-footer-contact-links {
    gap: 14px;
  }

  .footer.site-footer .site-footer-contact-links a {
    align-items: center;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
  }

  .footer.site-footer .site-footer-contact-details h2 {
    margin-bottom: 20px;
  }

  .footer.site-footer .site-footer-address {
    gap: 7px;
    margin-bottom: 22px;
  }
}

@media (max-width: 350px) {
  .footer.site-footer .site-footer-services .site-footer-list,
  .footer.site-footer .site-footer-roofs .site-footer-list {
    grid-template-columns: 1fr;
  }
}

/* Services overview: match the shared masthead geometry on mobile. */
@media (max-width: 840px) {
  .services-overview-page .site-header[data-section="Navbar"] {
    min-height: 54px;
  }

  .services-overview-page .site-header[data-section="Navbar"] .header-main {
    padding-inline: 20px;
  }

  .services-overview-page .site-header[data-section="Navbar"] .header-inner {
    box-sizing: border-box;
    height: 54px;
    min-height: 54px;
    padding: 0;
  }

  .services-overview-page .site-header[data-section="Navbar"] .header-brand {
    font-size: 15px;
    gap: 10px;
    line-height: 1;
  }

  .services-overview-page .site-header[data-section="Navbar"] .header-brand-mark {
    flex: 0 0 22px;
    height: 22px;
    width: 22px;
  }

  .services-overview-page .site-header[data-section="Navbar"] .header-brand-text {
    align-items: center;
    line-height: 1;
  }

  .services-overview-page .mobile-menu-toggle {
    flex: 0 0 38px;
    height: 38px;
    width: 38px;
  }

  .services-overview-page .mobile-menu-toggle span {
    height: 2px;
    width: 19px;
  }
}

@media (max-width: 360px) {
  .services-overview-page .site-header[data-section="Navbar"] .header-main {
    padding-inline: 16px;
  }
}

/* Desktop homepage masthead: tighter hierarchy and one composed trust row. */
@media (min-width: 841px) {
  .site-header[data-section="Navbar"] .header-utility-inner {
    min-height: 28px;
  }

  .site-header[data-section="Navbar"] .header-inner {
    column-gap: clamp(22px, 2vw, 30px);
    grid-template-columns: minmax(160px, 1fr) auto auto;
    min-height: 60px;
  }

  .site-header[data-section="Navbar"] .header-nav {
    justify-content: flex-end;
  }

  .hero {
    align-items: center;
    border-bottom: 0;
    min-height: clamp(590px, 70vh, 690px);
    padding: 60px clamp(36px, 6vw, 124px) 52px;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
    transform: translateY(-8px);
    width: 100%;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(8, 12, 10, 0.16) 0%,
      rgba(8, 12, 10, 0.34) 24%,
      rgba(8, 12, 10, 0.52) 44%,
      rgba(8, 12, 10, 0.52) 56%,
      rgba(8, 12, 10, 0.3) 78%,
      rgba(8, 12, 10, 0.08) 100%
    );
  }

  .hero::after {
    background: none;
  }

  .hero h1 {
    font-size: clamp(54px, 4.8vw, 70px);
    line-height: 1.04;
    margin: 0 auto 20px;
    max-width: 760px;
  }

  .hero p {
    font-size: clamp(19px, 1.5vw, 22px);
    font-weight: 550;
    line-height: 1.48;
    margin: 0 auto 30px;
    max-width: 680px;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 30px;
  }

  .hero-actions .btn {
    font-size: 16px;
    min-height: 56px;
    padding-inline: 32px;
  }

  .hero-assurance {
    align-items: flex-start;
    border-top: 0;
    display: grid;
    gap: 18px;
    grid-template-columns: max-content;
    justify-items: center;
    margin-inline: auto;
    max-width: none;
    padding-top: 0;
    width: max-content;
  }

  .hero-trust-row {
    display: flex;
    justify-content: center;
    margin: 0;
    width: auto;
  }

  .hero-trust-row .hero-trust-warranty {
    align-items: center;
    gap: 9px;
    justify-self: auto;
    min-width: 0;
    width: auto;
  }

  .hero-trust-row .hero-trust-warranty svg {
    height: 19px;
    margin-top: 0;
    width: 19px;
  }

  .hero-trust-warranty-copy {
    align-items: baseline;
    flex-direction: row;
    gap: 4px;
    white-space: nowrap;
  }

  .hero-trust-warranty-copy strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-trust-warranty-copy > span {
    display: inline;
    font-size: 13px;
    line-height: 1.2;
    margin-top: 0;
  }

  .hero-certification-block {
    align-items: center;
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 24px 0 0;
    text-align: center;
    width: max-content;
  }

  .hero-certification-block::before {
    background: rgba(255, 255, 255, 0.42);
    display: block;
    top: 0;
    width: 54px;
  }

  .hero p.hero-certification-label {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    max-width: none;
    opacity: 0.9;
  }

  .hero-official-logos {
    gap: 18px;
    justify-content: center;
    margin: 0 auto;
  }

  .official-logo-card {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    flex-direction: row;
    gap: 9px;
    height: auto;
    justify-content: flex-start;
    padding: 0;
  }

  .official-logo-card-heta,
  .official-logo-card-id06 {
    width: auto;
  }

  .official-logo-card-heta img {
    flex: 0 0 30px;
    height: 28px;
    max-height: none;
    max-width: none;
    width: 30px;
  }

  .official-logo-card-id06 img {
    flex: 0 0 29px;
    height: 29px;
    max-height: none;
    max-width: none;
    width: 29px;
  }

  .official-logo-card span {
    display: inline;
    font-size: 11px;
  }

  .official-logo-card-id06 {
    border-left: 1px solid rgba(255, 255, 255, 0.34);
    padding-left: 18px;
  }

  .hero-media {
    filter: brightness(1.12) saturate(1.05);
    object-position: center 50%;
  }

  .hero-transition {
    display: none;
  }

  .roofing-intro {
    border-top: 0;
    padding-block: clamp(72px, 7vw, 104px);
  }

  .roofing-intro-inner {
    align-items: center;
    display: grid;
    gap: clamp(52px, 6vw, 88px);
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    max-width: 1240px;
  }

  .roofing-intro-figure {
    aspect-ratio: 4 / 3;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
  }

  .roofing-intro-figure img {
    object-position: 56% center;
  }

  .roofing-intro-copy {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    max-width: 520px;
  }

  .roofing-intro-copy h2 {
    font-size: clamp(38px, 3.6vw, 50px);
    line-height: 1.08;
  }
}

/* Slightly brighter mobile video while preserving contrast behind the copy. */
@media (max-width: 640px) {
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(14, 24, 20, 0.16) 0%,
      rgba(14, 24, 20, 0.34) 36%,
      rgba(14, 24, 20, 0.82) 100%
    );
  }

  .hero-media {
    filter: brightness(1.06) saturate(1.03);
  }
}

/* Keep the two right-hand footer columns balanced on wide screens. */
@media (min-width: 1051px) {
  .footer.site-footer .site-footer-main > .inner.site-footer-grid {
    column-gap: clamp(30px, 2.5vw, 40px);
    grid-template-columns: 1.08fr 0.72fr 0.86fr 1.22fr 1.48fr;
  }

  .footer.site-footer .site-footer-trust {
    min-width: 220px;
  }

  .footer.site-footer .site-footer-certifications {
    align-items: center;
    gap: 16px;
    min-height: 54px;
  }

  .footer.site-footer .site-footer-certifications img {
    height: auto;
    max-height: none;
    max-width: none;
  }

  .footer.site-footer .site-footer-certifications img:first-child {
    width: 116px;
  }

  .footer.site-footer .site-footer-certifications img:last-child {
    width: 76px;
  }

  .footer.site-footer .site-footer-contact-details {
    min-width: 0;
    padding-left: 8px;
  }

  .footer.site-footer .site-footer-contact-links a {
    overflow-wrap: normal;
    white-space: nowrap;
  }
}
