:root {
  color-scheme: light;
  --ink: #17221b;
  --muted: #536157;
  --surface: #fffefb;
  --paper: #f5f2ea;
  --mist: #edf3ee;
  --moss: #244f36;
  --leaf: #6f8b58;
  --rust: #b0663d;
  --charcoal: #122019;
  --line: rgba(23, 34, 27, 0.11);
  --shadow: 0 18px 48px rgba(23, 34, 27, 0.1);
  --soft-shadow: 0 12px 34px rgba(23, 34, 27, 0.07);
  --max: 1120px;
  --section-y: clamp(48px, 5.8vw, 76px);
  --section-y-tight: clamp(40px, 4.8vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf5 0, #fffefb 420px, #f7faf5 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4.25vw, 3.85rem);
  font-weight: 860;
}

h2 {
  font-size: clamp(1.76rem, 3vw, 2.95rem);
  font-weight: 820;
}

h3 {
  font-size: 1.15rem;
  font-weight: 830;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 3.6vw, 46px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 34px rgba(23, 34, 27, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 15vw, 198px);
  min-width: 142px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.3vw, 30px);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px !important;
  color: #fff;
  background: var(--rust);
  border-radius: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(176, 102, 61, 0.24);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  background: var(--paper);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 3.7vw, 44px);
  align-items: end;
  min-height: clamp(610px, 76vh, 730px);
  padding: clamp(116px, 12vh, 136px) clamp(18px, 3.6vw, 44px) 32px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 24, 20, 0.92), rgba(17, 24, 20, 0.84) 44%, rgba(17, 24, 20, 0.66)),
    url("assets/new-work/img_6437.jpg") center / cover;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
  padding-bottom: clamp(0px, 2vw, 18px);
}

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

.hero .eyebrow {
  color: #e9c1a1;
}

.hero-text {
  max-width: 590px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.66;
}

.hero-cta-note {
  display: grid;
  gap: 4px;
  max-width: 620px;
  margin-top: 16px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(17, 24, 20, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-cta-note strong,
.hero-cta-note span {
  display: block;
}

.hero-cta-note span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 820;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--rust);
  box-shadow: 0 12px 30px rgba(176, 102, 61, 0.2);
}

.button[href^="tel:"] svg {
  transform-origin: 50% 50%;
  animation: phone-ring 1.9s ease-in-out infinite;
}

.button[href^="tel:"] {
  position: relative;
  overflow: hidden;
}

.button[href^="tel:"]::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.92);
  animation: phone-pulse 1.9s ease-out infinite;
  pointer-events: none;
}

.button-light[href^="tel:"]::after {
  border-color: rgba(36, 79, 54, 0.22);
}

.button-primary:hover {
  background: #9f5934;
  box-shadow: 0 16px 38px rgba(176, 102, 61, 0.24);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button:focus-visible,
.inline-cta:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(215, 164, 126, 0.58);
  outline-offset: 3px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.proof-strip span,
.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 850;
}

.proof-strip span {
  gap: 7px;
  color: #dce9d3;
  background: rgba(111, 139, 88, 0.18);
  border: 1px solid rgba(180, 206, 157, 0.16);
  border-radius: 4px;
  cursor: default;
}

.proof-strip span::before {
  width: 6px;
  height: 6px;
  content: "";
  background: #9dbb7c;
  border-radius: 999px;
}

.hero-visual {
  width: 100%;
  min-width: 0;
}

.comparison {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #101612;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 11;
}

.comparison-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
}

.comparison:hover .comparison-img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-after img {
  width: 100%;
  max-width: 100%;
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0);
}

