/* ============================================================
   Ecomaj Consulting — stylesheet
   Editorial / authoritative (BCG) with confident motion (It's Off Brand)
   ============================================================ */

:root {
  /* color tokens */
  --paper:   oklch(0.974 0.008 120);
  --paper-2: oklch(0.948 0.013 124);
  --paper-3: oklch(0.922 0.016 126);
  --ink:     oklch(0.235 0.022 162);
  --ink-soft: oklch(0.40 0.018 160);
  --muted:   oklch(0.52 0.016 158);
  --forest:  oklch(0.285 0.055 159);
  --forest-2: oklch(0.345 0.062 157);
  --green:   oklch(0.545 0.105 153);
  --lime:    oklch(0.875 0.175 128);
  --lime-ink: oklch(0.45 0.13 132);
  --line:    oklch(0.86 0.012 150);
  --line-dark: oklch(0.42 0.04 158);

  /* typography */
  --font-display: "Archivo", "Helvetica Neue", Helvetica, sans-serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Helvetica, sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 88px);
  --radius: 4px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 11vw, 160px); }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--green);
  display: inline-block;
}
.eyebrow--lime { color: var(--lime); }
.eyebrow--lime::before { background: var(--lime); }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.h-hero {
  font-size: clamp(2.9rem, 8.2vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.h2 { font-size: clamp(2rem, 4.6vw, 3.9rem); letter-spacing: -0.028em; }
.h3 { font-size: clamp(1.4rem, 2.4vw, 2.1rem); letter-spacing: -0.02em; }

.lede {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 46ch;
  text-wrap: pretty;
}

.serif-q {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 56ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.btn--primary { background: var(--forest); color: var(--paper); }
.btn--primary:hover { background: var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: oklch(0.9 0.18 128); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light { border-color: var(--line-dark); color: var(--paper); }
.btn--ghost-light:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: oklch(0.974 0.008 120 / 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand__mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex: none;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 999px;
  position: relative;
  transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn { padding: 12px 20px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--forest);
  color: var(--paper);
  padding: 96px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(130px, 18vh, 220px);
  padding-bottom: clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
}
.hero h1 .pop { color: var(--green); }
.hero h1 .rotor {
  display: inline-block;
  color: var(--lime-ink);
}
.hero__sub {
  margin-top: clamp(26px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 2.4vw, 34px);
  padding-bottom: 6px;
}
.hero__aside p {
  margin: 0 0 22px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--paper);
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 22px;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  padding-inline: clamp(24px, 4vw, 56px);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}
.marquee__track span::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- services ---------- */
.services { display: grid; gap: 0; }
.service {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--green);
}
.service__title { display: flex; flex-direction: column; gap: 16px; }
.service__title h3 { max-width: 14ch; }
.service__scopes { display: flex; gap: 8px; flex-wrap: wrap; }
.scope-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-soft);
}
.service__body p { margin: 0; color: var(--ink-soft); }
.opt {
  border-left: 2px solid var(--lime);
  padding: 4px 0 4px 16px;
}
.opt__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 7px;
}
.opt p { margin: 0; color: var(--ink-soft); font-size: 0.94em; }
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 2px solid var(--lime);
  padding: 0 0 2px;
  cursor: pointer;
  transition: gap .3s var(--ease);
}
.service__link:hover { gap: 14px; }

/* ---------- service modals ---------- */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 640px;
  width: calc(100% - 40px);
  color: var(--ink);
}
.modal::backdrop {
  background: color-mix(in oklch, var(--ink) 55%, transparent);
  backdrop-filter: blur(3px);
}
.modal[open] { animation: modalIn .35s var(--ease) both; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal__panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--ink); color: var(--paper); }
.modal__title { margin: 10px 0 0; }
.modal__scopes { margin-top: 16px; }
.modal__lede { margin: 22px 0 0; color: var(--ink-soft); }
.modal__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 30px 0 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.modal__options { display: grid; gap: 18px; }
.modal__cta { margin-top: 30px; }

