/* ChillSlab — Scandinavian minimal. Do not reuse on other products. */
:root {
  --bg: #f7faf8;
  --ink: #1a2a24;
  --muted: #5d7269;
  --line: #d5e0db;
  --accent: #2f6b58;
  --sans: "Avenir Next", "Futura", "Century Gothic", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.center {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.top {
  padding: 36px 0 8px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.top a { text-decoration: none; }

.hero-img {
  margin: 28px auto 36px;
  width: min(560px, 100%);
}
.hero-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

h1 {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.lede {
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 40ch;
}

.quiet {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  margin: 0 10px;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font: inherit;
  cursor: pointer;
}

.facts {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 40px 0 64px;
  font-size: 13px;
  color: var(--muted);
}
.facts b { display: block; color: var(--ink); font-weight: 500; }

.list {
  text-align: left;
  padding: 0 0 56px;
  border-top: 1px solid var(--line);
}
.list h2 {
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  margin: 48px 0 28px;
}
.item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.num { color: var(--accent); font-size: 13px; letter-spacing: 0.12em; }
.item h3 { margin: 0 0 6px; font-weight: 500; font-size: 18px; }
.item p { margin: 0; color: var(--muted); }

.fit {
  padding-bottom: 64px;
}
.fit img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 20px;
}

.box {
  text-align: left;
  padding: 8px 0 72px;
}
.box form { display: grid; gap: 12px; }
.box input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0;
  font: inherit;
  border-radius: 0;
}
.box .fine { font-size: 12px; color: var(--muted); margin: 0; }
.ok { color: var(--accent); font-weight: 600; }
.err { color: #9a2b22; font-weight: 600; }

footer {
  padding: 0 0 56px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 600px) {
  .facts { flex-direction: column; gap: 16px; }
}
