:root {
  --bg: #f7f3eb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-muted: #eef3ea;
  --ink: #1d241f;
  --ink-soft: #4d5a52;
  --green-900: #183a2a;
  --green-800: #244934;
  --green-700: #315f43;
  --green-500: #5c8a62;
  --green-300: #d3e2cc;
  --stone: #cab08f;
  --stone-soft: #ebe0d0;
  --line: rgba(24, 58, 42, 0.12);
  --line-strong: rgba(24, 58, 42, 0.2);
  --shadow-soft: 0 20px 60px rgba(19, 37, 28, 0.08);
  --shadow-strong: 0 26px 80px rgba(16, 31, 24, 0.14);
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100vw - 2rem));
  --section-space: clamp(5rem, 8vw, 8rem);
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(92, 138, 98, 0.14), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(202, 176, 143, 0.18), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 38%, #f9f5ee 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(315deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%) 0 0 / 24px 24px;
  mix-blend-mode: soft-light;
  opacity: 0.24;
  z-index: -1;
}

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

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

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

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.85rem 1.1rem;
  background: var(--green-900);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}

h1,
h2,
h3,
.brand__text strong {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

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

p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-600, #467356));
  box-shadow: 0 16px 34px rgba(24, 58, 42, 0.2);
}

.button--secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(24, 58, 42, 0.12);
  box-shadow: var(--shadow-soft);
}

