:root {
  --shell: 1180px;
  --dark-red: #4d0011;
  --burgundy: #700c0c;
  --dark-beige: #c1a37f;
  --beige: #e8ceb0;
  --cream: #fff6ea;
  --ink: #2a1515;
  --ink-2: #4d3027;
  --muted: #7a6758;
  --paper: #fff6ea;
  --white: #fffdf8;
  --line: #e2cab0;
  --line-strong: #d3b692;
  --surface: #fffaf2;
  --surface-warm: #f3dec4;
  --navy: var(--dark-red);
  --blue: var(--burgundy);
  --blue-dark: #4d0011;
  --orange: var(--dark-beige);
  --green: #9f7f5a;
  --violet: var(--beige);
  --shadow: 0 24px 70px rgba(77, 0, 17, 0.14);
  --shadow-soft: 0 14px 42px rgba(77, 0, 17, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 206, 176, 0.28), rgba(255, 246, 234, 0) 420px),
    var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.top-strip {
  background: var(--dark-red);
  color: rgba(255, 246, 234, 0.84);
  font-size: 0.84rem;
}

.top-strip__inner,
.top-strip__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-strip__inner {
  justify-content: space-between;
  min-height: 36px;
}

.top-strip a {
  text-decoration: none;
}

.top-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 750;
}

.top-strip__badge::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--dark-beige);
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(193, 163, 127, 0.48);
  background: rgba(255, 246, 234, 0.9);
  backdrop-filter: blur(18px);
}

.header-grid {
  display: grid;
  grid-template-columns: minmax(260px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 246, 234, 0.22), transparent 36%),
    linear-gradient(135deg, var(--dark-red), var(--burgundy));
  color: var(--cream);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(77, 0, 17, 0.18);
}

.brand__initials {
  position: relative;
  z-index: 2;
}

.brand__flow {
  position: absolute;
  inset: auto 6px 7px 6px;
  display: grid;
  gap: 3px;
}

.brand__flow i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 246, 234, 0.7);
}

.brand__flow i:nth-child(1) {
  width: 24px;
}

.brand__flow i:nth-child(2) {
  width: 18px;
}

.brand__flow i:nth-child(3) {
  width: 11px;
}

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

.brand__text strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.site-nav a {
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--burgundy);
}

.site-nav a:hover {
  background: rgba(232, 206, 176, 0.45);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.header-cta {
  padding: 0 1.05rem;
  background: var(--burgundy);
  color: var(--cream);
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(112, 12, 12, 0.16);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.menu-button span:not(.visually-hidden) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 2.5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, 78svh);
  overflow: hidden;
  background: var(--dark-red);
}

.hero__image,
.hero__image img,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(77, 0, 17, 0.92) 0%, rgba(77, 0, 17, 0.72) 44%, rgba(112, 12, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(77, 0, 17, 0.08), rgba(77, 0, 17, 0.76));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(650px, calc(100% - 40px));
  max-width: none;
  margin-left: max(20px, calc((100% - var(--shell)) / 2));
  margin-right: auto;
  padding-block: 2.5rem 1.25rem;
  color: var(--white);
}

.hero__content::before {
  display: block;
  width: 70px;
  height: 4px;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: var(--dark-beige);
  content: "";
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: rgba(255, 246, 234, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--burgundy);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: 3.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.1rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero__content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 246, 234, 0.84);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.button {
  padding: 0 1.25rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--dark-beige);
  color: var(--dark-red);
  box-shadow: 0 16px 36px rgba(193, 163, 127, 0.28);
}

.button--primary:hover {
  background: var(--beige);
}

.button--ghost {
  border: 1px solid rgba(255, 246, 234, 0.48);
  background: rgba(255, 246, 234, 0.11);
  color: var(--cream);
}

.button--phone {
  min-width: 168px;
}

