/* DaasTek static site — layout, components, motion, responsive
 * Port of inline-style objects from components/*.jsx. Hex values and clamp()s
 * preserved verbatim from the prototype.
 */

/* === RESET / BASE ============================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ece8e7;
  font-family: 'Open Sans', system-ui, sans-serif;
  color: #343434;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { display: block; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

/* === MOTION PRIMITIVES ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 600ms cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    opacity 520ms cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.mask-wipe {
  display: inline-block;
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  transform: translateY(0.4em);
  transition:
    clip-path 900ms cubic-bezier(.7,.05,.2,1) var(--mask-delay, 0ms),
    -webkit-clip-path 900ms cubic-bezier(.7,.05,.2,1) var(--mask-delay, 0ms),
    transform 900ms cubic-bezier(.7,.05,.2,1) var(--mask-delay, 0ms);
  will-change: clip-path, transform;
}
.mask-wipe.is-visible {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

/* === HEADER ===================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  background: rgba(236, 232, 231, 0.55);
  border-bottom: 1px solid rgba(20, 75, 47, 0.06);
  transition: background 220ms cubic-bezier(.2,.7,.2,1), border-color 220ms;
}
.header.is-scrolled {
  background: rgba(236, 232, 231, 0.85);
  border-bottom-color: rgba(20, 75, 47, 0.12);
}
.header__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 40px);
  display: flex; align-items: center; gap: 32px;
}
.header__brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.header__brand img { border-radius: 7px; }
.header__word {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 22px; color: #144b2f; letter-spacing: -0.02em;
}
.header__nav { display: flex; gap: 30px; margin-left: 32px; flex: 1; }
.header__link {
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 500; color: #343434;
  text-decoration: none; padding: 6px 0;
  transition: color 140ms cubic-bezier(.2,.7,.2,1);
}
.header__link.is-active { color: #144b2f; }
.header__link.is-active::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 4px; background: #144b2f;
}
.header__actions { display: flex; align-items: center; gap: 22px; }
.btn-cta {
  background: #144b2f; color: #fff;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 14px;
  padding: 11px 20px; border: none; border-radius: 8px; cursor: pointer;
  transition: background 220ms cubic-bezier(.2,.7,.2,1);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-cta:hover { background: #0f3d24; }
.btn-cta .arrow { opacity: 0.7; }

.header__menu-btn {
  display: none;
  background: transparent; border: none; cursor: pointer;
  width: 32px; height: 32px; padding: 0;
  flex-direction: column; justify-content: center; gap: 5px;
}
.header__menu-btn span {
  width: 22px; height: 1.5px; background: #144b2f;
  transition: all 220ms cubic-bezier(.2,.7,.2,1);
  transform-origin: center;
}
.header.is-menu-open .header__menu-btn span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.header.is-menu-open .header__menu-btn span:nth-child(2) { opacity: 0; }
.header.is-menu-open .header__menu-btn span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

.header__mobile {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 8px 24px 24px;
  border-top: 1px solid rgba(20,75,47,.08);
}
.header.is-menu-open .header__mobile { display: flex; }
.header__mobile-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; font-weight: 500; color: #343434;
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid rgba(20,75,47,.06);
}
.header__mobile .btn-cta { width: 100%; justify-content: center; margin-top: 12px; }

/* === HERO ======================================================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 4vw, 40px) clamp(48px, 6vw, 80px);
}
.hero__botanical {
  position: absolute; top: 60px; right: 4%;
  opacity: 0.55; pointer-events: none;
}
.hero__grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 72px); align-items: center;
  position: relative; z-index: 1;
}
.hero__eb {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #144b2f; margin-bottom: 28px;
}
.hero__h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(48px, 6.4vw, 84px);
  line-height: 1.04; letter-spacing: -0.025em; color: #144b2f;
  margin: 0 0 28px; text-wrap: balance;
}
.hero__em { font-style: italic; font-weight: 400; color: #1d6841; }
.hero__lead {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px; line-height: 1.7; color: #4a4a4a;
  max-width: 540px; margin: 0 0 36px; text-wrap: pretty;
}
.hero__actions { display: flex; gap: 18px; align-items: center; margin-bottom: 56px; }
.btn-primary {
  background: #144b2f; color: #fff;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 15px 28px; border: none; border-radius: 8px; cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 220ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover { background: #0f3d24; }
.btn-ghost {
  background: transparent; color: #144b2f; border: none;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 15px 6px; cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}
.btn-ghost .arrow { margin-left: 4px; }

.hero__meta {
  display: flex; align-items: flex-start; gap: 28px;
  padding-top: 32px; border-top: 1px solid rgba(20,75,47,.12);
}
.hero__meta-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 700; color: #144b2f;
  line-height: 1; letter-spacing: -0.02em;
}
.hero__meta-lab {
  font-family: 'Open Sans', sans-serif; font-size: 12px; color: #6b6b6b;
  margin-top: 6px; max-width: 140px; line-height: 1.4;
}
.hero__meta-div {
  width: 1px; align-self: stretch; min-height: 44px;
  background: rgba(20,75,47,.14);
}

.hero__img-wrap { position: relative; min-height: 520px; }
.hero__img-frame {
  position: relative; z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: 54% 46% 50% 50% / 56% 44% 54% 46%;
  overflow: hidden;
  box-shadow:
    0 20px 50px -12px rgba(20,75,47,.22),
    0 8px 16px -8px rgba(20,75,47,.12);
}
.hero__img-frame svg { width: 100%; height: 100%; display: block; }
.hero__img-caption {
  position: absolute; bottom: 24px; left: 28px; z-index: 3;
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,.85); font-weight: 600;
}
.hero__bg-blob {
  position: absolute; top: 6%; right: -10%;
  width: 78%; aspect-ratio: 1;
  background: #dcecdf;
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
}

/* Hero entrance — RevealOnLoad-style */
.hero [data-onload] {
  opacity: 0; transform: translateY(var(--y, 18px));
  transition:
    transform var(--dur, 600ms) cubic-bezier(.2,.7,.2,1) var(--delay, 0ms),
    opacity calc(var(--dur, 600ms) - 80ms) cubic-bezier(.2,.7,.2,1) var(--delay, 0ms);
}
.hero.is-loaded [data-onload] { opacity: 1; transform: translateY(0); }
.hero__img-wrap[data-onload] { --y: 28px; --dur: 900ms; --delay: 300ms; }

