:root {
  --ink: #17211c;
  --muted: #5f685e;
  --forest: #234233;
  --leaf: #6e8e4f;
  --moss: #d9e0bd;
  --stone: #ede9df;
  --clay: #b86741;
  --white: #fffdf8;
  --line: rgba(23, 33, 28, 0.14);
  --shadow: 0 20px 60px rgba(26, 37, 30, 0.16);
}

* {
  box-sizing: border-box;
}

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 28px rgba(23, 33, 28, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 18px;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand-logo {
  position: relative;
  display: block;
  width: clamp(142px, 16vw, 196px);
  height: 42px;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.site-nav {
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 2px;
  padding: 0 7px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--forest);
  background: var(--moss);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 18, 13, 0.78), rgba(9, 18, 13, 0.46) 42%, rgba(9, 18, 13, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92vh;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 116px 0 44px;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--moss);
}

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

h1 {
  max-width: 810px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--forest);
}

.hero .button.primary {
  color: var(--forest);
  background: var(--moss);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.55);
  background: rgba(255, 253, 248, 0.08);
}

.button.secondary.dark {
  color: var(--forest);
  border-color: rgba(35, 66, 51, 0.28);
  background: rgba(255, 253, 248, 0.5);
}

.hero-stats {
  display: grid;
  max-width: 860px;
  margin: 56px 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.32);
}

.hero-stats div {
  padding: 18px 26px 0 0;
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.74);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fbfaf4;
}

.trust-strip .section-inner {
  padding: 28px 0;
}

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

.trust-grid p {
  margin: 0;
  padding-right: 16px;
}

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

.trust-grid strong {
  margin-bottom: 5px;
  color: var(--forest);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.split,
.quote-grid,
.contact,
.about-grid,
.prep-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.intro p:last-child,
.contact-copy > p,
.about-copy p,
.section-heading p,
.service-card p,
.package-card p,
.rebate-note,
.process-list p {
  color: var(--muted);
}

.about .section-inner {
  padding-top: 84px;
}

.about-copy {
  display: grid;
  gap: 16px;
  font-size: 1.05rem;
}

.about-copy p {
  margin: 0;
}

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

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

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

.service-card {
  display: flex;
  min-height: 390px;
  padding: 0 22px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf4;
  flex-direction: column;
}

.service-card-image {
  width: calc(100% + 44px);
  height: 150px;
  margin: 0 -22px 18px;
  object-fit: cover;
}

.service-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--leaf);
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card-actions {
  display: flex;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 20px;
  flex-wrap: wrap;
}

.service-link,
.service-gallery-link {
  display: inline-flex;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.service-gallery-link {
  color: var(--clay);
}

.packages .section-inner {
  padding: 88px 0;
}

.package-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
}

.package-card {
  display: flex;
  min-height: 470px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf4;
  flex-direction: column;
}

.package-card.featured {
  color: var(--white);
  background: var(--forest);
}

.package-card.featured p,
.package-card.featured li,
.package-card.featured .package-kicker {
  color: rgba(255, 253, 248, 0.78);
}

.package-card.featured .button.primary {
  color: var(--forest);
  background: var(--moss);
}

.package-kicker {
  margin-bottom: 20px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.05;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.package-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.package-card .button {
  margin-top: auto;
}

.rebate-note {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: 0.94rem;
}

.estimate-prep {
  color: var(--white);
  background: var(--forest);
}

.estimate-prep .section-inner {
  padding: 74px 0;
}

.estimate-prep .eyebrow {
  color: var(--moss);
}

.estimate-prep h2 {
  margin-bottom: 0;
}

.prep-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.prep-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.prep-list strong,
.prep-list span {
  display: block;
}

.prep-list strong {
  margin-bottom: 6px;
}

.prep-list span {
  color: rgba(255, 253, 248, 0.72);
}

.work {
  background: #1f2f26;
  color: var(--white);
}

.work .section-heading p,
.work .text-link {
  color: rgba(255, 253, 248, 0.72);
}

.gallery-actions {
  display: flex;
  gap: 12px 20px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.gallery-actions .text-link:first-child {
  border-color: var(--moss);
  color: var(--ink);
  background: var(--moss);
}

.gallery-actions .text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-gallery-toggle {
  display: none;
}

.work-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.work-nav {
  display: flex;
  gap: 10px;
  margin: -14px 0 26px;
  flex-wrap: wrap;
}

.work-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.84);
  background: rgba(255, 253, 248, 0.08);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.work-nav a:hover,
.work-nav a:focus-visible {
  color: var(--ink);
  background: var(--moss);
  transform: translateY(-1px);
}

.work-summary p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.work-summary strong,
.work-summary span {
  display: block;
}

.work-summary strong {
  margin-bottom: 4px;
}

.work-summary span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.92rem;
}

