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

:root {
  --black: #0b0b0a;
  --white: #ffffff;
  --off: #f8f7f4;
  --stone: #87857d;
  --stone2: #c2c0b9;
  --border: #eceae4;
  --green: #1a6b4a;
  --green2: #ebf4ef;
  --green3: #2d8a62;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Geist", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.18em;
  color: var(--black);
  text-decoration: none;
}
.logo-line {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--green);
  margin: 0 6px 2px;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--black);
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--white) !important;
  background: var(--black);
  border-radius: 5px;
  padding: 7px 16px;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: #2c2c2a !important;
}

/* ── HERO ── */
.hero {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-rule {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-top {
  position: absolute;
  top: 80px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.hero-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green2);
  border-radius: 3px;
  padding: 4px 10px;
}

.hero-content {
  margin-top: 50px;
  max-width: 860px;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 40px;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  max-width: 550px;
  line-height: 1.85;
}
.hero-desc strong {
  color: var(--black);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-solid {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-solid:hover {
  background: #2c2c2a;
}
.btn-outline {
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--black);
  color: var(--black);
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: var(--white);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.marquee-item:last-child {
  border-right: none;
}
.marquee-num {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
}
.marquee-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
}

/* ──────────────────────────────────────────
 MISSION
────────────────────────────────────────── */
.mission {
  background: var(--green);
  padding: 80px 0;
}
.mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.mission h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}
.mission p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mstat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 20px 18px;
}
.mstat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.mstat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  line-height: 1.4;
}
/* ──────────────────────────────────────────
 SERVICES
────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 25px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-panel {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}
.service-panel:first-child {
  border-right: 1px solid var(--border);
}
.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--green-xl);
  line-height: 1;
  margin-bottom: 20px;
  user-select: none;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.service-subtitle {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.4;
}
.service-list li::before {
  content: "→";
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* LP mockup */
.lp-mock {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Geist", sans-serif;
}
.lp-browser {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.lp-bar {
  background: #f2f1ee;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.lp-dots {
  display: flex;
  gap: 4px;
}
.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.lp-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 10px;
  color: var(--stone);
}
.lp-hero {
  background: var(--black);
  padding: 20px 18px;
}
.lp-badge {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}
.lp-h {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}
.lp-h em {
  font-style: italic;
  color: #6ee7b7;
}
.lp-cta {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 4px;
}
.lp-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-line {
  height: 7px;
  background: var(--border);
  border-radius: 3px;
}
.lp-row {
  display: flex;
  gap: 6px;
}
.lp-mini {
  flex: 1;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 8px 10px;
}
.lp-mini-n {
  font-family: "Fraunces", serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1;
}
.lp-mini-l {
  font-size: 9px;
  color: var(--stone);
  margin-top: 2px;
}
.lp-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  text-align: center;
  padding: 6px 0;
}
.lp-note span {
  color: var(--green);
  font-weight: 400;
}

