﻿:root {
  --green-950: #071c14;
  --green-900: #0d2d20;
  --green-760: #164f37;
  --green-620: #24724d;
  --steel-900: #252b2d;
  --steel-700: #4f595d;
  --steel-500: #889196;
  --steel-250: #d9dedf;
  --mist: #eef2ef;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(7, 28, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--green-950);
  background: var(--mist);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  z-index: 20;
  width: min(calc(100% - 64px), 1160px);
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 8px 0;
  min-height: 82px;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, min-height 220ms ease, backdrop-filter 220ms ease, width 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  width: min(calc(100% - 64px), 1160px);
  min-height: 74px;
  padding: 6px clamp(16px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 18px 18px;
  background: rgba(86, 108, 96, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: 120px;
  height: 76px;
  text-decoration: none;
}

.brand img {
  width: 120px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 9px 20px rgba(0, 0, 0, 0.52));
}

.site-nav {
  grid-column: 2 / 3;
  position: relative;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.2vw, 38px);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
  padding-right: 0;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  opacity: 0.86;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #b7d8b7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:not(.nav-phone):hover::after {
  transform: scaleX(1);
}

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

.header-actions {
  grid-column: 3 / 4;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-contact,
.header-actions .nav-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-contact {
  padding: 0 22px;
  border: 1px solid rgba(182, 216, 185, 0.34);
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.header-actions .nav-phone {
  padding: 0 22px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.nav-contact:hover,
.header-actions .nav-phone:hover {
  transform: translateY(-1px);
}


.header-actions .nav-phone:hover {
  color: var(--green-950);
  background: var(--white);
}

.header-actions .nav-phone svg {
  width: 17px;
  height: 17px;
  margin-right: 9px;
  opacity: 0.9;
}


.portfolio-page {
  background: linear-gradient(180deg, #eef2ef 0%, #f7faf8 24%, #ffffff 100%);
}

.portfolio-page .site-header {
  width: min(calc(100% - 64px), 1160px);
  min-height: 74px;
  padding: 6px clamp(16px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 18px 18px;
  color: var(--white);
  background: rgba(86, 108, 96, 0.78);
  box-shadow: 0 18px 50px rgba(7, 28, 20, 0.16);
  backdrop-filter: blur(18px);
}

.portfolio-page .site-nav a:not(.nav-phone):hover,
.portfolio-page .site-nav a:not(.nav-phone).is-active {
  color: #d9f0da;
}

.portfolio-page .site-nav a:not(.nav-phone).is-active::after {
  transform: scaleX(1);
}

.portfolio-page .work {
  padding-top: clamp(130px, 12vw, 170px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(18px, 3.4vw, 54px);
  padding: 104px max(40px, calc((100vw - 1180px) / 2)) 34px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 20, 14, 0.78) 0%, rgba(3, 29, 20, 0.62) 35%, rgba(7, 28, 20, 0.28) 64%, rgba(7, 28, 20, 0.46) 100%),
    linear-gradient(0deg, rgba(7, 28, 20, 0.42), rgba(7, 28, 20, 0.06));
}

.hero::after {
  content: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 900px;
}

.hero-brand-stage {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(10px, 1.8vw, 20px);
  min-width: 0;
}

.hero-logo {
  width: min(100%, clamp(320px, 32vw, 520px));
  filter:
    drop-shadow(0 7px 3px rgba(7, 28, 20, 0.64)) drop-shadow(0 30px 58px rgba(0, 0, 0, 0.62));
}

.hero-location {
  margin: -4px 0 4px;
  color: rgba(238, 242, 239, 0.9);
  text-align: center;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.52);
}

.eyebrow {
  margin: 0 0 16px;
  color: #b6d8b9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 12px;
  font-size: clamp(3.45rem, 6.8vw, 7.35rem);
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.46);
}

h1 em {
  color: #71b779;
  font-style: italic;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.62;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-icon,
.btn-arrow {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-icon {
  margin-right: 10px;
  color: currentColor;
}

.btn-arrow {
  margin-left: 10px;
  transition: transform 180ms ease;
}

.button:hover .btn-arrow {
  transform: translateX(4px);
}

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

.button.primary {
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.button.ghost {
  color: var(--green-950);
  border: 1px solid rgba(7, 28, 20, 0.16);
  background: var(--white);
}

.hero-card {
  width: min(100%, 420px);
  padding: 18px 22px;
  border: 1px solid rgba(217, 222, 223, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(7, 28, 20, 0.72), rgba(37, 43, 45, 0.5));
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  color: var(--white);
}

.hero-card span {
  display: block;
  margin-bottom: 6px;
  color: #b6d8b9;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: discover-float 2.2s ease-in-out infinite;
}

.hero-scroll span {
  color: #b6d8b9;
  margin-right: 8px;
}

@keyframes discover-float {

  0%,
  100% {
    translate: 0 0;
    opacity: 0.62;
  }

  50% {
    translate: 0 -8px;
    opacity: 1;
  }
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.48;
}

.section,
.band {
  padding: clamp(78px, 10vw, 128px) max(40px, calc((100vw - 1180px) / 2));
}

.intro.band {
  padding-block: clamp(52px, 6vw, 82px);
}

.band {
  background:
    linear-gradient(120deg, rgba(217, 222, 223, 0.92), rgba(238, 242, 239, 0.94)),
    linear-gradient(90deg, var(--steel-250), var(--white));
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 620px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(238, 242, 239, 0.96), rgba(217, 222, 223, 0.78)),
    linear-gradient(100deg, rgba(36, 114, 77, 0.08), transparent 42%, rgba(136, 145, 150, 0.12));
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.34) calc(42% + var(--about-drift, 0px)), transparent 68%),
    linear-gradient(78deg, rgba(36, 114, 77, 0.08), transparent 46%, rgba(136, 145, 150, 0.1));
  animation: about-glow 14s ease-in-out infinite alternate;
}

@keyframes about-glow {
  from {
    opacity: 0.45;
  }

  to {
    opacity: 0.85;
  }
}

.intro .eyebrow {
  color: var(--green-620);
}


.intro .eyebrow,
.services .eyebrow,
.work .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.intro .eyebrow::after,
.services .eyebrow::after,
.work .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 178px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-620) 0%, #7fb28b 46%, rgba(127, 178, 139, 0.18) 78%, transparent 100%);
  box-shadow: 0 8px 22px rgba(36, 114, 77, 0.16);
}