.button--light {
  color: var(--green-900);
  background: #f9f5ef;
  box-shadow: 0 16px 34px rgba(10, 20, 14, 0.16);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.utility-bar {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, var(--green-900), #11281d 72%);
  color: #eff6ed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  padding: 0.6rem 0;
}

.utility-bar__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.utility-bar__contact a,
.contact-list a,
.contact-list div {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
}

.utility-bar__contact span,
.contact-list span,
.hero-badge__eyebrow,
.project-card__meta span,
.site-footer__links span,
.about__card span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar__message {
  font-size: 0.92rem;
  color: rgba(239, 246, 237, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 245, 238, 0.72);
  border-bottom: 1px solid transparent;
  z-index: -1;
  transition: inherit;
}

.site-header.is-scrolled::before {
  background: rgba(249, 245, 238, 0.9);
  border-bottom-color: rgba(24, 58, 42, 0.12);
  box-shadow: 0 18px 40px rgba(14, 30, 20, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__mark {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(160deg, var(--green-700), var(--green-900));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 28px rgba(24, 58, 42, 0.18);
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 28px;
  height: 8px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.brand__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brand__text {
  display: grid;
  gap: 0.1rem;
}

.brand__text strong {
  font-size: 1.18rem;
}

.brand__text small {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav__link {
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-500), var(--stone));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__cta {
  margin-left: 0.2rem;
}

.menu-toggle,
.nav-backdrop {
  display: none;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(24, 58, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  margin: 0 auto;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: clamp(4rem, 6vw, 6rem);
  padding-bottom: clamp(4.75rem, 9vw, 7.25rem);
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(92, 138, 98, 0.16), transparent 25%),
    radial-gradient(circle at 82% 18%, rgba(202, 176, 143, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 45%);
  z-index: -1;
}

.hero__grid,
.about__grid,
.contact__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hero__content {
  display: grid;
  gap: 1.35rem;
}

.hero__content h1 {
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  max-width: 10ch;
}

.hero__lead {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.hero__media {
  position: relative;
}

.hero-showcase {
  position: relative;
  border-radius: clamp(24px, 4vw, 42px);
  overflow: visible;
  isolation: isolate;
  box-shadow: var(--shadow-strong);
  transform:
    translate3d(0, var(--parallax-y, 0px), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 8% -6% -10% 12%;
  background: radial-gradient(circle, rgba(92, 138, 98, 0.22), transparent 65%);
  z-index: -1;
  filter: blur(16px);
}

.hero-showcase img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-badge {
  position: absolute;
  max-width: min(280px, 70%);
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(15, 30, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 34px rgba(5, 10, 7, 0.18);
  color: #f5fbf3;
}

.hero-badge strong {
  display: block;
  margin-top: 0.45rem;
  line-height: 1.35;
}

.hero-badge--top {
  top: 1.25rem;
  right: -1rem;
}

.hero-badge--bottom {
  left: -1rem;
  bottom: 1.25rem;
}

.service-area {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.service-area__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem 2rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: min(34px, 5vw);
  background:
    radial-gradient(circle at top right, rgba(202, 176, 143, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 237, 0.92));
  border: 1px solid rgba(24, 58, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.service-area__intro {
  display: grid;
  gap: 0.85rem;
}

.service-area__panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: none;
}

.service-area__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area__list li {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 58, 42, 0.1);
  box-shadow: 0 12px 26px rgba(18, 35, 26, 0.06);
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 600;
}

.service-area__note {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: var(--green-700);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading__row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.section-heading__aside {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.section-heading h2,
.about__content h2,
.contact__info h2,
.estimate-cta__panel h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 12ch;
}

.services {
  padding-top: 2rem;
}

.service-grid,
.value-grid {
  display: grid;
  gap: 1.2rem;
}

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

.service-card {
  position: relative;
  display: grid;
  gap: 1.1rem;
  min-height: 250px;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 241, 0.9)),
    var(--surface-strong);
  border: 1px solid rgba(24, 58, 42, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 62px rgba(18, 35, 26, 0.12);
  border-color: rgba(24, 58, 42, 0.16);
}

.service-card__icon {
  width: 66px;
  height: 66px;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(92, 138, 98, 0.16), rgba(202, 176, 143, 0.22));
  color: var(--green-900);
}

.service-card__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__index,
.value-card span {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card h3,
.value-card h3,
.project-card__meta strong,
.testimonial-card footer strong,
.contact__form-card h3,
.site-footer h3 {
  font-size: 1.42rem;
  line-height: 1.08;
}

.about__grid,
.contact__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.about__content {
  display: grid;
  gap: 1.15rem;
}

.about__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.8rem;
}

.about__points div {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 58, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.about__points strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--green-900);
}

.about__media {
  position: relative;
  display: grid;
  gap: 1rem;
}

.about__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(24, 58, 42, 0.08);
}

.about__figure img {
  min-height: 560px;
  object-fit: cover;
}

.about__card {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(340px, calc(100% - 2.4rem));
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(248, 244, 237, 0.92);
  border: 1px solid rgba(24, 58, 42, 0.1);
  box-shadow: 0 18px 38px rgba(12, 20, 15, 0.16);
}

.about__card strong {
  display: block;
  margin: 0.45rem 0 0.55rem;
  font-size: 1.4rem;
  line-height: 1.12;
}

.value-props {
  padding-top: 0;
}

.value-props__panel {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: min(42px, 6vw);
  background:
    radial-gradient(circle at top right, rgba(202, 176, 143, 0.18), transparent 26%),
    linear-gradient(180deg, #173525, #10281c 80%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.section-heading--light .eyebrow,
.section-heading--light h2,
.section-heading--light p,
.value-card {
  color: #edf6ec;
}

.section-heading--light p {
  color: rgba(237, 246, 236, 0.78);
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.value-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.value-card h3 {
  margin: 1rem 0 0.65rem;
}

.value-card p {
  color: rgba(237, 246, 236, 0.78);
}

.projects {
  z-index: 1;
  overflow: hidden;
}

.project-carousel {
  position: relative;
}

.carousel-controls,
.testimonial-controls {
  display: inline-flex;
  gap: 0.7rem;
  justify-self: start;
}

.carousel-controls button,
.testimonial-controls button {
  min-width: 72px;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 58, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--green-900);
}

.project-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.2rem 0 0.7rem;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0.1rem;
  -webkit-overflow-scrolling: touch;
}

.project-track::-webkit-scrollbar {
  height: 8px;
}

.project-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(24, 58, 42, 0.18);
}

.project-card {
  position: relative;
  flex: 0 0 clamp(300px, 35vw, 390px);
  min-height: 458px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 58, 42, 0.1);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 247, 241, 0.94)),
    var(--surface-strong);
  scroll-snap-align: start;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(18, 35, 26, 0.12);
  border-color: rgba(24, 58, 42, 0.16);
}

.project-card__trigger {
  position: relative;
  display: grid;
  grid-template-rows: minmax(290px, 1fr) auto;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease, filter 380ms ease;
}

.project-card__meta {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 238, 0.94));
  color: var(--ink);
}

.project-card__meta strong {
  color: var(--green-900);
}

.project-card__meta span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.project-card__trigger:focus-visible {
  outline: 3px solid rgba(92, 138, 98, 0.32);
  outline-offset: -3px;
}

.testimonials {
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  padding: 1.6rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 58, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 58, 42, 0.08);
}

.testimonial-card footer span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.estimate-cta {
  padding-top: 0;
}

.estimate-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: min(38px, 5vw);
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(202, 176, 143, 0.22), transparent 28%),
    linear-gradient(135deg, #214230, #10291d 72%);
  box-shadow: var(--shadow-strong);
}

