/* Aevinshop — minimal */

:root {
  --bg: #fafaf7;
  --ink: #111;
  --muted: #6b6b66;
  --line: #e6e3da;
  --accent: #c8412e;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max: 880px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, p { margin: 0; }

.wrap {
  width: min(var(--max), 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- header ---------- */
.site-header {
  padding: 1.5rem 0;
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.brand__dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid var(--ink);
  border-radius: 4px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--small { padding: 0.45rem 0.9rem; font-size: 0.85rem; }

/* ---------- hero ---------- */
.hero {
  padding: 5rem 0 6rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  max-width: 18ch;
}
.lede {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 38ch;
  line-height: 1.5;
}

/* ---------- sections ---------- */
section { padding: 4rem 0; }
section + section { border-top: 1px solid var(--line); }

section h2 {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ---------- services ---------- */
.cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.card {
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.price {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}

/* ---------- process ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 540px;
}
.steps li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.steps__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.1rem;
}
.steps p {
  color: var(--muted);
  line-height: 1.55;
}
.steps b { color: var(--ink); font-weight: 600; }

/* ---------- faq ---------- */
.qa-list {
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  color: var(--muted);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 150ms ease;
}
.qa[open] summary::after { content: "−"; }
.qa p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 0 0 1.2rem;
  max-width: 60ch;
}

/* ---------- footer ---------- */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
.site-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.site-footer nav {
  display: flex;
  gap: 1.5rem;
}
.site-footer nav a:hover { color: var(--ink); }

/* ---------- responsive ---------- */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .nav { gap: 1.2rem; font-size: 0.85rem; }
  .hero { padding: 3rem 0 4rem; }
  section { padding: 3rem 0; }
}