/* === SERVICES =================================================== */
.section--svc {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 40px);
  max-width: 1280px; margin: 0 auto;
}
.svc__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.svc__eb, .eb-fc {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #144b2f; margin-bottom: 14px;
}
.svc__h2, .h2-fc {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1; color: #144b2f; letter-spacing: -0.02em;
  margin: 0 0 18px; text-wrap: balance;
}
.em-italic { font-style: italic; font-weight: 400; color: #1d6841; }
.svc__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px; line-height: 1.65; color: #4a4a4a;
  margin: 0; text-wrap: pretty;
}
.svc__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc-card {
  border: 1px solid rgba(20,75,47,.10);
  border-radius: 18px; padding: 32px 28px 28px;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms cubic-bezier(.2,.7,.2,1);
  cursor: pointer; position: relative; min-height: 260px;
  display: flex; flex-direction: column;
}
.svc-card--forest { background: #dcecdf; }
.svc-card--sage   { background: #e8efe5; }
.svc-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(20,75,47,.18); }
.svc-card__icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(20,75,47,.12);
  display: grid; place-items: center; margin-bottom: 22px;
}
.svc-card__eb {
  display: block; font-family: 'Open Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #144b2f; margin-bottom: 10px;
}
.svc-card__h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; font-weight: 600; color: #144b2f;
  letter-spacing: -0.01em; margin: 0 0 12px; line-height: 1.2;
}
.svc-card__p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14.5px; line-height: 1.65; color: #3a3a3a;
  margin: 0 0 22px; flex: 1; text-wrap: pretty;
}
.svc-card__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; font-weight: 600; color: #144b2f;
  text-decoration: none; align-self: flex-start;
  padding-bottom: 2px; border-bottom: 1px solid rgba(20,75,47,.3);
}

