:root {
  --green: #009969;
  --green-dark: #007554;
  --green-soft: #e8f7f1;
  --ink: #101614;
  --muted: #5d6b66;
  --line: rgba(16, 22, 20, 0.1);
  --paper: #f7f8f7;
  --white: #ffffff;
  --wash: #eef2f0;
  --dark: #0c1412;
  --max: 1160px;
  --wide: 1280px;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Outfit", system-ui, sans-serif;
  --header-h: 84px;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(12, 20, 18, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 247, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
body.scrolled .site-header {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(12, 20, 18, 0.04);
}
body.home .site-header {
  position: fixed;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,.42), transparent);
  backdrop-filter: none;
}
body.home.scrolled .site-header,
body.home.nav-open .site-header {
  background: rgba(247, 248, 247, 0.9);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
body.home .nav a,
body.home .menu-toggle { color: #fff; }
body.home.scrolled .nav a,
body.home.nav-open .nav a,
body.home.scrolled .menu-toggle,
body.home.nav-open .menu-toggle { color: var(--ink); }
body.home .logo img {
  filter: brightness(0) invert(1);
}
body.home.scrolled .logo img,
body.home.nav-open .logo img { filter: none; }

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { height: 56px; width: auto; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.social-btn svg { width: 14px; height: 14px; fill: currentColor; }

.btn {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px 22px;
  font: 600 13px/1 var(--sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 153, 105, 0.28);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: none;
}
.header-cta { padding: 10px 16px; font-size: 12px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--dark);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.04);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,20,18,.15) 0%, rgba(12,20,18,.15) 40%, rgba(12,20,18,.72) 100%),
    linear-gradient(90deg, rgba(12,20,18,.55) 0%, rgba(12,20,18,.1) 60%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 8vw 9vh;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.hero h1 em { font-style: italic; font-weight: 500; }
.hero h1 .line2 { white-space: nowrap; }
.hero .lead {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 34px);
  margin: 0 0 16px;
  font-weight: 400;
  font-style: italic;
}
.hero p {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.dot { color: var(--green); font-style: italic; }

/* Page heroes */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,20,18,.12), rgba(12,20,18,.62));
}
.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 48px 8vw 40px;
  max-width: 900px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.03em;
}

/* Layout */
.section { padding: 108px 36px; }
.section-tight { padding: 80px 36px; }
.section-wash { background: var(--white); }
.section-dark {
  background: var(--dark);
  color: #fff;
}
.section-dark .section-title,
.section-dark p { color: #fff; }
.wrap { max-width: var(--max); margin: 0 auto; }
.wrap-wide { max-width: var(--wide); margin: 0 auto; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head .section-title { margin-bottom: 0; }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.section-title em { font-style: italic; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin: 0 0 12px;
}
.section-dark .kicker { color: #8fe0c4; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* Quote */
.quote-block {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.quote-block .monogram {
  width: 42px;
  height: auto;
  margin: 0 auto 24px;
  filter: invert(1);
  opacity: 0.9;
}
.quote-block blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-style: italic;
  line-height: 1.35;
  font-weight: 400;
}
.quote-block cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: #8fe0c4;
}

/* Help cards */
.help-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  align-items: stretch;
}
.help-cards {
  display: grid;
  gap: 16px;
}
.help-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.help-cards-3 .help-card {
  grid-template-columns: 1fr;
}
.help-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.help-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--green);
  font-weight: 500;
}
.help-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 8px;
  font-weight: 500;
}
.help-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}
.help-visual {
  border-radius: 28px;
  overflow: hidden;
  min-height: 100%;
  background: #111;
}
.help-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: grayscale(1);
}

/* Focus chips */
.focus-intro {
  max-width: 720px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
}
.focus-intro strong { color: var(--green-dark); font-weight: 600; }
.focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.focus-chips span {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
}

/* Markets */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.market-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.market-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.market-card p { margin: 0; color: var(--muted); font-size: 15px; }
.center-copy { max-width: 760px; }
.center-copy p { color: var(--muted); }

/* Trusted */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trusted-card {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  min-height: 210px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trusted-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.trusted-card:nth-child(4),
.trusted-card:nth-child(5) { grid-column: span 3; }
.trusted-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
}
.trusted-card p { margin: 0 0 14px; color: var(--muted); font-size: 15px; }

