/* EcoSpan - Hero */

:root {
  --forest: #1a3326;
  --forest-deep: #14261c;
  --ink: #2a2218;
  --ink-soft: #5c4f3f;
  --bronze: #8a6a45;
  --bronze-soft: #a88962;
  --sand: #efe8dc;
  --cream: #f3eee6;
  --white: #ffffff;
  --leaf: #b8cdb2;
  --olive: #5a6440;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Outfit", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

body.is-nav-open {
  overflow: hidden;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav__cta {
  display: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* -- Hero shell -- */

.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  max-height: 100svh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  color: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.1s var(--ease);
}

.hero__bg.is-active {
  opacity: 1;
  animation: heroZoom 18s var(--ease) both;
}

.hero__bg--1 {
  background: url("../Images/HeroElements/heroBG.png") right center / cover no-repeat;
}

/* Cream wash that keeps the copy readable over the photo */
.hero__bg--1::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(243, 238, 230, 0.55) 0%,
      rgba(243, 238, 230, 0.22) 38%,
      rgba(243, 238, 230, 0) 58%
    ),
    linear-gradient(
      180deg,
      rgba(243, 238, 230, 0.28) 0%,
      transparent 18%,
      transparent 78%,
      rgba(20, 38, 28, 0.08) 100%
    );
}

/* Hero2BG already carries its own cream wash, so it needs no overlay */
.hero__bg--2 {
  background: url("../Images/HeroElements/Hero2BG.png") center center / cover no-repeat;
}


.hero > *:not(.hero__bg) {
  position: relative;
  z-index: 2;
}

/* -- Nav -- */

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(0.7rem, 1.6vh, 1.2rem) clamp(1.25rem, 4vw, 3.5rem) clamp(0.35rem, 0.8vh, 0.65rem);
  flex-shrink: 0;
}

.nav__logo {
  justify-self: start;
  position: relative;
  display: grid;
  width: clamp(100px, 10vw, 140px);
  align-items: center;
}

.nav__logo-img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  transition: opacity 0.35s var(--ease);
}

.nav__logo-img--light {
  opacity: 0;
  pointer-events: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav__links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  transition: color 0.35s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--ink);
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__caret {
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  color: inherit;
  opacity: 0.7;
}

