.home-needs,
.home-services,
.home-inspiration {
  padding: clamp(104px, 12vw, 190px) 0;
}

.home-needs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(58px, 7vw, 100px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.need-card {
  min-height: 330px;
  padding: clamp(28px, 3.5vw, 54px);
  background: rgba(255, 255, 255, 0.8);
  transition: background-color 240ms ease, transform 240ms ease;
}

.need-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: #fff;
}

.need-card__number {
  color: var(--green-fresh);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.need-card h3 {
  max-width: 330px;
  margin: clamp(70px, 7vw, 108px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.need-card p {
  max-width: 350px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.home-services {
  background: var(--paper);
}

.home-services__story {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(54px, 8vw, 130px);
  margin-top: clamp(70px, 9vw, 130px);
}

.home-services__visual {
  position: relative;
  min-height: 100%;
}

.home-services__visual-frame {
  position: sticky;
  top: calc(var(--header-height) + 7vh);
  height: min(69vh, 770px);
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--green-mist);
  box-shadow: var(--shadow-soft);
}

.home-services__visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.035);
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}

.home-services__visual-frame img.is-active {
  opacity: 1;
  visibility: visible;
}

.home-services__visual-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(6, 75, 45, 0.42));
  content: "";
  pointer-events: none;
}

.home-services__visual-index {
  position: absolute;
  right: 24px;
  bottom: 21px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.home-services__visual-index b {
  color: #fff;
  font-size: 20px;
}

.home-services__list {
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 50vh;
  padding: clamp(36px, 5vw, 76px) 0;
  border-bottom: 1px solid var(--line);
  opacity: 0.56;
  transition: opacity 260ms ease;
}

.service-card.is-active {
  opacity: 1;
}

.service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 710;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__header span {
  color: var(--green-fresh);
}

.service-card__header p {
  margin: 0;
}

.service-card h3 {
  margin: clamp(52px, 7vw, 100px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 480;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.service-card h3 a {
  text-decoration: none;
}

.service-card h3 a::after {
  display: inline-block;
  margin-left: 14px;
  color: var(--green-fresh);
  content: "↗";
  font-size: 0.42em;
  vertical-align: top;
}

.service-card > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-card > img {
  display: none;
}

.home-approach {
  position: relative;
  padding: clamp(110px, 13vw, 200px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(98, 189, 93, 0.2), transparent 30%),
    var(--green-dark);
  color: #fff;
}

.home-approach::after {
  position: absolute;
  top: 8%;
  right: -12%;
  width: min(760px, 55vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.home-approach__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(60px, 10vw, 160px);
}

.home-approach__intro {
  position: sticky;
  top: calc(var(--header-height) + 12vh);
  align-self: start;
}

.home-approach h2 {
  color: #fff;
  font-size: clamp(48px, 5.5vw, 82px);
}

.home-approach__intro > p {
  color: rgba(255, 255, 255, 0.68);
}

.home-approach__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-approach__steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: clamp(26px, 4vw, 58px);
  min-height: 230px;
  padding: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-approach__steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-approach__steps li > span {
  color: var(--green-fresh);
  font-size: 12px;
  font-weight: 760;
}

.home-approach__steps h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.home-approach__steps p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

.home-inspiration__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.home-inspiration__copy .button {
  margin-top: 30px;
}

.home-inspiration__collage {
  position: relative;
  min-height: clamp(590px, 58vw, 820px);
}

.home-inspiration__collage figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--paper);
  border-radius: clamp(18px, 2vw, 32px);
  box-shadow: 0 24px 70px rgba(16, 62, 39, 0.16);
}

.home-inspiration__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-collage-tile="one"] {
  inset: 4% 20% 22% 0;
  z-index: 1;
}

[data-collage-tile="two"] {
  top: 0;
  right: 0;
  z-index: 2;
  width: 36%;
  height: 43%;
  transform: rotate(3deg);
}

[data-collage-tile="three"] {
  right: 2%;
  bottom: 2%;
  z-index: 3;
  width: 48%;
  height: 43%;
  transform: rotate(-2deg);
}

.home-contact {
  padding: 0 var(--page-gutter) clamp(80px, 8vw, 120px);
}

.home-contact__card {
  display: grid;
  width: min(100%, var(--page-width));
  grid-template-columns: minmax(430px, 1.05fr) minmax(430px, 0.95fr);
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--green-deep);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.home-contact__visual {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
}

.home-contact__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(0, 105, 56, 0.44));
  content: "";
}

.home-contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-contact__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 100px);
}

.home-contact h2 {
  color: #fff;
  font-size: clamp(48px, 5vw, 78px);
}

.home-contact__copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.home-contact__phone {
  min-height: 44px;
  color: #fff;
  font-weight: 710;
  line-height: 44px;
  text-underline-offset: 5px;
}

.home-contact address {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.home-contact address a {
  color: #fff;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 44px;
  align-items: start;
  padding: clamp(54px, 6vw, 88px) var(--page-gutter);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
}

.site-footer__identity > a {
  display: block;
  width: 190px;
}

.site-footer__identity img {
  width: 100%;
  height: auto;
}

.site-footer__identity p {
  margin: 18px 0 0;
}

.site-footer address,
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.site-footer a {
  text-decoration-color: rgba(0, 105, 56, 0.32);
  text-underline-offset: 4px;
}