/* GBP mockup */
.gbp-mock {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Geist", sans-serif;
}
.gbp-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.gbp-top {
  background: var(--green);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gbp-av {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 400;
  color: white;
  flex-shrink: 0;
}
.gbp-biz {
  font-size: 13px;
  font-weight: 500;
  color: white;
}
.gbp-cat {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1px;
}
.gbp-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gbp-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}
.gbp-s-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.gbp-s-ico {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.gbp-s-ct {
  font-size: 11px;
  color: var(--stone);
}
.gbp-stat3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gbp-stat {
  background: var(--off);
  border-radius: 6px;
  padding: 8px 10px;
}
.gbp-stat-n {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.gbp-stat-l {
  font-size: 9px;
  color: var(--stone);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gbp-stat-t {
  font-size: 10px;
  color: var(--green);
  margin-top: 1px;
}
.gbp-posts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gbp-post {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off);
  border-radius: 5px;
  padding: 8px 10px;
}
.gbp-post-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.gbp-post-text {
  font-size: 11px;
  color: var(--black);
  flex: 1;
}
.gbp-post-date {
  font-size: 10px;
  color: var(--stone2);
  white-space: nowrap;
}
.gbp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.gbp-pill {
  font-size: 10px;
  font-weight: 500;
  color: var(--green);
  background: var(--green2);
  border-radius: 100px;
  padding: 3px 9px;
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.process-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.process-header {
  margin-bottom: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.process-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.process-header h2 em {
  font-style: italic;
  color: var(--green);
}
.process-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  max-width: 300px;
  line-height: 1.7;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding-right: 40px;
  border-right: 1px solid var(--border);
  margin-right: 40px;
}
.process-step:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.step-n {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.process-step h3 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
}

/* ── WHO ── */
.who {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--off);
}
.who-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.who-head {
  margin-bottom: 40px;
}
.who-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.who-head h2 em {
  font-style: italic;
  color: var(--green);
}
.who-head p {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  max-width: 480px;
  line-height: 1.7;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.who-item {
  background: var(--white);
  padding: 24px 22px;
  transition: background 0.2s;
  cursor: default;
}
.who-item:hover {
  background: var(--off);
}
.who-name {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.who-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.contact-left h2 em {
  font-style: italic;
  color: var(--green);
}
.contact-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.cd-icon {
  width: 32px;
  height: 32px;
  background: var(--green2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cd-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone2);
  margin-bottom: 3px;
}
.cd-val {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--black);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone2);
}
.form-textarea {
  resize: vertical;
  min-height: 88px;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.form-fine {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
}
.form-fine a {
  color: var(--black);
}
.form-success {
  display: none;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}
.form-success.visible {
  display: block;
}
.form-success-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-success-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
}
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── FAQ ── */
.faq {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--off);
}
.faq-inner {
  max-width: 740px;
  margin: 0 auto;
}
.faq-head {
  margin-bottom: 44px;
}
.faq-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.faq-head h2 em {
  font-style: italic;
  color: var(--green);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  gap: 16px;
}
.faq-q:hover {
  color: var(--green);
}
.faq-icon {
  font-size: 20px;
  color: var(--stone2);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ── FOOTER ── */
footer {
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--white);
}
.footer-logo {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.18em;
  color: var(--black);
}
.footer-logo-line {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--green);
  margin: 0 5px 2px;
  vertical-align: middle;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--black);
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: fadeUp 0.45s ease both 0.05s;
}
.hero h1 {
  animation: fadeUp 0.6s ease both 0.15s;
}
.hero-desc {
  animation: fadeUp 0.5s ease both 0.3s;
}
.hero-actions {
  animation: fadeUp 0.5s ease both 0.42s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }
  .hero {
    padding: 80px 24px 64px;
    margin-top: 56px;
  }
  .hero-top {
    left: 24px;
    right: 24px;
  }
  .mission {
    padding: 72px 24px;
    grid-template-columns: 1fr;
  }
  .service {
    grid-template-columns: 1fr;
  }
  .service.flip {
    direction: ltr;
  }
  .service-text {
    padding: 56px 24px;
  }
  .service.flip .service-text {
    padding: 56px 24px;
  }
  .service-visual {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 40px 24px;
  }
  .service.flip .service-visual {
    border-right: none;
    border-top: 1px solid var(--border);
  }
  .process {
    padding: 72px 24px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-step {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
  }
  .process-step:nth-child(odd) {
    border-right: 1px solid var(--border);
    padding-right: 32px;
  }
  .process-step:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .who {
    padding: 64px 24px;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact {
    padding: 72px 24px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq {
    padding: 64px 24px;
  }
  footer {
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  nav .nav-links li:not(:last-child) {
    display: none;
  }
  .hero {
    margin-top: 56px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-top {
    flex-direction: column;
    gap: 8px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .process-step:last-child {
    border-bottom: none !important;
  }
  .process-step:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border) !important;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-links {
    display: none;
  }
  .mission-stat-row {
    gap: 20px;
  }
}

/* ── LEAD MAGNET ── */
.lead-magnet {
  background: var(--off);
  /* border-top: 1px solid var(--border); */
  border-bottom: 1px solid var(--border);
  padding: 50px 48px;
}
.lead-magnet-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lm-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lm-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--green);
}
.lead-magnet h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}
.lead-magnet h2 em {
  font-style: italic;
  color: var(--green);
}
.lead-magnet p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 32px;
}
.lm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.lm-btn:hover {
  background: var(--green3);
  transform: translateY(-1px);
}
.lm-fine {
  display: block;
  font-size: 12px;
  color: var(--stone2);
  margin-top: 12px;
}
.lm-checklist {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}
.lm-checklist-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.lm-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lm-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--black);
  line-height: 1.5;
}
.lm-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lm-check svg {
  width: 10px;
  height: 10px;
}
.lm-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .lead-magnet {
    padding: 60px 24px;
  }
  .lead-magnet-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ──────────────────────────────────────────
 TOKENS
