:root {
  --ink: #1a1c1f;
  --muted: #4c5563;
  --accent: #d07a3b;
  --accent-dark: #9b4c1c;
  --bg: #f7f3ee;
  --panel: #ffffff;
  --shadow: 0 18px 48px rgba(27, 31, 38, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7ec 0%, var(--bg) 55%, #efe7dc 100%);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 16px;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
}

.hero {
  padding: 80px 0 56px;
}

.hero h1 {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 28px;
}

.cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.secondary {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.button:hover {
  transform: translateY(-2px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 40px 0 64px;
}

.feature {
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature h3 {
  margin-top: 0;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
}

.snippet {
  background: #1c1f24;
  color: #f2f4f8;
  padding: 18px 20px;
  border-radius: 16px;
  overflow-x: auto;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