.nav__caret::after {
  content: "";
  position: absolute;
  inset: 0.28rem 0.22rem auto;
  height: 0.38rem;
  width: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.nav__item--drop.is-open .nav__caret::after,
.nav__item--drop:hover .nav__caret::after {
  transform: rotate(225deg);
  inset-block-start: 0.42rem;
}

.nav__drop {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 16.5rem;
  padding: 0.65rem 0;
  border: 1px solid rgba(26, 51, 38, 0.1);
  border-radius: 1rem;
  background: rgba(246, 241, 232, 0.97);
  box-shadow: 0 18px 40px rgba(26, 51, 38, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s var(--ease);
}

.nav__item--drop:hover .nav__drop,
.nav__item--drop:focus-within .nav__drop,
.nav__item--drop.is-open .nav__drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav__drop a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.nav__drop a:hover {
  background: rgba(26, 51, 38, 0.06);
  color: var(--bronze);
}

.nav--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom-color: transparent;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.nav--overlay .nav__links > a,
.nav--overlay .nav__item--drop > a,
.nav--overlay .lang,
.nav--overlay .nav__caret {
  color: rgba(243, 238, 230, 0.86);
}

.nav--overlay .nav__links > a:hover,
.nav--overlay .nav__links > a.is-active,
.nav--overlay .nav__item--drop > a:hover,
.nav--overlay .nav__item--drop > a.is-active {
  color: var(--cream);
}

.nav--overlay .nav__links > a.is-active::after,
.nav--overlay .nav__item--drop > a.is-active::after {
  background: var(--cream);
}

.nav--overlay .nav__toggle span {
  background: var(--cream);
}

.nav--overlay .nav__logo-img--dark {
  opacity: 0;
}

.nav--overlay .nav__logo-img--light {
  opacity: 1;
}

.nav--overlay.is-solid,
.nav--overlay.is-open {
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid rgba(26, 51, 38, 0.1);
  box-shadow: 0 14px 40px rgba(26, 51, 38, 0.1);
  backdrop-filter: blur(16px) saturate(1.2);
}

.nav--overlay.is-solid .nav__logo-img--dark,
.nav--overlay.is-open .nav__logo-img--dark {
  opacity: 1;
}

.nav--overlay.is-solid .nav__logo-img--light,
.nav--overlay.is-open .nav__logo-img--light {
  opacity: 0;
}

.nav--overlay.is-solid .nav__links > a,
.nav--overlay.is-solid .nav__item--drop > a,
.nav--overlay.is-solid .lang,
.nav--overlay.is-solid .nav__caret,
.nav--overlay.is-open .nav__links > a,
.nav--overlay.is-open .nav__item--drop > a,
.nav--overlay.is-open .lang,
.nav--overlay.is-open .nav__caret {
  color: var(--ink-soft);
}

.nav--overlay.is-solid .nav__links > a:hover,
.nav--overlay.is-solid .nav__links > a.is-active,
.nav--overlay.is-open .nav__links > a:hover,
.nav--overlay.is-open .nav__links > a.is-active {
  color: var(--ink);
}

.nav--overlay.is-solid .nav__links > a.is-active::after,
.nav--overlay.is-open .nav__links > a.is-active::after {
  background: var(--ink);
}

.nav--overlay.is-solid .nav__toggle span,
.nav--overlay.is-open .nav__toggle span {
  background: var(--ink);
}

.nav.is-hidden {
  transform: translateY(-110%);
}

.nav--overlay ~ .hero .hero__slide {
  padding-top: clamp(4.6rem, 9vh, 5.6rem);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
}

.nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.lang:hover {
  color: var(--ink);
}

.lang__chev {
  opacity: 0.7;
}

.nav__toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav__toggle span {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav.is-open .nav__toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav.is-open .nav__toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* -- Buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  box-shadow: 0 10px 28px rgba(26, 51, 38, 0.18);
}

.btn:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(26, 51, 38, 0.24);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
  font-size: 0.95em;
  line-height: 1;
}

.btn--sm {
  padding: 0.62rem 1.15rem 0.62rem 1.25rem;
  font-size: 0.72rem;
}

.btn--lg {
  padding: clamp(0.78rem, 1.5vh, 1rem) 1.6rem clamp(0.78rem, 1.5vh, 1rem) 1.75rem;
  font-size: 0.92rem;
  margin-top: 0.15rem;
}

/* -- Copy -- */

.hero__body {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  padding:
    clamp(0.25rem, 1.2vh, 0.9rem)
    clamp(1.25rem, 4vw, 3.5rem)
    clamp(0.15rem, 0.8vh, 0.55rem);
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero__copy {
  max-width: 34rem;
  min-height: 0;
  padding-bottom: 0;
}

.hero__eyebrow {
  font-size: clamp(0.72rem, 0.85vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: clamp(0.55rem, 1.4vh, 1rem);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.45rem, 5.2vw + 0.5vh, 4.45rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: clamp(0.55rem, 1.4vh, 1rem);
}

.hero__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.25vw + 0.35vh, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: clamp(0.85rem, 2vh, 1.35rem);
}

/* -- Slides 2 & 3: green treatment -- */

.hero__slide--green .hero__eyebrow {
  color: var(--olive);
}

.hero__slide--green .hero__title {
  color: var(--forest-deep);
}

.hero__slide--green .hero__lead {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.05vw + 0.3vh, 1.1rem);
  line-height: 1.65;
  color: rgba(20, 38, 28, 0.82);
  max-width: 28rem;
}

.hero__slide--green .hero__side {
  align-items: flex-start;
  padding-top: clamp(1.25rem, 10vh, 5.5rem);
}

.hero__stack {
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(243, 238, 230, 0.92);
  text-shadow: 0 1px 6px rgba(20, 38, 28, 0.45);
}

.hero__stack::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin-top: 0.9rem;
  background: rgba(243, 238, 230, 0.7);
}

/* -- Side vertical label -- */

.hero__side {
  justify-self: end;
  align-self: center;
  padding-right: 0.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  position: relative;
  padding-block: 1.25rem;
}

.hero__vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 1.1rem;
  background: var(--bronze-soft);
  transform: translateX(-50%);
  opacity: 0.7;
}

/* -- Footer meta -- */