/* ---------- dark section (why now) ---------- */
.dark {
  background: var(--forest);
  color: var(--paper);
}
.dark .eyebrow { color: var(--lime); }
.dark .eyebrow::before { background: var(--lime); }
.whynow__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.whynow h2 { color: var(--paper); }
.whynow h2 em { color: var(--lime); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.whynow__col p { color: oklch(0.86 0.02 130); margin: 0 0 20px; }
.whynow__col p:last-child { margin-bottom: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(50px, 7vw, 86px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line-dark);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lime);
}
.stat__num .unit { font-size: 0.5em; }
.stat__label {
  margin-top: 12px;
  color: oklch(0.82 0.02 130);
  font-size: 0.96rem;
  max-width: 24ch;
}

/* ---------- approach ---------- */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(40px, 5vw, 64px);
  counter-reset: phase;
}
.phase {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}
.phase__step {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 28px;
}
.phase h3 { margin-bottom: 12px; }
.phase p { color: var(--ink-soft); margin: 0; font-size: 1rem; }
.phase__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper-3);
  margin-bottom: 18px;
}

/* ---------- differentiators ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 60px);
}
.diff {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  transition: background .3s, color .3s;
}
.diff:hover { background: var(--forest); color: var(--paper); }
.diff:hover .diff__k { color: var(--lime); }
.diff:hover p { color: oklch(0.86 0.02 130); }
.diff__k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 18px;
  transition: color .3s;
}
.diff h3 { font-size: 1.3rem; margin-bottom: 10px; }
.diff p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; transition: color .3s; }

/* alternating dark cards (checkerboard) */
.diff--dark { background: var(--forest); color: var(--paper); }
.diff--dark .diff__k { color: var(--lime); }
.diff--dark p { color: oklch(0.86 0.02 130); }
.diff--dark:hover { background: var(--ink); }
.diff--dark:hover .diff__k { color: var(--lime); }

/* ---------- about / our story ---------- */
.about__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.about__h2 em { color: var(--lime-ink); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.about__lead { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.6; margin: 0; text-wrap: pretty; }
.tbl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 64px);
}
.tbl__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.5vw, 34px);
  background: var(--paper);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.tbl__card:hover { border-color: var(--green); }
.tbl__k {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--lime-ink);
  margin-bottom: 14px;
}
.tbl__card h3 { font-size: 1.3rem; margin: 0 0 10px; }
.tbl__card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; text-wrap: pretty; }
.about-close {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 70ch;
  display: grid;
  gap: 18px;
}
.about-close p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.6; margin: 0; text-wrap: pretty; }
.about-close em { color: var(--ink); font-family: var(--font-serif); font-style: italic; }

/* ---------- founders ---------- */
.founders__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.founder-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.founder-cards--single { grid-template-columns: 1fr; max-width: 380px; }
.founder-cards--single .founder__photo { aspect-ratio: 4 / 5; }
.founder__photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 16px 0 2px;
}
.founder__role { color: var(--green); font-size: 0.9rem; font-family: var(--font-mono); letter-spacing: 0.04em; }
.founders__copy .serif-q {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 24px;
}

/* centered founder layout */
.founders--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(32px, 4vw, 48px);
}
.founders--center .founder-cards--single { max-width: 300px; margin: 0 auto; }
.founders--center .founders__copy { max-width: 62ch; }
.founders--center .eyebrow { justify-content: center; }
.founders--center .serif-q,
.founders--center .founder-bio { margin-left: auto; margin-right: auto; }
.founders--center .founder-bio { max-width: 54ch; }
.founders--center .hero__chips { justify-content: center; }
.founder-bio { color: var(--ink-soft); margin: 0 0 28px; max-width: 58ch; }
.founder-interests { margin-top: 28px; }
.founder-interests__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.cred-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.cred-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.cred-list b { color: var(--ink); font-weight: 600; }
.cred-list .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); transform: translateY(-2px); }

/* ---------- insights ---------- */
.insights__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 4vw, 54px);
}
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.post {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
  transition: transform .4s var(--ease);
}
.post:hover { transform: translateY(-6px); }
.post__img {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  order: -1;
  background: var(--paper-2);
}
.post__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.post:hover .post__img img { transform: scale(1.04); }