.comparison-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  content: "";
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.image-label {
  position: absolute;
  top: 16px;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  background: rgba(17, 24, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.image-label-before {
  left: 16px;
}

.image-label-after {
  right: 16px;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: var(--moss);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(36, 79, 54, 0.18);
}

.case-card p,
.service-card p,
.route-list p {
  margin: 0;
}

.area-section,
.services-section,
.case-section,
.reviews-section,
.gallery-section,
.process-section {
  padding: var(--section-y) 0;
}

.reviews-section,
.gallery-section {
  padding: var(--section-y-tight) 0;
}

.services-section,
.gallery-section {
  background: #f4f8f3;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-card {
  transform: translate3d(0, 24px, 0) scale(0.985);
}

.reveal-image {
  clip-path: inset(8% 0 0 0);
  transform: translate3d(0, 18px, 0);
  transition: opacity 740ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 740ms cubic-bezier(0.2, 0.8, 0.2, 1), clip-path 740ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
}

.reveal-image img {
  transform: scale(1.035);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 240ms ease;
}

.reveal.is-visible,
.reveal-card.is-visible,
.reveal-image.is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-image.is-visible img {
  transform: scale(1);
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.74;
}

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

.split-heading > div {
  max-width: 760px;
}

.split-heading > p {
  max-width: 360px;
}

.service-card,
.case-card,
.photo-grid figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.service-card,
.route-list li,
.consult-card,
.review-rail,
.photo-grid figure {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.route-list li:hover,
.consult-card:hover,
.photo-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(23, 34, 27, 0.11);
  border-color: rgba(36, 79, 54, 0.22);
}

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

.compact-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 236px;
  padding: 24px;
}

.service-card svg {
  width: 34px;
  height: 34px;
  color: var(--moss);
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.case-section {
  background: var(--surface);
}

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

.case-card {
  display: grid;
  overflow: hidden;
}

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

.large-case {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.large-case img {
  height: 100%;
  aspect-ratio: auto;
}

.case-content {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.case-type {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-content p:not(.case-type) {
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chip-row span {
  color: var(--moss);
  background: var(--mist);
}

.reviews-section {
  color: var(--ink);
  background: #f7f9f4;
}

.area-section {
  background:
    linear-gradient(180deg, #fbfaf6 0%, #f4f1e9 100%);
}

.area-checker-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(24px, 4.2vw, 56px);
  align-items: center;
}

.area-copy {
  display: grid;
  gap: 10px;
}

.area-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.distance-checker {
  display: grid;
  gap: 11px;
  padding: clamp(18px, 3vw, 26px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.distance-checker label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 820;
}

.checker-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.checker-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  color: var(--ink);
  background: #fbfcf9;
  border: 1px solid rgba(23, 34, 27, 0.18);
  border-radius: 6px;
  font: inherit;
  font-weight: 680;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.checker-row input:focus {
  background: #fff;
  border-color: rgba(36, 79, 54, 0.45);
  box-shadow: 0 0 0 4px rgba(36, 79, 54, 0.1);
}

.checker-result {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 16px;
  color: var(--ink);
  background: #f8faf5;
  border: 1px solid rgba(36, 79, 54, 0.14);
  border-radius: 8px;
}

.checker-result strong,
.checker-result span {
  display: block;
}

.checker-result span {
  color: var(--muted);
  line-height: 1.58;
}

.checker-result.is-success {
  background: #edf6ed;
  border-color: rgba(36, 79, 54, 0.24);
}

.checker-result.is-warning {
  background: #fff7ef;
  border-color: rgba(176, 102, 61, 0.24);
}

.checker-result.is-error {
  background: #fff2f0;
  border-color: rgba(176, 61, 61, 0.22);
}

.checker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.checker-result .checker-action {
  width: max-content;
  min-height: 44px;
}

.checker-result .button-secondary {
  color: var(--moss);
  background: #fff;
  border-color: rgba(36, 79, 54, 0.2);
}

.reviews-section .section-kicker {
  color: var(--rust);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(22px, 3.6vw, 48px);
  align-items: center;
}

.reviews-score {
  display: grid;
  gap: 12px;
}

.score-number {
  display: inline-flex;
  align-items: center;
  min-height: 66px;
  padding: 0 16px 4px;
  color: #fff;
  background: var(--rust);
  border-radius: 8px;
  font-size: clamp(2.35rem, 5.8vw, 4.1rem);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(176, 102, 61, 0.2);
}

.trustoo-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
}

.trustoo-badge span:last-child {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.trustoo-badge strong {
  color: var(--ink);
}

.reviews-score p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.reviews-score .inline-cta {
  color: #fff;
  background: var(--moss);
}

.review-rail {
  position: relative;
  height: min(500px, calc(100vh - 150px));
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.review-rail::before,
.review-rail::after {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 58px;
  content: "";
  pointer-events: none;
}

.review-rail::before {
  top: 0;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0));
}

.review-rail::after {
  bottom: 0;
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
}

.review-track {
  display: grid;
  gap: 10px;
  padding: 14px;
  animation: review-marquee 42s linear infinite;
  will-change: transform;
}

.review-card {
  display: grid;
  gap: 9px;
  min-height: 126px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.review-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.stars {
  color: #c98c2d;
  font-size: 0.94rem;
  letter-spacing: 0;
  line-height: 1;
}

.source-card {
  min-height: 112px;
  background: #fff9ed;
}

.official-review {
  background: #fff8ea;
  border-color: rgba(176, 102, 61, 0.35);
}

@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }

  6% {
    transform: rotate(-13deg);
  }

  12% {
    transform: rotate(12deg);
  }

  18% {
    transform: rotate(-10deg);
  }

  24% {
    transform: rotate(8deg);
  }

  30% {
    transform: rotate(0deg);
  }
}

@keyframes phone-pulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  18% {
    opacity: 0.42;
  }

  58%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes review-marquee {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.possibilities-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.photo-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.possibilities-grid figure {
  grid-column: span 2;
  min-height: clamp(205px, 20vw, 280px);
  background: #e8eee6;
}

.possibilities-grid .photo-wide {
  grid-column: span 3;
  grid-row: span 2;
  min-height: clamp(310px, 32vw, 420px);
}

.possibilities-grid img {
  min-height: inherit;
  filter: saturate(0.98) contrast(1.02);
}

.photo-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 32, 25, 0.9), rgba(18, 32, 25, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.photo-grid figcaption strong {
  font-size: 0.93rem;
  font-weight: 900;
}

.photo-grid figcaption span {
  color: rgba(255, 255, 255, 0.82);
}

.compact-photo-grid {
  gap: 10px;
}

.compact-photo-grid figure,
.compact-photo-grid img {
  min-height: clamp(138px, 16vw, 190px);
}

.compact-photo-grid .photo-wide {
  grid-row: span 1;
}

.process-section {
  color: #fff;
  background:
    linear-gradient(180deg, #122019 0%, #17271e 100%);
}

.process-section .section-kicker {
  color: #d7a47e;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4.8vw, 62px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.process-intro p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.7;
}

.route-panel {
  display: grid;
  gap: 14px;
}

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

.route-list li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  min-height: 96px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.route-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #d7a47e;
  background: rgba(215, 164, 126, 0.12);
  border: 1px solid rgba(215, 164, 126, 0.3);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.route-list h3 {
  margin-bottom: 10px;
}

.route-list p,
.consult-card li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.consult-card {
  padding: 18px;
  color: #fff;
  background: rgba(215, 164, 126, 0.12);
  border: 1px solid rgba(215, 164, 126, 0.34);
  border-radius: 8px;
}

.consult-card h3 {
  margin-bottom: 14px;
}

.consult-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.team-section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbf9f1 0%, #eef5ec 100%);
}

.team-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(36, 79, 54, 0.08), transparent 44%),
    radial-gradient(circle at 82% 10%, rgba(215, 164, 126, 0.16), transparent 34%);
}

.team-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.team-media {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.92fr);
  min-height: clamp(380px, 36vw, 500px);
  overflow: hidden;
  background: #dfe8da;
  border: 1px solid rgba(36, 79, 54, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(24, 39, 29, 0.16);
}

.team-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(245, 242, 234, 0) 0%, rgba(245, 242, 234, 0.12) 46%, rgba(36, 79, 54, 0.18) 100%),
    linear-gradient(180deg, transparent 54%, rgba(18, 32, 25, 0.64) 100%);
}

.team-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: #dfe8da;
  transition: transform 700ms ease, filter 700ms ease;
}

.team-photo:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.team-photo-real {
  z-index: 1;
}

.team-photo-real img {
  object-position: 50% 46%;
}

.team-photo-support {
  z-index: 1;
  margin-left: -12%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.team-photo-support img {
  object-position: 54% 52%;
}

.team-media-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  max-width: 430px;
  margin: 0;
  padding: 13px 14px;
  color: #fff;
  background: rgba(18, 32, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  font-weight: 800;
  line-height: 1.42;
}

.team-copy {
  display: grid;
  gap: 13px;
  max-width: 620px;
}

.team-copy h2 {
  color: #17251c;
}

.team-copy p:not(.section-kicker) {
  margin: 0;
  color: #405346;
  font-size: 1rem;
  line-height: 1.66;
}

.team-quote {
  padding: 17px 19px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 79, 54, 0.12);
  border-left: 5px solid #b96f45;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(24, 39, 29, 0.08);
}

.team-quote strong {
  display: block;
  margin-bottom: 8px;
  color: #18271d;
  font-size: 1.08rem;
}

.team-cta-card {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 18px 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 254, 251, 0.98), rgba(239, 246, 236, 0.96));
  border: 1px solid rgba(36, 79, 54, 0.16);
  border-left: 5px solid var(--rust);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(24, 39, 29, 0.1);
}

