@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050505;
  --bg-raised: #0c0c0c;
  --surface: #151515;
  --surface-2: #1b1b1b;
  --text: #ffffff;
  --muted: #a0a0a0;
  --muted-strong: #c7c7c7;
  --line: #303030;
  --line-soft: #232323;
  --accent: #f0443b;
  --accent-dark: #c92b25;
  --accent-faint: rgba(240, 68, 59, 0.12);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 12px;
  padding: 10px 16px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #ff8b85;
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 108px;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 4px solid var(--accent);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  order: 1;
  flex: 0 0 auto;
  display: block;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 190px;
  height: 94px;
  object-fit: contain;
}

.header-social {
  order: 3;
  display: flex;
  gap: 8px;
}

.header-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: #f4f4f4;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-social a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--accent-faint);
}

.header-social svg { width: 19px; height: 19px; fill: currentColor; }
.header-social .instagram-icon { fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-social .instagram-icon .fill-dot { fill: currentColor; stroke: none; }
.header-social .google-review-icon { color: #fbbc04; }
.header-social .google-review-icon svg { fill: currentColor; }

.main-nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: #d8d8d8;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover { color: var(--text); }

.main-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}

.main-nav .nav-cta:hover { border-color: var(--accent); }

.header-call {
  order: 4;
  min-width: 116px;
  padding: 13px 20px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.header-call:hover { background: var(--accent-dark); transform: translateY(-2px); }

.menu-button {
  order: 5;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 780px;
  padding-top: 108px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(240, 68, 59, 0.10), transparent 30%),
    var(--bg);
}

.hero-grid {
  width: min(calc(100% - 40px), var(--container));
  min-height: 672px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 56px;
  align-items: center;
  margin-inline: auto;
  padding: 64px 0;
}

.hero-copy,
.hero-inner { min-width: 0; }

.hero-inner { padding: 0; }

.hero-branding {
  display: grid;
  justify-items: center;
  margin-bottom: 32px;
}

.company-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-align: center;
}

.company-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 99px;
  background: var(--accent);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 0;
  padding: 9px 13px;
  border: 1px solid rgba(240, 68, 59, 0.38);
  border-radius: 999px;
  background: var(--accent-faint);
  color: #ffc3bf;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1, h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(4.6rem, 7vw, 7.1rem);
  text-align: center;
}

h1 em { color: var(--accent); font-style: normal; }

.hero-lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg,
.service-cta-card a svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--text); }
.button-primary:hover { background: var(--accent-dark); }
.button-ghost { border-color: #4b4b4b; background: var(--surface); color: var(--text); }
.button-ghost:hover { border-color: var(--accent); }

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

.hero-points li {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: #e7e7e7;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-points li::before {
  content: "✦";
  margin-bottom: auto;
  color: var(--accent);
  font-size: 1.05rem;
}

.hero-points li:nth-child(2)::before { content: "◇"; }
.hero-points li:nth-child(3)::before { content: "⌖"; }

.hero-visual {
  position: relative;
  height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,5,5,0.78));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.8) contrast(1.05);
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  background: rgba(10,10,10,0.86);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
}

.hero-stamp strong { color: var(--accent); }

.trust-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-raised);
}

.trust-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-row p {
  margin: 0;
  padding: 12px 20px;
  border-right: 1px solid var(--line);
  color: #e6e6e6;
  font-size: 0.87rem;
  font-weight: 700;
}

.trust-row p:first-child { padding-left: 0; }
.trust-row p:last-child { border-right: 0; }
.trust-row span { margin-right: 9px; color: var(--accent); font-size: 0.72rem; }

.section {
  padding: 112px 0;
  border-top: 1px solid var(--line-soft);
}

.section-heading { margin-bottom: 52px; }

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.section-heading h2,
.about h2,
.process h2,
.estimate h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.2vw, 5.6rem);
}

.split-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.services { background: var(--bg); }

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #5b5b5b;
  background: #191919;
}

