:root {
  --charcoal: #11100f;
  --charcoal-2: #1a1917;
  --charcoal-3: #26231f;
  --text: #171615;
  --muted: #5e5a53;
  --paper: #f7f4ee;
  --paper-2: #eee8de;
  --white: #ffffff;
  --concrete: #d4d0c8;
  --line: rgba(23, 22, 21, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #c85b2c;
  --accent-dark: #9e431f;
  --sage: #66745f;
  --shadow: 0 22px 55px rgba(17, 16, 15, 0.18);
  --soft-shadow: 0 12px 30px rgba(17, 16, 15, 0.09);
  --header-height: 76px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
p,
a,
strong {
  overflow-wrap: break-word;
}

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

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

section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--text);
  padding: 0.72rem 1rem;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--paper);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #38342f;
  font-size: 0.92rem;
  font-weight: 760;
}

.main-nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.header-call {
  justify-self: end;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1rem;
  border: 1px solid var(--charcoal);
  border-radius: 8px;
  color: var(--charcoal);
  font-weight: 900;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-call:hover,
.header-call:focus {
  background: var(--charcoal);
  color: var(--paper);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 28px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.hero-media,
.hero-surface {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.92) 0%, rgba(17, 16, 15, 0.68) 43%, rgba(17, 16, 15, 0.2) 100%),
    url("assets/hero-concrete-work.jpg") center / cover;
  transform: scale(1.02);
}

.hero-surface {
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(17, 16, 15, 0.92), rgba(17, 16, 15, 0.04) 46%),
    linear-gradient(90deg, rgba(17, 16, 15, 0.86), rgba(17, 16, 15, 0.16) 64%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line-dark);
}

.hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 320px);
  gap: 2rem;
  align-items: end;
  padding: 6rem 0 3.2rem;
  color: var(--white);
}

.hero-copy-block {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.trust-copy h2,
.section-heading h2,
.recent-work-header h2,
.reviews-header h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
}

.hero-copy {
  max-width: 650px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.18rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(200, 91, 44, 0.3);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.hero-contact-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(17, 16, 15, 0.58);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-contact-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-contact-card a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 950;
}

.hero-contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-section,
.services-section,
.recent-work-section,
.process-section,
.reviews-section,
.contact-section {
  padding: 5.8rem clamp(1rem, 4vw, 3rem);
}

.trust-section {
  background: var(--charcoal);
  color: var(--paper);
}

.trust-inner,
.section-heading,
.service-grid,
.recent-work-header,
.recent-track,
.process-section > *,
.reviews-header,
.review-grid,
.contact-layout {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 3rem;
  align-items: end;
}

.trust-copy h2,
.section-heading h2,
.recent-work-header h2,
.reviews-header h2,
.contact-copy h2 {
  font-size: clamp(2.05rem, 4vw, 3.25rem);
}

.trust-copy p {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: rgba(247, 244, 238, 0.74);
  font-size: 1.06rem;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: var(--line-dark);
}

.trust-metrics div {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.trust-metrics strong,
.trust-metrics span {
  display: block;
}

.trust-metrics strong {
  font-size: 1.7rem;
  line-height: 1;
}

.trust-metrics span {
  color: rgba(247, 244, 238, 0.66);
  font-size: 0.85rem;
  font-weight: 760;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  margin-left: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 91, 44, 0.42);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-card span {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 950;
}

.service-card h3,
.recent-card-copy h3,
.process-steps h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.16;
}

.service-card p,
.process-steps p,
.review-card p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.recent-work-section {
  background:
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.recent-work-header {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.gallery-controls {
  display: flex;
  gap: 0.65rem;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 1.08rem;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: var(--soft-shadow);
}

.recent-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 455px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.1rem 0 1.15rem;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) rgba(17, 16, 15, 0.12);
}

.recent-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.recent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.recent-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--concrete);
  transition: transform 350ms ease;
}

.recent-card:hover img {
  transform: scale(1.035);
}

.recent-card-copy {
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1rem;
}

.recent-card-copy span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.process-steps article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.process-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 950;
}

.reviews-section {
  background:
    linear-gradient(135deg, rgba(17, 16, 15, 0.98), rgba(38, 35, 31, 0.98)),
    url("assets/hero-concrete-work.jpg") center / cover;
  color: var(--paper);
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.rating-pill {
  min-width: 180px;
  padding: 1.05rem;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.rating-pill strong,
.rating-pill span {
  display: block;
}

.rating-pill strong {
  font-size: 2.45rem;
  line-height: 1;
}

.rating-pill span {
  color: rgba(247, 244, 238, 0.72);
  font-weight: 760;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(247, 244, 238, 0.94);
  color: var(--text);
}

.review-card p {
  font-size: 1.04rem;
}

.review-card cite {
  margin-top: 1.5rem;
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 900;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.97), rgba(247, 244, 238, 0.85)),
    url("assets/hero-concrete-work.jpg") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 1.2rem);
}