/* abstract editorial covers (CSS patterns, brand greens) */
.cover { width: 100%; height: 100%; position: relative; }
/* Scope 3 — value-chain network: lime dot matrix on forest */
.cover--net {
  background-color: var(--forest);
  background-image: radial-gradient(circle, oklch(0.875 0.175 128 / 0.95) 1.8px, transparent 2.4px);
  background-size: 24px 24px;
  background-position: center;
}
.cover--net::after {
  content: "";
  position: absolute;
  right: -34px; bottom: -34px;
  width: 130px; height: 130px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}
/* Regulation — rising standards: paper diagonals on green */
.cover--strata {
  background-color: var(--green);
  background-image: repeating-linear-gradient(125deg, oklch(0.974 0.008 120 / 0.55) 0 2px, transparent 2px 17px);
  position: relative;
}
.cover--strata::after {
  content: "";
  position: absolute;
  left: 26px; top: 26px;
  width: 46px; height: 46px;
  background: var(--lime);
  transform: rotate(45deg);
}
/* Strategy — focus: concentric forest rings on paper */
.cover--target {
  background-color: var(--paper-3);
  background-image: repeating-radial-gradient(circle at 28% 118%, transparent 0 17px, oklch(0.30 0.055 159 / 0.55) 17px 19px);
}
.cover--target::after {
  content: "";
  position: absolute;
  left: 28%; bottom: -18%;
  width: 30px; height: 30px;
  margin-left: -15px;
  background: var(--green);
  border-radius: 50%;
}
.post__meta {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.post__meta .cat { color: var(--lime-ink); }
.post h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.post__read {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  gap: 8px;
  transition: gap .3s var(--ease);
}
.post:hover .post__read { gap: 14px; }

/* ---------- consultation CTA ---------- */
.consult {
  background: var(--lime);
  color: var(--ink);
  border-radius: clamp(8px, 1vw, 14px);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.consult h2 { color: var(--ink); }
.consult__steps { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.consult__steps li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-weight: 500;
}
.consult__steps .n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--lime-ink);
  font-weight: 700;
}
.consult__card {
  background: var(--forest);
  color: var(--paper);
  border-radius: 10px;
  padding: clamp(28px, 3vw, 40px);
}
.consult__card p { color: oklch(0.86 0.02 130); margin: 0 0 24px; }
.consult__card .btn { width: 100%; justify-content: center; }
.consult__free {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
  display: block;
}

/* ---------- book / reserve consultation ---------- */
.book {
  background: oklch(0.195 0.022 162);
  color: var(--paper);
}
.book__grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.book__eyebrow { color: oklch(0.66 0.018 150); }
.book__eyebrow::before { background: oklch(0.55 0.02 152); }
.book__eyebrow .num { color: var(--lime); margin-right: 4px; }
.book__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--paper);
}
.book__accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.01em;
}
.book__sub {
  margin-top: clamp(22px, 3vw, 32px);
  max-width: 38ch;
  color: oklch(0.72 0.018 150);
  font-size: 1.05rem;
  line-height: 1.5;
}
.book__contacts {
  list-style: none;
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: oklch(0.82 0.018 150);
}
.book__contacts .arr { color: oklch(0.55 0.02 150); margin-right: 12px; }
.book__clock { color: var(--lime); }

/* form (dark) */
.book__form { align-content: start; }
.book .field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: oklch(0.64 0.018 150);
}
.book .field input,
.book .field textarea {
  background: transparent;
  border: 1px solid oklch(0.40 0.028 158);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.book .field input::placeholder,
.book .field textarea::placeholder { color: oklch(0.5 0.016 150); }
.book .field input:focus,
.book .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(0.545 0.105 153 / 0.2);
}
.book .field textarea { min-height: 150px; }
.book .field.invalid input,
.book .field.invalid textarea { border-color: oklch(0.62 0.17 28); }
.book .field__err { color: oklch(0.72 0.15 28); }

.book__submit {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--paper);
  border: 1px solid oklch(0.5 0.03 155);
  border-radius: var(--radius);
  padding: 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: background .28s var(--ease), color .28s, border-color .28s, transform .28s var(--ease);
}
.book__submit:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateY(-2px); }
.book__submit span { transition: transform .3s var(--ease); }
.book__submit:hover span { transform: translate(3px, -3px); }