.team-cta-card h3 {
  color: #17251c;
}

.team-cta-card p {
  color: #34463b;
  font-weight: 650;
}

.team-cta-card .button {
  width: max-content;
  margin-top: 4px;
}

.contact-band {
  padding: clamp(44px, 5.6vw, 68px) 0;
  color: #fff;
  background:
    linear-gradient(rgba(36, 79, 54, 0.92), rgba(36, 79, 54, 0.92)),
    url("assets/new-work/img_6426.jpg") center / cover;
}

.contact-band .section-kicker {
  color: #e6c4a5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.contact-grid p:not(.section-kicker) {
  margin-bottom: 0;
  line-height: 1.68;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #101712;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 112px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

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

  .large-case {
    grid-column: span 3;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 72px;
  }

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

  .main-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .nav-cta {
    margin-top: 6px;
    justify-content: center;
  }

  .process-layout,
  .team-layout,
  .reviews-layout,
  .area-checker-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

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

  .large-case {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .large-case img {
    aspect-ratio: 4 / 3;
  }

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

  .possibilities-grid figure {
    grid-column: span 1;
    min-height: 280px;
  }

  .possibilities-grid .photo-wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .review-rail {
    height: 390px;
    min-height: 340px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .distance-checker {
    max-width: 680px;
  }

  .team-media {
    min-height: 480px;
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 132px;
    min-width: 132px;
    padding: 0;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding: 104px 16px 22px;
  }

  h1 {
    max-width: min(100%, 12ch);
    font-size: clamp(1.92rem, 8.1vw, 2.32rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.58rem, 7.8vw, 2.22rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-cta-note {
    margin-top: 14px;
    padding: 14px;
  }

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

  .proof-strip {
    margin-top: 14px;
  }

  .proof-strip span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
    height: auto;
    min-height: 34px;
    padding: 6px 7px;
    text-align: center;
    font-size: clamp(0.72rem, 3vw, 0.8rem);
    line-height: 1.18;
    white-space: normal;
  }

  .comparison {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .area-section,
  .services-section,
  .case-section,
  .reviews-section,
  .gallery-section,
  .team-section,
  .process-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .split-heading {
    display: grid;
    gap: 12px;
  }

  .split-heading > p {
    max-width: none;
  }

  .service-grid,
  .case-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .area-checker-layout {
    gap: 22px;
  }

  .checker-row {
    grid-template-columns: 1fr;
  }

  .checker-actions,
  .checker-result .checker-action {
    width: 100%;
  }

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

  .large-case {
    grid-column: auto;
  }

  .compact-photo-grid .photo-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .compact-photo-grid figure,
  .compact-photo-grid img {
    min-height: 136px;
  }

  .team-media {
    grid-template-columns: 1fr;
    min-height: auto;
    max-width: none;
  }

  .team-photo {
    min-height: 250px;
  }

  .team-photo-real {
    min-height: 310px;
  }

  .team-photo-support {
    min-height: 280px;
    margin-left: 0;
    mask-image: none;
  }

  .team-media-note {
    position: static;
    max-width: none;
    margin: 0;
    background: rgba(18, 32, 25, 0.88);
  }

  .team-copy {
    gap: 12px;
  }

  .team-copy p:not(.section-kicker) {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .team-quote,
  .team-cta-card {
    padding: 16px;
  }

  .possibilities-grid figure,
  .possibilities-grid .photo-wide {
    grid-column: span 1;
    grid-row: auto;
    min-height: 260px;
  }

  .possibilities-grid figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }

  .team-cta-card .button {
    width: 100%;
  }

  .review-card {
    min-height: 118px;
    padding: 14px;
  }

  .review-card footer {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

  .review-card footer span {
    text-align: left;
  }

  .route-list li {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

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

  .reveal,
  .reveal-card,
  .reveal-image {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }

  .reveal-image img,
  .comparison:hover .comparison-img,
  .photo-grid figure:hover img,
  .button[href^="tel:"] svg,
  .button[href^="tel:"]::after {
    animation: none !important;
    filter: none;
    transform: none;
  }
}
