/* ============================================================
   AI with Elissa, shared stylesheet
   Minimalist and elegant, humanized and grounded:
   "your friend in AI." Serif headings, clean neutrals,
   a signature green accent, generous whitespace, soft edges.
   ============================================================ */

:root {
  --ink:        #1b2420;   /* deep green-black */
  --ink-soft:   #4b544e;   /* secondary text */
  --muted:      #7d857f;   /* tertiary text */
  --line:       #e4e8e4;   /* cool light borders */
  --bg:         #ffffff;   /* clean white */
  --bg-soft:    #f5f8f5;   /* section alt (soft green-grey) */
  --bg-tint:    #eaf1ec;   /* deeper green-tinted wash */

  --accent:     #177b57;   /* BCG-inspired signature green */
  --accent-dk:  #0f5c41;
  --accent-2:   #21bf61;   /* brighter green */
  --accent-soft:#dcefe4;   /* pale green wash */

  --heart:      #d84a6b;

  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 1px 2px rgba(60,42,28,.04), 0 10px 30px rgba(60,42,28,.06);
  --shadow-lg:  0 16px 44px rgba(60,42,28,.12);
  --maxw:       1100px;

  --font:       "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18; color: var(--ink); font-weight: 600; margin: 0 0 .5em;
  letter-spacing: -.01em; text-wrap: pretty;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; color: var(--ink-soft); }
a  { color: var(--accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.center { text-align: center; }
.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 62ch; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem;
  font-weight: 700; color: var(--accent); margin: 0 0 .7rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: 1rem; padding: 13px 26px;
  border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--accent-dk); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dk); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.5); }
.btn--light:hover { background: rgba(255,255,255,.26); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.85);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; height: 66px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--ink); font-size: 1.2rem; font-family: var(--font-display); }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-weight: 600; font-size: .72rem; letter-spacing: -.01em; font-family: var(--font-display);
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink-soft); font-weight: 500; font-size: .95rem; padding: 8px 13px; border-radius: 8px;
}
.nav-links a { transition: color .15s ease, background .15s ease; }
.nav-links a:hover { color: var(--accent-dk); background: var(--accent-soft); text-decoration: none; }
.nav-links a.active { color: var(--accent-dk); }
.nav-cta { margin-left: 8px; }
/* Book a Call button — always high-contrast white-on-green, every state */
.nav-links .nav-cta a.btn--primary,
.nav-links .nav-cta a.btn--primary.active { background: var(--accent); color: #fff; }
.nav-links .nav-cta a.btn--primary:hover,
.nav-links .nav-cta a.btn--primary:focus { background: var(--accent-dk); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 12px; gap: 2px;
    box-shadow: var(--shadow-lg); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { margin: 8px 0 0; }
}

/* ---------- hover polish ---------- */
.card-link { transition: color .15s ease; }
.card:hover .card-link, .card-link:hover { color: var(--accent-dk); }
.class-card { transition: transform .16s ease, box-shadow .16s ease; }
.class-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.faq-q { transition: color .15s ease; }
.faq-q:hover { color: var(--accent-dk); }
.brand .mark { transition: transform .2s ease; }
.brand:hover .mark { transform: rotate(-8deg) scale(1.06); }
.site-footer a { transition: color .15s ease; }
.roadmap .r-num, .idwd .step .n, .card .ico { transition: transform .18s ease; }
.roadmap .r-step:hover .r-num, .idwd .step:hover .n, .card:hover .ico { transform: scale(1.08); }
.quote, .comment { transition: box-shadow .16s ease; }

/* ---------- promo bar (positioning lines on every page) ---------- */
.promo-bar { background: var(--accent-soft); border-bottom: 1px solid var(--line); }
.promo-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 11px 24px; text-align: center;
}
.promo-inner a {
  color: var(--accent-dk); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
}
.promo-inner a:hover { color: var(--ink); text-decoration: none; }
.promo-div { color: var(--accent); opacity: .55; }
@media (max-width: 620px) { .promo-div { display: none; } .promo-inner { gap: 4px; } }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 88% -20%, var(--accent-soft), transparent 62%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 52px; align-items: center; padding: 88px 0; }
.hero h1 span.hl { color: var(--accent-dk); font-style: italic; }
.hero .lead { margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-photo {
  border-radius: 220px 220px 18px 18px; box-shadow: var(--shadow-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-tint); border: 1px solid var(--line);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding: 56px 0; gap: 34px; }
  .hero-photo { max-width: 340px; margin: 0 auto; border-radius: 200px 200px 16px 16px; }
}