.hero__stats {
  position: relative;
  z-index: 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(255, 246, 234, 0.2);
  border-radius: 8px;
  background: rgba(255, 246, 234, 0.14);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.hero__stats div {
  padding: 0.85rem 1rem;
}

.hero__stats div + div {
  border-left: 1px solid rgba(255, 246, 234, 0.18);
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  font-size: 1.08rem;
}

.hero__stats span {
  color: rgba(255, 246, 234, 0.74);
  font-size: 0.9rem;
}

.section {
  padding-block: clamp(3.25rem, 6vw, 5.4rem);
}

.intro-grid,
.split-grid,
.equipment-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.intro-copy p {
  color: var(--ink-2);
  font-size: 1.08rem;
}

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

.proof-band {
  background: var(--beige);
  border-block: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proof-grid span {
  display: grid;
  min-height: 88px;
  align-content: center;
  justify-items: center;
  padding: 1rem;
  border-left: 1px solid var(--line);
  color: var(--dark-red);
  text-align: center;
}

.proof-grid strong,
.proof-grid small {
  display: block;
}

.proof-grid strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.proof-grid small {
  margin-top: 0.2rem;
  color: var(--ink-2);
  font-size: 0.78rem;
}

.proof-grid span:last-child {
  border-right: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

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

.service-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--surface));
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card h3 {
  color: var(--dark-red);
}

.service-card ul,
.process-grid,
.quote-form {
  margin: 0;
  padding: 0;
}

.service-card li {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding-block: 0.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.93rem;
}

.service-card li::before,
.checklist span::before,
.market-grid span::before {
  flex: 0 0 auto;
  color: var(--burgundy);
  font-weight: 900;
  content: "+";
}

.photo-band {
  background:
    linear-gradient(180deg, var(--dark-red), var(--burgundy));
  color: var(--cream);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.66fr 0.66fr;
  grid-template-rows: 280px 220px;
  gap: 1rem;
  align-items: stretch;
}

.photo-tile {
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--burgundy);
}

.photo-tile--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.field-copy {
  grid-column: 2 / 4;
  grid-row: 1;
}

.photo-grid .photo-tile:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2;
}

.photo-grid .photo-tile:nth-of-type(3) {
  grid-column: 3;
  grid-row: 2;
}

.photo-tile img,
.commercial-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-copy {
  display: grid;
  align-content: center;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 246, 234, 0.18);
  border-radius: 8px;
  background: rgba(255, 246, 234, 0.08);
}

.field-copy .eyebrow {
  margin-bottom: 0.65rem;
}

.field-copy h2 {
  max-width: 620px;
  margin-bottom: 0.75rem;
  font-size: 2.05rem;
  line-height: 1.08;
}

.field-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 246, 234, 0.8);
}

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

.split-copy p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.checklist,
.market-grid,
.brand-cloud {
  display: grid;
  gap: 0.65rem;
}

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

.checklist span,
.market-grid span,
.brand-cloud span {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-2);
  font-weight: 750;
}

.commercial-section {
  padding-block: clamp(3.5rem, 7vw, 6.25rem);
  background: var(--burgundy);
  color: var(--cream);
}

.commercial-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: center;
}

.commercial-grid figure {
  height: min(520px, 62vw);
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.commercial-grid p:not(.eyebrow) {
  color: rgba(255, 246, 234, 0.8);
}

.market-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.2rem;
}

.market-grid span {
  border-color: rgba(255, 246, 234, 0.16);
  background: rgba(255, 246, 234, 0.09);
  color: var(--cream);
}

.equipment {
  background: var(--white);
}

.brand-cloud {
  grid-template-columns: repeat(4, 1fr);
}

.brand-cloud span {
  min-height: 82px;
  justify-content: center;
  background: linear-gradient(180deg, var(--paper), var(--white));
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 24px rgba(77, 0, 17, 0.045);
}

.brand-cloud .brand-chip--more {
  border-color: var(--dark-beige);
  background: var(--dark-red);
  color: var(--cream);
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0;
}

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

.process-grid li {
  list-style: none;
  min-height: 220px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--burgundy);
  font-weight: 950;
}

.process-grid p {
  color: var(--muted);
}

.contact-section {
  padding-block: clamp(3.5rem, 7vw, 6.25rem);
  background: var(--dark-red);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 246, 234, 0.8);
  font-size: 1.08rem;
}

.contact-methods {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.contact-methods a {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 246, 234, 0.18);
  border-radius: 8px;
  background: rgba(255, 246, 234, 0.09);
  text-decoration: none;
}

