:root {
  --black: #171717;
  --charcoal: #232323;
  --orange: #f2772e;
  --orange-soft: #f5ad5b;
  --orange-dark: #d95c18;
  --cream: #f7f6f3;
  --white: #ffffff;
  --text: #262626;
  --muted: #686868;
  --line: #dedbd5;
  --max: 1210px;
  --shadow: 0 10px 28px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--black);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.utility-bar { display: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #ece9e3;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.nav-wrap {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  flex: 0 0 auto;
  color: var(--black);
  text-decoration: none;
}
.brand {
  display: block;
  flex: 0 0 auto;
  width: 82px;
  aspect-ratio: 945 / 1161;
  overflow: hidden;
  background: #070707;
}
.brand img {
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-22.66%);
}
.header-logo {
  width: 98px;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}
.brand-copy { display: grid; gap: .18rem; line-height: 1.1; }
.brand-copy strong {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.brand-copy small {
  color: var(--orange-dark);
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.3vw, 2.15rem); }
.site-nav a {
  position: relative;
  color: var(--black);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.55rem;
  height: 2px;
  background: var(--black);
  transition: right .2s ease;
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.3rem;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange-soft), var(--orange));
  box-shadow: 0 5px 13px rgba(224,103,32,.27);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta { min-height: 46px; padding-inline: 1.35rem; }
.nav-cta:hover, .button:hover { transform: translateY(-1px); box-shadow: 0 8px 17px rgba(224,103,32,.34); }
.button:active { transform: translateY(0); }
.button.dark { background: var(--black); box-shadow: none; }
.button.secondary { background: transparent; border: 1px solid rgba(255,255,255,.65); box-shadow: none; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #d4d0c9;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  display: grid;
  align-items: center;
  background: var(--black);
  color: var(--white);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,18,18,.99) 0%, rgba(18,18,18,.92) 45%, rgba(18,18,18,.52) 72%, rgba(18,18,18,.72) 100%),
    url("assets/projects/siding-charcoal-front.webp") center 48% / cover no-repeat;
  filter: saturate(.82);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .77fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  padding-block: 3.4rem;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-soft);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.75rem, 5.4vw, 5.3rem);
  line-height: 1.02;
}
h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 4.2vw, 3.9rem);
  line-height: 1.08;
}
h3 { margin: 0 0 .65rem; font-size: 1.28rem; line-height: 1.25; }
.hero-copy { max-width: 690px; margin: 1.35rem 0 0; color: #e0e0e0; font-size: clamp(1.04rem, 1.7vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; margin-top: 1.75rem; color: #f1f1f1; font-weight: 800; }
.hero-meta a { color: var(--orange-soft); text-decoration: none; }

.quote-card,
.contact-form-card {
  padding: 1.55rem;
  border-radius: 20px;
  background: rgba(24,24,24,.96);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  color: var(--white);
}
.quote-card h2, .contact-form-card h2 {
  margin-bottom: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .015em;
}

.estimate-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .85rem; }
.field { display: grid; gap: .3rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: inherit; font-size: .88rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 44px;
  padding: .65rem .75rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: var(--white);
  color: var(--text);
}
.field textarea { min-height: 98px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(242,119,46,.28); border-color: var(--orange); }
.estimate-form > .button { grid-column: 1 / -1; width: 100%; }
.form-note { grid-column: 1 / -1; margin: 0; color: #bcbcbc; font-size: .78rem; line-height: 1.35; }
.form-status { grid-column: 1 / -1; min-height: 1.2rem; margin: 0; color: var(--orange-soft); font-size: .85rem; font-weight: 800; }

.call-strip { background: var(--black); color: var(--white); border-top: 1px solid rgba(255,255,255,.14); }
.call-strip-inner { min-height: 74px; display: flex; align-items: center; justify-content: center; gap: 1rem 2rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; font-weight: 800; text-align: center; }
.call-strip a { min-width: 270px; padding: .55rem 1rem; border-radius: 3px; background: linear-gradient(135deg, var(--orange-soft), var(--orange)); color: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: .95rem; text-decoration: none; text-transform: uppercase; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 88px; padding: 1.1rem; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--line); text-align: center; font-weight: 900; text-transform: uppercase; letter-spacing: .045em; }
.trust-item:last-child { border-right: 0; }

