:root {
  color-scheme: light;
  --bg: #efe4d2;
  --bg-accent: #d9b17f;
  --panel: rgba(255, 248, 236, 0.88);
  --border: rgba(68, 37, 14, 0.14);
  --text: #2b1c10;
  --muted: #6e5641;
  --cta: #dd5c36;
  --cta-text: #fff7ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Avenir Next", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 248, 219, 0.72), transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, #e3cfb8 100%);
}

.page {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
}

.hero {
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.lede {
  max-width: 34rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 1.25rem;
}

.card {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(94, 60, 24, 0.1);
  backdrop-filter: blur(10px);
}

.card__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(221, 92, 54, 0.12);
  color: #8c361f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card h2 {
  margin: 0.85rem 0 0.45rem;
  font-size: 2rem;
}

.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-text);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 700px) {
  .page {
    width: min(100%, calc(100% - 1.2rem));
    padding-top: 2rem;
  }
}