.hero__footer-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(1rem, 2.4vh, 1.75rem);
  flex-shrink: 0;
}

.slides {
  display: flex;
  align-items: flex-end;
  gap: 1.15rem;
}

.slides button {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(42, 34, 24, 0.35);
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.slides button.is-active {
  color: var(--ink);
}

.slides button:disabled {
  cursor: default;
}

.slides button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--ink);
}

.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
}

.scroll__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll__line {
  width: 1px;
  height: clamp(1.2rem, 3.2vh, 2.2rem);
  background: linear-gradient(to bottom, transparent, var(--bronze-soft));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.scroll__orb {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(90, 72, 50, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bronze);
}

.anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* -- Entrance motion -- */

/* Fill mode "both" holds the pre-animation state, so slide copy can also fade
   out with its slide instead of being pinned at opacity 0. */
.nav,
.slides,
.scroll,
.hero__slide.is-active .hero__copy > *,
.hero__slide.is-active .hero__vertical,
.hero__slide.is-active .hero__stack {
  animation: riseIn 0.9s var(--ease) both;
}

.nav { animation-delay: 0.1s; }
.slides { animation-delay: 1s; }
.scroll { animation-delay: 1.05s; }

.hero__slide.is-active .hero__eyebrow { animation-delay: 0.28s; }
.hero__slide.is-active .hero__title { animation-delay: 0.4s; }
.hero__slide.is-active .hero__lead { animation-delay: 0.52s; }
.hero__slide.is-active .btn--lg { animation-delay: 0.64s; }

.hero__slide.is-active .hero__vertical,
.hero__slide.is-active .hero__stack { animation-delay: 0.9s; }

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* -- About -- */

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: 100svh;
  min-height: 100dvh;
  max-height: 100dvh;
  padding-block: clamp(2rem, 6vh, 3.75rem) clamp(2.5rem, 9vh, 6rem);
  padding-right: clamp(1.25rem, 3vw, 2.75rem);
  background:
    url("../Images/2ndSection/whiteBGWithShadoweaves.png") center / cover no-repeat,
    var(--cream);
  overflow: hidden;
}

.about__content {
  align-self: center;
  padding-inline: clamp(1.5rem, 6.3vw, 5.7rem) clamp(1.5rem, 3vw, 2.5rem);
}

.about__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
}

.about__eyebrow::after {
  content: "";
  width: clamp(2rem, 4.5vw, 4rem);
  height: 1px;
  background: rgba(90, 100, 64, 0.45);
}

.about__title {
  margin-top: clamp(0.85rem, 2.2vh, 1.6rem);
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, min(4.3vw, 7.4vh), 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--forest);
}

.about__title span {
  color: var(--bronze);
}

.about__lead {
  display: grid;
  gap: clamp(0.85rem, 2.2vh, 1.45rem);
  margin-top: clamp(1rem, 2.6vh, 1.85rem);
  max-width: 32rem;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.62;
  color: var(--ink-soft);
}

.about__points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.5rem, 4.6vh, 3.25rem);
  max-width: 30rem;
}

.about__points li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1.6vh, 1.1rem);
  padding-inline: clamp(0.35rem, 1vw, 0.9rem);
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.about__points li + li {
  border-left: 1px solid rgba(90, 74, 48, 0.16);
}

.about__badge {
  display: grid;
  place-items: center;
  width: clamp(2.1rem, 2.1rem + 1.4vh, 2.85rem);
  height: clamp(2.1rem, 2.1rem + 1.4vh, 2.85rem);
  border-radius: 50%;
  background: rgba(104, 122, 70, 0.14);
  color: var(--forest);
}

.about__badge svg {
  width: 58%;
  height: 58%;
}

.about__note {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: clamp(1.5rem, 4.4vh, 3rem);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--olive);
}

.about__note::before {
  content: "";
  width: clamp(2rem, 3.2vw, 2.9rem);
  height: 1px;
  background: rgba(90, 100, 64, 0.45);
}

.about__media {
  position: relative;
  width: 100%;
  height: min(72vh, 36rem);
  border-radius: clamp(1.5rem, 2.8vw, 2.5rem);
  background: url("../Images/2ndSection/Element.png") 42% center / cover no-repeat;
  overflow: hidden;
}

