:root {
  --charcoal: #131b1f;
  --charcoal-2: #303943;
  --ink: #131b1f;
  --muted: #5e6060;
  --line: #d2d3d4;
  --soft: #ebebec;
  --grey: #dfe0e1;
  --white: #fff;
  --green: #4f7892;
  --green-soft: #9fc6dc;
  --accent: #9fc6dc;
  --accent-dark: #4f7892;
  --cta-blue: #1267b3;
  --cta-blue-dark: #0a4277;
  --warm: #c8752e;
  --warm-dark: #9f4d2f;
  --warm-pale: #efe2d6;
  --orange: var(--warm);
  --red-orange: var(--warm-dark);
  --orange-pale: var(--warm-pale);
  --off-white: #ebebec;
  --shadow: 0 20px 45px rgba(19, 27, 31, 0.16);
  --shadow-soft: 0 10px 28px rgba(19, 27, 31, 0.11);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--off-white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  color: var(--off-white);
  background: linear-gradient(180deg, #0f1518, var(--charcoal));
  font-size: 0.82rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar span,
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.topbar svg {
  color: #b8b9b9;
}

.topbar__spacer {
  flex: 1;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(19, 27, 31, 0.07);
}

.navbar__inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: max-content;
}

.brand__logo {
  width: clamp(190px, 18vw, 286px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.82rem;
}

.main-nav a {
  position: relative;
  padding-block: 33px;
  color: var(--charcoal-2);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  background: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-actions .btn {
  min-height: 54px;
  max-width: 178px;
  padding-inline: 15px;
  font-size: 0.84rem;
  white-space: normal;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 28, 32, 0.14);
}

.btn--orange {
  color: #fff;
  background: linear-gradient(180deg, var(--cta-blue), var(--cta-blue-dark));
  box-shadow: 0 12px 24px rgba(10, 66, 119, 0.24);
}

.btn--red {
  color: #fff;
  background: linear-gradient(180deg, var(--green-soft), var(--green));
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(19, 27, 31, 0.96), rgba(19, 27, 31, 0.78) 32%, rgba(19, 27, 31, 0.18) 66%), url("assets/hero-driveway.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 46px;
  background: var(--off-white);
  clip-path: polygon(0 72%, 100% 20%, 100% 100%, 0 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 64px;
}

.hero-stamp {
  position: absolute;
  top: 84px;
  right: max(28px, calc((100vw - 1320px) / 2 + 28px));
  z-index: 1;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  border: 2px solid rgba(235, 235, 236, 0.78);
  border-radius: 999px;
  color: #fff;
  background: rgba(19, 27, 31, 0.78);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  text-align: center;
  text-transform: uppercase;
}

.hero-stamp::before,
.hero-stamp::after {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(235, 235, 236, 0.62);
}

.hero-stamp span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-stamp strong {
  font-size: 1.28rem;
  line-height: 0.95;
}

.hero__brand-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 7px 13px 7px 7px;
  border: 1px solid rgba(235, 235, 236, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(19, 27, 31, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__brand-pill img {
  width: 42px;
  height: 42px;
  border: 2px solid var(--warm);
  border-radius: 999px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.85rem, 5.4vw, 4.9rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: #cde8f5;
}

h2 span {
  color: var(--green);
}

.hero__lead {
  max-width: 535px;
  margin: 18px 0 16px;
  font-size: 1.12rem;
}

.tick-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tick-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  background: var(--green-soft);
  border-radius: 999px;
}

.hero__cta {
  min-height: 50px;
}

.hero-partners {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(235, 235, 236, 0.16);
  border-radius: 8px;
  background: rgba(19, 27, 31, 0.52);
  backdrop-filter: blur(4px);
}

.hero-partners__label {
  grid-column: 1 / -1;
  color: #dfe8ed;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-partners a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-partners img {
  width: min(100%, 142px);
  max-height: 46px;
  object-fit: contain;
  filter: saturate(1.1) contrast(1.08);
}

.poster-divider {
  position: relative;
  margin-top: -1px;
  color: #fff;
  background: var(--off-white);
}

.poster-divider__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 156px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.poster-divider__statement {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 28px 34px;
  background:
    linear-gradient(90deg, rgba(19, 27, 31, 0.98), rgba(48, 57, 67, 0.92)),
    var(--charcoal);
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.poster-divider__statement span {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.poster-divider__statement span:nth-child(2) {
  color: #cde8f5;
}

.poster-divider__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-left: -32px;
}

.poster-divider__visuals img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
}

.poster-divider__visuals img:first-child {
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.poster-divider__visuals img:last-child {
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -26px;
}

.section {
  padding-block: 52px;
}

.section--soft {
  background: linear-gradient(180deg, #f7f7f7, var(--off-white));
}

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

.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 42px;
}

.about__grid > img {
  width: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.sr-logo-panel {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 111, 93, 0.08), transparent 42%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.sr-logo-panel img {
  width: min(100%, 390px);
  max-height: 360px;
  object-fit: contain;
}

.about-visual {
  position: relative;
  min-height: 430px;
}

.about-visual__main {
  width: 82%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.about-visual__inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 210px;
  object-fit: cover;
  border: 8px solid var(--off-white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-visual__badge {
  position: absolute;
  left: 24px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(19, 27, 31, 0.86);
  box-shadow: 0 14px 30px rgba(19, 27, 31, 0.2);
  font-weight: 900;
  text-transform: uppercase;
}

.about-visual__badge img {
  width: 42px;
  height: 42px;
  border: 2px solid var(--warm);
  border-radius: 999px;
  background: #fff;
  object-fit: contain;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.about__copy > p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted);
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  margin-top: 30px;
}

.review-logo {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid #d1d2d3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(19, 27, 31, 0.06);
}

.review-logo strong {
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 900;
}

.review-logo span,
.review-logo small {
  color: var(--muted);
  font-size: 0.83rem;
}

.review-logo small {
  color: var(--warm);
  font-weight: 700;
}

.google strong {
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkatrade strong {
  color: #f04a2a;
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(79, 120, 146, 0.28);
  border-radius: 8px;
  background: #eef5f8;
  box-shadow: 0 8px 18px rgba(19, 27, 31, 0.06);
}

.guarantee-card svg {
  width: 52px;
  height: 52px;
  color: var(--green);
}

.guarantee-card div {
  display: grid;
  gap: 2px;
}

.guarantee-card span,
.guarantee-card small {
  color: var(--muted);
}

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

.section-heading p {
  margin-top: 8px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid #e0e5e7;
  border-radius: 8px 8px 38px 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -31px auto 14px;
  color: #fff;
  background: var(--green);
  border: 4px solid #fff;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(20, 28, 32, 0.16);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  padding-inline: 22px;
}

.service-card p {
  max-width: 265px;
  margin: 10px auto 14px;
  padding-inline: 18px;
  color: #3f464c;
  font-size: 0.94rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

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

.service-list li {
  min-height: 56px;
  padding: 13px 16px;
  border: 1px solid #d7d8d9;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  background: #fff;
  color: var(--charcoal);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(20, 28, 32, 0.05);
}

.service-list a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.service-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.services-cta__primary {
  min-height: 58px;
  padding-inline: 34px;
  font-size: 1.02rem;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(159, 77, 47, 0.24);
}

.why {
  background: linear-gradient(90deg, #edf5f9, #fff);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #c8d9e2;
  border-bottom: 1px solid #c8d9e2;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 180px;
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid #c8d9e2;
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid svg {
  width: 48px;
  height: 48px;
  color: var(--green);
}

.why-grid h3 {
  font-size: 1rem;
}

.why-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}

.projects {
  background: #fff;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 26px;
}

.project-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow-soft);
}

.page-hero {
  padding-block: 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 27, 31, 0.96), rgba(48, 57, 67, 0.86)),
    var(--charcoal);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  font-weight: 800;
}

.page-hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 18px 0 24px;
  color: #dde8ed;
  font-size: 1.08rem;
}

.page-hero img {
  width: 100%;
  min-height: 330px;
  max-height: 440px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-feature__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.gallery-feature img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.gallery-feature p:not(.section-kicker),
.gallery-cta p {
  max-width: 620px;
  color: var(--muted);
}

.project-checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.project-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.project-checks svg {
  width: 21px;
  height: 21px;
  padding: 4px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid #d7d8d9;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.project-card div {
  padding: 20px;
}

.project-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card p {
  margin-top: 8px;
  color: var(--muted);
}

.full-project-gallery {
  background: var(--white);
}

.project-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -10px 0 26px;
}

.project-filter-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #cfd1d2;
  border-radius: 999px;
  color: var(--charcoal-2);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.project-photo {
  overflow: hidden;
  border: 1px solid #d7d8d9;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.project-photo img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.project-photo figcaption {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.project-photo strong {
  color: var(--charcoal);
  font-size: 0.96rem;
}

.project-photo span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.service-work-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.gallery-cta {
  padding-block: 42px;
  background: var(--white);
}

.gallery-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(110deg, rgba(239, 226, 214, 0.88), rgba(235, 235, 236, 0.98));
  box-shadow: var(--shadow-soft);
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--charcoal);
  border-bottom: 6px solid var(--page-accent, var(--green));
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 27, 31, 0.96), rgba(19, 27, 31, 0.78) 48%, rgba(19, 27, 31, 0.22)),
    var(--service-hero-image);
  background-position: center;
  background-size: cover;
}

.service-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 34px;
  background: var(--off-white);
  clip-path: polygon(0 65%, 100% 18%, 100% 100%, 0 100%);
}