.contact-copy p {
  margin-top: 1.15rem;
  max-width: 540px;
  font-size: 1.03rem;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus {
  transform: translateY(-2px);
  border-color: rgba(200, 91, 44, 0.62);
  box-shadow: var(--soft-shadow);
}

.contact-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.form-head h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.form-head p,
.form-success {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.form-success {
  padding: 0.85rem;
  border: 1px solid rgba(102, 116, 95, 0.55);
  border-radius: 8px;
  background: rgba(102, 116, 95, 0.18);
  color: #e7f0df;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row.two-col {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 840;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-size: 1rem;
  padding: 0.85rem 0.9rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

select option {
  color: var(--text);
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(200, 91, 44, 0.22);
}

.form-submit {
  width: 100%;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  padding: 2rem 1rem;
  background: var(--charcoal);
  color: rgba(247, 244, 238, 0.78);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

.copyright {
  width: 100%;
  color: rgba(247, 244, 238, 0.52);
  font-size: 0.86rem;
}

.honeypot {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

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

  .main-nav,
  .header-call {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0.2rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
  }

  .main-nav.is-open a {
    padding: 0.75rem;
  }

  .hero-inner,
  .trust-inner,
  .section-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-contact-card {
    max-width: 380px;
  }

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

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 1rem;
    left: 1rem;
    z-index: 30;
    box-shadow: 0 20px 45px rgba(17, 16, 15, 0.2);
  }

  .main-nav.is-open a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 0;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0.58rem;
  }

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

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  .hero {
    min-height: clamp(590px, calc(100svh - var(--header-height)), 690px);
    align-items: center;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(17, 16, 15, 0.94), rgba(17, 16, 15, 0.58)),
      url("assets/hero-concrete-work-mobile.jpg") center / cover;
  }

  .hero-surface {
    background:
      linear-gradient(0deg, rgba(17, 16, 15, 0.84), rgba(17, 16, 15, 0.1) 58%),
      linear-gradient(90deg, rgba(17, 16, 15, 0.9), rgba(17, 16, 15, 0.32) 72%);
  }

  .hero-inner {
    width: min(100% - 2rem, 540px);
    padding: 3.2rem 0 2.2rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11vw, 3.12rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 34rem;
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.52;
  }

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

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.45rem;
  }

  .hero-contact-card {
    display: none;
  }

  .trust-section,
  .services-section,
  .recent-work-section,
  .process-section,
  .reviews-section,
  .contact-section {
    padding: 3.6rem 1rem;
  }

  .section-heading,
  .recent-work-header,
  .reviews-header {
    gap: 1rem;
    margin-bottom: 1.45rem;
  }

  .section-heading.compact {
    margin-left: 0;
  }

  .trust-copy h2,
  .section-heading h2,
  .recent-work-header h2,
  .reviews-header h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.04;
  }

  .trust-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .trust-metrics,
  .service-grid,
  .review-grid,
  .process-steps,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .trust-metrics div,
  .service-card,
  .process-steps article,
  .review-card {
    min-height: auto;
  }

  .trust-metrics {
    border-radius: 9px;
  }

  .trust-metrics div {
    padding: 1rem 1.1rem;
  }

  .service-grid,
  .process-steps,
  .review-grid {
    gap: 0.8rem;
  }

  .service-card,
  .process-steps article,
  .review-card {
    padding: 1rem;
    border-radius: 9px;
  }

  .service-card p,
  .process-steps p,
  .review-card p {
    font-size: 0.97rem;
  }

  .recent-work-header,
  .reviews-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-controls {
    justify-content: flex-start;
  }

  .gallery-arrow {
    width: 50px;
    height: 50px;
  }

  .recent-track {
    grid-auto-columns: minmax(276px, 84vw);
    gap: 0.8rem;
    margin-right: -1rem;
    padding-right: 1rem;
  }

  .recent-card {
    border-radius: 9px;
  }

  .recent-card-copy {
    min-height: 120px;
    padding: 0.9rem;
  }

  .recent-card-copy h3,
  .service-card h3,
  .process-steps h3 {
    font-size: 1.14rem;
  }

  .rating-pill {
    width: 100%;
    min-width: 0;
  }

  .contact-layout {
    gap: 1.25rem;
  }

  .contact-cards {
    margin-top: 1.2rem;
  }

  .contact-card {
    min-height: 74px;
    padding: 0.95rem;
  }

  .quote-form {
    padding: 1rem;
    border-radius: 10px;
  }

  .form-row.two-col {
    gap: 1rem;
  }

  .form-submit {
    margin-top: 0.2rem;
  }

  .site-footer {
    display: grid;
    gap: 0.45rem;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 0.6rem;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: clamp(560px, calc(100svh - var(--header-height)), 650px);
  }

  .hero-inner {
    width: min(100% - 1.5rem, 420px);
  }

  .hero h1 {
    font-size: clamp(2.28rem, 11.5vw, 2.82rem);
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .button {
    min-height: 50px;
  }

  .trust-section,
  .services-section,
  .recent-work-section,
  .process-section,
  .reviews-section,
  .contact-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .recent-track {
    grid-auto-columns: minmax(258px, 83vw);
  }

  .quote-form {
    padding: 0.9rem;
  }
}
