/* assets/style.css — full style extracted from preview */
:root {
  --bg: #f7f7f5;
  --ink: #1e1e1e;
  --muted: #6f6f6f;
  --line: #d9d9d6;
  --accent: #2f4f4f; /* quiet evergreen */
}

* {
  box-sizing: border-box;
}

/* Brand (logo + name) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* calm, intentional spacing */
}

.logo {
  height: 28px; /* small, understated */
  width: auto;
  display: block;
  opacity: 0.85;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

header h1 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--ink);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

section {
  margin-bottom: 6rem;
}

.hero {
  max-width: 760px;
}

.hero h2 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 4rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.process-step {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

footer a {
  color: var(--ink);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Subtle reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* keep scrollbar present so window size is consistent */
html {
  overflow-y: scroll;
}