.service-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 52px;
}

.service-page-hero h1 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 900;
}

.service-page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px 0 22px;
  color: #dfe8ed;
  font-size: 1.08rem;
}

.service-quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-quick-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(235, 235, 236, 0.2);
  border-radius: 999px;
  background: rgba(19, 27, 31, 0.58);
  font-weight: 800;
}

.service-quick-points svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: #fff;
  background: var(--page-accent, var(--green));
  border-radius: 999px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 38px;
  align-items: start;
}

.service-detail-copy {
  display: grid;
  gap: 16px;
}

.service-detail-copy p {
  color: var(--muted);
}

.service-info-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(48, 57, 67, 0.92), rgba(19, 27, 31, 0.98)),
    var(--charcoal);
  border-top: 5px solid var(--page-accent, var(--green));
  box-shadow: var(--shadow-soft);
}

.service-info-panel h3 {
  color: #fff;
}

.service-info-panel ul,
.service-process,
.service-benefits {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-info-panel li,
.service-process li,
.service-benefits li {
  display: flex;
  gap: 10px;
}

.service-info-panel svg,
.service-process svg,
.service-benefits svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  background: var(--page-accent, var(--green));
  border-radius: 999px;
}

.service-visual-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-visual-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-visual-band__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.service-visual-band__copy p {
  color: var(--muted);
}

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

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