/* ---------- lead answer text (frameless; was "answer box") ---------- */
.answer-box { margin: 0 0 1.4rem; max-width: 64ch; }
.answer-box .label { display: none; }
.answer-box p { margin: 0; color: var(--ink-soft); font-size: 1.2rem; line-height: 1.6; }
.answer-box p strong { color: var(--ink); font-weight: 600; }

/* ---------- updated date ---------- */
.updated { display: block; margin-top: 8px; font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ---------- stat tiles ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; text-align: center;
}
.stat .num { font-size: 2rem; font-weight: 600; color: var(--accent-dk); font-family: var(--font-display); }
.stat .lbl { font-size: .9rem; color: var(--muted); font-weight: 500; }
.stat .ph { font-size: .66rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--accent-soft); color: var(--accent-dk);
}
.ico svg { width: 22px; height: 22px; display: block; }
.card h3 { margin-bottom: .45rem; }
.card p { font-size: .98rem; }
.card .card-link { font-weight: 600; }

/* ---------- mission visuals (warm, elegant, editorial) ---------- */
.visual {
  border-radius: var(--radius); min-height: 260px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, #177b57, #0f5c41);
  display: grid; place-items: center; color: #fff; text-align: center;
}
.visual--alt { background: linear-gradient(150deg, #21bf61, #177b57); }
.visual--warm { background: linear-gradient(150deg, #2f8f6e, #14483a); }
.visual::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(280px 180px at 22% 20%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(220px 150px at 80% 82%, rgba(255,255,255,.14), transparent 60%);
}
.visual .visual-label { position: relative; font-weight: 600; opacity: .96; padding: 12px 18px; font-family: var(--font-display); }

.photo-ph {
  border-radius: var(--radius); border: 1.5px dashed var(--line); background: var(--bg-soft);
  display: grid; place-items: center; text-align: center; color: var(--muted); font-weight: 600;
  min-height: 220px; padding: 16px;
}

/* ---------- "I Do, We Do, You Do" ---------- */
.idwd { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.idwd .step {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  position: relative;
}
.idwd .step .n {
  width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 600; margin-bottom: 14px; font-family: var(--font-display);
}
.idwd .step:nth-child(2) .n { background: var(--accent-2); }
.idwd .step:nth-child(3) .n { background: var(--accent-dk); }
.idwd .step:nth-child(4) .n { background: #33413a; }
.idwd .step h3 { margin-bottom: .5rem; }
.idwd .step .tick li { margin-bottom: 7px; font-size: .95rem; }
.idwd.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .idwd, .idwd.cols-2 { grid-template-columns: 1fr; } }

/* ---------- timeline (sequential process) ---------- */
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 20px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2), var(--accent-dk), #33413a);
}
.timeline .t-step { position: relative; padding: 0 0 34px 66px; }
.timeline .t-step:last-child { padding-bottom: 0; }
.timeline .t-num {
  position: absolute; left: 0; top: 0; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 600; font-family: var(--font-display);
  z-index: 1; box-shadow: 0 0 0 5px var(--bg-soft);
}
.timeline .t-step:nth-child(1) .t-num { background: var(--accent); }
.timeline .t-step:nth-child(2) .t-num { background: var(--accent-2); }
.timeline .t-step:nth-child(3) .t-num { background: var(--accent-dk); }
.timeline .t-step:nth-child(4) .t-num { background: #33413a; }
.timeline h3 { margin: 7px 0 10px; }
.timeline .tick { margin: 0; }
.timeline .tick li { margin-bottom: 7px; font-size: .97rem; }

/* ---------- roadmap (horizontal sequential process) ---------- */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; margin-top: 10px; }
.roadmap::before {
  content: ""; position: absolute; top: 22px; left: 16.67%; right: 16.67%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-dk)); z-index: 0;
}
.roadmap .r-step > p { font-size: .95rem; margin-bottom: 12px; }
.roadmap .r-step { position: relative; z-index: 1; text-align: center; min-width: 0; }
.roadmap .r-num {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 600; font-family: var(--font-display); margin: 0 auto 16px;
  box-shadow: 0 0 0 6px var(--bg-soft);
}
.roadmap .r-step:nth-child(1) .r-num { background: var(--accent); }
.roadmap .r-step:nth-child(2) .r-num { background: var(--accent-2); }
.roadmap .r-step:nth-child(3) .r-num { background: var(--accent-dk); }
.roadmap .r-step:nth-child(4) .r-num { background: #33413a; }
.roadmap h3 { font-size: 1.12rem; margin-bottom: 10px; }
.roadmap .tick { display: block; text-align: left; max-width: 260px; margin: 0 auto; }
.roadmap .tick li { font-size: .9rem; margin-bottom: 6px; }
.roadmap .r-step > p { max-width: 300px; min-height: 3.3em; margin-left: auto; margin-right: auto; }

/* centered, balanced two-column checklist */
.checklist-2col { display: inline-grid; grid-template-columns: auto; gap: 14px; max-width: 100%; margin-top: 10px; text-align: left; }
.checklist-2col li { margin-bottom: 0; }
@media (max-width: 820px) {
  .roadmap { grid-template-columns: 1fr; gap: 26px; }
  .roadmap::before { display: none; }
  .roadmap .r-step { text-align: left; padding-left: 62px; }
  .roadmap .r-num { position: absolute; left: 0; top: 0; margin: 0; }
  .roadmap .tick { display: block; }
}

/* one-line heading on wide screens */
.nowrap-lg { white-space: nowrap; }
@media (max-width: 640px) { .nowrap-lg { white-space: normal; } }

/* ---------- lists ---------- */
.tick { list-style: none; padding: 0; margin: 0; }
.tick li { position: relative; padding-left: 30px; margin-bottom: 13px; color: var(--ink-soft); }
.tick li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-2); font-weight: 700; }
.cross li::before { content: "•"; color: var(--muted); }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table.tiers { border-collapse: collapse; width: 100%; min-width: 520px; background: var(--bg); }
table.tiers th, table.tiers td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); }
table.tiers thead th { background: var(--bg-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
table.tiers tr:last-child td { border-bottom: 0; }
table.tiers td:first-child { font-weight: 600; color: var(--ink); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--bg); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; color: var(--ink); padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit;
}
.faq-q .chev { transition: transform .2s ease; color: var(--accent); font-size: 1.3rem; font-weight: 400; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 22px 18px; margin: 0; }

/* ---------- logo strip ---------- */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; align-items: center; }
.logo-ph {
  height: 58px; border-radius: 10px; background: var(--bg-soft); border: 1px dashed var(--line);
  display: grid; place-items: center; color: var(--muted); font-weight: 600; font-size: .82rem;
}
@media (max-width: 880px) { .logos { grid-template-columns: repeat(3, 1fr); } }

