:root {
  --ink: #171714;
  --charcoal: #253036;
  --charcoal-2: #344149;
  --red: #b7181d;
  --red-dark: #8f1115;
  --sun: #f2bd4b;
  --sage: #6f8a68;
  --sky: #dceefd;
  --stone: #efe4d2;
  --stone-2: #fff5e6;
  --mortar: #d8d0c3;
  --paper: #fffaf1;
  --white: #ffffff;
  --muted: #676058;
  --line: rgba(37, 48, 54, 0.14);
  --shadow: 0 24px 70px rgba(35, 28, 20, 0.15);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(0deg, rgba(37, 48, 54, 0.018) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(37, 48, 54, 0.016) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, #fffaf1 0, #fffdf8 36%, #fffaf1 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 540ms ease, transform 540ms ease;
  }

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

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.95);
  border-bottom: 1px solid rgba(37, 48, 54, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 -4px 0 rgba(183, 24, 29, 0.08);
}

.top-ribbon {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ribbon-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ribbon-inner span:first-child {
  color: #ffe3a3;
}

.ribbon-inner span:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 18, 20, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 12px;
  min-width: 230px;
}

.brand-logo {
  width: 62px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-text strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-text span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links a {
  padding: 10px 12px 8px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: transparent;
  border-color: rgba(183, 24, 29, 0.55);
  color: var(--red-dark);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: var(--red-dark);
}

.hero {
  position: relative;
  min-height: clamp(620px, 72svh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 19, 16, 0.86), rgba(18, 19, 16, 0.58) 46%, rgba(18, 19, 16, 0.24)),
    linear-gradient(0deg, rgba(18, 19, 16, 0.2), rgba(255, 199, 83, 0.18));
}

.hero-content {
  padding-block: 78px 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe5a6;
  position: relative;
  padding-left: 54px;
}

.hero .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.15rem;
  font-weight: 700;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
}

h1 em {
  display: block;
  margin-top: 2px;
  color: #ef4a4d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.53em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.72rem;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-note {
  margin: 16px 0 0;
  color: #ffe5a6;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-local {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 720;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(143, 17, 21, 0.28);
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
}

.hero-trades {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 780px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-trades span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(19, 22, 20, 0.3);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
}

.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary.dark:hover,
.button-secondary.dark:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.proof-strip {
  position: relative;
  margin-top: -1px;
  background: #fff7e7;
  color: var(--ink);
  border-block: 1px solid rgba(37, 48, 54, 0.08);
  box-shadow: inset 0 6px 0 rgba(183, 24, 29, 0.05);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(4, 1fr);
}

.proof-intro {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 26px 28px;
  border-left: 1px solid rgba(37, 48, 54, 0.1);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.proof-grid > div {
  min-height: 98px;
  padding: 23px 28px;
  border-left: 1px solid rgba(37, 48, 54, 0.1);
}

.proof-grid > div:last-child {
  border-right: 1px solid rgba(37, 48, 54, 0.1);
}

.proof-value,
.proof-label {
  display: block;
}

.proof-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--red-dark);
}

.proof-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  padding-block: 86px;
}

.intro-section {
  padding-block: 74px 82px;
  background:
    repeating-linear-gradient(90deg, rgba(143, 17, 21, 0.025) 0 1px, transparent 1px 74px),
    linear-gradient(180deg, #fffaf1 0, #fff8ec 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 64px;
  align-items: start;
}

.intro-copy {
  color: #4d4840;
  font-size: 1.06rem;
}

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

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.72fr) minmax(0, 0.86fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 34px;
}

.welcome-photo,
.welcome-panel {
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(32, 25, 17, 0.12);
}

.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-photo-large {
  min-height: 390px;
}

.welcome-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--charcoal);
  color: var(--white);
}

.field-note {
  position: relative;
  border-left: 6px solid var(--red);
}

.field-note h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.panel-label {
  margin-bottom: 18px;
  color: #ffe0a1;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(242, 189, 75, 0.16);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-section {
  background:
    linear-gradient(90deg, rgba(183, 24, 29, 0.05) 0 12px, transparent 12px 100%),
    var(--white);
}

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

.service-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf8;
  box-shadow: 0 14px 30px rgba(24, 27, 30, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  inset-inline: 26px;
  top: 76px;
  height: 1px;
  background: rgba(37, 48, 54, 0.14);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 24, 29, 0.22);
  box-shadow: 0 22px 50px rgba(24, 27, 30, 0.1);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 48px;
  padding: 6px 10px;
  border-radius: 2px;
  background: rgba(183, 24, 29, 0.1);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  border-top: 1px solid rgba(37, 48, 54, 0.16);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(230px, 0.52fr);
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(37, 48, 54, 0.16);
}

.service-row::before {
  content: "";
  position: absolute;
  inset-block: -1px;
  left: 0;
  width: 0;
  background: var(--red);
  transition: width 180ms ease;
}

.service-row:hover::before {
  width: 4px;
}

.service-index {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.service-row h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.56rem;
}

