:root {
  --ink: #111712;
  --charcoal: #263039;
  --charcoal-2: #37424c;
  --green: #8dc63f;
  --green-dark: #4f8e26;
  --green-soft: #e8f4d8;
  --stone: #f6f4ef;
  --stone-2: #e7e1d7;
  --blue: #315f78;
  --brass: #d4b56a;
  --white: #ffffff;
  --muted: #637061;
  --shadow: 0 24px 70px rgba(17, 23, 18, 0.18);
  --line: rgba(17, 23, 18, 0.12);
  --max: none;
  --page-gutter: clamp(18px, 3vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  border: 0;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(17, 23, 18, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--max);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
  border-radius: 4px;
}

.brand img {
  width: 184px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.site-header.is-scrolled .brand img,
.site-header.menu-active .brand img {
  filter: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav > a,
.nav-trigger {
  position: relative;
  padding: 12px 0;
}

.desktop-nav > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 120;
  width: min(1020px, calc(100vw - 48px));
  padding: 18px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(17, 23, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(17, 23, 18, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  text-transform: none;
}

.services-mega {
  grid-template-columns: minmax(220px, 0.78fr) minmax(360px, 1.35fr) minmax(210px, 0.72fr);
}

.gallery-mega {
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-feature {
  padding: 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.mega-feature h2 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.05;
}

.mega-feature p:not(.eyebrow) {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--green);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mega-link-list {
  display: grid;
  gap: 8px;
}

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

.mega-link-list a {
  display: grid;
  gap: 3px;
  min-height: 44px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(17, 23, 18, 0.1);
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.mega-link-list a:hover,
.mega-link-list a:focus-visible {
  border-color: var(--brass);
  box-shadow: 0 12px 28px rgba(17, 23, 18, 0.1);
}

.mega-link-list small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.image-feature-mini {
  overflow: hidden;
  padding: 0;
  background: var(--ink);
}

.image-feature-mini img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-feature-mini div {
  padding: 18px;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(17, 23, 18, 0.22);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.site-header.is-scrolled .nav-call,
.site-header.menu-active .nav-call {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--green);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

.site-header.menu-active .menu-toggle .icon-menu {
  display: none;
}

.site-header.menu-active .menu-toggle .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 16, 11, 0.88), rgba(10, 16, 11, 0.58) 48%, rgba(10, 16, 11, 0.14)),
    linear-gradient(0deg, rgba(10, 16, 11, 0.62), rgba(10, 16, 11, 0) 38%);
}

.hero-inner {
  position: relative;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 82px;
}

.hero-inner > * {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 66px;
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--green);
  color: var(--ink);
}

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.section-inner {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--max);
  margin: 0 auto;
}

.estimate-band {
  position: relative;
  z-index: 2;
  padding: 28px 0 32px;
  background: var(--white);
  box-shadow: 0 -20px 70px rgba(17, 23, 18, 0.14);
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 30px;
  align-items: start;
}

.estimate-intro h2,
.section-heading h2,
.intro-copy h2,
.why-copy h2,
.areas-grid h2,
.final-cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 43px;
  line-height: 1.05;
  font-weight: 950;
}

.estimate-intro p,
.intro-copy p,
.areas-grid p,
.why-copy p {
  color: var(--muted);
  font-size: 18px;
}

.estimate-intro a {
  color: var(--green-dark);
  font-weight: 900;
}

.estimate-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  color: #394236;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 23, 18, 0.16);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.22);
}

.estimate-form .button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.intro-section,
.services-section,
.projects-section,
.testimonials-section,
.areas-section {
  padding: 96px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

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

.image-feature {
  position: relative;
  margin: 0;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-feature figcaption {
  width: calc(100% - 28px);
  margin: -24px auto 0;
  position: relative;
  padding: 13px 16px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.services-section {
  background: var(--ink);
  color: var(--white);
}

.services-section .section-heading h2,
.projects-section .section-heading h2,
.testimonials-section .section-heading h2 {
  color: inherit;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 390px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: #101713;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card.featured {
  border-color: rgba(212, 181, 106, 0.76);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 23, 18, 0.1) 0%, rgba(17, 23, 18, 0.32) 34%, rgba(17, 23, 18, 0.94) 100%),
    radial-gradient(circle at 20% 18%, rgba(212, 181, 106, 0.2), transparent 34%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 52px;
  height: 2px;
  background: var(--brass);
  box-shadow: 0 0 26px rgba(212, 181, 106, 0.46);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease;
}

.service-card div {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.service-card h3 {
  max-width: 15ch;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.12;
  text-wrap: balance;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(212, 181, 106, 0.9);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.08);
}

.service-card:focus-visible {
  outline: 3px solid rgba(212, 181, 106, 0.42);
  outline-offset: 4px;
}

.projects-section {
  background: var(--stone);
}

.project-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.project-heading > div:first-child {
  max-width: 720px;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.project-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  background: var(--charcoal);
  box-shadow: 0 12px 30px rgba(17, 23, 18, 0.1);
}

.project-tile.hidden {
  display: none;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 23, 18, 0.74), rgba(17, 23, 18, 0.08) 58%);
}

.project-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  z-index: 1;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.project-tile:hover img,
.project-tile:focus-visible img {
  transform: scale(1.04);
}

.tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-tall {
  grid-row: span 2;
}

.why-section {
  padding: 96px 0;
  background: var(--charcoal-2);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.why-copy h2,
.final-cta h2 {
  color: var(--white);
}

.why-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-list article {
  min-height: 260px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-list span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.proof-list h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 22px;
}

.proof-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--stone);
  border: 1px solid var(--line);
}

