:root {
  --ink: #13251b;
  --deep: #143626;
  --leaf: #2f6f46;
  --grass: #9ac95b;
  --stone: #d9d3c4;
  --paper: #fbfaf5;
  --cream: #f2eddf;
  --clay: #a75b32;
  --black-mulch: #1b1814;
  --line: rgba(19, 37, 27, 0.14);
  --shadow: 0 24px 70px rgba(18, 40, 27, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  background: white;
  color: var(--deep);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 54px);
  color: white;
  background: rgba(10, 25, 17, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 15px;
  background: var(--deep);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-weight: 900;
  transform: rotate(-4deg);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark::before {
  display: none;
  position: absolute;
  inset: auto -8px -16px 10px;
  height: 28px;
  border-radius: 999px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 8px, rgba(255, 255, 255, 0.02) 8px 16px);
  transform: rotate(-8deg);
}

.brand-mark::after {
  display: none;
  position: absolute;
  right: 6px;
  top: 6px;
  width: 16px;
  height: 25px;
  border-radius: 100% 0 100% 0;
  content: "";
  background: linear-gradient(135deg, #dffb7a, var(--grass));
  box-shadow: -12px 8px 0 rgba(255, 255, 255, 0.12);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 1.12rem;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.94rem;
}

.nav-links a,
.header-call {
  text-decoration: none;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--grass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
  padding: 12px 16px;
  border-radius: 999px;
  background: white;
  color: var(--deep);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.floating-estimate {
  position: fixed;
  z-index: 60;
  right: clamp(16px, 3vw, 38px);
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 208px;
  padding: 13px 18px;
  border-radius: 16px;
  color: #06170e;
  background: linear-gradient(135deg, #dffb7a, var(--grass));
  box-shadow: 0 18px 44px rgba(18, 55, 42, 0.28);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-estimate:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(18, 55, 42, 0.34);
}

.floating-estimate span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-estimate strong {
  font-size: 1.05rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: 100vh;
  padding: 132px clamp(18px, 5vw, 72px) 82px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 20% 18%, rgba(154, 201, 91, 0.24), transparent 24rem),
    linear-gradient(135deg, #07160f 0%, var(--deep) 56%, #2d241c 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(7, 22, 15, 0.84), rgba(7, 22, 15, 0.08)),
    url("la-assets/work/work-09-stone-wall-mulch.jpg?v=photos2") center / cover;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -14vw;
  color: rgba(255, 255, 255, 0.06);
  content: "LA";
  font-size: clamp(14rem, 34vw, 38rem);
  font-weight: 900;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.14);
}

.hero-copy-panel,
.hero-stack {
  position: relative;
  z-index: 1;
}

.hero-copy-panel {
  align-self: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--grass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.showcase h2,
.process h2,
.estimate h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

.hero-copy-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
}

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

.hero-actions {
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 36%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

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

.button:hover::before {
  left: 110%;
}

.button.primary {
  background: linear-gradient(135deg, #dffb7a, var(--grass) 56%, #6aa33e);
  color: #06170e;
  box-shadow: 0 18px 36px rgba(154, 201, 91, 0.24);
}

.button.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.button.full {
  width: 100%;
}

.estimate-note {
  width: fit-content;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stack {
  align-self: center;
  min-height: 610px;
  perspective: 1200px;
}

.photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.84);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}

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

.photo-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(7, 22, 15, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-main {
  inset: 58px 28px 28px 72px;
  transform: rotateY(-8deg) rotateZ(2deg);
}

.hero-small {
  width: 265px;
  height: 205px;
  z-index: 2;
}

.hero-small.top {
  top: 0;
  left: 0;
  transform: rotateZ(-7deg);
}

.hero-small.bottom {
  right: 0;
  bottom: 0;
  transform: rotateZ(7deg);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black-mulch);
  color: white;
}

.trust-bar div {
  padding: 24px clamp(18px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar span,
.trust-bar strong {
  display: block;
}

.trust-bar span {
  color: var(--grass);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
}

.trust-bar strong {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.section,
.showcase,
.reviews {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.split,
.section-heading,
.estimate {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.section h2,
.showcase h2,
.process h2,
.estimate h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
}

.split p,
.muted,
.local-card p,
.estimate-copy p {
  margin: 0;
  color: rgba(19, 37, 27, 0.72);
  font-size: 1.08rem;
}

.split div {
  display: grid;
  gap: 18px;
}

.section-heading {
  margin-bottom: 34px;
  align-items: end;
}

.text-link {
  justify-self: end;
  color: var(--deep);
  font-weight: 900;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
  perspective: 900px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background: var(--deep);
  box-shadow: 0 18px 42px rgba(18, 40, 27, 0.12);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-item:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 28px 68px rgba(18, 40, 27, 0.2);
}

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

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 9px 11px;
  border-radius: 999px;
  color: white;
  background: rgba(7, 22, 15, 0.78);
  font-weight: 900;
}

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

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

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

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-top: clamp(42px, 7vw, 76px);
  padding-top: clamp(32px, 6vw, 58px);
  border-top: 1px solid var(--line);
}

.portfolio-intro h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3.3vw, 3.3rem);
  line-height: 1.04;
}

.portfolio-intro p {
  margin: 0;
  color: rgba(19, 37, 27, 0.7);
  font-size: 1.05rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 36px rgba(18, 40, 27, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18, 40, 27, 0.14);
}

.portfolio-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--deep);
  cursor: pointer;
}

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

.portfolio-card:hover .portfolio-photo img {
  filter: saturate(1.07) contrast(1.03);
  transform: scale(1.045);
}

.portfolio-caption {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.portfolio-caption h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.02rem;
  line-height: 1.16;
}

.portfolio-caption p {
  margin: 0;
  color: rgba(19, 37, 27, 0.66);
  font-size: 0.94rem;
}

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

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

.service-highlights article {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 24px;
  border-radius: 10px;
  color: white;
  background:
    linear-gradient(145deg, rgba(8, 35, 22, 0.96), rgba(25, 78, 46, 0.94)),
    url("la-assets/work/work-04-retaining-wall-front.jpg?v=photos2") center / cover;
  box-shadow: 0 22px 46px rgba(18, 40, 27, 0.2);
}

.service-highlights article::after {
  position: absolute;
  right: -22px;
  bottom: -30px;
  color: rgba(255, 255, 255, 0.08);
  content: attr(data-shape);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.service-highlights span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--grass);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-highlights h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.02;
}

.service-highlights p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.service-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 34px rgba(18, 40, 27, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18, 40, 27, 0.12);
}

