@font-face { font-family: "Lora"; src: url("/fonts/Lora.ttf") format("truetype"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/Manrope.ttf") format("truetype"); font-weight: 200 800; font-display: swap; }

:root {
  --ground: #162b26;
  --raised: #203831;
  --deep: #304b3c;
  --line: #385048;
  --paper: #f7f7ef;
  --muted: #b9c6bd;
  --willow: #97ce68;
  --sage: #8fb8a6;
  --serif: "Lora", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  background-image: radial-gradient(ellipse 80% 50% at 85% -10%, rgba(151, 206, 104, 0.10), transparent 70%);
  color: var(--paper);
  font: 400 1.0625rem/1.65 var(--sans);
}
a { color: var(--willow); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
img { max-width: 100%; height: auto; }

.wrap { max-width: 64rem; margin: 0 auto; padding-inline: max(1.25rem, env(safe-area-inset-left)); padding-block: 0 2rem; }

.top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--paper); text-decoration: none; font: 600 1.25rem/1 var(--serif); }
.brand img { width: 2.25rem; height: 2.25rem; border-radius: 0.6rem; }
.top nav { display: flex; gap: 1.25rem; }
.top nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.top nav a:hover, .top nav a[aria-current="page"] { color: var(--paper); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; margin: 0; }

.hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; padding-block: 3.5rem 4.5rem; }
.kicker { margin: 0 0 1rem; color: var(--willow); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.75rem); }
.lede { margin: 1.4rem 0 0; font-size: 1.2rem; color: var(--muted); max-width: 34rem; }
.cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.badge { display: inline-block; padding: 0.55rem 1rem; border-radius: 999px; background: var(--willow); color: var(--ground); font-weight: 700; font-size: 0.9rem; }
.note { color: var(--muted); font-size: 0.9rem; }
.icon-stage { justify-self: center; }
.icon-stage img { width: min(19rem, 70vw); border-radius: 22%; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--line); }

section { border-top: 1px solid var(--line); padding-block: 3.5rem; }
section h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
.sub { margin: 0.8rem 0 0; color: var(--muted); max-width: 40rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.tile { background: var(--raised); border: 1px solid var(--line); border-radius: 1rem; padding: 1.5rem; }
.tile h3 { font-size: 1.2rem; }
.tile p { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.98rem; }
.promise { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 2rem; max-width: 40rem; }
.promise li { padding-left: 1.6rem; position: relative; }
.promise li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 0.6rem; height: 0.6rem; border-radius: 50% 0; background: var(--willow); }
.fine { margin: 1.5rem 0 0; color: var(--muted); font-size: 0.95rem; }

.doc { max-width: 42rem; padding-block: 2.5rem 3rem; }
.doc h1 { font-size: clamp(2.1rem, 5vw, 2.9rem); }
.doc h2 { font-size: 1.35rem; margin: 2.4rem 0 0.5rem; }
.meta { margin: 0.5rem 0 2rem; color: var(--muted); font-size: 0.92rem; }
.prose p, .prose li { color: #e3e8e0; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.4rem 0; }
.callout { background: var(--raised); border: 1px solid var(--line); border-left: 3px solid var(--willow); border-radius: 0.75rem; padding: 0.25rem 1.25rem; }
.contact { display: inline-block; margin: 0.25rem 0 0.75rem; font: 600 1.35rem/1.3 var(--serif); }
details { border-top: 1px solid var(--line); padding-block: 0.9rem; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 700; }
details p { margin: 0.6rem 0 0.2rem; }

footer { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 1rem; color: var(--muted); font-size: 0.9rem; }
footer nav { display: flex; gap: 1.25rem; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--paper); }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 2rem 3rem; }
  .icon-stage { order: -1; justify-self: start; }
  .icon-stage img { width: 7rem; }
  .grid, .promise { grid-template-columns: 1fr; }
}