.testimonial blockquote {
  margin-bottom: 20px;
  color: #2d352b;
  font-size: 18px;
  line-height: 1.5;
}

.testimonial figcaption {
  color: var(--green-dark);
  font-weight: 950;
}

.areas-section {
  background: var(--stone);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 56px;
  align-items: start;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
}

.zip-panel {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(17, 23, 18, 0.1);
}

.zip-panel h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

.zip-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zip-panel li {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.zip-panel strong {
  color: var(--ink);
}

.final-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--blue);
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.final-grid h2 {
  margin-bottom: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 40px;
  padding: 56px 0;
}

.site-footer img {
  width: 220px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
}

.site-footer a {
  display: flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 800;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  text-align: center;
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(17, 23, 18, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(980px, 100%);
  margin: 0;
}

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

.lightbox figcaption {
  margin-top: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.subpage-hero > img,
.subpage-hero-shade {
  position: absolute;
  inset: 0;
}

.subpage-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 16, 11, 0.88), rgba(10, 16, 11, 0.5) 52%, rgba(10, 16, 11, 0.16)),
    linear-gradient(0deg, rgba(10, 16, 11, 0.42), rgba(10, 16, 11, 0));
}

.subpage-hero-inner {
  position: relative;
  padding-top: 88px;
}

.subpage-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.generated-section {
  padding: 82px 0;
  background: var(--stone);
}

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

.generated-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.generated-copy {
  max-width: 800px;
}

.generated-copy.narrow {
  max-width: 680px;
}

.generated-copy h2,
.generated-panel h3,
.double-links h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.08;
  font-weight: 950;
}

.generated-copy p {
  color: var(--muted);
  font-size: 18px;
}

.generated-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(17, 23, 18, 0.08);
}

.generated-panel h3 {
  font-size: 26px;
}

.generated-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.generated-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 750;
}

.generated-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.generated-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.generated-panel a {
  color: var(--green-dark);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--white);
  font-size: 32px;
  line-height: 1.1;
}

.contact-panel a {
  color: var(--green);
  font-weight: 900;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.generated-gallery {
  grid-auto-rows: 250px;
}

.gallery-overview {
  grid-auto-rows: 220px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.listing-card,
.mini-link-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 23, 18, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.listing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.listing-card span,
.mini-link-card span {
  display: block;
  padding: 18px 18px 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.listing-card span::after,
.mini-link-card span::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  background: var(--brass);
}

.listing-card p,
.mini-link-card p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--muted);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-link-card {
  min-height: 150px;
}

.page-hub-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.page-hub-grid {
  display: grid;
  gap: 18px;
}

.page-hub-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 18px 42px rgba(17, 23, 18, 0.07);
}

.page-hub-group h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.16;
}

.page-hub-group > p {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--muted);
}

.link-grid {
  display: grid;
  gap: 10px;
}

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

.link-grid a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.link-grid a:hover,
.link-grid a:focus-visible,
.mini-link-card:hover,
.mini-link-card:focus-visible,
.listing-card:hover,
.listing-card:focus-visible {
  border-color: var(--green);
  box-shadow: 0 20px 48px rgba(17, 23, 18, 0.12);
  transform: translateY(-2px);
}

.generated-cta {
  padding: 66px 0;
  color: var(--white);
  background: var(--blue);
}

.generated-cta h2 {
  margin: 0;
  color: var(--white);
}

.double-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

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

.map-embed {
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--stone-2);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.faq-section {
  background: var(--stone);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1060px) {
  .nav-shell {
    gap: 18px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .services-mega {
    grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1.2fr);
  }

  .services-mega .compact-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .testimonial-grid,
  .listing-grid,
  .mini-card-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-list {
    grid-template-columns: 1fr;
  }

  .proof-list article {
    min-height: 0;
  }

  .proof-list span {
    margin-bottom: 18px;
  }
}

@media (max-width: 880px) {
  :root {
    --page-gutter: 14px;
  }

  .nav-shell {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: 0 20px 60px rgba(17, 23, 18, 0.16);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-header.menu-active .mobile-nav {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 950;
    text-transform: uppercase;
  }

  h1 {
    font-size: 50px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-copy {
    font-size: 19px;
  }

  .estimate-grid,
  .intro-grid,
  .why-grid,
  .areas-grid,
  .final-grid,
  .generated-grid,
  .double-links,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .estimate-intro h2,
  .section-heading h2,
  .intro-copy h2,
  .why-copy h2,
  .areas-grid h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .project-heading {
    align-items: start;
    flex-direction: column;
  }

  .project-filters {
    justify-content: flex-start;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .subpage-hero {
    min-height: 470px;
  }

  .link-grid.compact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand,
  .brand img {
    width: 152px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner,
  .section-inner {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .form-row,
  .service-grid,
  .testimonial-grid,
  .listing-grid,
  .mini-card-grid,
  .faq-grid,
  .zip-panel ul {
    grid-template-columns: 1fr;
  }

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

  .intro-section,
  .services-section,
  .projects-section,
  .testimonials-section,
  .areas-section,
  .why-section {
    padding: 70px 0;
  }

  .estimate-intro h2,
  .section-heading h2,
  .intro-copy h2,
  .why-copy h2,
  .areas-grid h2,
  .final-cta h2,
  .generated-copy h2,
  .double-links h2 {
    font-size: 30px;
  }

  .generated-section {
    padding: 64px 0;
  }

  .subpage-hero h1 {
    font-size: 34px;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 300px;
    height: 300px;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .generated-gallery,
  .gallery-overview {
    grid-auto-rows: 250px;
  }

  .tile-large,
  .tile-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .final-actions {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-video {
    display: none;
  }
}