.service-number {
  position: absolute;
  right: 28px;
  top: 28px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(240,68,59,0.5);
  border-radius: 50%;
  background: var(--accent-faint);
  color: var(--accent);
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 11px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.service-card > p:not(.card-label) {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-card {
  grid-column: 1 / -1;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 52px 48px;
  border-color: rgba(240,68,59,0.56);
  background:
    linear-gradient(120deg, rgba(240,68,59,0.11), transparent 48%),
    var(--surface);
}

.featured-card::before {
  content: "MOST REQUESTED";
  position: absolute;
  left: 52px;
  top: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.featured-card .service-icon { margin: 0 0 28px; }
.featured-card h3 { max-width: 700px; font-size: clamp(2.5rem, 4.2vw, 4.6rem); letter-spacing: -0.045em; }
.featured-card > p:not(.card-label) { max-width: 720px; font-size: 1rem; }

.service-cta-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(240,68,59,0.28);
}

.service-cta-card .card-label {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-cta-card h3 { max-width: 360px; font-size: 2rem; }

.service-cta-card a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.work { background: var(--bg-raised); }

.work-category {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.work-category + .work-category { margin-top: 18px; }

.work-category-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.work-category-heading > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240,68,59,0.48);
  border-radius: 14px;
  background: var(--accent-faint);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.work-category-heading h3 {
  margin-bottom: 3px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.work-category-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.work-category-heading strong {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

.work-gallery { display: grid; gap: 12px; }

.work-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #373737;
  border-radius: 19px;
  background: #0b0b0b;
}

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

.work-gallery figure:hover img { transform: scale(1.025); filter: contrast(1.03); }

.work-gallery-single { grid-template-columns: 1fr; }
.work-gallery-single figure { aspect-ratio: 16 / 8.4; }
.work-category:nth-of-type(1) .work-gallery-single img { object-position: center 43%; }

.work-gallery-drywall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 360px;
}

.work-gallery-multi {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 290px;
}

.work-gallery-multi .work-wide { grid-column: span 2; }
.work-gallery-multi figure:nth-child(6) { grid-column: span 2; }

.process { background: var(--bg-raised); }

.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 140px;
}

.kicker.light { color: var(--accent); }
.process-intro h2 { max-width: 540px; margin-bottom: 26px; }
.process-intro > p:not(.kicker) { max-width: 490px; color: var(--muted); }

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

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

.process-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--surface);
}

.process-steps > li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240,68,59,0.5);
  border-radius: 14px;
  background: var(--accent-faint);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-steps h3 { margin-bottom: 6px; font-size: 1.18rem; }
.process-steps p { max-width: 560px; margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 76px;
}

.about-title::after {
  content: "";
  display: block;
  width: 88px;
  height: 6px;
  margin-top: 36px;
  border-radius: 99px;
  background: var(--accent);
}

.about-lede {
  max-width: 720px;
  margin-bottom: 42px;
  color: #e9e9e9;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.quality-grid > div {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.quality-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
}

.quality-grid h3 { margin-bottom: 7px; font-size: 1.08rem; }
.quality-grid p { margin-bottom: 0; color: var(--muted); font-size: 0.87rem; }

.reviews {
  background:
    radial-gradient(circle at 92% 14%, rgba(240,68,59,0.12), transparent 28%),
    var(--bg-raised);
}

.reviews-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: center;
}

.reviews-copy h2 {
  max-width: 510px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.2vw, 5.6rem);
}

.reviews-copy > p:not(.kicker) {
  max-width: 470px;
  margin-bottom: 30px;
  color: var(--muted);
}

.review-button { width: fit-content; }
.review-button svg { fill: currentColor; stroke: none; }

.google-profile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.google-profile-top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
}

.google-g {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #fff;
  color: #4285f4;
  font-size: 1.65rem;
  font-weight: 800;
}

.google-profile-top strong,
.google-profile-top span { display: block; }
.google-profile-top strong { font-size: 1rem; line-height: 1.3; }
.google-profile-top div > span { color: var(--muted); font-size: 0.78rem; }
.google-profile-top .review-stars { color: #fbbc04; font-size: 1rem; letter-spacing: 0.08em; }

.google-profile-card iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
  border-top: 1px solid var(--line);
  filter: grayscale(0.16) contrast(1.02);
}

.google-profile-note {
  margin: 0;
  padding: 15px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.estimate {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 8%, rgba(240,68,59,0.13), transparent 32%),
    var(--bg-raised);
}

.estimate-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.estimate-copy h2 { max-width: 520px; margin-bottom: 25px; }
.estimate-copy > p:not(.kicker) { max-width: 470px; color: var(--muted); }

.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 38px;
}

.contact-list a {
  display: grid;
  width: fit-content;
  text-decoration: none;
}