.intro h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--green-950);
}

.intro-text p:not(.eyebrow) {
  max-width: 760px;
  color: var(--steel-700);
  font-size: 1rem;
  line-height: 1.65;
}

.intro-text,
.intro-side {
  position: relative;
  z-index: 1;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(7, 28, 20, 0.14);
  border-radius: 8px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.about-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 114, 77, 0.28);
  background: rgba(255, 255, 255, 0.82);
}

.intro-side {
  display: grid;
  gap: 12px;
}

.founder-photo {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 20, 0.12);
  border-radius: 8px;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.stat {
  min-height: 0;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 40px rgba(37, 43, 45, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.stat:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(37, 43, 45, 0.12);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-760);
  font-size: 1.02rem;
}

.stat span {
  color: var(--steel-700);
  font-size: 0.94rem;
  line-height: 1.45;
}

.method {
  position: relative;
  overflow: hidden;
  color: var(--green-950);
  background:
    linear-gradient(180deg, #eef2ef 0%, #f7f9f7 100%);
  border-top: 1px solid rgba(79, 89, 93, 0.12);
  border-bottom: 1px solid rgba(79, 89, 93, 0.12);
}

.method .eyebrow {
  color: var(--green-620);
}

.method-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.method-heading .eyebrow {
  position: relative;
  margin-bottom: 30px;
  color: var(--green-620);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-heading .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 178px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-620) 0%, #7fb28b 46%, rgba(127, 178, 139, 0.18) 78%, transparent 100%);
  box-shadow: 0 8px 22px rgba(36, 114, 77, 0.16);
}

.method-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #050b08;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.method-heading>p {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--steel-700);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.45;
}

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

