:root {
  --forest: #355e3b;
  --forest-deep: #1e3a24;
  --forest-soft: #4f7a55;
  --sage: #dcead8;
  --mist: #f5f8f2;
  --ivory: #fffdf9;
  --gold: #cfb777;
  --text: #1d271f;
  --muted: #576459;
  --shadow: 0 24px 70px rgba(25, 38, 27, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 7%, rgba(219, 235, 216, 0.62), transparent 21%),
    radial-gradient(circle at 88% 14%, rgba(195, 226, 196, 0.42), transparent 18%),
    radial-gradient(circle at 14% 42%, rgba(205, 233, 203, 0.36), transparent 18%),
    radial-gradient(circle at 84% 64%, rgba(190, 224, 191, 0.32), transparent 19%),
    radial-gradient(circle at 18% 88%, rgba(201, 230, 198, 0.3), transparent 18%),
    linear-gradient(180deg, #fbfdf9 0%, #f6faf3 42%, #f8fbf6 100%);
  overflow-x: clip;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

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

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(42px);
  opacity: 0.34;
}

.page-glow-left {
  top: -7rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(181, 219, 179, 0.4) 0%, rgba(181, 219, 179, 0) 72%);
}

.page-glow-right {
  top: 28rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(106, 156, 115, 0.16) 0%, rgba(106, 156, 115, 0) 72%);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  padding: 0.9rem 0 0;
  transition: padding 180ms ease;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.2rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    padding 180ms ease,
    border-radius 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header.is-scrolled .section-shell {
  width: min(100vw, 100%);
}

.site-header.is-scrolled .header-bar {
  padding: 0.72rem 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(53, 94, 59, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 30px rgba(20, 34, 23, 0.06);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 19.5rem;
  height: auto;
  filter: brightness(0) saturate(100%) invert(24%) sepia(18%) saturate(989%) hue-rotate(76deg) brightness(92%)
    contrast(88%);
}

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

.nav-socials {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-left: 0.35rem;
  padding-left: 0.35rem;
  line-height: 0;
}

.site-header:not(.is-scrolled) .nav-socials a {
  color: var(--forest-deep);
}

.nav-socials a:hover,
.nav-socials a:focus-visible {
  color: #ffffff;
  background: transparent;
}

.site-header:not(.is-scrolled) .nav-socials a:hover,
.site-header:not(.is-scrolled) .nav-socials a:focus-visible {
  color: var(--forest-deep);
}

.site-nav .nav-socials a,
.site-nav .nav-socials a:hover,
.site-nav .nav-socials a:focus-visible,
.site-nav .nav-socials a.is-active {
  padding: 0;
  background: transparent;
  transform: none;
}

.site-nav a {
  padding: 0.85rem 1rem;
  color: var(--forest-deep);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--forest-deep);
  background: rgba(53, 94, 59, 0.1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem 0.65rem;
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.28rem 0;
  background: #111111;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero,
.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 4.75rem;
  padding-bottom: 5rem;
  align-items: center;
}

.gallery-hero {
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.92fr);
  padding-top: 3.35rem;
  padding-bottom: 3.25rem;
  align-items: center;
}

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

.gallery-hero-copy {
  max-width: 48rem;
  min-height: 30.5rem;
  padding: clamp(0.25rem, 1vw, 0.5rem) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.gallery-hero-copy h1 {
  max-width: 9ch;
}

.gallery-hero-copy .lead {
  max-width: 30rem;
  margin-top: 2.35rem;
}

.gallery-hero-copy .button-gallery {
  margin-top: 0.95rem;
}

.gallery-hero-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.gallery-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--forest-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  max-width: 11ch;
  color: var(--forest-deep);
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  color: var(--forest-deep);
}

h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  color: var(--forest-deep);
}

.lead,
.story-card p,
.service-card p,
.value-copy p,
.value-points p,
.project-card-copy p,
.contact-copy p,
.archive-copy p,
.carousel-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.lead {
  max-width: 42rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.1rem;
}

.button,
.text-link,
.carousel-button,
.filter-chip {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  box-shadow: 0 18px 34px rgba(29, 59, 35, 0.22);
}