.offering-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid #d7d8d9;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.offering-card strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--page-accent, var(--green));
  font-size: 0.88rem;
  font-weight: 900;
}

.offering-card h3 {
  font-size: 1.08rem;
}

.offering-card p {
  color: var(--muted);
}

.service-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: visible;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.service-proof-strip div {
  position: relative;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px 22px 22px 78px;
  background:
    radial-gradient(circle at 20% 18%, rgba(159, 198, 220, 0.14), transparent 28%),
    linear-gradient(135deg, var(--charcoal), #0f1518);
}

.service-proof-strip div::before {
  content: "01";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background: var(--page-accent, var(--green));
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.service-proof-strip div::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: var(--charcoal-2);
  font-weight: 900;
  transform: translateY(-50%);
}

.service-proof-strip div:nth-child(2)::before {
  content: "02";
}

.service-proof-strip div:nth-child(3)::before {
  content: "03";
}

.service-proof-strip div:nth-child(4)::before {
  content: "04";
}

.service-proof-strip div:last-child {
  border-right: 0;
}

.service-proof-strip div:last-child::after {
  display: none;
}

.service-proof-strip strong {
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
}

.service-proof-strip span {
  color: #dfe8ed;
  font-weight: 700;
}

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

.service-faq {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d7d8d9;
  box-shadow: var(--shadow-soft);
}

.service-faq h3 {
  font-size: 1rem;
}

.service-faq p {
  color: var(--muted);
}

.service-area-line {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 5px solid var(--page-accent, var(--green));
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.resin-samples {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
}

.resin-samples__copy {
  display: grid;
  gap: 14px;
}

.resin-samples__copy h2 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
}

.resin-samples__copy p {
  color: var(--muted);
}

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

.sample-card {
  overflow: hidden;
  border: 1px solid #d7d8d9;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.sample-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.sample-card span {
  display: block;
  padding: 10px;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.resin-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-mini-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid #d7d8d9;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-mini-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--charcoal-2);
  font-weight: 900;
}

.service-mini-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
}