.estimate-cta__panel .eyebrow,
.estimate-cta__panel h2,
.estimate-cta__panel p {
  color: #fff;
}

.estimate-cta__panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 58ch;
}

.estimate-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact__info,
.contact__form-card {
  display: grid;
  gap: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.contact-list a,
.contact-list div {
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 58, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-list strong {
  color: var(--green-900);
}

.contact__form-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 249, 243, 0.92));
  border: 1px solid rgba(24, 58, 42, 0.08);
  box-shadow: var(--shadow-strong);
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.estimate-form label {
  display: grid;
  gap: 0.45rem;
}

.estimate-form__full,
.estimate-form__honeypot,
.estimate-form .button,
.estimate-form__status {
  grid-column: 1 / -1;
}

.estimate-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.estimate-form span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-900);
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(24, 58, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.estimate-form textarea {
  min-height: 152px;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: none;
  border-color: rgba(49, 95, 67, 0.55);
  box-shadow: 0 0 0 4px rgba(92, 138, 98, 0.12);
}

.estimate-form__status {
  min-height: 1.5rem;
  font-size: 0.94rem;
}

.estimate-form__status code {
  font-size: 0.86rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.6rem 0 1.5rem;
  background: #102519;
  color: #ebf4e8;
}

.site-footer__grid,
.site-footer__bottom {
  display: grid;
  gap: 1.5rem;
}

.site-footer__grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.55fr));
  align-items: start;
}

.brand--footer .brand__text small,
.site-footer__tagline,
.site-footer__links a,
.site-footer__links li {
  color: rgba(235, 244, 232, 0.74);
}

.site-footer__tagline {
  margin-top: 1rem;
  max-width: 42ch;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.18rem;
  color: #fff;
}

.site-footer__links {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  color: rgba(235, 244, 232, 0.6);
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 52px;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  box-shadow: 0 18px 36px rgba(16, 31, 24, 0.24);
  z-index: 45;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 60;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 18, 13, 0.72);
}

.lightbox__dialog {
  position: relative;
  width: min(980px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 28px;
  background: rgba(247, 243, 235, 0.96);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 58, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.lightbox__figure {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.lightbox__figure img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  border-radius: 22px;
}

.lightbox__figure h3 {
  margin-bottom: 0.4rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .service-area__panel,
  .about__grid,
  .contact__grid,
  .section-heading__row,
  .estimate-cta__panel,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__content h1,
  .section-heading h2,
  .about__content h2,
  .contact__info h2,
  .estimate-cta__panel h2 {
    max-width: none;
  }

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

  .project-card {
    flex-basis: clamp(280px, 42vw, 360px);
  }
}

@media (max-width: 860px) {
  .utility-bar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .value-grid,
  .about__points,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    min-width: min(86vw, 360px);
    scroll-snap-align: start;
  }

  .testimonial-track::-webkit-scrollbar {
    height: 8px;
  }

  .testimonial-track::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(24, 58, 42, 0.18);
  }

  .project-card {
    flex-basis: min(82vw, 360px);
    min-height: 430px;
  }

  .service-area__list {
    justify-content: flex-start;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 0.6rem);
    right: 1rem;
    width: min(360px, calc(100vw - 2rem));
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(248, 244, 237, 0.96);
    border: 1px solid rgba(24, 58, 42, 0.12);
    box-shadow: var(--shadow-strong);
    display: grid;
    gap: 0.75rem;
    transform: translateY(-1rem) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav__link {
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  .site-nav__cta {
    margin-top: 0.2rem;
  }

  .menu-toggle,
  .nav-backdrop {
    display: block;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(12, 20, 15, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 861px) {
  .testimonials .section-heading__row {
    grid-template-columns: 1fr;
  }

  .testimonial-controls {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 80px;
  }

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

  .hero-showcase img,
  .about__figure img {
    min-height: 420px;
  }

  .hero-badge {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 1rem;
  }

  .hero-badge--top,
  .hero-badge--bottom {
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
  }

  .service-area__panel {
    padding: 1.35rem;
  }

  .project-card {
    flex-basis: min(86vw, 320px);
    min-height: 396px;
  }

  .testimonial-controls {
    justify-self: start;
  }

  .floating-call {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 1.2rem, 100%);
  }

  .utility-bar__contact {
    gap: 0.8rem;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text small,
  .utility-bar__message {
    font-size: 0.8rem;
  }

  .hero__actions,
  .estimate-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .lightbox__dialog {
    width: calc(100vw - 1rem);
    padding: 0.85rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