.button-secondary {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(53, 94, 59, 0.12);
}

.button-gallery {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-inline: 1.75rem;
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(53, 94, 59, 0.12);
}

.button-gallery::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.button-gallery:hover,
.button-gallery:focus-visible {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.65);
}

.button-gallery:active {
  transform: translateY(0);
}

.button:hover,
.text-link:hover,
.carousel-button:hover,
.filter-chip:hover {
  transform: translateY(-1px);
}

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

.hero-details div {
  padding: 1.15rem 1.1rem;
  background: rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-details strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--forest-deep);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-details span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 1.25rem;
  padding-top: 3rem;
}

.paint-swoosh {
  position: absolute;
  background:
    radial-gradient(circle at 20% 30%, rgba(222, 245, 224, 0.92), transparent 46%),
    radial-gradient(circle at 68% 38%, rgba(155, 198, 160, 0.72), transparent 38%),
    linear-gradient(135deg, rgba(83, 123, 89, 0.28), rgba(201, 232, 197, 0.06));
  border-radius: 59% 41% 58% 42% / 36% 57% 43% 64%;
  filter: blur(0.2px);
}

.paint-swoosh-hero {
  top: -3rem;
  left: -2rem;
  width: 21rem;
  height: 11rem;
  transform: rotate(-7deg);
}

.paint-swoosh-contact {
  inset: auto -7rem -7rem auto;
  width: 22rem;
  height: 14rem;
  opacity: 0.85;
  display: none;
}

.showcase-card,
.story-card,
.service-card,
.project-card,
.contact-card,
.archive-card,
.carousel-slide,
.value-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.showcase-card-main {
  position: relative;
  width: min(100%, 35rem);
  overflow: hidden;
}

.showcase-card-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.story-section,
.reviews-section,
.services-section,
.value-section,
.featured-section,
.archive-section,
.carousel-section,
.contact-section {
  padding-bottom: 5rem;
}

.section-orb-wrap {
  position: relative;
  isolation: isolate;
}

.soft-orb {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(111, 171, 118, 0.26) 0%, rgba(188, 224, 189, 0.34) 40%, rgba(223, 241, 220, 0.12) 72%, rgba(223, 241, 220, 0) 100%);
}

.soft-orb-story {
  width: 21rem;
  height: 21rem;
  top: 2rem;
  right: -6rem;
}

.soft-orb-services {
  width: 14rem;
  height: 14rem;
  top: 13rem;
  left: -4.75rem;
}

.soft-orb-reviews {
  display: none;
}

.soft-orb-featured {
  width: 20rem;
  height: 20rem;
  top: 8rem;
  right: -5rem;
}

.soft-orb-contact {
  width: 11rem;
  height: 11rem;
  right: -5rem;
  bottom: 1.5rem;
  overflow: hidden;
}

.contact-section {
  overflow: visible;
}

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

.story-stack {
  display: grid;
  gap: 0;
  align-content: start;
  justify-items: stretch;
  width: 100%;
}

.story-card {
  padding: 2rem;
}

.story-card-image {
  position: relative;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.story-card-image-secondary {
  width: 100%;
  max-width: none;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 247, 0.88);
}

.story-badge strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--forest-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  position: relative;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  padding-inline: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: reviews-scroll 120s linear infinite;
  background: transparent;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: min(21rem, calc(100vw - 5rem));
  min-height: 20rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(53, 94, 59, 0.06);
  border-radius: var(--radius-md);
  box-shadow: none;
  display: grid;
  align-content: start;
}

.review-card p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}

.review-card strong {
  color: var(--forest-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

@keyframes reviews-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 0.6rem), 0, 0);
  }
}

.service-card {
  position: relative;
  z-index: 1;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: none;
}

.service-card-featured::before {
  content: none;
}

.service-number {
  display: inline-flex;
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(219, 238, 216, 0.9), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 244, 0.88));
}

.value-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.72fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.value-gallery-main,
.value-gallery-side {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.value-gallery-main::after,
.value-gallery-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 17, 12, 0.04), rgba(10, 17, 12, 0.16)),
    linear-gradient(135deg, rgba(220, 236, 218, 0.08), rgba(220, 236, 218, 0));
  pointer-events: none;
}

