/* ==========================================================================
   TRADE GROWTH — site stylesheet
   Brand green #067648 · Ink #111111 · Classic / rigid / simple
   Squared corners throughout. Nothing rounded. Nothing decorative.
   ========================================================================== */

:root {
  --green:        #067648;
  --green-dark:   #045332;
  --green-light:  #E7F0EB;
  --green-tint:   #F3F8F5;

  --ink:          #111111;
  --ink-soft:     #333B37;
  --muted:        #5C645F;
  --paper:        #FFFFFF;
  --stone:        #F3F4F2;
  --stone-2:      #E8EAE7;
  --rule:         #D5D8D3;
  --rule-strong:  #B4B9B4;

  --measure:      68ch;
  --gutter:       32px;
  --maxw:         1200px;

  --ff-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--green-dark); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--green); color: #fff; padding: 12px 18px; font-family: var(--ff-head); font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: 76px 0; }
section.tight { padding: 52px 0; }
.bg-stone { background: var(--stone); }
.bg-tint  { background: var(--green-tint); }
.bg-ink   { background: var(--ink); color: #fff; }
.bg-green { background: var(--green); color: #fff; }
.bg-ink a, .bg-green a { color: #fff; }
.rule-top { border-top: 1px solid var(--rule); }

/* ---------- type ---------- */
h1, h2, h3, h4, h5 { font-family: var(--ff-head); font-weight: 700; letter-spacing: -.015em; margin: 0 0 .5em; text-wrap: balance; }

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.06; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.14; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.3; }

p { margin: 0 0 1.1em; max-width: var(--measure); }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; max-width: var(--measure); }
li { margin-bottom: .45em; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--ff-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--green);
  margin: 0 0 14px; display: block;
}
.bg-ink .eyebrow, .bg-green .eyebrow { color: #8FD9B6; }
.bg-green .eyebrow { color: rgba(255,255,255,.8); }

.lede { font-size: 1.16rem; line-height: 1.55; color: var(--ink-soft); max-width: 62ch; }
.bg-ink .lede { color: #D6DAD7; }
.small { font-size: .92rem; color: var(--muted); }
.rule-under { padding-bottom: 18px; border-bottom: 3px solid var(--green); display: inline-block; }

/* ---------- header ---------- */
.masthead { border-bottom: 1px solid var(--rule); background: var(--paper); position: sticky; top: 0; z-index: 50; }
.masthead-in {
  max-width: 1340px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px;
}
.brand { display: flex; align-items: center; text-decoration: none; padding: 12px 0; }
.brand img { height: 38px; width: auto; }
.nav-wrap { display: flex; align-items: center; gap: 30px; }

.nav { display: flex; align-items: center; gap: 20px; }
.nav a {
  font-family: var(--ff-head); font-weight: 600; font-size: .84rem; letter-spacing: 0;
  color: var(--ink); text-decoration: none; padding: 8px 0; border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover { color: var(--green); border-bottom-color: var(--green); }
.nav a[aria-current="page"] { color: var(--green); border-bottom-color: var(--green); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.navtoggle {
  display: none; background: none; border: 1px solid var(--rule); padding: 9px 12px;
  font-family: var(--ff-head); font-weight: 600; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer; color: var(--ink);
}

@media (max-width: 1240px) {
  .navtoggle { display: block; }
  .nav-wrap {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 8px var(--gutter) 24px;
  }
  .nav-wrap.open { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--rule); border-left: 3px solid transparent; padding-left: 10px; }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--rule); border-left-color: var(--green); background: var(--stone); }
  .nav-actions { margin-top: 18px; flex-direction: column; align-items: stretch; }
  .nav-actions .btn { text-align: center; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--ff-head); font-weight: 600; font-size: .88rem;
  letter-spacing: .02em; padding: 13px 24px; border: 2px solid var(--green);
  background: var(--green); color: #fff; text-decoration: none; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.btn:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-invert { background: #fff; border-color: #fff; color: var(--ink); }
.btn-invert:hover { background: var(--green); border-color: var(--green); color: #fff; }
.btn-ghost-invert { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost-invert:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: .82rem; }
.btnrow { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- hero ---------- */
.hero { border-bottom: 1px solid var(--rule); background: var(--paper); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; align-items: stretch;
  max-width: var(--maxw); margin: 0 auto;
}
.hero-copy { padding: 74px var(--gutter) 74px var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.hero-img { position: relative; border-left: 1px solid var(--rule); background: var(--stone); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { border-left: none; border-top: 1px solid var(--rule); min-height: 260px; }
  .hero-copy { padding: 52px var(--gutter); }
}

.hero h1 span.hl { color: var(--green); }

/* ---------- stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.stat { background: var(--paper); padding: 26px 24px; }
.bg-ink .stats, .bg-ink .stat { background: #2A2F2C; border-color: #3A413D; }
.bg-ink .stats { background: #3A413D; }
.stat b {
  display: block; font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem); line-height: 1; letter-spacing: -.03em;
  color: var(--green); font-variant-numeric: tabular-nums; margin-bottom: 10px;
}
.bg-ink .stat b { color: #6FCF9B; }
.stat span { display: block; font-size: .92rem; line-height: 1.4; color: var(--muted); }
.bg-ink .stat span { color: #C3C9C5; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card { background: var(--paper); border: 1px solid var(--rule); padding: 28px 26px; }
.card.on-stone { background: var(--paper); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card .idx {
  font-family: var(--ff-head); font-weight: 700; font-size: .74rem; letter-spacing: .16em;
  color: var(--green); display: block; margin-bottom: 12px;
}
.card-top-rule { border-top: 4px solid var(--green); }

/* split feature row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .split-media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } .split.reverse .split-media { order: 0; } }

/* ---------- numbered phase list ---------- */
.phases { list-style: none; padding: 0; margin: 34px 0 0; max-width: none; }
.phases > li {
  display: grid; grid-template-columns: 92px 1fr; gap: 26px;
  padding: 26px 0; border-top: 1px solid var(--rule); margin: 0;
}
.phases > li:last-child { border-bottom: 1px solid var(--rule); }
.phases .no {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.9rem; line-height: 1;
  color: var(--green); letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.phases h3 { margin-bottom: .3em; }
.phases p { margin-bottom: 0; color: var(--muted); }
@media (max-width: 640px) { .phases > li { grid-template-columns: 56px 1fr; gap: 16px; } .phases .no { font-size: 1.4rem; } }

/* ---------- checklist ---------- */
.checks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checks li { position: relative; padding-left: 30px; margin-bottom: .6em; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 12px; background: var(--green);
}

/* ---------- tables ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--rule); margin: 28px 0; }
table { border-collapse: collapse; width: 100%; min-width: 560px; background: var(--paper); font-size: .95rem; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--rule); vertical-align: top; }
th {
  font-family: var(--ff-head); font-weight: 600; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink); background: var(--stone); white-space: nowrap;
}
tr:last-child td { border-bottom: none; }

/* ---------- audience split blocks ---------- */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (max-width: 800px) { .doors { grid-template-columns: 1fr; } }
.door { background: var(--paper); padding: 40px 34px; display: flex; flex-direction: column; }
.door h3 { font-size: 1.5rem; }
.door p { flex: 1; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 34px; }
.person { border: 1px solid var(--rule); background: var(--paper); }
.person-photo { background: var(--stone); border-bottom: 1px solid var(--rule); }
.person-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.person-body { padding: 26px 24px 28px; }
.person-body h3 { margin-bottom: .15em; }
.person .role {
  font-family: var(--ff-head); font-weight: 600; font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); display: block; margin-bottom: 16px;
}
.person dl { margin: 20px 0 0; border-top: 1px solid var(--rule); padding-top: 18px; }
.person dt {
  font-family: var(--ff-head); font-weight: 600; font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
.person dd { margin: 0 0 15px; font-size: .95rem; line-height: 1.5; }
.person dd:last-child { margin-bottom: 0; }
.person dd ul { margin: 0; padding-left: 1.1em; }
.person dd li { margin-bottom: .25em; }

/* ---------- forms / HighLevel embed slots ---------- */
.embed-slot {
  border: 2px dashed var(--green); background: var(--green-tint);
  padding: 34px 28px; text-align: center;
}
.embed-slot h4 { color: var(--green-dark); margin-bottom: .5em; }
.embed-slot p { margin: 0 auto .7em; max-width: 52ch; color: var(--ink-soft); }
.embed-slot code {
  display: inline-block; background: var(--paper); border: 1px solid var(--rule);
  padding: 3px 8px; font-size: .86rem; font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
.embed-frame { width: 100%; min-height: 700px; border: 1px solid var(--rule); background: var(--paper); }

/* ---------- callout ---------- */
.callout { border-left: 4px solid var(--green); background: var(--stone); padding: 24px 26px; margin: 28px 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; padding: 72px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D6DAD7; }
.cta-band .eyebrow { color: #6FCF9B; }
.cta-band a { color: #fff; }
.cta-band a:hover { color: #6FCF9B; }
.cta-band .btn-invert { color: var(--ink); }
.cta-band .btn-invert:hover { color: #fff; }
.cta-band .btn-ghost-invert { color: #fff; }
.cta-band .btn-ghost-invert:hover { color: var(--ink); }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: #C3C9C5; padding: 62px 0 30px; font-size: .93rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 38px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot img.footlogo { height: 52px; width: auto; margin-bottom: 20px; }
.foot h4 {
  color: #fff; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 9px; }
.foot a { color: #C3C9C5; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot p { color: #A8AFAB; }
.foot-base {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid #333B37;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .86rem;
}

/* ---------- page header (interior pages) ---------- */
.pagehead { background: var(--stone); border-bottom: 1px solid var(--rule); padding: 60px 0 56px; }
.pagehead h1 { margin-bottom: .35em; }
.pagehead .lede { margin-bottom: 0; }
.crumb {
  font-family: var(--ff-head); font-weight: 600; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--green); }

/* ---------- resource list ---------- */
.res-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.res { background: var(--paper); padding: 24px 24px 26px; display: flex; flex-direction: column; }
.res .kind {
  font-family: var(--ff-head); font-weight: 600; font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block;
}
.res h3 { font-size: 1.06rem; margin-bottom: .4em; }
.res p { font-size: .93rem; color: var(--muted); flex: 1; margin-bottom: 16px; }
.res .lock {
  font-family: var(--ff-head); font-weight: 600; font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); border-top: 1px solid var(--rule); padding-top: 14px;
}

/* ---------- notice bar (for unlinked / draft pages) ---------- */
.notice {
  background: #FFF6E5; border-bottom: 2px solid #E0A32B; color: #4A3708;
  padding: 14px 0; font-size: .92rem;
}
.notice strong { font-weight: 700; }

/* ---------- utility ---------- */
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.mt40 { margin-top: 40px; } .mt24 { margin-top: 24px; }
.center { text-align: center; }
.center p, .center .lede { margin-left: auto; margin-right: auto; }
.maxw-narrow { max-width: 760px; }
.imgbox { border: 1px solid var(--rule); background: var(--stone); }
figure { margin: 0; }
figcaption { font-size: .84rem; color: var(--muted); padding: 10px 2px 0; }

/* ==========================================================================
   ADDITIONS — capabilities, flows, industries, forms, artwork
   ========================================================================== */

/* ---------- headline sub-line ---------- */
.sub {
  font-family: var(--ff-head); font-weight: 600; font-size: 1.08rem;
  color: var(--green); margin: -6px 0 16px; letter-spacing: -.005em;
}

/* ---------- capability cards ---------- */
.cap-icon { width: 40px; height: 40px; color: var(--green); display: block; margin-bottom: 16px; }
.caps .card { display: flex; flex-direction: column; }
.cap h3 { font-size: 1.3rem; }
.capcta { margin-top: auto; padding-top: 14px; }
.capcta a {
  font-family: var(--ff-head); font-weight: 600; font-size: .88rem;
  text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px;
}
.tightlist { list-style: none; padding: 0; margin: 0 0 6px; }
.tightlist li {
  position: relative; padding-left: 15px; margin-bottom: .3em;
  font-size: .92rem; color: var(--muted);
}
.tightlist li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; background: var(--green);
}
.tightlist.ol { list-style: decimal; padding-left: 1.15em; }
.tightlist.ol li { padding-left: 0; }
.tightlist.ol li::before { content: none; }

.cardlink { background: var(--green-tint); border-color: var(--rule); }

/* ---------- dark card ---------- */
.darkcard { background: #232926; border: 1px solid #39403C; padding: 28px 26px; }
.dc-label {
  font-family: var(--ff-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: #8FD9B6;
  display: block; margin-bottom: 16px;
}
.checks.light li { color: #D6DAD7; }
.checks.light li::before { background: #6FCF9B; }

/* ---------- process flow ---------- */
.flow {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 36px;
}
.flow.flow-6 { grid-template-columns: repeat(6, 1fr); }
.flow-step { background: var(--paper); padding: 24px 20px 26px; position: relative; }
.bg-stone .flow-step, .bg-tint .flow-step { background: var(--paper); }
.fs-no {
  font-family: var(--ff-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; color: var(--green); display: block; margin-bottom: 10px;
}
.flow-step h3 {
  font-size: 1.02rem; margin: 0 0 7px;
  text-transform: uppercase; letter-spacing: .04em;
}
.flow-step p { font-size: .89rem; line-height: 1.45; color: var(--muted); margin: 0; }
@media (max-width: 900px) {
  .flow, .flow.flow-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .flow, .flow.flow-6 { grid-template-columns: 1fr; }
}

/* ---------- industries list ---------- */
.indgrid { display: grid; gap: 0; }
.ind {
  display: grid; grid-template-columns: 96px 1fr; gap: 28px;
  padding: 34px 0; border-top: 1px solid var(--rule);
}
.ind:last-child { border-bottom: 1px solid var(--rule); }
.ind-no {
  font-family: var(--ff-head); font-weight: 700; font-size: 2.2rem;
  line-height: 1; color: var(--green); letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.ind h2 { font-size: 1.45rem; margin-bottom: .35em; }
.ind p { margin-bottom: 10px; }
.ind .small { color: var(--muted); }
@media (max-width: 640px) {
  .ind { grid-template-columns: 1fr; gap: 8px; }
  .ind-no { font-size: 1.5rem; }
}

/* ---------- government info ---------- */
.govgrid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 34px;
}
.govitem { background: var(--paper); padding: 20px 22px; }
.govitem dt {
  font-family: var(--ff-head); font-weight: 600; font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.govitem dd {
  margin: 0; font-family: var(--ff-head); font-weight: 600;
  font-size: 1.02rem; letter-spacing: .01em; word-break: break-word;
}

/* ---------- mini definition lists ---------- */
.minidt {
  font-family: var(--ff-head); font-weight: 600; font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
.minidd { margin: 0 0 16px; font-size: .95rem; line-height: 1.5; }

/* ---------- team: three across ---------- */
.team-grid.three { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ---------- SVG artwork ---------- */
.hero-art, .band-art { width: 100%; height: 100%; display: block; }
.hero-art { min-height: 100%; object-fit: cover; }
.band-art { border: 1px solid var(--rule); }
.ha-bg { fill: var(--stone); }
.ha-grid line { stroke: var(--stone-2); stroke-width: 1; }
.ha-chev path { fill: none; stroke: var(--green); stroke-width: 10; stroke-linecap: square; }
.ha-mark path { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: square; }
.hero-img { background: var(--stone); overflow: hidden; }
.hero-img svg { width: 100%; height: 100%; }

/* ---------- forms ---------- */
.contact-split { align-items: start; }
.tgform { margin-top: 20px; }
.tgform .f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .tgform .f2 { grid-template-columns: 1fr; gap: 0; } }

.field { margin-bottom: 18px; border: none; padding: 0; }
.field > label, .field legend {
  display: block; font-family: var(--ff-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .04em; margin-bottom: 6px; color: var(--ink);
  padding: 0;
}
.req { color: var(--green); }

.tgform input[type="text"],
.tgform input[type="email"],
.tgform input[type="tel"],
.tgform select,
.tgform textarea {
  width: 100%; font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule-strong);
  padding: 11px 13px; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.tgform select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  padding-right: 38px;
}
.tgform textarea { resize: vertical; min-height: 120px; }
.tgform input:focus, .tgform select:focus, .tgform textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 2px var(--green-light);
}

.checkgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 8px 18px; }
.radiogrid { display: grid; gap: 8px; }
.checkgrid label, .radiogrid label {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .95rem; cursor: pointer; font-weight: 400;
}
.checkgrid input, .radiogrid input {
  margin: 3px 0 0; width: 16px; height: 16px; flex: none; accent-color: var(--green);
}

.btn-lg { padding: 15px 30px; font-size: .95rem; }
.hp { position: absolute; left: -9999px; }

/* ---------- notice bar reuse ---------- */
.bg-ink .darkcard a { color: #8FD9B6; }

/* ---------- fixes ---------- */
.govitem dd { font-size: .96rem; overflow-wrap: break-word; }
.foot .small { color: #A8AFAB; }
.foot ul.small li { color: #A8AFAB; }

/* ---------- headshots are square ---------- */
.person-photo img { aspect-ratio: 1 / 1; }

/* ---------- WOSB certification block (About) ---------- */
.certsplit {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center;
}
@media (max-width: 780px) {
  .certsplit { grid-template-columns: 1fr; gap: 28px; }
  .certmark { max-width: 220px; }
}
.certmark {
  background: var(--paper); border: 1px solid var(--rule); padding: 22px;
}
.certmark img { width: 100%; height: auto; }

/* ---------- WOSB badge in the footer ---------- */
.foot-cert {
  display: inline-block; background: #fff; padding: 10px 12px;
  margin-bottom: 22px; border: 1px solid #333B37; line-height: 0;
}
.foot-cert img { width: 108px; height: auto; }
.foot-cert:hover { border-color: #6FCF9B; }

/* two same-tone sections in a row need a divider */
.bg-stone + .bg-stone, .bg-tint + .bg-tint { border-top: 1px solid var(--rule); }

/* ---------- footer social row ---------- */
.foot-social {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid #333B37;
}
.foot-social .soc {
  display: inline-flex; align-items: center; gap: 10px;
  color: #C3C9C5; text-decoration: none;
  font-family: var(--ff-head); font-weight: 600; font-size: .84rem;
}
.foot-social .soc svg { width: 17px; height: 17px; flex: none; }
.foot-social .soc:hover { color: #fff; }
.foot-social .soc:hover svg { color: #6FCF9B; }

/* ---------- client grid ---------- */
.client-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.client { background: var(--paper); display: block; text-decoration: none; color: inherit; }
a.client:hover .client-logo { background: var(--green-tint); }
a.client:hover h3 { color: var(--green); }

.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 190px; padding: 26px 14px; background: var(--stone);
  border-bottom: 1px solid var(--rule);
}
.client-logo.dark { background: #000; }
.client-logo img { max-height: 124px; max-width: 100%; width: auto; object-fit: contain; }
.client-wordmark {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.25rem;
  letter-spacing: -.01em; color: var(--ink); text-align: center; text-wrap: balance;
}
.client-meta { padding: 20px 22px 24px; }
.client-meta h3 { font-size: 1.05rem; margin: 0 0 5px; }
.client-meta p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- review card ---------- */
.review-card { border-top: 4px solid var(--green); }
.stars { color: #E8A33D; font-size: 1.5rem; letter-spacing: 3px; line-height: 1; }

/* ---------- confirmation page ---------- */
.confirm { padding: 78px 0 62px; border-bottom: 1px solid var(--rule); }
.confirm-icon { display: block; margin: 0 auto 26px; width: 62px; color: var(--green); }
.confirm-mark { width: 62px; height: 62px; display: block; }
.confirm h1 { margin-bottom: .4em; }
.confirm .lede { margin-bottom: 18px; }

/* ---------- Zoho form: multi-select + hints ---------- */
.tgform select.multi {
  height: auto; min-height: 190px; padding: 6px;
  background-image: none; line-height: 1.5;
}
.tgform select.multi option {
  padding: 7px 10px; border-bottom: 1px solid var(--rule);
}
.tgform select.multi option:last-child { border-bottom: none; }
.tgform select.multi option:checked {
  background: var(--green) linear-gradient(0deg, var(--green) 0%, var(--green) 100%);
  color: #fff; font-weight: 600;
}
.hint { font-size: .86rem; color: var(--muted); margin: 7px 0 0; }
.hint kbd {
  font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .82em;
  background: var(--stone); border: 1px solid var(--rule-strong);
  padding: 1px 5px; border-radius: 2px;
}
.tgform button[disabled] { opacity: .6; cursor: default; }