.about__kicker {
  position: absolute;
  top: clamp(1.5rem, 4.5vh, 3.25rem);
  right: clamp(1.5rem, 2.6vw, 2.5rem);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.9;
  text-transform: uppercase;
  text-align: right;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(20, 38, 28, 0.35);
}

.about__kicker::after {
  content: "";
  display: block;
  width: 2.9rem;
  height: 1px;
  margin-top: 0.7rem;
  background: rgba(255, 255, 255, 0.75);
}

.about__script {
  position: absolute;
  right: clamp(1.75rem, 3.2vw, 3.25rem);
  bottom: clamp(1.75rem, 5vh, 3.5rem);
  font-family: "Parisienne", cursive;
  font-size: clamp(1.1rem, 1.9vw, 1.7rem);
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(20, 38, 28, 0.4);
}

.about__swash {
  display: block;
  width: 78%;
  margin: 0.15rem 0 0 auto;
  color: rgba(255, 255, 255, 0.85);
}

/* -- Impact -- */

.impact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  min-height: 100dvh;
  max-height: 100dvh;
  background: var(--cream);
  overflow: hidden;
}

.impact__media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  z-index: 1;
}

/* Big circle arc cutting the photo away from the copy */
.impact__frame {
  position: absolute;
  inset: 0;
  background: url("../Images/4thSection/bg.png") 62% center / cover no-repeat;
  clip-path: ellipse(155% 116% at -55% 43%);
}

.impact__ring {
  position: absolute;
  left: 31%;
  top: 44%;
  width: 131%;
  height: 99%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.impact__ring::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--forest) 0 2px, rgba(243, 238, 230, 0.94) 2.5px 100%);
}

.impact__script {
  position: absolute;
  left: 12%;
  top: 23%;
  display: flex;
  flex-direction: column;
  font-family: "Parisienne", cursive;
  font-size: clamp(1.45rem, 2.9vw, 2.5rem);
  line-height: 1.22;
  color: rgba(243, 238, 230, 0.95);
  text-shadow: 0 2px 10px rgba(20, 38, 28, 0.35);
  transform: rotate(-7deg);
}

.impact__script span:nth-child(2) {
  margin-left: 0.7em;
}

.impact__script span:nth-child(3) {
  margin-left: 0.35em;
}

/* Swash under the last line */
.impact__script span:last-child::after {
  content: "";
  display: block;
  width: 80%;
  height: 0.5em;
  margin-left: 0.4em;
  border-bottom: 1px solid rgba(243, 238, 230, 0.7);
  border-radius: 0 0 50% 50%;
}

.impact__stone {
  position: absolute;
  left: -2%;
  bottom: -1.5%;
  width: 126%;
  height: auto;
  z-index: 2;
}

.impact__rooted {
  position: absolute;
  left: 8%;
  bottom: 7%;
  z-index: 3;
  font-size: 0.6rem;
  line-height: 1.95;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 238, 230, 0.92);
  text-shadow: 0 1px 6px rgba(15, 25, 15, 0.6);
}

.impact__rooted::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1px;
  margin-top: 0.9rem;
  background: rgba(243, 238, 230, 0.6);
}

.impact__content {
  position: relative;
  z-index: 4;
  grid-column: 2;
  align-self: center;
  padding:
    clamp(2rem, 6vh, 5rem)
    clamp(1.5rem, 3.5vw, 3rem)
    clamp(2rem, 8vh, 7rem)
    clamp(1.5rem, 3.2vw, 2.5rem);
}

.impact__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}

.impact__eyebrow::after {
  content: "";
  width: clamp(2rem, 3vw, 3.25rem);
  height: 1px;
  background: rgba(90, 100, 64, 0.45);
}

.impact__title {
  margin-top: clamp(0.7rem, 1.6vh, 1.35rem);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.05rem, 4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.impact__lead {
  margin-top: clamp(0.85rem, 2.2vh, 1.75rem);
  max-width: 31rem;
  font-size: clamp(0.84rem, 0.95vw, 0.95rem);
  line-height: 1.85;
  color: var(--ink-soft);
}

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(1.25rem, 3.6vh, 2.75rem);
  max-width: 34rem;
}

.stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: clamp(0.4rem, 1vw, 0.9rem);
  text-align: center;
}

