/* ON Aspect ApS — clean minimal light. Plain CSS, no build, no deps. */

:root {
  --ink: #16181d;
  --ink-soft: #4a4f59;
  --ink-dim: #8a909c;
  --line: #e7e8ec;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --accent: #1f5fff;
  --accent-ink: #ffffff;
  --maxw: 760px;
  --pad: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.brand:hover { text-decoration: none; }
.nav-links a {
  color: var(--ink-soft);
  margin-left: 24px;
  font-size: 15px;
}

/* Hero */
.hero { padding: 96px 24px 72px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--ink-dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.lede {
  margin: 0 0 32px;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; opacity: 0.92; }
.btn:disabled { opacity: 0.5; cursor: default; }

/* Sections */
.section {
  padding: 56px 24px;
  border-top: 1px solid var(--line);
}
.section h2 {
  margin: 0 0 20px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.prose p { margin: 0 0 16px; color: var(--ink-soft); max-width: 64ch; }

/* Contact form */
.contact-form { margin-top: 28px; max-width: 520px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
/* Honeypot — visually hidden but present in the DOM for bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 15px; min-height: 1.2em; }
.form-status.ok { color: #157347; }
.form-status.err { color: #c0392b; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 28px 0;
  color: var(--ink-dim);
  font-size: 14px;
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.footer-inner .dot { color: var(--line); }
.footer-inner .copy { margin-left: auto; }
@media (max-width: 560px) {
  .footer-inner .copy { margin-left: 0; width: 100%; padding-top: 8px; }
}
