:root {
  --forest: #2D4A2D;
  --forest-deep: #223A22;
  --moss: #5C7A3E;
  --sage: #EEF3E8;
  --sage-mid: #A8C090;
  --parchment: #F5F0E8;
  --card: #FDFBF7;
  --ink: #26301F;
  --stone: #6B6F60;
  --stone-light: #9A9E8F;
  --line: #E2DCCF;
  --radius: 10px;
  --radius-lg: 14px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Playfair Display', Georgia, serif; }

a { color: var(--forest); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px; font-weight: 600; color: var(--ink);
  text-decoration: none; letter-spacing: -0.3px;
}
.logo-mark {
  width: 36px; height: 36px; background: var(--forest);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a {
  font-size: 14.5px; color: var(--stone); text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

.btn {
  display: inline-block; background: var(--forest); color: var(--parchment);
  border: none; border-radius: 7px; padding: 11px 24px;
  font-size: 14.5px; font-weight: 500; font-family: inherit;
  cursor: pointer; text-decoration: none; text-align: center;
}
.btn:hover { background: var(--forest-deep); }
.btn-outline {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover { background: var(--sage); }
.btn-light { background: var(--parchment); color: var(--forest); }
.btn-light:hover { background: #fff; }
.btn-ghost-light {
  background: transparent; color: var(--parchment);
  border: 1.5px solid var(--sage-mid);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 5.5rem 1.5rem 3.5rem;
  overflow: hidden;
}
.hero-seal {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 560px; height: 560px; opacity: 0.05;
  pointer-events: none;
}
.hero > * { position: relative; }
.eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--moss); background: var(--sage);
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 500; line-height: 1.12; letter-spacing: -0.5px;
  margin-bottom: 1.3rem;
}
.hero h1 em { font-style: italic; color: var(--moss); }
.hero p.lede {
  font-size: 17.5px; color: var(--stone);
  max-width: 560px; margin: 0 auto 2.2rem; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.marks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  padding: 0 1.5rem 3rem; max-width: 760px; margin: 0 auto;
}
.mark-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--stone);
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; padding: 6px 14px;
}
.mark-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section-alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-label {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone-light); margin-bottom: 1.2rem;
}
.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 36px); font-weight: 500;
  margin-bottom: 0.6rem; letter-spacing: -0.3px;
}
.section-sub { font-size: 16px; color: var(--stone); margin-bottom: 2.5rem; max-width: 620px; }

.criteria-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.criterion {
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--forest);
  background: var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.section-alt .criterion { background: var(--parchment); }
.criterion h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 5px; }
.criterion p { font-size: 13.5px; color: var(--stone); line-height: 1.6; }

/* ---------- Tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; margin-top: 2rem; }
.tier {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.tier .band { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 500; color: var(--forest); }
.tier h4 { font-size: 14px; font-weight: 600; margin: 2px 0 4px; }
.tier p { font-size: 12.5px; color: var(--stone); line-height: 1.55; }

/* ---------- Listing card ---------- */
.listing-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem;
  max-width: 560px;
  display: block; text-decoration: none; color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.listing-card:hover { border-color: var(--sage-mid); box-shadow: 0 4px 20px rgba(45,74,45,0.07); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.trade-badge {
  font-size: 11.5px; font-weight: 600;
  background: var(--sage); color: var(--moss);
  padding: 4px 12px; border-radius: 20px;
}
.verified {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--forest); font-weight: 600;
}
.verified svg { width: 15px; height: 15px; flex-shrink: 0; }
.listing-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 23px; font-weight: 500; margin-bottom: 4px;
}
.card-founder { font-size: 13.5px; color: var(--stone); margin-bottom: 10px; }
.listing-card p.blurb { font-size: 14.5px; color: var(--stone); line-height: 1.65; margin-bottom: 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-size: 11.5px; background: var(--parchment);
  color: var(--stone); border: 1px solid var(--line);
  padding: 4px 11px; border-radius: 20px;
}
.card-cta { margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--forest); }

.founding-note {
  margin-top: 2rem; padding: 1.3rem 1.5rem;
  border: 1px dashed var(--sage-mid); border-radius: var(--radius);
  font-size: 14px; color: var(--stone); max-width: 560px; line-height: 1.65;
}
.founding-note strong { color: var(--ink); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.section-alt .step { background: var(--parchment); }
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--forest); color: var(--parchment);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.step h4 { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.step p { font-size: 13.5px; color: var(--stone); line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest); border-radius: var(--radius-lg);
  padding: 3.2rem 2rem; text-align: center;
  margin: 4rem 0;
}
.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 32px); font-weight: 500;
  color: var(--parchment); margin-bottom: 0.7rem;
}
.cta-band p { font-size: 15.5px; color: var(--sage-mid); margin-bottom: 1.8rem; line-height: 1.65; }
.cta-band .hero-ctas { margin: 0; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 2.6rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: 13.5px; color: var(--stone-light);
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--stone); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer .ethos { font-family: 'Playfair Display', Georgia, serif; font-style: italic; color: var(--stone); }