.read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}
.read-more:hover { text-decoration: underline; }

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.values span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* People */
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.person {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.person:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.person .photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.person:hover img {
  transform: scale(1.05);
  filter: grayscale(0.15);
}
.person-body { padding: 22px 22px 26px; }
.person h3 {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 26px;
  margin: 0 0 4px;
  font-weight: 500;
}
.person .role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--green-dark);
  font-weight: 600;
}
.person p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 12px;
}

.bio {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 12px 0 56px;
}
.bio + .bio { border-top: 1px solid var(--line); padding-top: 56px; }
.bio img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  border-radius: 24px;
}
.bio h2 {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 34px;
  margin: 0 0 4px;
  font-weight: 500;
}
.bio .role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--green-dark);
  font-weight: 600;
}
.bio p { margin: 0 0 14px; color: #333; font-size: 15.5px; }

/* Collaborators */
.collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.collab-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}
.collab-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: grayscale(1);
}
.collab-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 500;
}
.collab-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Insights */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.insight-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.insight-card .meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.insight-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.2;
}
.insight-card p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.linkedin-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 14px;
}

/* CTA */
.cta {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,20,18,.72), rgba(12,20,18,.28));
}
.cta .wrap { position: relative; z-index: 1; padding: 64px 36px; }
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.cta p { margin: 0 0 24px; max-width: 460px; color: rgba(255,255,255,.86); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-grid h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.contact-grid .intro { color: var(--muted); max-width: 380px; font-size: 17px; }
form {
  display: grid;
  gap: 16px;
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
}
.field-label { font-size: 14px; margin-bottom: 6px; font-weight: 600; }
.req { color: var(--muted); font-size: 12px; font-weight: 400; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: var(--paper);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
  background: #fff;
}
.form-status { font-size: 14px; min-height: 1.2em; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: #a33; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* Privacy */
.policy { max-width: 820px; margin: 0 auto; }
.policy h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  margin: 0 0 28px;
  letter-spacing: -0.03em;
}
.policy h2 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 36px 0 12px;
  color: var(--green-dark);
}
.policy p, .policy li { color: #333; font-size: 15.5px; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 56px 36px 32px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo img { height: 52px; width: auto; }
.footer-tag {
  margin: 14px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.footer-nav {
  display: grid;
  gap: 8px;
}
.footer-nav a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.footer-nav a:hover { color: #fff; }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-right a { color: rgba(255,255,255,.8); font-size: 14px; }
.footer-meta {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav { display: none; }

@media (max-width: 1180px) {
  .nav { gap: 14px; }
  .header-inner { padding: 10px 20px; }
  .nav a { letter-spacing: 0.04em; font-size: 11px; }
  .trusted-grid { grid-template-columns: 1fr 1fr; }
  .trusted-card,
  .trusted-card:nth-child(4),
  .trusted-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 980px) {
  .header-inner { padding: 10px 16px; }
  .nav, .header-cta, .header-inner > .social-btn, .header-actions .social-btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .logo img { height: 44px; }
  .help-layout,
  .help-cards-3,
  .bio, .people, .collab-grid, .contact-grid, .insight-grid, .footer-inner, .market-grid {
    grid-template-columns: 1fr;
  }
  .footer-right { align-items: flex-start; }
  .hero-copy { padding: 0 22px 56px; }
  .hero h1 .line2 { white-space: normal; }
  .section, .section-tight, .cta .wrap { padding-left: 22px; padding-right: 22px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .page-hero { min-height: 34vh; }
  .row-2 { grid-template-columns: 1fr; }
  .bio img { max-width: 240px; }
  .header-actions { gap: 0; }

  body.nav-open { overflow: hidden; }
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    color: #fff;
    z-index: 40;
    padding: 110px 28px 40px;
  }
  body.nav-open .mobile-nav { display: flex; flex-direction: column; gap: 8px; }
  .mobile-nav a {
    display: block;
    font-family: var(--serif);
    font-size: 34px;
    padding: 8px 0;
  }
  body.nav-open .menu-toggle { color: #fff; z-index: 60; position: relative; }
  body.nav-open .logo img { filter: brightness(0) invert(1); }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 38px; }
  .section-title { font-size: 34px; }
  form { padding: 22px; }
}