/* ---------- contact form ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.contact__aside p { color: var(--ink-soft); }
.contact__detail { margin-top: 30px; display: grid; gap: 18px; }
.contact__detail div { border-top: 1px solid var(--line); padding-top: 12px; }
.contact__detail .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.contact__detail .v { margin-top: 4px; font-weight: 500; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.field label .opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(0.545 0.105 153 / 0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid textarea { border-color: oklch(0.55 0.18 28); }
.field__err {
  font-size: 0.8rem;
  color: oklch(0.52 0.18 28);
  display: none;
}
.field.invalid .field__err { display: block; }
.form__submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form__note { font-size: 0.85rem; color: var(--muted); }
.form__success {
  grid-column: 1 / -1;
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: none;
  align-items: center;
  gap: 14px;
}
.form__success.show { display: flex; }
.form__success .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); flex: none; }

/* ---------- get in touch ---------- */
.git__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
  max-width: 60ch;
}
.git__eyebrow .num { color: var(--lime-ink); margin-right: 4px; }
.git__lead .lede { margin-top: 20px; }
.git__lead .btn { margin-top: clamp(26px, 3vw, 36px); }
.git__details { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.git__details li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.git__details .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  flex: none;
}
.git__details .v { font-weight: 500; text-align: right; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(56px, 7vw, 96px) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line-dark);
}
.footer .brand { color: var(--paper); }
.footer__intro { margin-top: 22px; color: oklch(0.78 0.02 130); max-width: 34ch; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a { color: oklch(0.82 0.02 130); transition: color .2s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 0.85rem;
  color: oklch(0.66 0.02 130);
}
.footer__bottom .reg { font-family: var(--font-mono); letter-spacing: 0.03em; }

/* ---------- placeholder imagery ---------- */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 11px,
    oklch(0.88 0.02 150 / 0.6) 11px 12px
  );
  display: grid;
  place-items: center;
}
.ph--dark {
  background-color: var(--forest-2);
  background-image: repeating-linear-gradient(
    135deg, transparent 0 11px, oklch(0.5 0.05 155 / 0.5) 11px 12px
  );
}
.ph span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper);
  padding: 6px 11px;
  border-radius: 999px;
}
.ph--dark span { color: var(--paper); background: oklch(0.32 0.05 158); }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__aside { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 30px; }
  .whynow__grid { grid-template-columns: 1fr; }
  .about__intro { grid-template-columns: 1fr; }
  .tbl { grid-template-columns: 1fr; }
  .founders__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .book__grid { grid-template-columns: 1fr; gap: 48px; }
  .git__grid { grid-template-columns: 1fr; gap: 40px; }
  .consult { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav__links, .nav__cta .btn--text { display: none; }
  .nav__burger { display: flex; }
  .service { grid-template-columns: 1fr; gap: 16px; padding-block: 36px; }
  .stats { grid-template-columns: 1fr; gap: 28px; }
  .phases { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- soft leaf cursor ---------- */
.has-leaf-cursor,
.has-leaf-cursor a,
.has-leaf-cursor button,
.has-leaf-cursor input,
.has-leaf-cursor textarea,
.has-leaf-cursor label,
.has-leaf-cursor [data-modal],
.has-leaf-cursor [data-close] { cursor: none; }

.cursor-dot,
.cursor-leaf {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: transform;
}
.leaf-on .cursor-dot,
.leaf-on .cursor-leaf { opacity: 1; }

.cursor-dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--forest);
}
.cursor-leaf {
  width: 40px;
  height: 47px;
  margin: -23px 0 0 -20px;
}
.cursor-leaf svg { width: 100%; height: 100%; display: block; overflow: visible; }
.cursor-leaf .blade {
  fill: color-mix(in oklch, var(--lime) 30%, transparent);
  stroke: var(--green);
  stroke-width: 1.4;
  stroke-linejoin: round;
  transition: fill .3s ease, stroke .3s ease;
}
.cursor-leaf .midrib {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.2;
  stroke-linecap: round;
}
.cursor-leaf .vein {
  fill: none;
  stroke: var(--green);
  stroke-width: 0.9;
  stroke-linecap: round;
  opacity: 0.6;
}
.cursor-leaf.is-hover .blade {
  fill: color-mix(in oklch, var(--lime) 46%, transparent);
  stroke: var(--lime-ink);
}
.cursor-leaf.is-hover .midrib,
.cursor-leaf.is-hover .vein { stroke: var(--lime-ink); }