/* ---------- Listing page ---------- */
.breadcrumb {
  font-size: 13px; color: var(--stone-light);
  padding: 1.2rem 0 0; display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--stone); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.listing-hero { padding: 2rem 0 0.5rem; }
.listing-hero-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 1.2rem; }
.verified-banner {
  display: flex; align-items: center; gap: 7px;
  background: var(--forest); color: var(--parchment);
  font-size: 12.5px; font-weight: 600;
  padding: 7px 16px; border-radius: 20px;
}
.verified-banner svg { width: 15px; height: 15px; }
.listing-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 44px); font-weight: 500;
  letter-spacing: -0.4px; margin-bottom: 0.4rem;
}
.founder-line { font-size: 15px; color: var(--stone); margin-bottom: 0.9rem; }
.founder-line strong { color: var(--ink); font-weight: 600; }
.tagline {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 19px; color: var(--moss); margin-bottom: 1.5rem;
}
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }

.listing-body {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem; padding: 2rem 0 3rem; align-items: start;
}
.lsection { margin-bottom: 2.4rem; }
.lsection p { font-size: 15px; color: var(--stone); line-height: 1.75; }
.lsection p + p { margin-top: 0.9rem; }

.pull-quote {
  border-left: 3px solid var(--forest);
  padding: 1.1rem 1.4rem;
  background: var(--card); border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.4rem;
}
.pull-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 16.5px; line-height: 1.65; color: var(--ink); margin-bottom: 7px;
}
.pull-quote cite { font-size: 13px; color: var(--stone-light); font-style: normal; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 13px; color: var(--moss); background: var(--sage);
  padding: 6px 13px; border-radius: 20px;
}

.project {
  padding: 1rem 1.2rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--card); margin-bottom: 10px;
}
.project-top { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.project h4 { font-size: 14.5px; font-weight: 600; }
.project-loc { font-size: 12px; color: var(--stone-light); }
.project p { font-size: 13.5px; color: var(--stone); line-height: 1.6; }

.collab {
  display: flex; align-items: center; gap: 12px;
  padding: 0.9rem 1.1rem; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); margin-top: 10px;
}
.collab-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sage); color: var(--moss);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.collab .name { font-size: 14px; font-weight: 600; }
.collab .role { font-size: 12.5px; color: var(--stone-light); }

.sidebar-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.4rem; margin-bottom: 1.1rem;
}
.sidebar-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 1.1rem; }
.side-row { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.side-row:last-child { margin-bottom: 0; }
.side-row .k { color: var(--stone-light); font-size: 11.5px; display: block; margin-bottom: 1px; }
.side-row .v { color: var(--ink); }
.crit-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
.crit-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 11px; background: var(--parchment); border-radius: 8px; }
.crit-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--forest);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.crit-check svg { width: 11px; height: 11px; }
.crit-item h4 { font-size: 13px; font-weight: 600; }
.crit-item p { font-size: 11.5px; color: var(--stone-light); line-height: 1.4; }
.crit-note { font-size: 12px; color: var(--moss); margin-top: 0.9rem; text-align: center; }

.sidebar-cta {
  background: var(--forest); border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
}
.sidebar-cta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17.5px; font-weight: 500; color: var(--parchment); margin-bottom: 0.5rem;
}
.sidebar-cta p { font-size: 13px; color: var(--sage-mid); margin-bottom: 1.1rem; line-height: 1.55; }
.sidebar-cta .btn { width: 100%; margin-bottom: 9px; }

/* ---------- Apply page ---------- */
.apply-intro { text-align: center; max-width: 560px; margin: 0 auto; padding: 3.5rem 1.5rem 2.5rem; }
.apply-intro h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 5vw, 40px); font-weight: 500;
  margin-bottom: 0.8rem; letter-spacing: -0.4px;
}
.apply-intro p { font-size: 16px; color: var(--stone); line-height: 1.7; }

.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.2rem;
  max-width: 720px; margin: 0 auto 3rem;
}
.form-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 500; margin-bottom: 1.4rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.field .ask { font-size: 12.5px; color: var(--stone-light); margin: -2px 0 8px; line-height: 1.5; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 13px; font-size: 14.5px;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink); font-family: inherit;
}
.field textarea { min-height: 84px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--stone-light); }

.crit-fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; margin-bottom: 1rem; }
.crit-fieldset legend {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; padding: 0 8px;
}
.legend-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest); color: var(--parchment);
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}
.form-note {
  font-size: 13px; color: var(--stone); line-height: 1.6;
  background: var(--sage); border-radius: var(--radius);
  padding: 1rem 1.2rem; margin: 1.4rem 0;
}
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.free-note { font-size: 13px; color: var(--moss); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .listing-body { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--card); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: 1.2rem 1.5rem; gap: 1.1rem; z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav { position: relative; }
  .hero { padding-top: 3.5rem; }
}