.work-category {
  margin-top: 72px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading.compact h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.text-link {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  scroll-margin-top: 96px;
}

.gallery.is-collapsed .gallery-item:nth-child(n+5) {
  display: none;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #26382e;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 350ms ease;
}

.rock-gallery .gallery-item img {
  object-position: center 62%;
}

.paver-gallery .gallery-item img {
  object-position: center 58%;
}

.palms-gallery .gallery-item img {
  object-position: center 45%;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(23, 33, 28, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.work .gallery-toggle {
  border-color: rgba(255, 253, 248, 0.34);
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
}

.work .gallery-toggle:hover,
.work .gallery-toggle:focus-visible {
  color: var(--ink);
  background: var(--moss);
}

.gallery-toggle:hover,
.gallery-toggle:focus-visible {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-1px);
}

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

.process-list article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-weight: 800;
}

.quote-band {
  background: var(--moss);
}

.quote-band .section-inner {
  padding: 74px 0;
}

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

.proof-grid p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(35, 66, 51, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.42);
  font-weight: 800;
}

.service-area .section-inner {
  padding-top: 82px;
}

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

.area-grid p {
  margin: 0;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf4;
  text-align: center;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 7vw, 84px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf4;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--forest);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
}

.contact-details p {
  margin: 0;
}

.contact-details strong,
.contact-method {
  color: var(--forest);
  font-weight: 800;
}

.contact-method {
  display: flex;
  width: fit-content;
  gap: 6px;
  align-items: baseline;
  border-radius: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  color: var(--rust);
  background: rgba(183, 96, 56, 0.08);
  transform: translateX(3px);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf4;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.photo-upload-group {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(229, 234, 210, 0.34);
}

.photo-upload-group legend {
  padding: 0 8px;
  color: var(--forest);
  font-weight: 800;
}

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

.photo-upload-group input[type="file"] {
  min-height: 48px;
  padding: 11px;
  background: var(--white);
}

.photo-upload-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 28, 0.18);
  border-radius: 4px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
}

.thank-you-panel {
  max-width: 820px;
  padding-top: 48px;
  padding-bottom: 56px;
}

.thank-you-panel h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.92;
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.thank-you-nav {
  display: flex;
}

.estimate-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.estimate-checklist p {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(35, 66, 51, 0.14);
  border-radius: 8px;
  background: rgba(217, 224, 189, 0.24);
}

.estimate-checklist strong,
.estimate-checklist span {
  display: block;
}

.estimate-checklist strong {
  margin-bottom: 5px;
  color: var(--forest);
}

.estimate-checklist span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 253, 248, 0.76);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 800;
}

.mobile-contact-actions {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 30;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.mobile-cta,
.mobile-call-cta {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--forest);
  background: var(--moss);
  box-shadow: 0 16px 40px rgba(23, 33, 28, 0.26);
  font-weight: 800;
}

.mobile-call-cta {
  min-width: 86px;
  color: var(--moss);
  background: var(--forest);
}