.service-grid h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 1.35rem;
  font-weight: 900;
}

.service-grid p {
  margin: 0;
  color: rgba(19, 37, 27, 0.84);
  font-weight: 700;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-tags span,
.quick-service-picker button,
.estimate-proof span {
  border-radius: 999px;
  font-weight: 900;
}

.service-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(19, 37, 27, 0.1);
  background: #f4f7df;
  color: var(--deep);
  box-shadow: 0 8px 18px rgba(18, 40, 27, 0.06);
  font-size: 1rem;
}

.process {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: white;
  background: var(--deep);
}

.reviews {
  background:
    radial-gradient(circle at 12% 10%, rgba(154, 201, 91, 0.18), transparent 20rem),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.review-score {
  justify-self: end;
  display: grid;
  min-width: 190px;
  padding: 18px;
  border-radius: 10px;
  background: var(--deep);
  color: white;
  box-shadow: 10px 10px 0 rgba(154, 201, 91, 0.18);
}

.review-score strong {
  color: var(--grass);
  font-size: 3rem;
  line-height: 1;
}

.review-score span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.featured-review {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(22px, 4vw, 48px);
  margin-bottom: 18px;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 10px;
  color: white;
  background:
    linear-gradient(135deg, rgba(20, 54, 38, 0.95), rgba(10, 25, 17, 0.95)),
    var(--deep);
  box-shadow: var(--shadow);
}

.featured-review h3 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.04;
}

.featured-review p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.stars {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--grass);
  color: #06170e;
  font-weight: 900;
}

.featured-review dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.featured-review dl div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.featured-review dt {
  color: var(--grass);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-review dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

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

.review-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 32px rgba(18, 40, 27, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(18, 40, 27, 0.13);
}

.review-grid span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef7d6;
  color: var(--deep);
  font-weight: 900;
}

.review-grid h3 {
  margin: 14px 0 8px;
}