.stats li + li {
  border-left: 1px solid rgba(90, 74, 48, 0.14);
}

.stats__badge {
  display: grid;
  place-items: center;
  width: clamp(2.6rem, 3.4vw, 3.4rem);
  height: clamp(2.6rem, 3.4vw, 3.4rem);
  border-radius: 50%;
  background: rgba(184, 205, 178, 0.42);
}

.stats__badge svg {
  width: 45%;
  height: 45%;
  color: var(--forest);
}

.stats__value {
  margin-top: clamp(0.65rem, 1.6vh, 1.35rem);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest);
}

.stats__value--words {
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats__label {
  margin-top: 0.55rem;
  font-size: 0.6rem;
  line-height: 1.85;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.impact__pillars {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(1.35rem, 4vh, 3.25rem);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}

.impact__pillars::before {
  content: "";
  width: clamp(1.75rem, 2.6vw, 2.75rem);
  height: 1px;
  margin-right: 0.6rem;
  background: rgba(90, 100, 64, 0.45);
}

.impact__pillars span {
  opacity: 0.55;
}

/* -- Footer -- */

.footer {
  position: relative;
  isolation: isolate;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Stretched, not cropped: keeps the leaf border and the top-right arc framing the content */
  background: url("../Images/Footer/footerbg.png") center / 100% 100% no-repeat;
  filter: saturate(1.6) contrast(1.08) brightness(0.62);
}

.footer__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Opaque over the blurred middle so copy stays legible, clearing towards the leafy edges */
  background:
    radial-gradient(
      82% 125% at 44% 48%,
      rgba(19, 37, 26, 0.95) 0%,
      rgba(19, 37, 26, 0.91) 44%,
      rgba(19, 37, 26, 0.6) 74%,
      rgba(19, 37, 26, 0.22) 100%
    );
}

.footer__inner {
  max-width: 96rem;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 4.25rem) clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 2vw, 1.75rem);
}

.footer__top {
  display: grid;
  /* Link columns hug their labels; brand and newsletter share the remaining width */
  grid-template-columns:
    minmax(0, 2.4fr)
    repeat(3, max-content)
    minmax(0, 2.9fr)
    max-content;
  gap: clamp(1.25rem, 2.2vw, 2rem);
  align-items: start;
}

/* Brand column */

.footer__logo {
  width: clamp(158px, 14.5vw, 205px);
  height: auto;
  filter: brightness(1.32) saturate(1.05);
}

.footer__tagline {
  margin-top: 0.7rem;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--leaf);
}

.footer__blurb {
  margin-top: 1.35rem;
  max-width: 21rem;
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(243, 238, 230, 0.72);
}

.socials {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(243, 238, 230, 0.22);
  border-radius: 50%;
  color: rgba(243, 238, 230, 0.82);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.socials a:hover {
  background: rgba(243, 238, 230, 0.1);
  border-color: rgba(184, 205, 178, 0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.socials svg {
  width: 0.95rem;
  height: 0.95rem;
}

.footer__motto {
  margin-top: 1.7rem;
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 238, 230, 0.6);
}

.footer__motto::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 0.85rem;
  background: rgba(243, 238, 230, 0.28);
}

/* Link columns */

.footer__heading {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf);
}

.footer__col ul {
  list-style: none;
  margin-top: 1.55rem;
  display: grid;
  gap: 0.9rem;
}

.footer__col a {
  font-size: 0.82rem;
  color: rgba(243, 238, 230, 0.78);
  transition: color 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--white);
}

/* Newsletter */

.footer__news {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(243, 238, 230, 0.16);
}

.footer__news-title {
  margin-top: 1.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.75vw, 1.75rem);
  font-weight: 500;
  line-height: 1.28;
  color: var(--cream);
}

.footer__news-copy {
  margin-top: 1rem;
  max-width: 22rem;
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(243, 238, 230, 0.7);
}

.subscribe {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 22rem;
  margin-top: 1.5rem;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  border: 1px solid rgba(243, 238, 230, 0.28);
  border-radius: 999px;
  transition: border-color 0.35s var(--ease);
}

.subscribe:focus-within {
  border-color: rgba(184, 205, 178, 0.75);
}

.subscribe input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 0.8rem;
  color: var(--cream);
  background: none;
  border: none;
  outline: none;
}