.method-step {
  --card-text: #050b08;
  --card-muted: #3d4548;
  --card-icon: #1b7b2a;
  position: relative;
  min-height: clamp(330px, 33vw, 390px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid rgba(7, 28, 20, 0.04);
  border-radius: 10px;
  background: var(--white);
  color: var(--card-text);
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.method-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(0deg, rgba(7, 28, 20, 0.66), rgba(7, 28, 20, 0.12)), var(--step-image);
  background-size: cover;
  background-position: var(--step-position, center);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 320ms ease, transform 640ms ease;
}

.method-step::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(7, 28, 20, 0.2) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.method-step:hover {
  --card-text: #ffffff;
  --card-muted: rgba(255, 255, 255, 0.86);
  --card-icon: #ffffff;
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(7, 28, 20, 0.14);
}

.method-step:hover::before,
.method-step:hover::after {
  opacity: 1;
}

.method-step:hover::before {
  transform: scale(1);
}

.method-number {
  position: absolute;
  top: clamp(26px, 3vw, 40px);
  right: clamp(26px, 3vw, 40px);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #525957;
  background: #eceeed;
  font-weight: 700;
  transition: color 240ms ease, background 240ms ease;
}

.method-step.final .method-number,
.method-step:hover .method-number {
  color: var(--white);
  background: #1b7b2a;
}

.method-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--card-icon);
  transition: color 240ms ease, transform 240ms ease;
}

.method-icon svg {
  width: 38px;
  height: 38px;
}

.method-step:hover .method-icon {
  transform: translateY(-3px);
}

.method-step h3 {
  margin-bottom: 18px;
  color: var(--card-text);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 2.35vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  transition: color 240ms ease, transform 240ms ease;
}

.method-step p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--card-muted);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.42;
  transition: color 240ms ease, transform 240ms ease;
}

.method-step:hover h3,
.method-step:hover p {
  transform: translateY(-4px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 44px;
}

.section-heading h1,
.section-heading h2 {
  max-width: none;
  margin-bottom: 0;
  color: var(--green-900);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  text-shadow: none;
}

.services {
  position: relative;
  background:
    linear-gradient(180deg, #fbfcfb 0%, #ffffff 100%);
}

.services .eyebrow {
  color: var(--green-620);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 28, 20, 0.14);
  border-radius: 12px;
  background: var(--white);
}

.service {
  position: relative;
  min-height: 254px;
  padding: clamp(22px, 2.6vw, 34px);
  border-right: 1px solid rgba(7, 28, 20, 0.12);
  border-bottom: 1px solid rgba(7, 28, 20, 0.12);
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  transition: background 220ms ease, transform 220ms ease;
}

.service:nth-child(3n) {
  border-right: 0;
}

.service:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service::before,
.service::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  opacity: 0;
}

.service::before {
  background: rgba(7, 28, 20, 0.12);
  transition: opacity 180ms ease;
}

.service::after {
  bottom: 4px;
  background: var(--green-620);
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 140ms ease, transform 420ms ease;
}

.service:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.service:hover::before,
.service:hover::after {
  opacity: 1;
}

.service:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: right;
  margin-left: 18px;
  border-radius: 13px;
  color: var(--white);
  background: #12683d;
  box-shadow: 0 16px 34px rgba(7, 28, 20, 0.14);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service h3 {
  clear: both;
  margin: 74px 0 12px;
  color: var(--green-950);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 2.25vw, 2.18rem);
  line-height: 1.05;
}

.service h3,
.service p {
  transition: transform 240ms ease, color 240ms ease;
}

.service:hover h3,
.service:hover p {
  transform: translateY(-5px);
}

.service-icon:hover {
  transform: translateY(-6px) rotate(-7deg) scale(1.04);
  background: #0f5f37;
  box-shadow: 0 22px 42px rgba(7, 28, 20, 0.2);
}

.service p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--steel-700);
  font-size: 0.98rem;
  line-height: 1.58;
}

.work {
  position: relative;
  overflow: hidden;
  color: var(--green-950);
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.work .eyebrow {
  color: var(--green-620);
}

.work .section-heading h1,
.work .section-heading h2 {
  color: var(--green-950);
}

.work-studio {
  display: grid;
  gap: 26px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.before-after-card {
  overflow: hidden;
  border: 1px solid rgba(7, 28, 20, 0.1);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 24px 80px rgba(7, 28, 20, 0.1);
}

.ba-visual {
  position: relative;
  margin: 28px 28px 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: var(--green-950);
  isolation: isolate;
}

.ba-before,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ba-before {
  filter: saturate(0.82) contrast(0.98) brightness(0.88);
}

.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--ba-position, 50%));
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: -12px 0 34px rgba(0, 0, 0, 0.16);
  transition: clip-path 80ms linear, border-color 300ms ease;
}

