/* Studio site: static, mobile-first, no dependencies. */
:root {
  --green-950: #0f2a1c;
  --green-900: #143523;
  --green-600: #2f7d52;
  --green-100: #e7f1ea;
  --cream: #f7f5ef;
  --ink: #17211c;
  --muted: #5b6b61;
  --line: #e2ddd2;
  --max: 1080px;
  --font-display: ui-serif, Georgia, "Times New Roman", Cambria, serif;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); font-size: 16.5px; line-height: 1.65;
  color: var(--ink); background: #fff; }
a { color: var(--green-600); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15;
  margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 58px 0; }
.section--tint { background: var(--cream); }
.section-head { max-width: 620px; margin: 0 auto 36px; text-align: center; }
.section-head p { color: var(--muted); margin: 0; }
.eyebrow { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #9ed3ae; margin-bottom: 12px; }
.section .eyebrow, .section-head .eyebrow { color: var(--green-600); }
.note { color: var(--muted); font-size: .88rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 6px; font-weight: 650; font-size: .95rem;
  text-decoration: none; border: 1px solid transparent; }
.btn--primary { background: var(--green-600); color: #fff; }
.btn--primary:hover { background: #3d9264; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.13); }
.btn--outline-dark { background: transparent; color: var(--green-900); border-color: var(--green-900); }
.btn--outline-dark:hover { background: var(--green-100); }
.btn--sm { padding: 10px 16px; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.header { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 10; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: none; border-radius: 8px;
  background: linear-gradient(150deg, var(--green-600), var(--green-950)); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-size: .92rem; }
.brand__name { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.brand__sub { display: block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); }
.nav { display: none; gap: 24px; align-items: center; font-size: .93rem; }
.nav a { color: var(--ink); text-decoration: none; }
.nav a:hover { color: var(--green-600); }

.hero { background: var(--green-950); color: #fff; }
.hero__inner { padding: 62px 0 58px; max-width: 700px; }
.hero h1 { color: #fff; }
.hero__sub { font-size: 1.1rem; font-weight: 650; color: #fff; }
.hero__text { color: rgba(255,255,255,.85); max-width: 56ch; }

.credibility { background: var(--green-900); color: rgba(255,255,255,.9); padding: 18px 0;
  font-size: .95rem; }
.credibility p { margin: 0; }
.credibility a { color: #9ed3ae; }

.grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card { border: 1px solid var(--line); border-radius: 8px; padding: 20px; background: #fff; }
.card p { color: var(--muted); font-size: .92rem; margin: 0; }
.step { text-align: center; }
.step__num { width: 42px; height: 42px; border-radius: 50%; background: var(--green-900); color: #fff;
  display: grid; place-items: center; margin: 0 auto 12px; font-family: var(--font-display); }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

.contact { background: var(--green-900); color: #fff; padding: 56px 0; }
.contact h2 { color: #fff; }
.contact p { color: rgba(255,255,255,.85); }
.contact-list { list-style: none; padding: 0; margin: 22px 0 0; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-list span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); }
.contact-list a { color: #fff; font-weight: 600; text-decoration: none; font-size: 1.02rem; }

.footer { background: var(--green-950); color: rgba(247,245,239,.72); padding: 26px 0;
  font-size: .82rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.footer a { color: inherit; }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.25rem; margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .6em; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .section { padding: 82px 0; }
  .hero__inner { padding: 104px 0 96px; }
}