@media (max-width: 900px) {
  .header-actions {
    gap: 10px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(9, 18, 13, 0.42), rgba(9, 18, 13, 0.82));
  }

  .hero > img {
    object-position: 58% center;
  }

  .hero-stats,
  .split,
  .quote-grid,
  .contact,
  .about-grid,
  .prep-grid,
  .trust-grid,
  .package-grid,
  .faq-grid,
  .work-summary,
  .estimate-checklist,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

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

  .package-card {
    min-height: auto;
  }

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

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

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

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

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

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    background: #fbfaf4;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 132px;
    height: 34px;
  }

  .language-switch button {
    min-width: 30px;
    padding-inline: 5px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 64px;
    right: 12px;
    left: 12px;
    gap: 5px;
    padding: 10px;
  }

  .site-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    background: #fbfaf4;
  }

  .hero {
    min-height: min(700px, 100svh);
  }

  .hero-content {
    min-height: min(700px, 100svh);
    width: min(1120px, calc(100% - 28px));
    padding: 104px 0 30px;
  }

  .hero > img {
    object-position: 60% center;
  }

  .hero-stats {
    display: none;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .section-inner {
    width: min(1120px, calc(100% - 28px));
    padding: 54px 0;
  }

  .intro .section-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .trust-strip .section-inner {
    padding: 18px 0;
  }

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

  .trust-grid p {
    min-height: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .trust-grid strong {
    margin-bottom: 4px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .trust-grid span {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .about-copy {
    gap: 12px;
    font-size: 1rem;
  }

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

  .section-heading.row {
    gap: 16px;
  }

  .text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  #services {
    padding-top: 48px;
    padding-bottom: 44px;
    overflow: hidden;
  }

  #services .section-heading {
    margin-bottom: 22px;
  }

  #services .section-heading h2 {
    font-size: 2.1rem;
  }

  .service-grid {
    display: flex;
    width: calc(100vw - 18px);
    margin-right: calc(50% - 50vw);
    padding-right: 18px;
    gap: 12px;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: min(78vw, 304px);
    min-height: 342px;
    padding: 0 18px 18px;
    scroll-snap-align: start;
  }

  .service-card-image {
    width: calc(100% + 36px);
    height: 126px;
    margin: 0 -18px 14px;
  }

  .service-card span {
    margin-bottom: 10px;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
  }

  .service-card > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
            line-clamp: 3;
  }

  .service-card-actions {
    gap: 8px 14px;
    padding-top: 14px;
    font-size: 0.9rem;
  }

  .service-link {
    line-height: 1.25;
  }

  .packages .section-inner,
  .estimate-prep .section-inner,
  .quote-band .section-inner {
    padding: 50px 0;
  }

  .package-grid {
    gap: 10px;
  }

  .package-card {
    padding: 20px;
  }

  .package-kicker {
    margin-bottom: 12px;
  }

  .package-card ul {
    gap: 8px;
    margin: 16px 0 22px;
  }

  .package-card .button {
    width: 100%;
  }

  .rebate-note {
    font-size: 0.88rem;
  }

  .prep-list p,
  .proof-grid p,
  .estimate-checklist p {
    padding: 14px;
  }

  .process-list {
    gap: 12px;
  }

  .process-list article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfaf4;
  }

  .process-list span {
    margin-bottom: 14px;
  }

  .service-area.section-inner {
    padding-top: 54px;
  }

  .area-grid {
    gap: 8px;
  }

  .area-grid p {
    padding: 12px 8px;
    font-size: 0.9rem;
  }

  summary {
    padding: 16px;
  }

  details p {
    padding: 0 16px 16px;
  }

  .contact.section-inner {
    padding-top: 54px;
  }

  .contact-details {
    gap: 10px;
    margin-top: 20px;
  }

  .contact-details p,
  .contact-method {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfaf4;
  }

  .gallery,
  .proof-grid,
  .area-grid,
  .quote-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    box-shadow: 0 16px 44px rgba(26, 37, 30, 0.13);
  }

  .quote-form label {
    gap: 6px;
  }

  .photo-upload-group {
    padding: 14px;
  }

  .photo-upload-fields {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    padding: 12px;
    font-size: 1rem;
  }

  textarea {
    min-height: 132px;
  }

  .estimate-checklist {
    gap: 8px;
  }

  .estimate-checklist span {
    font-size: 0.86rem;
  }

  .form-status {
    font-size: 0.88rem;
  }

  body {
    padding-bottom: 76px;
  }

  .mobile-contact-actions {
    display: grid;
    right: 14px;
    bottom: 12px;
    left: 14px;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta,
  .mobile-call-cta {
    min-height: 54px;
    border-radius: 8px;
  }

  .mobile-contact-actions.is-hidden {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
  }

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

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

  .work .section-inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .work .section-heading {
    margin-bottom: 20px;
  }

  .work .section-heading h2 {
    font-size: 2.2rem;
  }

  .work-nav {
    margin: 0 0 20px;
    gap: 8px;
  }

  .work-nav a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .work-summary {
    display: none;
  }

  .gallery.is-collapsed .gallery-item:nth-child(n+3) {
    display: none;
  }

  .gallery-item {
    min-height: 230px;
  }

  .work-category {
    margin-top: 52px;
  }

  .section-heading.compact h3 {
    font-size: 1.9rem;
  }

  .gallery-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .gallery-actions .text-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .mobile-gallery-toggle {
    display: inline-flex;
  }

  .section-heading.row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }
}
