:root {
  --accent: #14B87D;
  --ink: #16181b;
  --muted: #6b7076;
  --bg: #fafafa;
  --card: #ffffff;
  --rule: #e6e7e9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 680px; margin: 0 auto; padding: 44px 22px 72px; }
nav { display: flex; gap: 18px; margin-bottom: 34px; font-size: 15px; font-weight: 600; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--accent); }
h1 { font-size: 34px; line-height: 1.15; letter-spacing: -.02em; margin: 0 0 10px; }
h2 { font-size: 20px; letter-spacing: -.01em; margin: 34px 0 8px; }
.sub { color: var(--muted); margin: 0 0 30px; font-size: 17px; }
.muted { color: var(--muted); font-size: 15px; }
p { margin: 10px 0; }
a { color: var(--accent); }
.card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 22px 0;
}
.mark {
  width: 74px; height: 74px; border-radius: 18px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #0b0d0e; font-size: 30px; font-weight: 800; letter-spacing: -2px;
  margin-bottom: 20px;
}
ul { padding-left: 20px; margin: 10px 0; }
li { margin: 7px 0; }
footer {
  margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--rule);
  display: flex; gap: 18px; font-size: 15px;
}
footer a { color: var(--muted); text-decoration: none; }
/* The form is the only contact route: no address is published anywhere on this site. */
#contact textarea, #contact input[type=email] {
  width: 100%; margin-top: 12px; border: 1px solid var(--rule); border-radius: 12px;
  padding: 12px 14px; font: inherit; color: var(--ink); background: #fff;
}
#contact button {
  margin-top: 12px; background: var(--accent); color: #06231a; border: 0;
  border-radius: 999px; padding: 11px 26px; font: inherit; font-weight: 700; cursor: pointer;
}
#contact button:disabled { opacity: .55; cursor: default; }
#contact .trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
#status { margin: 12px 0 0; font-weight: 700; min-height: 1em; }