/* === FEATUREBAND ================================================ */
.fb {
  position: relative; min-height: clamp(420px, 56vw, 640px);
  margin: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 40px);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(20,75,47,.25);
}
.fb__media { position: absolute; inset: 0; }
.fb__media svg { width: 100%; height: 100%; display: block; }
.fb__content {
  position: relative; z-index: 1; max-width: 640px; color: #fff;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 72px);
}
.fb__eb {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #dcecdf; margin-bottom: 22px;
}
.fb__h {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.08; letter-spacing: -0.022em; margin: 0 0 22px;
  color: #fff; text-wrap: balance;
}
.fb__em { font-style: italic; font-weight: 400; color: #b9dec7; }
.fb__p {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.85); margin: 0 0 32px;
  max-width: 520px; text-wrap: pretty;
}
.fb__btn {
  background: #fff; color: #144b2f; border: none;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 8px; cursor: pointer;
  transition: background 220ms cubic-bezier(.2,.7,.2,1);
  text-decoration: none; display: inline-block;
}
.fb__btn:hover { background: #ece8e7; }

/* === SUBSCRIPTIONS ============================================== */
.section--subs {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 40px);
  max-width: 1280px; margin: 0 auto;
}
.subs__grid {
  display: grid; grid-template-columns: .9fr 1.25fr;
  gap: clamp(40px, 6vw, 80px); align-items: flex-start;
}
.subs__col { position: sticky; top: 96px; }
.subs__lead {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px; line-height: 1.7; color: #4a4a4a;
  margin: 0 0 36px; text-wrap: pretty;
}
.subs__h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08; color: #144b2f; letter-spacing: -0.022em;
  margin: 0 0 24px; text-wrap: balance;
}
.subs__notes {
  display: grid; gap: 22px;
  padding-top: 28px; border-top: 1px solid rgba(20,75,47,.12);
}
.note {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  align-items: flex-start;
}
.note__dot {
  width: 8px; height: 8px; border-radius: 8px;
  background: #1d6841; margin-top: 8px;
}
.note__h {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  font-weight: 600; color: #144b2f; margin-bottom: 4px;
}
.note__p {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  line-height: 1.6; color: #4a4a4a;
}