.section { padding-block: clamp(4.5rem, 8vw, 7rem); background: var(--cream); }
.section.white { background: var(--white); }
.section.dark { background: var(--black); color: var(--white); }
.section-head { max-width: 790px; margin-bottom: 3rem; }
.section-head.split { max-width: none; display: grid; grid-template-columns: 1fr .82fr; gap: 4.5rem; align-items: end; }
.section-head p:last-child { margin: 0; color: var(--muted); font-size: 1.07rem; }
.dark .section-head p:last-child { color: #c7c7c7; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.featured-services { grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 300px; overflow: hidden; border: 1px solid #ebe8e2; border-radius: 18px; background: var(--white); box-shadow: 0 9px 25px rgba(0,0,0,.06); }
.service-photo { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #e7e3dc; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:first-child .service-photo img { object-position: center 42%; }
.service-card:nth-child(2) .service-photo img { object-position: center 58%; }
.service-card:hover .service-photo img { transform: scale(1.035); }
.service-card-body { padding: 1.45rem; }
.service-number { display: block; color: var(--orange-dark); font-size: .82rem; font-weight: 900; letter-spacing: .14em; }
.service-icon { width: 48px; height: 48px; margin: 2rem 0 1.25rem; color: var(--orange); }
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; }
.service-card h3 { margin: .5rem 0 .75rem; }
.service-card h3 a,
.detail-row h2 a { color: inherit; text-decoration: none; }
.service-card h3 a:hover,
.detail-row h2 a:hover { color: var(--orange-dark); }
.service-card p { margin: 0; color: var(--muted); }
.card-link,
.inline-link { color: var(--orange-dark); font-weight: 800; }
.card-link { display: inline-flex; margin-top: 1rem; font-size: .82rem; text-decoration: none; text-transform: uppercase; letter-spacing: .045em; }
.card-link::after { content: " →"; margin-left: .35rem; }
.inline-link { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.text-link { display: inline-flex; margin-top: 1.4rem; align-items: center; gap: .55rem; color: var(--black); font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; }
.text-link::after { content: "→"; color: var(--orange); font-size: 1.25em; }
.text-link:hover { color: var(--orange-dark); }

.about-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: center; gap: clamp(2.5rem, 5vw, 4.5rem); }
.about-image-wrap { overflow: hidden; border-radius: 20px; box-shadow: var(--shadow); }
.about-image-wrap img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.about-copy p:not(.eyebrow) { color: #d0d0d0; font-size: 1.07rem; }
.about-copy .button { margin-top: 1rem; }

.review-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-bottom: 2.3rem; }
.review-score { font-family: Georgia, "Times New Roman", serif; font-size: 3.1rem; line-height: 1; }
.review-stars { color: #f2ae16; font-size: 1.3rem; letter-spacing: .08em; }
.review-summary p { margin: 0; color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-card { position: relative; min-height: 285px; padding: 1.8rem; border: 1px solid #e9e6df; border-radius: 16px; background: var(--white); box-shadow: 0 8px 22px rgba(0,0,0,.055); }
.review-card::before { content: "“"; position: absolute; right: 1.3rem; top: 0; color: #f0ece5; font: 900 5.5rem/1 Georgia, serif; }
.review-card .review-stars { position: relative; font-size: 1rem; }
.review-card blockquote { position: relative; margin: 1.8rem 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; line-height: 1.5; font-weight: 700; }
.review-card footer { color: var(--muted); }
.review-card footer strong { display: block; color: var(--text); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.process-step { position: relative; padding: 1.8rem; border-top: 4px solid var(--orange); background: var(--white); box-shadow: 0 7px 20px rgba(0,0,0,.05); }
.process-step span { color: var(--orange-dark); font-weight: 900; letter-spacing: .1em; }
.process-step p { color: var(--muted); }

.cta-band { background: linear-gradient(135deg, var(--orange-soft), var(--orange)); color: var(--black); }
.cta-inner { padding-block: 3.4rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.cta-inner h2 { max-width: 780px; margin: 0; }

.page-hero { position: relative; overflow: hidden; padding-block: 7rem 6rem; background: var(--black); color: var(--white); }
.page-hero::after { content: ""; position: absolute; left: calc((100% - min(calc(100% - 2.5rem), var(--max))) / 2); bottom: 4.4rem; width: 115px; height: 3px; background: var(--orange-soft); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.8rem, 5.7vw, 5rem); }
.page-hero p:last-child { max-width: 720px; margin: 2.7rem 0 0; color: #d0d0d0; font-size: 1.08rem; }

.detail-list { display: grid; gap: 1rem; }
.detail-row { display: grid; grid-template-columns: 70px minmax(220px, .55fr) 1fr; gap: 2rem; padding: 2rem; border: 1px solid #e7e3dc; border-radius: 14px; background: var(--white); box-shadow: 0 6px 18px rgba(0,0,0,.045); }
.detail-row .num { color: var(--orange-dark); font-weight: 900; }
.detail-row h2 { font-size: clamp(1.7rem, 2.7vw, 2.55rem); }
.detail-row p { margin: 0; color: var(--muted); }

.project-list { display: grid; gap: 1.3rem; }
.project-card { display: grid; grid-template-columns: 160px 1fr 250px; min-height: 270px; overflow: hidden; border: 1px solid #e3dfd8; border-radius: 16px; background: var(--white); box-shadow: 0 7px 21px rgba(0,0,0,.055); }
.project-label { display: flex; flex-direction: column; justify-content: space-between; padding: 1.7rem; background: var(--black); color: var(--white); }
.project-label strong { color: var(--orange-soft); font-family: Georgia, "Times New Roman", serif; font-size: 2.15rem; }
.project-body { padding: 2rem; }
.project-body h2 { font-size: clamp(1.8rem, 2.8vw, 2.55rem); }
.project-body p { color: var(--muted); }
.project-scope { margin: 0; padding: 2rem; align-content: center; list-style: none; background: #eeeae3; }
.project-scope li { padding: .5rem 0; border-bottom: 1px solid #d3cec5; font-weight: 700; }
.project-scope li:last-child { border-bottom: 0; }

.gallery-section { background: var(--white); }
.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
  margin-bottom: 2.4rem;
}
.gallery-intro h2 { max-width: 800px; margin-bottom: 0; }
.gallery-intro > p { margin: 0; color: var(--muted); font-size: 1.06rem; }
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.gallery-filter {
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid #d8d4cc;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .025em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.gallery-filter:hover { border-color: var(--orange); }
.gallery-filter.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.gallery-filter:focus-visible,
.gallery-card:focus-visible,
.lightbox-close:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #d9d6cf;
  box-shadow: 0 8px 22px rgba(0,0,0,.1);
  color: var(--white);
  cursor: zoom-in;
  text-align: left;
}
.gallery-card--featured,
.gallery-card--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.84));
  pointer-events: none;
}
.gallery-card:hover img { transform: scale(1.025); filter: saturate(1.06); }
.gallery-tag {
  position: absolute;
  z-index: 2;
  top: .85rem;
  left: .85rem;
  padding: .32rem .65rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.gallery-tag--before { background: rgba(20,20,20,.86); }
.gallery-tag--progress { background: #78654d; }
.gallery-copy {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: .95rem;
  display: grid;
  gap: .08rem;
}
.gallery-copy strong { font-size: 1rem; line-height: 1.25; }
.gallery-copy small { color: #e3e3e3; font-size: .78rem; font-weight: 700; }
.gallery-empty { padding: 3rem; background: var(--cream); color: var(--muted); text-align: center; }
.gallery-lightbox {
  width: min(94vw, 1150px);
  max-width: none;
  max-height: 94vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 12px;
  background: #111;
  color: var(--white);
  box-shadow: 0 26px 80px rgba(0,0,0,.5);
}
.gallery-lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(3px); }
.lightbox-content { display: grid; grid-template-rows: minmax(0, 1fr) auto; max-height: 94vh; }
.lightbox-content img { width: 100%; max-height: calc(94vh - 62px); object-fit: contain; }
.lightbox-content p { margin: 0; padding: 1rem 1.25rem; color: #e6e6e6; font-weight: 700; text-align: center; }
.lightbox-close {
  position: absolute;
  z-index: 3;
  top: -.8rem;
  right: -.8rem;
  width: 44px;
  height: 44px;
  padding: 0 0 .15rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.about-profile { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.about-profile img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 20px; box-shadow: var(--shadow); }
.about-profile p:not(.eyebrow) { color: var(--muted); font-size: 1.07rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-card { padding: 2rem; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: var(--charcoal); }
.value-card span { display: block; margin-bottom: 1.8rem; color: var(--orange-soft); font-weight: 900; }
.value-card p { margin: 0; color: #c7c7c7; }

.contact-grid { display: grid; grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.contact-panel { padding: 2rem 0; background: transparent; color: var(--text); }
.contact-panel h2 { font-size: 2.4rem; }
.contact-panel p { color: var(--muted); }
.contact-list { margin-top: 2.4rem; display: grid; gap: 1.4rem; }
.contact-item { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; color: var(--orange-dark); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.contact-item a, .contact-item strong { display: block; color: var(--text); font-size: 1.05rem; text-decoration: none; }
.contact-item a:hover { color: var(--orange-dark); }
.contact-form-card { color: var(--white); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: .35rem .65rem; margin-bottom: 2rem; color: #bebebe; font-size: .82rem; font-weight: 700; }
.breadcrumbs a { color: var(--orange-soft); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.service-page-hero .hero-actions { margin-top: 2rem; }
.service-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.service-feature > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.07rem; }
.service-feature-image { margin: 0; overflow: hidden; border-radius: 18px; background: #e8e4dc; box-shadow: var(--shadow); }
.service-feature-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-feature-image.portrait img { object-position: center 65%; }
.service-feature-image figcaption { padding: .8rem 1rem; background: var(--black); color: #d8d8d8; font-size: .82rem; }
.scope-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.scope-grid article { padding: 1.6rem; border-top: 4px solid var(--orange); background: var(--white); box-shadow: 0 7px 20px rgba(0,0,0,.05); }
.scope-grid article p { margin: 0; color: var(--muted); }
.service-process { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.service-process > div:last-child > p { margin-top: 0; color: #d0d0d0; font-size: 1.07rem; }
.check-list { margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; list-style: none; }
.check-list li { padding: .9rem 1rem .9rem 2.5rem; position: relative; border: 1px solid rgba(255,255,255,.14); background: var(--charcoal); font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 1rem; color: var(--orange-soft); }
.service-faq { max-width: 900px; }
.service-faq details { border-top: 1px solid var(--line); }
.service-faq details:last-child { border-bottom: 1px solid var(--line); }
.service-faq summary { padding: 1.25rem 2.5rem 1.25rem 0; position: relative; cursor: pointer; font-size: 1.08rem; font-weight: 900; list-style: none; }
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary::after { content: "+"; position: absolute; right: .5rem; color: var(--orange-dark); font-size: 1.4rem; }
.service-faq details[open] summary::after { content: "−"; }
.service-faq details p { margin: 0; padding: 0 2.5rem 1.25rem 0; color: var(--muted); }

.site-footer { padding-block: 4rem 1.5rem; background: #111; color: #c9c9c9; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 3rem; }
.footer-brand { width: 132px; height: auto; margin-bottom: 1rem; }
.footer-heading { margin: 0 0 1rem; color: var(--white); font: 900 .82rem/1.3 Arial, Helvetica, sans-serif; text-transform: uppercase; letter-spacing: .14em; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { color: #c9c9c9; text-decoration: none; }
.footer-links a:hover { color: var(--orange-soft); }
.footer-bottom { margin-top: 3rem; padding-top: 1.1rem; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .84rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 960px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 1.2rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 25px rgba(0,0,0,.16);
  }
  .site-nav.open { display: grid; }
  .site-nav a { min-height: 44px; display: flex; align-items: center; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .home-hero::before { background: linear-gradient(90deg, rgba(18,18,18,.97), rgba(18,18,18,.82)), url("assets/projects/siding-charcoal-front.webp") center 48% / cover no-repeat; }
  .quote-card { max-width: 690px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-services { grid-template-columns: repeat(2, 1fr); }
  .section-head.split, .about-grid, .about-profile, .contact-grid, .gallery-intro, .service-feature, .service-process { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 650px; }
  .review-grid { grid-template-columns: 1fr; }
  .project-card { grid-template-columns: 130px 1fr; }
  .project-scope { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .nav-wrap { min-height: 108px; gap: .75rem; }
  .brand { width: 68px; }
  .header-brand { gap: .7rem; }
  .header-logo { width: 72px; }
  .brand-copy strong { max-width: 145px; font-size: .98rem; line-height: 1.05; }
  .brand-copy small { font-size: .62rem; letter-spacing: .08em; }
  .footer-brand { width: 118px; }
  .hero-grid { padding-block: 3.5rem; gap: 2rem; }
  .home-hero::before { background: linear-gradient(rgba(18,18,18,.94), rgba(18,18,18,.9)), url("assets/projects/siding-charcoal-front.webp") center / cover no-repeat; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; gap: .35rem; }
  .quote-card, .contact-form-card { padding: 1.15rem; border-radius: 14px; }
  .estimate-form { grid-template-columns: 1fr; }
  .field.full, .estimate-form > .button, .form-note, .form-status { grid-column: 1; }
  .call-strip-inner { padding-block: 1rem; display: grid; }
  .call-strip a { min-width: 0; width: 100%; }
  .trust-grid, .services-grid, .process-grid, .values-grid, .footer-grid, .scope-grid, .check-list { grid-template-columns: 1fr; }
  .trust-item { min-height: 68px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-card { min-height: auto; }
  .section-head.split { gap: 1.2rem; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-inner .button { width: 100%; }
  .page-hero { padding-block: 5.5rem 4.6rem; }
  .page-hero::after { left: .75rem; bottom: 3.4rem; }
  .detail-row { grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.4rem; }
  .detail-row p { grid-column: 2; }
  .project-card { grid-template-columns: 1fr; }
  .project-label { min-height: 105px; flex-direction: row; }
  .project-scope { grid-column: auto; }
  .gallery-toolbar { flex-wrap: nowrap; margin-inline: -.75rem; padding-inline: .75rem; overflow-x: auto; scrollbar-width: thin; }
  .gallery-filter { flex: 0 0 auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--featured, .gallery-card--wide { grid-column: auto; aspect-ratio: 4 / 3; }
  .gallery-lightbox { width: calc(100vw - 1rem); }
  .lightbox-close { top: .4rem; right: .4rem; }
  .footer-bottom { display: grid; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
}

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