.contact-methods span {
  color: rgba(255, 246, 234, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 1.02rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(30, 3, 9, 0.22);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(193, 163, 127, 0.74);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: var(--white);
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(112, 12, 12, 0.18);
  border-color: var(--burgundy);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.seo-text {
  padding-block: 1.3rem;
  background: var(--beige);
  color: #5b4030;
  font-size: 0.9rem;
}

.seo-text p {
  margin-bottom: 0;
}

.site-footer {
  padding-block: 1.4rem 5.5rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.brand--footer .brand__mark {
  background: var(--dark-red);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 750;
}

.mobile-actions {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 246, 234, 0.18);
  border-radius: 8px;
  background: rgba(77, 0, 17, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.mobile-actions a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--cream);
  color: var(--dark-red);
  font-weight: 900;
  text-decoration: none;
}

.mobile-actions a:last-child {
  background: var(--dark-beige);
  color: var(--dark-red);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .site-nav {
    gap: 0.75rem;
    font-size: 0.88rem;
  }

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

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

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

@media (max-width: 860px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .top-strip,
  .header-cta {
    display: none;
  }

  .shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__text strong,
  .brand__text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    justify-items: start;
    gap: 0;
    padding: 0.5rem 12px 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.95rem 0.6rem;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: min(720px, 82svh);
  }

  .hero__content {
    padding-block: 2rem 1rem;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(77, 0, 17, 0.94), rgba(77, 0, 17, 0.64)),
      linear-gradient(180deg, rgba(77, 0, 17, 0.18), rgba(77, 0, 17, 0.78));
  }

  .hero__image img {
    object-position: 54% center;
  }

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

  .hero__stats div + div {
    border-left: 1px solid rgba(255, 246, 234, 0.18);
    border-top: 0;
  }

  .intro-grid,
  .split-grid,
  .equipment-grid,
  .commercial-grid,
  .contact-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-rows: auto;
  }

  .field-copy,
  .photo-tile--large,
  .photo-grid .photo-tile:nth-of-type(2),
  .photo-grid .photo-tile:nth-of-type(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-tile {
    height: 240px;
  }

  .photo-tile--large {
    height: 320px;
  }

  .field-copy {
    min-height: auto;
    overflow: visible;
  }

  .field-copy h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .photo-tile--large {
    grid-row: span 1;
  }

  .commercial-grid figure {
    height: 360px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.45rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.05rem);
    line-height: 1.04;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section,
  .commercial-section,
  .contact-section {
    padding-block: 3.25rem;
  }

  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .header-grid {
    min-height: 64px;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text strong {
    font-size: 0.96rem;
  }

  .brand__text small {
    max-width: 205px;
    font-size: 0.68rem;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    inset-block-start: 64px;
    max-height: calc(100svh - 64px);
    overflow-y: auto;
    padding: 0.4rem 16px 0.85rem;
    box-shadow: 0 18px 36px rgba(77, 0, 17, 0.12);
  }

  .site-nav a {
    min-height: 48px;
    padding: 0.85rem 0.4rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(77, 0, 17, 0.78), rgba(77, 0, 17, 0.92)),
      linear-gradient(90deg, rgba(77, 0, 17, 0.72), rgba(77, 0, 17, 0.35));
  }

  .hero__image img {
    object-position: 58% center;
  }

  .hero__content {
    min-width: 0;
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-block: 3.5rem 2.25rem;
  }

  .hero__content h1,
  .hero__content p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__content::before {
    width: 52px;
    margin-bottom: 0.85rem;
  }

  .hero__content p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__actions {
    gap: 0.65rem;
    margin-top: 0.85rem;
  }

  .field-copy h2 {
    font-size: 1.8rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    min-width: 0;
    margin-bottom: 1rem;
  }

  .hero__stats div {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    min-width: 0;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem 0.85rem;
  }

  .hero__stats div + div {
    border-top: 1px solid rgba(255, 246, 234, 0.18);
    border-left: 0;
  }

  .hero__stats strong {
    font-size: 1rem;
  }

  .hero__stats span {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }

  .service-layout,
  .process-grid,
  .checklist,
  .market-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid span {
    min-height: 78px;
    padding: 0.75rem 0.45rem;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 1px solid var(--line);
  }

  .proof-grid span:nth-child(odd) {
    border-left: 0;
  }

  .proof-grid span:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-left: 0;
  }

  .service-card {
    min-height: auto;
    padding: 1.1rem;
  }

  .service-card:hover {
    transform: none;
  }

  .photo-grid {
    gap: 0.75rem;
  }

  .photo-tile,
  .photo-tile--large,
  .commercial-grid figure {
    height: 230px;
    min-height: 0;
  }

  .field-copy {
    padding: 1.25rem;
  }

  .brand-cloud span {
    min-height: 68px;
    padding: 0.7rem 0.5rem;
    font-size: 0.86rem;
  }

  .process-grid li {
    min-height: 0;
    padding: 1.1rem;
  }

  .process-grid span {
    margin-bottom: 0.85rem;
  }

  .contact-grid {
    gap: 1.75rem;
  }

  .quote-form {
    gap: 0.85rem;
    padding: 1rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    display: grid;
    gap: 0.55rem;
  }

  .mobile-actions {
    display: grid;
    min-width: 0;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .mobile-actions a {
    min-width: 0;
    padding-inline: 0.5rem;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .brand__text small {
    display: none;
  }

  .proof-grid,
  .brand-cloud {
    grid-template-columns: 1fr;
  }

  .proof-grid span,
  .proof-grid span:nth-child(odd),
  .proof-grid span:last-child {
    grid-column: auto;
    border-right: 0;
    border-left: 0;
  }
}