.service-mini-card p {
  color: var(--muted);
}

.service-next {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(110deg, rgba(239, 226, 214, 0.88), rgba(235, 235, 236, 0.98));
  box-shadow: var(--shadow-soft);
}

.service-next p {
  margin-top: 6px;
  color: var(--muted);
}

.service-next .btn {
  justify-self: end;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 28px 36px;
}

.partner-grid a {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  text-decoration: none;
}

.partner-grid img {
  width: min(100%, 190px);
  max-height: 86px;
  object-fit: contain;
  filter: saturate(1.1) contrast(1.08);
}

.partner-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-section {
  padding-block: 58px;
  background:
    linear-gradient(110deg, rgba(239, 226, 214, 0.88), rgba(235, 235, 236, 0.98)),
    var(--orange-pale);
  border-top: 1px solid #d9c6b6;
}

.contact-page {
  background:
    linear-gradient(180deg, rgba(235, 235, 236, 0.96), rgba(255, 255, 255, 0.9)),
    var(--off-white);
}

.contact-hero {
  padding-block: 54px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 27, 31, 0.96), rgba(19, 27, 31, 0.72)),
    url("assets/project-driveway.jpg");
  background-position: center;
  background-size: cover;
}

.contact-hero__inner {
  max-width: 780px;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
}

.contact-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: #dfe8ed;
  font-size: 1.08rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid #d7d8d9;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-card svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}