.service-row p {
  max-width: 680px;
  margin-bottom: 0;
  color: #514b44;
}

.service-scope {
  justify-self: end;
  max-width: 280px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.service-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(183, 24, 29, 0.18);
  border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(37, 48, 54, 0.06) 120px 121px),
    #fff3dc;
}

.service-band span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 2px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-section {
  background:
    linear-gradient(180deg, #e7f3fc 0, #fffaf1 100%);
  color: var(--ink);
}

.work-section .section-kicker {
  color: var(--red);
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  max-width: none;
  gap: 42px;
  align-items: end;
}

.work-heading p:last-child {
  margin-bottom: 18px;
  color: #5d6570;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--charcoal-2);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item span {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: block;
  padding: 40px 16px 14px;
  background: linear-gradient(0deg, rgba(7, 8, 9, 0.74), rgba(7, 8, 9, 0));
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.gallery-item:focus-visible {
  outline: 3px solid #f4d6d2;
  outline-offset: 3px;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.areas-section {
  background:
    repeating-linear-gradient(0deg, rgba(37, 48, 54, 0.026) 0 1px, transparent 1px 58px),
    linear-gradient(135deg, #fff7e7 0, #eef6e7 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.areas-grid p {
  max-width: 530px;
  color: #44413b;
}

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

.areas-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 12px;
  border: 1px solid rgba(37, 48, 54, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
  font-weight: 850;
  text-align: center;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(37, 48, 54, 0.95), rgba(23, 23, 20, 0.98)),
    url("assets/work/limestone-exterior.jpg") center / cover;
  color: var(--white);
}

.contact-section .section-kicker {
  color: #efc8c3;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.contact-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.estimate-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  margin-top: 28px;
}

.estimate-steps span {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
}

.estimate-steps strong {
  color: #ffe0a1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.contact-details div {
  display: grid;
  gap: 3px;
}

.contact-details dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 760;
}

.contact-card {
  margin: 0;
}

.contact-card img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #101315;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 850;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 10, 11, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1040px);
  max-height: 86svh;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
}

.lightbox figcaption {
  margin-top: 10px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: 22px;
  top: 20px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .ribbon-inner {
    justify-content: center;
    text-align: center;
  }

  .ribbon-inner span:last-child {
    display: none;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 50px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.6rem;
  }

  h1 em {
    font-size: 0.58em;
  }

  h2 {
    font-size: 2.2rem;
  }

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

  .proof-intro {
    grid-column: span 2;
    min-height: 76px;
  }

  .proof-grid > div:nth-child(odd) {
    border-left: 1px solid rgba(37, 48, 54, 0.1);
  }

  .proof-grid > div {
    min-height: 106px;
  }

  .intro-grid,
  .work-heading,
  .areas-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .welcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .welcome-panel {
    grid-column: span 2;
    min-height: 240px;
  }

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

  .service-row {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
  }

  .service-scope {
    grid-column: 2;
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 235px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
    padding-bottom: 66px;
  }

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

  .site-header {
    position: sticky;
  }

  .top-ribbon {
    display: none;
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: clamp(650px, 76svh, 720px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(19, 22, 20, 0.88), rgba(19, 22, 20, 0.62)),
      linear-gradient(0deg, rgba(21, 21, 18, 0.18), rgba(255, 199, 83, 0.1));
  }

  .hero-content {
    padding-block: 62px 48px;
  }

  h1 {
    max-width: 340px;
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    max-width: 342px;
    font-size: 1rem;
  }

  .hero-note {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .hero-local {
    max-width: 340px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-trades {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border: 0;
  }

  .hero-trades span {
    justify-content: center;
    min-height: 32px;
    min-width: 0;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.64rem;
    line-height: 1;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proof-grid,
  .service-grid,
  .gallery-grid,
  .areas-list {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    grid-column: auto;
  }

  .proof-grid > div,
  .proof-grid > div:last-child {
    border-inline: 1px solid rgba(37, 48, 54, 0.1);
    border-top: 1px solid rgba(37, 48, 54, 0.1);
  }

  .section {
    padding-block: 64px;
  }

  .intro-section {
    padding-block: 54px 62px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .welcome-photo,
  .welcome-photo-large,
  .welcome-panel {
    grid-column: auto;
    min-height: 250px;
  }

  .welcome-panel {
    padding: 24px;
  }

  .service-card {
    min-height: 220px;
  }

  .service-chip {
    margin-bottom: 32px;
  }

  .service-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .service-index {
    font-size: 1.45rem;
  }

  .service-row h3 {
    font-size: 1.32rem;
  }

  .service-scope {
    grid-column: 1 / -1;
    margin-left: 58px;
    font-size: 0.7rem;
  }

  .estimate-steps {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 18px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-close {
    right: 14px;
    top: 14px;
  }

  .mobile-call {
    position: fixed;
    inset-inline: 14px;
    bottom: 12px;
    z-index: 60;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(15, 18, 20, 0.24);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.show-mobile-call .mobile-call {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