.subscribe input::placeholder {
  color: rgba(243, 238, 230, 0.55);
}

.subscribe button {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(138, 106, 69, 0.85);
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.subscribe button:hover {
  background: var(--bronze);
  transform: translateX(2px);
}

.subscribe svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* Vertical accent */

.footer__vertical {
  justify-self: end;
  margin-top: 1.9rem;
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(243, 238, 230, 0.7);
}

.footer__vertical::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1px;
  margin: 0.65rem auto 0;
  background: rgba(243, 238, 230, 0.32);
}

/* Bottom bar */

.footer__bottom {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(243, 238, 230, 0.14);
}

.footer__legalese,
.footer__policies {
  font-size: 0.74rem;
  color: rgba(243, 238, 230, 0.62);
}

/* Floats in the free space, leaving policies and back-to-top as a right-hand cluster */
.footer__legalese {
  margin-inline: auto;
}

.footer__policies {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__policies a {
  transition: color 0.3s var(--ease);
}

.footer__policies a:hover {
  color: var(--white);
}

.footer__policies span {
  color: rgba(243, 238, 230, 0.28);
}

.footer__totop {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  color: rgba(243, 238, 230, 0.78);
  transition: color 0.3s var(--ease);
}

.footer__totop:hover {
  color: var(--white);
}

.footer__totop-orb {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(243, 238, 230, 0.24);
  border-radius: 50%;
  background: rgba(243, 238, 230, 0.12);
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.footer__totop:hover .footer__totop-orb {
  background: rgba(243, 238, 230, 0.14);
  transform: translateY(-3px);
}

.footer__totop svg {
  width: 0.85rem;
  height: 0.85rem;
}

/* -- Preloader -- */

/* Hidden by default so the page stays usable when JS never arms it */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--cream);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s var(--ease);
}

.is-loading .preloader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.is-loading body {
  overflow: hidden;
}

.preloader__inner {
  display: grid;
  justify-items: center;
  padding-bottom: 2rem;
}

.preloader__logo {
  width: clamp(140px, 16vw, 190px);
  height: auto;
}

.preloader__tagline {
  margin-top: 1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
}

.preloader__track {
  position: relative;
  overflow: hidden;
  width: clamp(7rem, 14vw, 10rem);
  height: 2px;
  margin-top: 1.9rem;
  border-radius: 999px;
  background: rgba(26, 51, 38, 0.12);
}

.preloader__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  animation: preloadSweep 1.15s var(--ease) infinite;
}

@keyframes preloadSweep {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(240%);
  }
}

/* Status line sits under the pill, so it can't disturb the input row */
.footer__form-status {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--leaf);
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.75rem;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease);
}

.skip-link:focus-visible {
  transform: none;
}

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

/* -- Responsive -- */

@media (max-width: 1150px) {
  .footer__top {
    grid-template-columns: minmax(0, 2.4fr) repeat(3, max-content) minmax(0, 2.9fr);
  }

  .footer__vertical {
    display: none;
  }
}

@media (max-width: 1080px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem clamp(1.5rem, 4vw, 3rem);
  }

  .footer__bottom {
    justify-content: space-between;
    gap: 1.5rem;
  }

  .footer__legalese {
    margin-inline: 0;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__news {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 2rem;
    border-left: none;
    border-top: 1px solid rgba(243, 238, 230, 0.16);
  }

  /* Stacked footer is far taller than the artwork, so crop instead of stretching it */
  .footer__bg {
    background-size: cover;
  }

  .footer__veil {
    background:
      radial-gradient(
        120% 75% at 44% 46%,
        rgba(19, 37, 26, 0.95) 0%,
        rgba(19, 37, 26, 0.91) 48%,
        rgba(19, 37, 26, 0.68) 100%
      );
  }
}