.contact-list span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong { color: #efefef; font-size: 1rem; }

.estimate-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.estimate-form label { display: grid; gap: 7px; }
.estimate-form label > span { color: #e6e6e6; font-size: 0.78rem; font-weight: 700; }

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #3b3b3b;
  border-radius: 12px;
  background: #0e0e0e;
  color: var(--text);
  font-size: 0.9rem;
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder { color: #727272; opacity: 1; }
.estimate-form select { color-scheme: dark; }
.estimate-form textarea { min-height: 126px; resize: vertical; }

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(240,68,59,0.14);
}

.form-submit { width: 100%; border: 0; }
.form-note { margin: -4px 0 0; color: #777; font-size: 0.78rem; text-align: center; }

.site-footer {
  padding: 60px 0 25px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  padding-bottom: 42px;
}

.brand-footer .brand-logo { width: 230px; height: 115px; }
.footer-main > p { margin: 0; color: #777; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: grid; justify-items: end; gap: 3px; }
.footer-links a { color: #bdbdbd; font-size: 0.82rem; text-decoration: none; }
.footer-social { display: flex; gap: 14px; margin-top: 8px; }
.footer-social a { color: var(--accent); font-weight: 800; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: #666;
  font-size: 0.72rem;
}

.footer-bottom p { margin: 0; }
@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 0.82rem; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 34px; }
  .hero-visual { height: 520px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); padding: 8px 0; }
  .trust-row p:nth-child(2) { border-right: 0; }
  .process-layout,
  .about-grid,
  .estimate-shell,
  .reviews-shell { gap: 48px; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 96px; }
  .container { width: min(calc(100% - 32px), var(--container)); }

  .site-header { height: 92px; }
  .nav-wrap { gap: 10px; }
  .brand-logo { width: 146px; height: 78px; }
  .header-social { gap: 6px; }
  .header-social a { width: 38px; height: 38px; border-radius: 11px; }
  .header-social svg { width: 17px; height: 17px; }
  .header-call { margin-left: auto; min-width: 96px; padding: 12px 14px; font-size: 0.82rem; }
  .menu-button { display: block; flex: 0 0 42px; width: 42px; height: 42px; }

  .main-nav {
    position: fixed;
    inset: 92px 0 auto;
    order: 6;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 13px 16px 21px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(5,5,5,0.98);
    transform: translateY(-135%);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
  .main-nav .nav-cta { margin-top: 11px; border-bottom: 1px solid var(--line); text-align: center; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 0; padding-top: 92px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; min-height: 0; padding: 58px 0 68px; }
  h1 { font-size: clamp(4rem, 13vw, 6.1rem); }
  .hero-lede { font-size: 1.03rem; }
  .hero-visual { height: 430px; }

  .section { padding: 86px 0; }
  .split-heading,
  .process-layout,
  .about-grid,
  .estimate-shell,
  .reviews-shell { grid-template-columns: 1fr; gap: 42px; }
  .split-heading { gap: 22px; }
  .process-intro { position: static; }
  .quality-grid { gap: 12px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > p { display: none; }

}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 88px; }
  .nav-wrap { gap: 6px; }
  .brand-logo { width: 108px; height: 68px; }
  .header-social { gap: 4px; }
  .header-social a { width: 34px; height: 34px; border-radius: 10px; }
  .header-call { min-width: 72px; padding-inline: 8px; font-size: 0.76rem; }
  .menu-button { flex-basis: 38px; width: 38px; height: 38px; padding: 8px; }
  .main-nav { inset-block-start: 88px; }
  .hero { padding-top: 88px; }
  .hero-grid { width: min(calc(100% - 30px), var(--container)); padding: 50px 0 58px; }
  .hero-branding { margin-bottom: 26px; }
  .company-title { font-size: 1.55rem; letter-spacing: 0.1em; }
  .company-title::after { width: 54px; margin-top: 12px; }
  .eyebrow { font-size: 0.67rem; letter-spacing: 0.13em; }
  h1 { margin-bottom: 24px; font-size: clamp(3.6rem, 17.5vw, 5.15rem); line-height: 1; }
  .hero-lede { margin-bottom: 28px; color: #b4b4b4; line-height: 1.72; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { width: 100%; min-height: 58px; padding-inline: 14px; font-size: 0.82rem; }
  .button svg { width: 18px; }
  .hero-points { gap: 9px; margin-top: 30px; }
  .hero-points li { min-height: 120px; padding: 14px 12px; font-size: 0.76rem; }
  .hero-points li::before { font-size: 1rem; }
  .hero-visual { display: block; height: 270px; border-radius: 24px; }
  .hero-stamp { right: 14px; bottom: 14px; left: 14px; gap: 7px; padding: 11px; font-size: 0.58rem; }

  .trust-row { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .trust-row p { min-height: 66px; display: flex; align-items: center; padding: 10px 13px; font-size: 0.76rem; line-height: 1.35; }
  .trust-row p:first-child { padding-left: 13px; }
  .trust-row p:nth-child(odd) { border-right: 1px solid var(--line); }

  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2,
  .about h2,
  .process h2,
  .estimate h2,
  .reviews h2 { font-size: clamp(2.8rem, 13.7vw, 4.2rem); }
  .split-heading > p { font-size: 0.92rem; }

  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card:not(.featured-card):not(.service-cta-card) {
    min-height: 166px;
    display: grid;
    grid-template-columns: 34px 62px minmax(0, 1fr) 16px;
    grid-template-areas:
      "number icon title arrow"
      "number icon desc arrow";
    gap: 6px 12px;
    align-items: center;
    padding: 22px 16px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
  }

  .service-card:not(.featured-card):not(.service-cta-card)::after {
    content: "›";
    grid-area: arrow;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 600;
  }

  .service-card:not(.featured-card):not(.service-cta-card) .service-number {
    position: static;
    grid-area: number;
    align-self: center;
  }

  .service-card:not(.featured-card):not(.service-cta-card) .service-icon {
    grid-area: icon;
    width: 60px;
    height: 60px;
    margin: 0;
  }

  .service-card:not(.featured-card):not(.service-cta-card) h3 {
    grid-area: title;
    align-self: end;
    margin: 0;
    font-size: 1.12rem;
  }

  .service-card:not(.featured-card):not(.service-cta-card) > p {
    grid-area: desc;
    align-self: start;
    font-size: 0.81rem;
    line-height: 1.48;
  }

  .featured-card {
    min-height: 440px;
    padding: 100px 28px 34px;
    border-radius: 28px;
  }

  .featured-card::before { left: 28px; top: 32px; padding: 9px 16px; }
  .featured-card .service-number { top: 34px; right: 28px; }
  .featured-card .service-icon { width: 66px; height: 66px; }
  .featured-card h3 { font-size: 2.8rem; }
  .featured-card > p:not(.card-label) { color: #a9a9a9; font-size: 0.94rem; }

  .service-cta-card { min-height: 270px; padding: 28px; }
  .service-cta-card h3 { font-size: 1.9rem; }

  .work-category { padding: 22px; }
  .work-gallery-multi { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 230px; }
  .work-gallery-multi .work-wide { grid-column: span 2; }
  .work-gallery-multi figure:nth-child(6) { grid-column: span 1; }
  .work-gallery-drywall { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 230px; }
  .work-gallery-drywall figure:first-child { grid-column: span 2; }
  .work-gallery-single figure { aspect-ratio: 4 / 3; }

  .process-steps li { grid-template-columns: 50px 1fr; gap: 15px; padding: 21px 18px; }
  .process-steps > li > span { width: 44px; height: 44px; }
  .process-steps p { font-size: 0.84rem; }

  .quality-grid { grid-template-columns: 1fr; }
  .quality-grid > div { padding: 22px; }

  .google-profile-top {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    padding: 18px;
  }

  .google-g { width: 46px; height: 46px; border-radius: 13px; font-size: 1.4rem; }
  .google-profile-top .review-stars { grid-column: 2; }
  .google-profile-card iframe { height: 300px; }
  .google-profile-note { padding-inline: 18px; }
  .review-button { width: 100%; }

  .estimate-form { padding: 25px 18px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-list strong { overflow-wrap: anywhere; }

  .footer-main { grid-template-columns: 1fr; }
  .brand-footer .brand-logo { width: 220px; height: 110px; }
  .footer-links { justify-items: start; }
  .footer-social { margin-top: 10px; }
  .footer-bottom { display: grid; }
}

@media (max-width: 380px) {
  .brand-logo { width: 96px; }
  .header-social a { width: 31px; height: 31px; }
  .header-call { min-width: 68px; padding-inline: 7px; font-size: 0.72rem; }
  .nav-wrap { gap: 5px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-points li { min-height: 92px; }
}

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