.value-gallery-main img,
.value-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.value-gallery-main {
  min-height: 31rem;
}

.value-gallery-side-wrap {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.2rem;
  min-height: 31rem;
}

.value-gallery-title {
  align-self: end;
}

.value-gallery-side {
  min-height: 0;
  height: 100%;
  align-self: stretch;
}

.value-copy p:last-child {
  max-width: 40rem;
}

.value-points {
  display: grid;
  gap: 1rem;
}

.value-points article {
  padding: 1.3rem 1.35rem;
  background: linear-gradient(135deg, rgba(30, 58, 36, 0.96), rgba(53, 94, 59, 0.92));
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(22, 38, 26, 0.14);
}

.value-points strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #f6faf5;
  font-size: 1.02rem;
}

.value-points article p {
  color: rgba(246, 250, 245, 0.82);
}

.text-link {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.project-card {
  overflow: hidden;
}

.project-card-large {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.project-card-large img {
  height: 100%;
  min-height: 34rem;
}

.project-card-copy,
.archive-copy,
.carousel-copy {
  padding: 1.5rem;
}

.before-after-section {
  padding-bottom: 5rem;
}

.before-after-intro {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.before-after-card {
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.before-after-card-compact {
  padding: 0.85rem;
}

.before-after {
  --split: 50%;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  aspect-ratio: 16 / 10;
  background: #dde7d9;
  user-select: none;
}

.before-after-compact {
  aspect-ratio: 16 / 11;
}

.before-after-image,
.before-after-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.before-after-image {
  object-fit: cover;
}

.before-after-image-base {
  filter: saturate(0.78) brightness(0.82);
}

.before-after-overlay {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.before-after-overlay .before-after-image {
  filter: saturate(1.02) contrast(1.02);
}

.before-after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 17, 0.06), rgba(15, 26, 17, 0));
  pointer-events: none;
}

.before-after-label {
  position: absolute;
  top: 1.2rem;
  z-index: 2;
  min-width: 6.2rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.before-after-label-before {
  left: 1.2rem;
}

.before-after-label-after {
  right: 1.2rem;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 2;
  width: 0;
  pointer-events: none;
}

.before-after-divider::before,
.before-after-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: calc(50% - 2.4rem);
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(13, 21, 15, 0.18);
}

.before-after-divider::before {
  top: 0;
}

.before-after-divider::after {
  bottom: 0;
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 28px rgba(14, 22, 15, 0.22);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
}

.before-after-handle span {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.before-after-handle span:first-child {
  transform: rotate(-135deg);
}

.before-after-handle span:last-child {
  transform: rotate(45deg);
}

.before-after-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after:focus-within .before-after-handle {
  box-shadow:
    0 18px 34px rgba(14, 22, 15, 0.24),
    0 0 0 8px rgba(255, 255, 255, 0.16);
}

.before-after-compact .before-after-label {
  top: 1rem;
  min-width: 5.25rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
}

.before-after-compact .before-after-label-before {
  left: 1rem;
}

.before-after-compact .before-after-label-after {
  right: 1rem;
}

.before-after-compact .before-after-divider::before,
.before-after-compact .before-after-divider::after {
  height: calc(50% - 1.95rem);
}

.before-after-compact .before-after-handle {
  width: 3.2rem;
  height: 3.2rem;
}

.before-after-compact .before-after-handle span {
  width: 0.68rem;
  height: 0.68rem;
}

.carousel-section {
  overflow: hidden;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78%, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.75rem;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  min-height: 33rem;
  overflow: hidden;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-section .carousel-slide {
  min-height: 33rem;
}

.archive-section .archive-slide[data-category="exterior"] img {
  /* Keep the exterior image fully visible (no crop) while preserving the same slide layout. */
  object-fit: contain;
  background: rgba(248, 251, 247, 0.96);
}

.carousel-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    radial-gradient(circle at top right, rgba(220, 234, 216, 0.9), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 247, 0.96));
}

.carousel-controls {
  display: flex;
  gap: 0.8rem;
}

.carousel-button {
  min-width: 5.75rem;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(53, 94, 59, 0.12);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.carousel-dots button {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(53, 94, 59, 0.18);
}

.carousel-dots button.is-active {
  width: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.filter-chip {
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(53, 94, 59, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
}

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

.archive-card {
  position: relative;
  overflow: hidden;
}

.archive-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.archive-card-tall {
  grid-row: span 2;
}

.archive-card-tall img {
  height: 100%;
  min-height: 40rem;
}

.archive-card-wide {
  grid-column: span 2;
}

.archive-card-wide img {
  height: 24rem;
}

.archive-card.is-hidden {
  display: none;
}

.archive-slide.is-hidden {
  display: none;
}

.archive-copy {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: calc(100% - 2.5rem);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 247, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 30px rgba(20, 34, 23, 0.08);
  backdrop-filter: blur(12px);
}

.archive-copy .eyebrow {
  margin-bottom: 0.45rem;
}

.archive-copy h3 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.02;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.86fr);
  gap: 2rem;
  overflow: hidden;
  padding: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(107, 155, 114, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(32, 55, 36, 0.96), rgba(53, 94, 59, 0.9));
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-copy h2,
.contact-copy p,
.contact-link strong,
.contact-meta strong,
.contact-link,
.contact-meta {
  color: #f6faf5;
}

.contact-copy p,
.contact-label,
.contact-link span,
.contact-meta span {
  color: rgba(246, 250, 245, 0.74);
}

.contact-actions {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.35rem 0 0 1.25rem;
  min-height: 1.7rem;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  color: #ffffff;
}

.contact-link,
.contact-meta {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-link strong,
.contact-meta strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.service-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 4.6rem;
  padding-bottom: 4.4rem;
  align-items: center;
}

.service-subheading {
  max-width: 36rem;
  margin: 1.3rem 0 1rem;
  color: var(--forest-deep);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.3;
  font-weight: 600;
}

.service-landing-visual {
  display: grid;
  gap: 1rem;
}

.service-placeholder-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-placeholder {
  position: relative;
  min-height: 14rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 239, 228, 0.86)),
    radial-gradient(circle at top right, rgba(107, 155, 114, 0.18), transparent 38%);
  border: 1px solid rgba(53, 94, 59, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-placeholder::after {
  content: "";
  position: absolute;
  inset: auto -1.5rem -2.25rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(53, 94, 59, 0.08);
  filter: blur(2px);
}

.service-placeholder strong,
.service-placeholder p {
  position: relative;
  z-index: 1;
}

.service-placeholder strong {
  display: block;
  max-width: 14ch;
  margin-bottom: 0.65rem;
  color: var(--forest-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.95;
}

.service-placeholder p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-placeholder-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--forest-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-placeholder-main {
  min-height: 25rem;
  padding: 2rem;
  background:
    linear-gradient(155deg, rgba(248, 251, 247, 0.94), rgba(217, 229, 214, 0.9)),
    radial-gradient(circle at top left, rgba(107, 155, 114, 0.2), transparent 34%);
}

.service-placeholder-main strong {
  max-width: 10ch;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.service-placeholder-accent {
  background:
    linear-gradient(145deg, rgba(32, 55, 36, 0.96), rgba(65, 103, 71, 0.92)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 34%);
}

.service-placeholder-accent .service-placeholder-label,
.service-placeholder-accent strong,
.service-placeholder-accent p {
  color: #f6faf5;
}

.landing-feature-section {
  padding-top: 1rem;
}

.landing-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.landing-advantage-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(53, 94, 59, 0.08);
  box-shadow: 0 18px 36px rgba(20, 34, 23, 0.06);
}

.landing-advantage-card h3 {
  margin-bottom: 0.7rem;
}

.landing-advantage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.landing-gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.service-placeholder-wide {
  min-height: 17rem;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 2rem;
  padding: 6.2rem 0 2rem;
  color: rgba(245, 249, 244, 0.85);
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 171, 127, 0.18), transparent 20%),
    radial-gradient(circle at 84% 12%, rgba(92, 139, 99, 0.16), transparent 22%),
    linear-gradient(180deg, #1b3b21 0%, #102716 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.82fr 0.95fr 1.18fr;
  gap: 3.4rem;
  padding: 0 0 5rem;
  align-items: start;
  transform: translateY(-0.3rem);
}

.footer-brand {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  justify-items: start;
  transform: translateY(-1.2rem);
}

.footer-mark {
  display: inline-flex;
  margin-bottom: 0;
  margin-left: -3rem;
}

.footer-mark img {
  width: min(100%, 29rem);
  filter: brightness(0) saturate(100%) invert(93%) sepia(8%) saturate(322%) hue-rotate(58deg) brightness(98%)
    contrast(95%);
}

.footer-brand-text {
  margin: 0;
  color: rgba(242, 247, 241, 0.9);
  font-size: 1.08rem;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: #ffffff;
}

.nav-socials a,
.contact-socials a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  padding: 0;
  line-height: 0;
  flex: 0 0 1.7rem;
}

.nav-socials a {
  color: var(--forest-deep);
}

.contact-socials a,
.footer-socials a {
  color: rgba(242, 247, 241, 0.86);
}

.nav-socials svg,
.contact-socials svg,
.footer-socials svg {
  display: block;
  fill: currentColor;
}

.nav-socials a[aria-label="Facebook"] svg,
.contact-socials a[aria-label="Facebook"] svg,
.footer-socials a[aria-label="Facebook"] svg {
  width: 1.24rem;
  height: 1.24rem;
}

.nav-socials a[aria-label="Instagram"] svg,
.contact-socials a[aria-label="Instagram"] svg,
.footer-socials a[aria-label="Instagram"] svg {
  width: 1.32rem;
  height: 1.32rem;
  transform: translateY(0.5px);
}

.footer-title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column {
  padding-top: 0.2rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(242, 247, 241, 0.75);
  line-height: 1.55;
  overflow-wrap: normal;
}

.footer-column:last-child a {
  white-space: nowrap;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(242, 247, 241, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-bottom a {
  color: #f5f9f4;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #dcead8;
}

@media (max-width: 1080px) {
  .hero,
  .story-grid,
  .value-panel,
  .contact-card,
  .carousel-slide,
  .gallery-hero,
  .service-landing-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-top: 1.5rem;
  }

  .showcase-card-main {
    width: 100%;
    max-width: none;
  }

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

  .landing-advantage-grid,
  .landing-gallery-strip {
    grid-template-columns: 1fr;
  }

  .soft-orb-story,
  .soft-orb-services,
  .soft-orb-featured,
  .soft-orb-contact {
    transform: scale(0.82);
  }

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    animation-duration: 150s;
  }

  .value-gallery {
    grid-template-columns: 1fr;
  }

  .value-gallery-main,
  .value-gallery-side {
    min-height: 22rem;
  }

  .project-card-large {
    grid-row: auto;
  }

  .project-card-large img {
    min-height: 24rem;
  }

  .archive-card-tall,
  .archive-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .archive-card-tall img,
  .archive-card-wide img {
    min-height: 0;
    height: 20rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 0;
  }

  .site-header + main {
    padding-top: 7rem;
  }

  .site-header .section-shell,
  .site-header.is-scrolled .section-shell {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  .header-bar {
    position: relative;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.8rem 1rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(53, 94, 59, 0.08);
    border-left: 0;
    box-shadow: 0 16px 30px rgba(20, 34, 23, 0.08);
    backdrop-filter: blur(18px);
  }

  .site-header.is-scrolled .header-bar {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(53, 94, 59, 0.08);
    border-left: 0;
    box-shadow: 0 16px 30px rgba(20, 34, 23, 0.08);
    backdrop-filter: blur(18px);
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand-mark img {
    width: 12rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-left: auto;
    flex: 0 0 auto;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0.6rem 0.45rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .menu-toggle span:not(.sr-only) {
    background: #111111;
    height: 2.5px;
    margin: 0.22rem 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    z-index: 210;
  }

  .site-nav.is-open {
    display: flex;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(53, 94, 59, 0.08);
    border-radius: 22px;
    box-shadow: 0 20px 36px rgba(20, 34, 23, 0.12);
    backdrop-filter: blur(18px);
  }

  .site-nav a {
    text-align: center;
  }

  .nav-socials {
    display: flex;
    justify-content: center;
    margin-left: 0;
    padding-left: 0;
    padding-top: 0.2rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy > h1 {
    order: 2;
  }

  .hero-copy > .lead {
    order: 3;
  }

  .hero-visual {
    order: 4;
    width: 100%;
    padding-top: 0.15rem;
  }

  .hero-copy > .hero-actions {
    order: 5;
    margin: 0.5rem 0 0;
  }

  .hero-copy > .hero-details {
    order: 6;
  }

  .gallery-hero {
    padding-top: 1.5rem;
  }

  .service-landing-hero {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .hero-details,
  .services-grid,
  .archive-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-placeholder-stack,
  .landing-advantage-grid,
  .landing-gallery-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 4.5rem 0 1.6rem;
  }

  .footer-grid {
    gap: 2rem;
    padding-bottom: 3rem;
    transform: none;
  }

  .footer-brand {
    gap: 0.8rem;
    transform: none;
  }

  .footer-column {
    padding-top: 0;
  }

  .soft-orb-story,
  .soft-orb-services,
  .soft-orb-featured,
  .soft-orb-contact {
    transform: scale(0.68);
    transform-origin: center;
  }

  .soft-orb-story {
    top: 1rem;
    right: -8rem;
  }

  .soft-orb-services {
    top: 8rem;
    left: -4.5rem;
  }

  .soft-orb-featured {
    top: 2rem;
    right: -8rem;
  }

  .soft-orb-contact {
    top: auto;
    left: auto;
    right: -3.5rem;
    bottom: 1rem;
  }

  .hero-visual {
    min-height: auto;
  }

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

  .before-after {
    aspect-ratio: 4 / 5;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .carousel {
    grid-auto-columns: 100%;
  }

  .carousel-slide {
    min-height: auto;
  }

  .carousel-slide img {
    min-height: 18rem;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 2rem, 100rem);
    --radius-lg: 26px;
    --radius-md: 22px;
    --radius-sm: 16px;
  }

  .brand-mark img {
    width: 11rem;
  }

  .footer-mark img {
    width: min(100%, 15.5rem);
  }

  .footer-mark {
    margin-left: 0;
  }

  .site-footer {
    padding-top: 3.8rem;
  }

  .footer-grid {
    gap: 1.6rem;
    padding: 0 0 2.4rem;
  }

  .footer-brand {
    gap: 0.7rem;
  }

  .footer-brand-text {
    font-size: 1rem;
  }

  .footer-grid a,
  .footer-grid span {
    margin-bottom: 0.65rem;
  }

  .footer-column:last-child a {
    white-space: normal;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-copy,
  .gallery-hero-copy {
    padding-top: 0.65rem;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .carousel-button {
    width: 100%;
  }

  .story-card,
  .service-card,
  .project-card-copy,
  .archive-copy,
  .carousel-copy,
  .contact-card,
  .footer-grid {
    padding: 1.55rem;
  }

  .service-placeholder,
  .landing-advantage-card {
    padding: 1.4rem;
  }

  .footer-bottom {
    padding-top: 2rem;
    gap: 0.7rem;
  }

  .hero-copy,
  .gallery-hero-copy {
    padding-inline: 0.1rem;
  }

  .carousel-controls {
    width: 100%;
  }

  .carousel-controls .carousel-button {
    min-width: 0;
    flex: 1;
  }

  .filter-bar {
    gap: 0.55rem;
  }

  .filter-chip {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
  }

  .before-after-label {
    top: auto;
    bottom: 1rem;
    min-width: 5.25rem;
    padding: 0.68rem 0.85rem;
    font-size: 0.74rem;
  }

  .before-after-label-before {
    left: 1rem;
  }

  .before-after-label-after {
    right: 1rem;
  }

  .before-after-handle {
    width: 3.4rem;
    height: 3.4rem;
  }

  .before-after-compact .before-after-label {
    top: auto;
    bottom: 1rem;
    min-width: 5.25rem;
    padding: 0.68rem 0.85rem;
    font-size: 0.74rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reviews-marquee {
    overflow-x: auto;
  }

  .reviews-track {
    animation: none !important;
  }
}