.subs__tiers { display: grid; gap: 16px; }
.tier {
  position: relative; border: 1px solid rgba(20,75,47,.12);
  border-radius: 16px; padding: 28px;
  background: #fff; color: #343434;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1);
}
.tier--featured {
  background: #144b2f; color: #fff; border-color: transparent;
}
.tier__row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px;
}
.tier__h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0; line-height: 1.2; color: #144b2f;
}
.tier--featured .tier__h { color: #fff; }
.tier__cadence {
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #6b6b6b;
}
.tier--featured .tier__cadence { color: rgba(255,255,255,.7); }
.tier__tagline {
  font-family: 'Open Sans', sans-serif; font-size: 13px;
  font-weight: 600; margin: 6px 0 16px; color: #1d6841;
}
.tier--featured .tier__tagline { color: #b9dec7; }
.tier__p {
  font-family: 'Open Sans', sans-serif; font-size: 14.5px;
  line-height: 1.65; margin: 0 0 20px; text-wrap: pretty;
  color: #4a4a4a;
}
.tier--featured .tier__p { color: rgba(255,255,255,.82); }
.tier__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.tier__li {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  line-height: 1.55; display: grid;
  grid-template-columns: auto 1fr; gap: 12px; align-items: baseline;
  color: #343434;
}
.tier--featured .tier__li { color: rgba(255,255,255,.85); }
.tier__tick { font-weight: 600; color: #1d6841; }
.tier--featured .tier__tick { color: #b9dec7; }
.tier__btn {
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 14px;
  padding: 12px 18px; border: none; border-radius: 8px; cursor: pointer;
  width: 100%; background: #144b2f; color: #fff;
  text-decoration: none; display: block; text-align: center;
}
.tier--featured .tier__btn { background: #fff; color: #144b2f; }
.tier__flag {
  position: absolute; top: -10px; right: 24px;
  background: #b9dec7; color: #0a2f1c;
  font-family: 'Open Sans', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}

/* === INDUSTRIES ================================================= */
.section--ind {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 40px);
  max-width: 1280px; margin: 0 auto;
}
.ind__head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.ind__head h2 { max-width: 700px; margin: 0; line-height: 1.08; letter-spacing: -0.022em; }
.ind__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(20,75,47,.16);
}
.ind__card {
  padding: 32px 24px 36px;
  border-bottom: 1px solid rgba(20,75,47,.16);
  border-right: 1px solid rgba(20,75,47,.16);
}
.ind__num {
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.2em;
  color: #1d6841; margin-bottom: 18px;
}
.ind__h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 600; color: #144b2f;
  letter-spacing: -0.01em; margin: 0 0 10px; line-height: 1.25;
}
.ind__p {
  font-family: 'Open Sans', sans-serif; font-size: 14.5px;
  line-height: 1.65; color: #4a4a4a; margin: 0; text-wrap: pretty;
}

/* === INSIGHTS =================================================== */
.section--ins {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 40px);
  max-width: 1280px; margin: 0 auto;
}
.ins__head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.ins__head h2 { max-width: 700px; margin: 0; line-height: 1.08; letter-spacing: -0.022em; }
.ins__all {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  font-weight: 600; color: #144b2f; text-decoration: none;
  border-bottom: 1px solid rgba(20,75,47,.3); padding-bottom: 2px;
}
.ins__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ins__grid--videos { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
.ins__card { display: flex; flex-direction: column; }
.ins__cover {
  aspect-ratio: 4/3; border-radius: 14px; margin-bottom: 22px;
  display: grid; place-items: center;
}
.ins__cover--forest { background: linear-gradient(135deg, #1d6841 0%, #0a2f1c 100%); }
.ins__cover--water  { background: linear-gradient(135deg, #3d6a72 0%, #144b2f 100%); }
.ins__cover--sage   { background: linear-gradient(135deg, #b9dec7 0%, #4faa78 100%); }
.ins__video-wrap {
  aspect-ratio: 16/9; border-radius: 14px; overflow: hidden;
  margin-bottom: 22px;
  background: #0a2f1c;
  border: 1px solid rgba(20,75,47,.10);
  box-shadow: 0 8px 20px -8px rgba(20,75,47,.18);
}
.ins__video { display: block; width: 100%; height: 100%; object-fit: cover; }
.ins__meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #144b2f;
}
.ins__h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; font-weight: 600; color: #144b2f;
  letter-spacing: -0.01em; margin: 0 0 12px; line-height: 1.25;
  text-wrap: balance;
}
.ins__p {
  font-family: 'Open Sans', sans-serif; font-size: 14.5px;
  line-height: 1.65; color: #4a4a4a; margin: 0 0 18px; text-wrap: pretty;
}
.ins__read {
  font-family: 'Open Sans', sans-serif; font-size: 13px;
  font-weight: 600; color: #144b2f; text-decoration: none;
  border-bottom: 1px solid rgba(20,75,47,.3);
  align-self: flex-start; padding-bottom: 2px;
}

/* === MARQUEE ==================================================== */
.mq { padding: 0 0 clamp(40px, 5vw, 64px); overflow: hidden; }
.mq__head {
  max-width: 1240px; margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 40px) 28px;
  border-top: 1px solid rgba(20,75,47,.12);
  display: flex; align-items: center; gap: 16px;
}
.mq__eb {
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #144b2f;
}
.mq__sep { width: 24px; height: 1px; background: rgba(20,75,47,.3); }
.mq__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 15px; color: #6b6b6b;
}
.mq__viewport {
  position: relative; overflow: hidden;
  background: #ece8e7; /* needed for mix-blend-mode on logos (mask creates isolation) */
  -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%);
  padding-top: 20px; padding-bottom: 20px;
}
.mq__track {
  display: flex; align-items: center; width: max-content;
  animation: mq-scroll 40s linear infinite;
  will-change: transform;
}
.mq__track:hover { animation-play-state: paused; }
.mq__cell {
  display: flex; align-items: center; justify-content: center;
  padding: 0 56px; flex-shrink: 0;
  min-width: 260px; min-height: 80px;
}
.mq__logo {
  width: 156px;
  height: 64px;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: multiply;
  transition: opacity 220ms cubic-bezier(.2,.7,.2,1);
}
@keyframes mq-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.3333%, 0, 0); }
}