.ba-after img {
  filter: saturate(1.08) contrast(1.02);
}

.ba-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 28, 20, 0.68);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--ba-position, 50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
  transition: left 80ms linear, transform 220ms ease;
}


@media (min-width: 761px) {
  .ba-handle {
    width: 8px;
    height: 76px;
    border-radius: 999px;
    color: transparent;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .ba-handle::before {
    content: "";
    width: 2px;
    height: 46px;
    border-radius: 999px;
    background: rgba(7, 28, 20, 0.42);
  }
}

.ba-content {
  padding: clamp(26px, 3vw, 38px);
}

.ba-content>span,
.case-tags span {
  color: var(--green-620);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ba-content h3 {
  margin: 14px 0 12px;
  color: var(--green-950);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

.ba-content>p {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--steel-700);
  line-height: 1.62;
}

.ba-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ba-points strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-950);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.ba-points p {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: #0d1713;
  font-weight: 600;
}

.ba-points span {
  color: var(--green-620);
  font-weight: 900;
}

.case-study-grid {
  width: min(100%, 1040px);
  display: grid;
  gap: 28px;
  margin: 4px auto 0;
}

.case-study-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 7.6;
  overflow: hidden;
  border-radius: 22px;
  background: var(--green-950);
  box-shadow: 0 28px 90px rgba(7, 28, 20, 0.14);
}

.case-study-card>img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.01);
  transition: transform 700ms ease;
}



.case-study-card:nth-child(2) {
  aspect-ratio: 16 / 9.2;
}

.case-study-card:nth-child(2)>img {
  object-position: center 68%;
}
.case-study-card:hover>img {
  transform: scale(1.012);
}

.case-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 1.8vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(7, 28, 20, 0.2), rgba(37, 43, 45, 0.14));
  backdrop-filter: blur(9px) saturate(1.02);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.13);
}

.case-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.case-kicker span {
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.case-tags span {
  color: rgba(255, 255, 255, 0.9);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.case-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.case-panel p {
  margin: 18px 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-weight: 700;
  line-height: 1.42;
}

.case-panel a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(121, 179, 72, 0.72));
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.case-panel a:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(103, 163, 59, 0.84));
}

.case-panel a span {
  font-size: 1.6rem;
}

.social-proof {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #eef2ef 0%, #f7faf8 100%);
}

.social-proof .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green-620);
}

.social-proof .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 178px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-620) 0%, #7fb28b 46%, rgba(127, 178, 139, 0.18) 78%, transparent 100%);
}

.reviews-heading h2 {
  color: var(--green-950);
}

.reviews-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--steel-700);
  font-size: 1rem;
  line-height: 1.72;
}

.reviews-showcase {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.reviews-note {
  width: clamp(290px, 31vw, 390px);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(7, 28, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 70px rgba(7, 28, 20, 0.08);
}

.reviews-note span {
  margin-bottom: auto;
  color: var(--green-620);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 0.9;
}

.reviews-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-950);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.reviews-note p {
  margin: 0;
  color: var(--steel-700);
  line-height: 1.65;
}

.reviews-viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-viewport::before,
.reviews-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.reviews-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #eef2ef 0%, rgba(238, 242, 239, 0) 100%);
}

.reviews-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #eef2ef 0%, rgba(238, 242, 239, 0) 100%);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: reviews-marquee 42s linear infinite;
  will-change: transform;
}

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

.review {
  position: relative;
  flex: 0 0 clamp(290px, 31vw, 390px);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(7, 28, 20, 0.11);
  border-radius: 8px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 60px rgba(7, 28, 20, 0.09);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}

.review::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 178, 139, 0.08), transparent 54%);
  opacity: 0.75;
  pointer-events: none;
}

.review:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 114, 77, 0.26);
  box-shadow: 0 30px 90px rgba(7, 28, 20, 0.16);
}

.review-stars {
  position: relative;
  z-index: 1;
  color: #d7a74f;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.review p {
  position: relative;
  z-index: 1;
  margin: 22px 0 28px;
  color: var(--green-950);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.62rem);
  line-height: 1.2;
}

.review-author {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

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

.review span {
  color: var(--green-620);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}


@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    transform: none;
  }
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 28, 20, 0.96), rgba(37, 43, 45, 0.9)),
    radial-gradient(circle at 82% 12%, rgba(182, 216, 185, 0.16), transparent 34%);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(217, 222, 223, 0.08));
  pointer-events: none;
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.contact-copy {
  color: var(--white);
}