/* ---------- testimonial ---------- */
.quote { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote p { font-size: 1.12rem; color: var(--ink); font-family: var(--font-display); font-style: italic; line-height: 1.55; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-dk); font-weight: 600; }
.quote .who b { display: block; color: var(--ink); font-weight: 600; }
.quote .who span { color: var(--muted); font-size: .9rem; }
.badge-ph { display: inline-block; font-size: .66rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- class cards (individuals) ---------- */
.class-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.class-card .top { padding: 20px 24px; color: #fff; }
.class-card.claude .top { background: linear-gradient(140deg, #177b57, #0f5c41); }
.class-card.copilot .top { background: linear-gradient(140deg, #21bf61, #167a4c); }
.class-card.private .top { background: linear-gradient(140deg, #33413a, #14241c); }
.class-card .top .kicker { color: #fff; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700; margin: 0 0 .2rem; }
.class-card .top h3 { color: #fff; font-size: 1.4rem; margin: .1rem 0 .1rem; }
.class-card .top .dur { color: #fff; font-weight: 500; font-size: .92rem; margin: 0; opacity: .95; }
.class-card .body { padding: 20px 24px 22px; flex: 1; display: flex; flex-direction: column; }
.class-card .body p { font-size: .96rem; margin-bottom: 16px; }
.class-card .body .req-note { margin-top: auto; margin-bottom: 12px; font-size: .85rem; color: var(--muted); }
.class-card .body .btn { margin-top: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(140deg, var(--accent-dk), #0a3d2b); color: #fff; border-radius: 20px;
  padding: 60px 40px; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 920px) { .post-grid { grid-template-columns: 1fr; } }
.post {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.post:hover { box-shadow: var(--shadow-lg); }
.post .thumb { aspect-ratio: 16/9; }
.post .post-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: .8rem; color: var(--muted); font-weight: 600; }
.post h3 { margin: .4rem 0; font-size: 1.2rem; }
.post h3 a { color: var(--ink); }
.post h3 a:hover { color: var(--accent-dk); }
.post .excerpt { font-size: .96rem; }

.post-actions { border-top: 1px solid var(--line); padding: 14px 24px 18px; }
.icon-row { display: flex; align-items: center; gap: 18px; margin-bottom: 8px; }
.like-btn, .comment-jump {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer;
  font-weight: 600; color: var(--muted); font-size: .92rem; padding: 4px 2px; font-family: inherit;
}
.like-btn:hover { color: var(--heart); }
.like-btn .heart { font-size: 1.2rem; line-height: 1; }
.like-btn.liked { color: var(--heart); }
.comment-jump:hover { color: var(--accent-dk); text-decoration: none; }
.comment-jump svg { width: 16px; height: 16px; }
.comment-preview { font-size: .9rem; }
.comment-preview .cmt { color: var(--ink-soft); margin: 3px 0; }
.comment-preview .cmt b { color: var(--ink); }
.comment-preview .more { font-weight: 600; }

/* comments page */
.comment-list { max-width: 760px; margin: 0 auto; }
.comment { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; margin-bottom: 14px; }
.comment .head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.comment .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; font-weight: 600; color: var(--accent-dk); }
.comment .head b { color: var(--ink); font-weight: 600; }
.comment .head span { color: var(--muted); font-size: .82rem; }

/* ---------- footer ---------- */
.site-footer { background: #12241c; color: #c4d1c8; padding: 60px 0 30px; }
.site-footer a { color: #c4d1c8; }
.site-footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font); font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.foot-brand .brand { color: #fff; }
.foot-brand .brand .mark { background: var(--accent); }
.foot-brand p { color: #93a397; max-width: 34ch; }
.foot-bottom { border-top: 1px solid #2a3d33; padding-top: 22px; font-size: .85rem; color: #93a397; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- misc ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 56rem; margin: 0 auto 44px; text-align: center; }
.section-head .lead { max-width: 68ch; margin-left: auto; margin-right: auto; }
.pill { display: inline-block; background: var(--accent-soft); color: var(--accent-dk); font-weight: 600; font-size: .8rem; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; letter-spacing: .02em; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }
input, textarea, select { font-family: inherit; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