.review-grid p {
  margin: 0;
  color: rgba(19, 37, 27, 0.74);
  font-weight: 800;
}

.review-grid small {
  display: block;
  margin-top: 14px;
  color: rgba(19, 37, 27, 0.58);
  font-weight: 900;
}

.process-photo {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 18px 18px 0 rgba(154, 201, 91, 0.22);
}

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

.process .section-kicker {
  color: var(--grass);
}

.process-content {
  align-self: center;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.steps article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  grid-row: 1 / span 2;
  color: var(--grass);
  font-size: 1.5rem;
  font-weight: 900;
}

.steps h3,
.steps p {
  margin: 0;
}

.steps p {
  grid-column: 2;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.local {
  background:
    linear-gradient(90deg, rgba(20, 54, 38, 0.94), rgba(20, 54, 38, 0.82)),
    url("la-assets/work/work-04-retaining-wall-front.jpg?v=photos2") center / cover;
  color: white;
}

.local-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.local-card p {
  color: rgba(255, 255, 255, 0.84);
}

.faq {
  background: var(--paper);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: white;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: rgba(19, 37, 27, 0.68);
}

.estimate {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(154, 201, 91, 0.2), transparent 18rem),
    var(--cream);
}

.estimate-copy {
  position: sticky;
  top: 105px;
}

.estimate-copy p {
  margin-top: 18px;
}

address {
  margin-top: 28px;
  font-style: normal;
  font-weight: 800;
}

.estimate-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}

.form-topper {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.form-topper strong {
  color: var(--deep);
  font-size: 1.1rem;
}

.form-topper span {
  color: var(--clay);
  font-weight: 900;
}

.quick-service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: #f8f5e8;
}

.quick-service-picker p {
  width: 100%;
  margin: 0 0 2px;
  color: var(--deep);
  font-weight: 900;
}

.quick-service-picker button {
  border: 0;
  padding: 9px 12px;
  background: white;
  color: var(--deep);
  box-shadow: inset 0 0 0 1px var(--line);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.quick-service-picker button:hover,
.quick-service-picker button.active {
  transform: translateY(-2px);
  background: var(--deep);
  color: white;
}

.form-row {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 900;
}

.field-help {
  color: rgba(19, 37, 27, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(19, 37, 27, 0.2);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(154, 201, 91, 0.28);
  border-color: var(--leaf);
}

.upload-box {
  padding: 16px;
  border: 1px dashed rgba(20, 54, 38, 0.36);
  border-radius: 10px;
  background: #fbfaf5;
}

.upload-box span,
.form-note {
  color: rgba(19, 37, 27, 0.62);
  font-size: 0.92rem;
  font-weight: 400;
}

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

.preview-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
}

.form-note {
  margin: 0;
  text-align: center;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(5, 18, 12, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 76vh;
  border: 10px solid white;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox p {
  max-width: min(900px, 92vw);
  margin: 14px 0 0;
  color: white;
  text-align: center;
  font-weight: 900;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: white;
  color: var(--deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px) 94px;
  color: white;
  background: #07160f;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-actions a {
  color: white;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .section-heading,
  .portfolio-intro,
  .process,
  .local-card,
  .estimate {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    min-height: 560px;
  }

  .text-link {
    justify-self: start;
  }

  .trust-bar,
  .service-highlights,
  .service-grid,
  .faq-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-review {
    grid-template-columns: 1fr;
  }

  .review-score {
    justify-self: start;
  }

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

  .estimate-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: absolute;
    padding: 14px 16px;
  }

  .brand-copy small,
  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .hero-actions .button,
  .estimate-note {
    width: 100%;
  }

  .hero-stack {
    min-height: 520px;
  }

  .hero-main {
    inset: 54px 0 48px 0;
  }

  .hero-small {
    width: 190px;
    height: 150px;
  }

  .trust-bar,
  .photo-wall,
  .service-highlights,
  .service-grid,
  .faq-grid,
  .review-grid,
  .form-row.two,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .process-photo {
    min-height: 380px;
  }

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

  .steps span,
  .steps p {
    grid-column: 1;
  }

  .steps span {
    grid-row: auto;
  }

  .form-topper {
    display: grid;
  }

  .floating-estimate {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    text-align: center;
  }

  .site-footer {
    display: grid;
  }
}