/* === CTABAND ==================================================== */
.cta {
  background: #144b2f;
  padding: clamp(72px,9vw,128px) clamp(20px,4vw,40px);
}
.cta__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,72px); align-items: center;
}
.cta__left { color: #ece8e7; }
.cta__eb {
  display: inline-block;
  font-family: 'Open Sans', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #82c79e; margin-bottom: 18px;
}
.cta__h {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(40px,5.2vw,64px);
  letter-spacing: -0.022em; margin: 0 0 20px; color: #fff;
  text-wrap: balance; line-height: 1.05;
}
.cta__em { font-style: italic; font-weight: 400; color: #b9dec7; }
.cta__p {
  font-family: 'Open Sans', sans-serif; font-size: 17px;
  line-height: 1.7; color: rgba(236,232,231,.8);
  margin: 0 0 28px; text-wrap: pretty;
}
.cta__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.cta__li {
  font-family: 'Open Sans', sans-serif; font-size: 15px;
  color: rgba(236,232,231,.85);
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: baseline;
}
.cta__tick { color: #b9dec7; font-weight: 600; }
.cta__email {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  color: rgba(236,232,231,.7);
  padding-top: 24px; border-top: 1px solid rgba(236,232,231,.14);
}
.cta__email a {
  color: #b9dec7; text-decoration: none;
  border-bottom: 1px solid rgba(185,222,199,.4);
}
.cta__form {
  background: #ece8e7; padding: 36px;
  border-radius: 16px; display: grid; gap: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
}
.cta__form-eb {
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #1d6841; margin-bottom: 4px;
}
.cta__field { display: grid; gap: 6px; }
.cta__lab {
  font-family: 'Open Sans', sans-serif; font-size: 12px;
  font-weight: 600; color: #343434;
}
.cta__inp {
  font-family: 'Open Sans', sans-serif; font-size: 15px;
  padding: 12px 14px; border: 1px solid rgba(20,75,47,.18);
  border-radius: 8px; background: #fff; color: #343434; outline: none;
}
.cta__inp:focus { border-color: #144b2f; }
.cta__textarea { min-height: 96px; resize: vertical; font-family: inherit; }
.cta__btn {
  background: #144b2f; color: #fff;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 22px; border: none; border-radius: 8px; cursor: pointer;
  margin-top: 4px; transition: background 220ms cubic-bezier(.2,.7,.2,1);
}
.cta__btn:hover { background: #0f3d24; }
.cta__btn:disabled {
  background: #6b8a7a; cursor: not-allowed; opacity: 0.9;
}
.cta__status {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  min-height: 18px;
  color: #4a4a4a;
}
.cta__status--ok  { color: #1d6841; font-weight: 600; }
.cta__status--err { color: #a23838; font-weight: 600; }
.cta__fine {
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  color: #6b6b6b; line-height: 1.5;
}
.cta__fine-link {
  color: #144b2f; text-decoration: underline;
  text-underline-offset: 2px;
}
.cta__fine-link:hover { color: #1d6841; }

/* === FOOTER ===================================================== */
.footer {
  background: #0a2f1c; color: #ece8e7;
  padding: 88px clamp(20px,4vw,40px) 32px;
}
.footer__top {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2.4fr; gap: 56px;
}
.footer__brand { max-width: 360px; }
.footer__brand img { margin-bottom: 22px; border-radius: 10px; }
.footer__word {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 30px;
  letter-spacing: -0.02em; color: #fff;
}
.footer__tag {
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(236,232,231,.6); margin-top: 8px; font-weight: 600;
}
.footer__blurb {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  line-height: 1.65; color: rgba(236,232,231,.7);
  margin: 20px 0 0; text-wrap: pretty;
}
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__h {
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; font-weight: 600; margin-bottom: 8px;
}
.footer__link {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  color: rgba(236,232,231,.7); text-decoration: none;
}
.footer__link:hover { color: #fff; }
.footer__bot {
  max-width: 1240px; margin: 64px auto 0;
  padding-top: 22px; border-top: 1px solid rgba(236,232,231,.14);
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: space-between;
  font-family: 'Open Sans', sans-serif; font-size: 12px;
  color: rgba(236,232,231,.55);
}
.footer__bot-links { display: flex; gap: 20px; }
.footer__bot-link {
  color: rgba(236,232,231,.55); text-decoration: none;
}

/* === FOUNDERS PAGE ============================================== */
.fp {
  padding: clamp(72px,9vw,128px) clamp(20px,4vw,40px);
  max-width: 1180px; margin: 0 auto;
}
.fp__head { text-align: center; max-width: 820px; margin: 0 auto 88px; }
.fp__eb, .tp__eb {
  display: inline-block;
  font-family: 'Open Sans', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #144b2f; margin-bottom: 18px;
}
.fp__h1, .tp__h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(48px,6vw,76px);
  line-height: 1.05; color: #144b2f; letter-spacing: -0.025em;
  margin: 0 0 28px; text-wrap: balance;
}
.fp__lead, .tp__lead {
  font-family: 'Open Sans', sans-serif; font-size: 17px;
  line-height: 1.7; color: #4a4a4a; margin: 0 0 32px; text-wrap: pretty;
}
.fp__pull, .tp__pull {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(22px,2.4vw,28px); line-height: 1.4;
  color: #144b2f; letter-spacing: -0.01em; margin: 0;
  text-wrap: balance;
  border-top: 1px solid rgba(20,75,47,.18); padding-top: 32px;
}
.fp__list { display: flex; flex-direction: column; gap: 56px; margin-bottom: 96px; }
.fp__row { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.fp__portrait {
  aspect-ratio: 1; border-radius: 14px;
  display: grid; place-items: center;
  position: sticky; top: 96px;
}
.portrait--forest { background: linear-gradient(135deg, #1d6841 0%, #0a2f1c 100%); }
.portrait--water  { background: linear-gradient(135deg, #3d6a72 0%, #144b2f 100%); }
.fp__initials {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 88px; font-weight: 600; color: #fff; letter-spacing: -0.02em;
}
.fp__bio { padding-top: 8px; }
.fp__tagline {
  display: inline-block;
  font-family: 'Open Sans', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #1d6841; margin-bottom: 12px;
}
.fp__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px,3.4vw,44px); font-weight: 700;
  color: #144b2f; letter-spacing: -0.02em;
  margin: 0 0 22px; line-height: 1.1;
}
.fp__title { font-weight: 400; font-style: italic; color: #1d6841; }
.fp__para {
  font-family: 'Open Sans', sans-serif; font-size: 16px;
  line-height: 1.7; color: #343434; margin: 0 0 16px; text-wrap: pretty;
}
.fp__links { display: flex; gap: 24px; padding-top: 16px; margin-top: 8px; }
.fp__link {
  font-family: 'Open Sans', sans-serif; font-size: 13px;
  font-weight: 600; color: #144b2f; text-decoration: none;
  border-bottom: 1px solid rgba(20,75,47,.3); padding-bottom: 1px;
}

/* Shared sub-page CTA panel (founders + testimonials) */
.subcta {
  text-align: center;
  padding: clamp(48px,6vw,72px) 24px;
  background: #dcecdf; border-radius: 20px;
}
.subcta__eb {
  display: inline-block;
  font-family: 'Open Sans', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #144b2f; margin-bottom: 14px;
}
.subcta__h {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; font-size: clamp(28px,3vw,38px);
  color: #144b2f; letter-spacing: -0.015em;
  margin: 0 0 12px; text-wrap: balance;
}
.subcta__p {
  font-family: 'Open Sans', sans-serif; font-size: 16px;
  color: #4a4a4a; margin: 0 0 28px;
}
.subcta__btn {
  background: #144b2f; color: #fff;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border: none; border-radius: 8px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 220ms cubic-bezier(.2,.7,.2,1);
}
.subcta__btn:hover { background: #0f3d24; }
.subcta__email {
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  color: #4a4a4a; margin: 24px 0 0;
}
.subcta__email a {
  color: #144b2f; font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(20,75,47,.3);
}

/* Inline modifier: founders/testimonials embedded as sections on home */
.fp--inline,
.tp--inline {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 40px);
}
.fp--inline .fp__head,
.tp--inline .tp__head { margin-bottom: 56px; }
.fp--inline .fp__h1,
.tp--inline .tp__h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.022em;
}
.fp--inline .fp__list,
.tp--inline .tp__list { margin-bottom: 0; }
.fp--inline .fp__name {
  font-size: clamp(28px, 2.6vw, 36px);
}

/* === TESTIMONIALS PAGE ========================================== */
.tp {
  padding: clamp(72px,9vw,128px) clamp(20px,4vw,40px);
  max-width: 1080px; margin: 0 auto;
}
.tp__head { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.tp__lead { margin-bottom: 32px; }
.tp__list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 96px; }
.tp__card {
  background: #fff; border: 1px solid rgba(20,75,47,.10);
  border-radius: 16px; padding: clamp(32px,4vw,48px);
  position: relative; overflow: hidden;
}
.tp__bar { position: absolute; top: 0; left: 0; height: 3px; width: 100%; }
.tp__bar--forest { background: #144b2f; }
.tp__bar--water  { background: #3d6a72; }
.tp__bar--sage   { background: #4faa78; }
.tp__mark {
  display: block; font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px; line-height: 0.5; color: #1d6841;
  opacity: 0.25; margin-top: 16px; margin-bottom: 8px;
}
.tp__quote {
  font-family: 'Open Sans', sans-serif; font-size: 17px;
  line-height: 1.7; color: #343434; margin: 0 0 32px; text-wrap: pretty;
}
.tp__attrib {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid rgba(20,75,47,.10);
}
.tp__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.tp__avatar--forest { background: linear-gradient(135deg, #1d6841 0%, #0a2f1c 100%); }
.tp__avatar--water  { background: linear-gradient(135deg, #3d6a72 0%, #144b2f 100%); }
.tp__avatar--sage   { background: linear-gradient(135deg, #b9dec7 0%, #4faa78 100%); }
.tp__avatar-init {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 600; color: #fff; letter-spacing: -0.01em;
}
.tp__name {
  font-family: 'Open Sans', sans-serif; font-size: 15px;
  font-weight: 600; color: #144b2f;
}
.tp__org {
  font-family: 'Open Sans', sans-serif; font-size: 13px;
  color: #6b6b6b; margin-top: 2px;
}

/* Inline 3-up grid (home page only) — compact testimonials */
.tp--inline { max-width: 1240px; }
.tp--inline .tp__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
  align-items: stretch;
}
.tp--inline .tp__card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.tp--inline .tp__mark { display: none; }
.tp--inline .tp__quote {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 16px 0 24px;
  flex: 1;
}
.tp--inline .tp__attrib {
  padding-top: 18px;
  gap: 12px;
}
.tp--inline .tp__avatar { width: 40px; height: 40px; }
.tp--inline .tp__avatar-init { font-size: 15px; }
.tp--inline .tp__name { font-size: 14px; }
.tp--inline .tp__org { font-size: 12px; }

@media (max-width: 880px) {
  .tp--inline .tp__list { grid-template-columns: 1fr; gap: 24px; }
  .tp--inline .tp__quote { font-size: 16px; }
}

/* === LEGAL / PRIVACY POLICY ===================================== */
.legal {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 40px);
  max-width: 760px;
  margin: 0 auto;
}
.legal__head { margin-bottom: 48px; }
.legal__eb {
  display: inline-block;
  font-family: 'Open Sans', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #144b2f; margin-bottom: 18px;
}
.legal__h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.05; color: #144b2f; letter-spacing: -0.025em;
  margin: 0 0 28px; text-wrap: balance;
}
.legal__lead {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px; line-height: 1.7; color: #4a4a4a;
  margin: 0 0 18px; text-wrap: pretty;
}
.legal__body { padding-top: 24px; border-top: 1px solid rgba(20,75,47,.14); }
.legal__h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2; color: #144b2f; letter-spacing: -0.01em;
  margin: 48px 0 14px;
}
.legal__body > .legal__h2:first-child { margin-top: 0; }
.legal__p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; line-height: 1.75; color: #343434;
  margin: 0 0 14px; text-wrap: pretty;
}
.legal__ol, .legal__ul {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; line-height: 1.75; color: #343434;
  margin: 0 0 18px; padding-left: 24px;
}
.legal__ol li, .legal__ul li { margin-bottom: 8px; }
.legal__link {
  color: #144b2f; font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(20,75,47,.3);
  transition: color 140ms cubic-bezier(.2,.7,.2,1);
}
.legal__link:hover { color: #1d6841; }

/* === RESPONSIVE ================================================= */
@media (max-width: 1040px) {
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__menu-btn { display: flex; }
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img-wrap { min-height: 420px; }
  .subs__grid { grid-template-columns: 1fr; }
  .subs__col { position: static; }
  .cta__inner { grid-template-columns: 1fr; }
  .svc__grid { grid-template-columns: 1fr 1fr; }
  .fp__row { grid-template-columns: 1fr; gap: 24px; }
  .fp__portrait { position: static; max-width: 280px; }
}
@media (max-width: 620px) {
  .svc__grid { grid-template-columns: 1fr; }
  .ind__grid { grid-template-columns: 1fr; }
  .ins__grid,
  .ins__grid--videos { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__meta { flex-wrap: wrap; }
  .hero__meta-div { display: none; }
}

/* === REDUCED MOTION ============================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .mask-wipe, .hero [data-onload] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    transition: none !important;
  }
  .mq__track { animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
