:root {
  --bg: #f7f6f2;
  --card: #ffffff;
  --text: #202124;
  --muted: #6c6d70;
  --line: #e6e3dc;
  --accent: #27292b;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header,
main,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

nav { display: flex; gap: 22px; }
nav a, .site-footer a { color: var(--muted); text-decoration: none; }
nav a:hover, .site-footer a:hover { color: var(--text); }

.hero {
  padding: 84px 0 72px;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 700;
}

h1 {
  margin: 12px 0 20px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero p {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 24px;
}

h2 { margin: 0; font-size: 1.65rem; letter-spacing: -.02em; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.product img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-copy { padding: 20px; }
.product h3 { margin: 0 0 8px; font-size: 1.08rem; }
.product p { margin: 0; color: var(--muted); font-size: .95rem; }

.about {
  margin: 92px 0 56px;
  border-top: 1px solid var(--line);
  padding-top: 46px;
  max-width: 720px;
}

.about p, .legal p, .legal li { color: var(--muted); }

.legal {
  max-width: 760px;
  padding: 68px 0 40px;
}

.legal h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.legal h2 { margin-top: 34px; font-size: 1.25rem; }
.legal ul { padding-left: 20px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .92rem;
}

.footer-links { display: flex; gap: 18px; }

@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  nav { gap: 14px; }
  .site-footer { flex-direction: column; }
}