────────────────────────────────────────── */
:root {
  --green: #2d5a3d;
  --green-l: #3a7050;
  --green-xl: #edf3ef;
  --ink: #111410;
  --muted: #6b7069;
  --border: #dce3dc;
  --bg: #f9faf8;
  --white: #ffffff;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Geist", system-ui, sans-serif;
  --r: 6px;
}

/* ──────────────────────────────────────────
 NAV
────────────────────────────────────────── */
/* nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.18em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .badge {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-xl);
  color: var(--green);
  border-radius: 3px;
  padding: 4px 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--white) !important;
  background: var(--ink);
  padding: 7px 16px;
  border-radius: 5px;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: #2c2c2a !important;
} */

/* ──────────────────────────────────────────
 TICKER
────────────────────────────────────────── */
.ticker-wrap {
  background: var(--green);
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  margin-top: 56px;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
  gap: 0;
}
.ticker-item {
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 32px;
}
.ticker-item span {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 10px;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ──────────────────────────────────────────
 STATS TICKER ROW
────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.stats-track {
  display: flex;
  animation: ticker 36s linear infinite;
  width: max-content;
}
.stats-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 40px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.stats-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green);
}
.stats-label {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 130px;
  line-height: 1.3;
}

/* ──────────────────────────────────────────
 SECTION SHELL
────────────────────────────────────────── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-h2 em {
  font-style: italic;
  color: var(--green);
}
.section-intro {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  /* max-width: 580px; */
}

/* ──────────────────────────────────────────
 MISSION
────────────────────────────────────────── */
.mission {
  background: var(--green);
  padding: 80px 0;
}
.mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.mission h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}
.mission p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mstat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 20px 18px;
}
.mstat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.mstat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  line-height: 1.4;
}

/* ──────────────────────────────────────────
 SERVICES
────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 25px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-panel {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}
.service-panel:first-child {
  border-right: 1px solid var(--border);
}
.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--green-xl);
  line-height: 1;
  margin-bottom: 20px;
  user-select: none;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.service-subtitle {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.4;
}
.service-list li::before {
  content: "→";
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
 PROCESS
────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 25px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.step {
  background: var(--white);
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.step:last-child {
  border-right: none;
}
.step:hover {
  background: var(--green-xl);
}
.step-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ──────────────────────────────────────────
 NICHES
────────────────────────────────────────── */
.niche-section {
  background: var(--ink);
  padding: 80px 0;
}
.niche-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.niche-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.niche-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 48px;
}
.niche-h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.niche-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}
.niche-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.niche-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.niche-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ──────────────────────────────────────────
 CONTACT
────────────────────────────────────────── */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-h2 em {
  font-style: italic;
  color: var(--green);
}
.contact-desc {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-detail strong {
  color: var(--ink);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea {
  height: 90px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--r);
  transition: background 0.15s, transform 0.1s;
}
.btn-submit:hover {
  background: var(--green-l);
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────
 SUCCESS STATE
────────────────────────────────────────── */
.form-success {
  display: none;
  background: var(--green-xl);
  border: 1px solid #c5d9cb;
  border-radius: var(--r);
  padding: 20px;
  font-size: 0.9rem;
  color: var(--green);
  line-height: 1.6;
}

/* ──────────────────────────────────────────
 RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card {
    max-width: 420px;
  }
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-panel:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .niche-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  nav {
    padding: 0 24px;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  footer {
    padding: 32px 24px;
  }
  .hero {
    padding: 48px 20px 48px;
    margin-top: 56px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .niche-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hcard-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