.contact-card a {
  color: var(--charcoal);
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-card p {
  color: var(--muted);
}

.contact-form-panel {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-form-panel .quote-form {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.quote-section__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  align-items: start;
  gap: 42px;
}

.quote-section__copy {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.quote-section__copy p:not(.section-kicker) {
  max-width: 520px;
  color: var(--muted);
}

.quote-contact {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.quote-contact a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.quote-contact svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid #d1d2d3;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal-2);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #c9cbcc;
  border-radius: 5px;
  color: var(--ink);
  background: #f7f7f7;
  font: inherit;
  font-weight: 500;
}

.quote-form textarea {
  min-height: 132px;
  padding-block: 13px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(79, 120, 146, 0.2);
  border-color: var(--green);
  background: #fff;
}

.quote-form .btn {
  width: fit-content;
  min-height: 52px;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

.footer {
  color: #d7d8d9;
  background: linear-gradient(180deg, var(--charcoal), #0f1518);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.2fr 1fr;
  gap: 34px;
  padding-block: 42px;
}

.brand--footer strong {
  color: #fff;
  font-size: 1.75rem;
}

.brand--footer .brand__logo {
  width: min(245px, 100%);
  content: url("assets/sr-civils-logo-footer-blue.png");
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.footer p,
.footer li,
.footer a {
  color: #d7d8d9;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer__brand p {
  margin-top: 10px;
}

.footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

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

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.socials a:nth-child(1) { background: #287be7; }
.socials a:nth-child(2) { background: #e54284; }
.socials a:nth-child(3) { background: #4285f4; }
.socials a:nth-child(4) { background: var(--green); }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list svg {
  flex: 0 0 auto;
  color: var(--warm);
}

.footer-quote {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-quote .btn {
  min-height: 42px;
  padding-inline: 16px;
}

.footer__bottom {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9d9e9f;
  font-size: 0.8rem;
}

.footer__bottom a {
  color: #d7d8d9;
}

@media (max-width: 1120px) {
  .navbar__inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .nav-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-open .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 18px;
  }

  .site-header.is-open .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 5px;
    background: #f4f4f4;
    font-weight: 700;
  }

  .site-header.is-open .main-nav a::after {
    display: none;
  }

  .site-header.is-open .main-nav a.active,
  .site-header.is-open .main-nav a:hover {
    color: var(--green);
    background: #eaf4f8;
  }

  .site-header.is-open .nav-actions .btn {
    width: 100%;
    max-width: none;
    min-height: 50px;
    padding-inline: 16px;
  }

  .topbar__inner {
    flex-wrap: wrap;
    gap: 12px 22px;
    padding-block: 9px;
  }

  .topbar__spacer {
    display: none;
  }

  .service-grid,
  .service-list,
  .project-grid,
  .gallery-grid,
  .project-photo-grid,
  .service-card-grid,
  .service-offerings,
  .service-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid article:nth-child(3) {
    border-right: 0;
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-section__grid,
  .gallery-cta__inner,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-section__grid {
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .partners {
    display: none;
  }

  .brand__logo {
    width: 230px;
  }

  .navbar__inner {
    min-height: 78px;
    gap: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    background-image: linear-gradient(90deg, rgba(19, 27, 31, 0.96), rgba(19, 27, 31, 0.8)), url("assets/hero-driveway.jpg");
  }

  .hero__content {
    padding-block: 58px 50px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.52rem, 8.8vw, 3.35rem);
  }

  .hero__lead {
    max-width: 510px;
  }

  .hero-stamp {
    top: 104px;
    right: 24px;
    width: 118px;
    height: 118px;
  }

  .hero-stamp strong {
    font-size: 1.08rem;
  }

  .poster-divider__inner {
    grid-template-columns: 1fr;
  }

  .poster-divider__statement {
    clip-path: none;
  }

  .poster-divider__visuals {
    min-height: 170px;
    margin-left: 0;
  }

  .poster-divider__visuals img:first-child,
  .poster-divider__visuals img:last-child {
    clip-path: none;
    margin-left: 0;
  }

  .page-hero__grid,
  .gallery-feature__grid {
    grid-template-columns: 1fr;
  }

  .page-hero img,
  .gallery-feature img {
    min-height: 260px;
  }

  .hero-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 520px;
    gap: 10px;
  }

  .hero-partners a {
    min-height: 50px;
  }

  .about__grid,
  .service-grid,
  .service-list,
  .project-grid,
  .gallery-grid,
  .project-photo-grid,
  .service-detail-grid,
  .service-visual-band,
  .service-next,
  .resin-samples,
  .contact-page-grid,
  .service-faq-grid,
  .quote-section__grid,
  .gallery-cta__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .service-page-hero {
    min-height: 290px;
  }

  .service-page-hero__content {
    padding-block: 44px 62px;
  }

  .service-page-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.35rem);
  }

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

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

  .service-visual-band img {
    min-height: 240px;
  }

  .service-next .btn {
    justify-self: stretch;
  }

  .quote-section {
    padding-block: 46px;
  }

  .quote-section__copy {
    position: static;
    padding-top: 0;
  }

  .about__grid > img {
    min-height: 220px;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-visual__main {
    height: 320px;
  }

  .about__copy {
    max-width: 620px;
  }

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

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

  .partner-grid {
    gap: 24px 30px;
  }

  .partner-grid a {
    min-height: 94px;
  }

  .partner-grid img {
    width: min(100%, 176px);
    max-height: 76px;
  }

  .why-grid article,
  .why-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid #c8d9e2;
  }

  .why-grid article:nth-child(odd) {
    border-right: 1px solid #c8d9e2;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .gallery-cta__inner {
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .topbar__inner {
    min-height: auto;
    display: grid;
    gap: 6px;
    padding-block: 8px;
  }

  .topbar__inner span:not(:first-child),
  .topbar__inner a[href^="mailto"] {
    display: none;
  }

  .topbar__inner span:first-child,
  .topbar__inner a[href^="tel"] {
    width: 100%;
    justify-content: center;
    font-weight: 800;
  }

  .navbar__inner {
    min-height: 74px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: min(228px, calc(100vw - 118px));
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.05rem, 9vw, 2.46rem);
    letter-spacing: 0;
  }

  .hero__lead {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero::after {
    height: 30px;
  }

  .hero-stamp {
    position: relative;
    top: auto;
    right: auto;
    justify-self: start;
    width: min(100%, 280px);
    height: auto;
    min-height: 62px;
    grid-template-columns: auto auto auto;
    gap: 8px;
    margin: 0 0 18px 18px;
    padding: 10px 14px;
    border-radius: 8px;
  }

  .hero-stamp::before,
  .hero-stamp::after {
    display: none;
  }

  .hero-stamp strong {
    font-size: 0.95rem;
  }

  .hero-stamp span {
    font-size: 0.62rem;
  }

  .hero-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    padding-top: 16px;
  }

  .hero-partners a {
    min-height: 48px;
    padding: 7px 8px;
  }

  .hero-partners img {
    max-height: 36px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.82rem;
  }

  .hero__brand-pill {
    margin-bottom: 14px;
    padding-right: 11px;
    font-size: 0.82rem;
  }

  .hero__brand-pill img {
    width: 36px;
    height: 36px;
  }

  .section {
    padding-block: 42px;
  }

  .poster-divider__inner {
    border-radius: 0;
  }

  .poster-divider__statement {
    padding: 24px 18px;
  }

  .poster-divider__visuals {
    grid-template-columns: 1fr;
  }

  .poster-divider__visuals img {
    min-height: 140px;
  }

  .poster-divider__visuals img:last-child {
    display: none;
  }

  .page-hero {
    padding-block: 42px;
  }

  .contact-hero {
    padding-block: 42px;
  }

  .contact-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .contact-form-panel {
    padding: 20px;
  }

  .service-page-hero {
    min-height: 260px;
  }

  .service-page-hero__content {
    padding-block: 36px 56px;
  }

  .service-page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .service-quick-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-quick-points li {
    width: 100%;
  }

  .service-detail-grid,
  .service-visual-band__copy,
  .service-next {
    gap: 18px;
  }

  .service-info-panel,
  .service-visual-band__copy,
  .service-next,
  .service-mini-card {
    padding: 20px;
  }

  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .resin-samples__copy h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.45rem);
  }

  .sample-card span {
    padding: 8px;
    font-size: 0.78rem;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .page-hero img,
  .gallery-feature img {
    min-height: 220px;
  }

  .project-card img {
    height: 190px;
  }

  .project-photo img,
  .service-work-strip img {
    height: 210px;
  }

  .gallery-cta__inner {
    padding: 22px;
  }

  h2 {
    font-size: 2rem;
    letter-spacing: 0;
  }

  .about__grid {
    gap: 24px;
  }

  .about-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .about-visual__main,
  .about-visual__inset {
    position: static;
    width: 100%;
    height: 220px;
    border: 0;
  }

  .about-visual__badge {
    left: 14px;
    bottom: 14px;
  }

  .about__copy > p:not(.section-kicker) {
    margin-top: 12px;
  }

  .btn {
    width: 100%;
    padding-inline: 14px;
    white-space: normal;
  }

  .site-header.is-open .main-nav {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 14px;
  }

  .site-header.is-open .main-nav a {
    min-height: 42px;
  }

  .site-header.is-open .nav-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quote-form {
    padding: 20px;
  }

  .quote-form__row {
    grid-template-columns: 1fr;
  }

  .quote-form .btn {
    width: 100%;
  }

  .quote-contact a {
    width: 100%;
  }

  .review-row {
    flex-direction: column;
    align-items: stretch;
  }

  .why-grid,
  .partner-grid,
  .service-list,
  .service-offerings,
  .service-proof-strip {
    grid-template-columns: 1fr;
  }

  .service-proof-strip div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-proof-strip div::before {
    left: 20px;
  }

  .service-proof-strip div::after {
    content: "↓";
    right: auto;
    left: 24px;
    top: auto;
    bottom: -17px;
    transform: none;
  }

  .service-proof-strip div:last-child {
    border-bottom: 0;
  }

  .service-list li {
    min-height: 50px;
    padding-block: 11px;
  }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .services-cta__primary {
    width: 100%;
  }

  .partner-grid {
    gap: 22px;
  }

  .partner-grid a {
    min-height: 84px;
  }

  .partner-grid img {
    width: min(100%, 210px);
    max-height: 82px;
  }

  .why-grid article:nth-child(odd) {
    border-right: 0;
  }
}