@media (max-width: 1000px) {
  .about {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    padding-block: clamp(2.5rem, 8vw, 4rem);
    padding-right: 0;
  }

  .about__content {
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  }

  .about__lead,
  .about__points {
    max-width: none;
  }

  /* Photo drops below the copy as a banner */
  .about__media {
    width: auto;
    height: clamp(15rem, 46vw, 22rem);
    margin: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 5vw, 2.5rem) 0;
  }

  .impact {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
  }

  /* Photo becomes a banner above the copy, arc moving to its bottom edge */
  .impact__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(20rem, 58vw, 30rem);
  }

  .impact__frame {
    clip-path: none;
    border-radius: 0 0 50% 50% / 0 0 10% 10%;
  }

  .impact__ring {
    display: none;
  }

  .impact__stone {
    left: 0;
    width: 74%;
  }

  .impact__content {
    grid-column: 1;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding-top: calc(0.7rem + env(safe-area-inset-top, 0px));
  }

  .nav__logo,
  .nav__actions,
  .nav__toggle {
    position: relative;
    z-index: 6;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 5;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: calc(5.1rem + env(safe-area-inset-top, 0px)) 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(246, 241, 232, 0.98);
    backdrop-filter: blur(16px);
    border: 0;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links > a:not(.btn),
  .nav__item--drop > a {
    font-size: 1.05rem;
    padding: 0.85rem 0.15rem;
  }

  .nav__cta {
    display: inline-flex;
    width: fit-content;
    margin-top: 1rem;
  }

  .nav__item--drop {
    flex-wrap: wrap;
    width: 100%;
  }

  .nav__caret {
    margin-left: auto;
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav__drop {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    display: none;
    margin-top: 0.2rem;
    padding: 0.15rem 0 0.35rem 0.15rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__drop a {
    padding: 0.7rem 0.35rem;
    font-size: 0.92rem;
  }

  .nav__item--drop.is-open .nav__drop {
    display: grid;
  }

  .nav__toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav__actions {
    justify-self: end;
  }

  .nav__actions .btn--sm,
  .nav__actions .lang {
    display: none;
  }

  .hero__slide {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 0.25rem;
  }

  .hero__copy {
    max-width: 28rem;
  }

  .hero__side {
    display: none;
  }

  .hero__bg--1 {
    background-position: 72% center;
  }

  .hero__bg--2 {
    background-position: 32% center;
  }

  /* Portrait crops lose the photo's built-in wash, so every slide needs one */
  .hero__bg--1::after,
  .hero__bg--2::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(243, 238, 230, 0.55) 0%,
        rgba(243, 238, 230, 0.72) 42%,
        rgba(243, 238, 230, 0.35) 70%,
        rgba(243, 238, 230, 0.15) 100%
      );
  }

}

@media (max-width: 640px) {
  .nav {
    padding-inline: 1rem;
  }

  .nav__logo {
    width: clamp(92px, 28vw, 120px);
  }

  .about__points li {
    font-size: 0.68rem;
    padding-inline: 0.3rem;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
  }

  .hero__body {
    min-height: min(58svh, 28rem);
  }

  .hero__slide,
  .hero__footer-meta {
    padding-inline: 1.1rem;
  }

  .nav--overlay ~ .hero .hero__slide {
    padding-top: calc(4.9rem + env(safe-area-inset-top, 0px));
  }

  .hero__title {
    font-size: clamp(1.85rem, 9.2vw, 2.55rem);
  }

  .hero__lead {
    margin-bottom: 0.85rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero .btn--lg {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 0;
    max-width: 21rem;
  }

  .stats li:nth-child(odd) {
    border-left: none;
  }

  .scroll__label {
    display: none;
  }

  .footer__tagline {
    white-space: normal;
  }

  .footer__inner {
    padding-inline: 1.15rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .footer__legalese {
    margin-inline: 0;
    max-width: 22rem;
  }

  .footer__policies {
    flex-wrap: wrap;
  }

  .subscribe {
    max-width: none;
  }
}

@media (max-width: 430px) {
  .about__title {
    font-size: clamp(1.85rem, 10vw, 2.4rem);
  }

  .impact__title {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .impact__content {
    padding-inline: 1.15rem;
  }

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

  .about__media {
    margin-inline: 1rem;
    height: 16.5rem;
  }
}

@media (max-height: 760px) {
  .hero__title {
    font-size: clamp(2.1rem, 5.8vh, 3.1rem);
  }


  .scroll__orb {
    width: 1.5rem;
    height: 1.5rem;
  }
}

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

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

  .nav,
  .hero__copy > *,
  .hero__vertical,
  .hero__stack,
  .slides,
  .scroll,
  .hero__bg.is-active {
    opacity: 1;
    transform: none;
  }
}