.contact .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #b6d8b9;
}

.contact .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 178px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b6d8b9 0%, rgba(182, 216, 185, 0.54) 52%, transparent 100%);
}

.contact-copy h2 {
  max-width: 720px;
  color: var(--white);
}

.contact-copy>p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.75;
}

.contact-quick-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-quick-links a {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.contact-quick-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 216, 185, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.contact-quick-links span {
  color: #b6d8b9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-quick-links strong {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  overflow-wrap: anywhere;
}

.contact-form {
  margin-top: clamp(64px, 6vw, 92px);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(238, 242, 239, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

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

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

.form-row label {
  color: var(--green-950);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(7, 28, 20, 0.14);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 136px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(36, 114, 77, 0.62);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(36, 114, 77, 0.12);
}

.form-submit {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  color: var(--white);
  background: var(--green-620);
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--steel-700);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(40px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(90deg, var(--green-950), #252b2d);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  min-height: 66px;
  text-decoration: none;
}

.footer-brand img {
  width: 118px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.footer-meta strong {
  color: #b6d8b9;
  font-weight: 800;
  text-decoration: none;
}



.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@media (max-width: 980px) {

  .hero,
  .intro,
  .section-heading,
  .reviews-showcase,
  .contact-shell,
  .about {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 0;
  }

  .hero-brand-stage {
    justify-items: start;
    max-width: 620px;
  }

  .hero-logo {
    width: min(100%, 430px);
  }

  .hero-card {
    width: 100%;
  }

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

  .service:nth-child(3n) {
    border-right: 1px solid rgba(7, 28, 20, 0.12);
  }

  .service:nth-child(2n) {
    border-right: 0;
  }

  .service:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(7, 28, 20, 0.12);
  }

  .service:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .case-study-grid {
    width: 100%;
  }

  .case-study-card {
    aspect-ratio: 16 / 8;
  }

  .case-panel {
    left: auto;
    right: 18px;
    top: auto;
    bottom: 18px;
    width: min(330px, calc(100% - 36px));
    min-height: 0;
  }

}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    width: calc(100% - 24px);
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    min-height: 74px;
  }

  .brand {
    width: 76px;
    height: 56px;
  }

  .brand img {
    width: 76px;
    height: 56px;
  }

  .menu-button {
    order: 3;
    display: block;
    flex: 0 0 auto;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 6px;
  }

  .nav-contact,
  .header-actions .nav-phone {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .header-actions .nav-phone svg {
    margin-right: 6px;
  }

  .site-nav {
    grid-column: auto;
    padding-right: 10px;
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 28, 20, 0.96);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    align-items: center;
  }

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

  .hero-logo {
    width: min(100%, 320px);
  }

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

  .button {
    width: 100%;
  }

  .intro-grid,
  .services-list,
  .reviews-viewport,
  .form-grid {
    grid-template-columns: 1fr;
  }


  .reviews-note {
    min-height: 220px;
  }

  .service:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 28, 20, 0.12);
  }

  .service:last-child {
    border-bottom: 0;
  }

  .ba-visual {
    margin: 18px 18px 0;
  }

  .ba-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-study-card {
    aspect-ratio: 4 / 3.25;
  }

  .case-panel {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 14px;
    width: auto;
    max-height: calc(100% - 28px);
    min-height: 0;
  }


}

@media (min-width: 761px) {
  .case-study-card:nth-child(3) .case-panel {
    top: 24px;
    bottom: auto;
    width: min(310px, calc(100% - 48px));
  }
}
@media (max-width: 380px) {
  .header-actions .nav-phone svg {
    margin-right: 0;
  }

  .header-actions .nav-phone span {
    display: none;
  }
}

@media (max-width: 1120px) {
  .method-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .method-heading {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .method-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
    letter-spacing: 0;
  }

  .method-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method-step {
    min-height: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
































@media (max-width: 760px) {
  .portfolio-page .site-header {
    width: calc(100% - 24px);
    padding: 14px 18px;
    color: var(--white);
  }

  .portfolio-page .menu-button {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .portfolio-page .site-nav {
    color: var(--white);
  }

  .portfolio-page .work {
    padding-top: 118px;
  }
}

.portfolio-page .brand img {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}












