:root {
  --bg: #f6efe8;
  --surface: rgba(255, 249, 243, 0.82);
  --text: #1e1a18;
  --muted: #6f625a;
  --accent: #de6d3f;
  --accent-strong: #bc4f26;
  --border: rgba(30, 26, 24, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(222, 109, 63, 0.18), transparent 30%),
    linear-gradient(180deg, #fff8f0 0%, var(--bg) 100%);
}

.hero,
.featured-sites,
.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

.hero {
  padding-top: 80px;
  padding-bottom: 48px;
}

.hero__eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  max-width: 10ch;
  margin: 0 0 16px;
}

.hero__summary {
  max-width: 56ch;
  font-size: 1.1rem;
  color: var(--muted);
}

.featured-sites__grid {
  display: grid;
  gap: 24px;
}

.site-card {
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(30, 26, 24, 0.08);
}

.site-card__logo {
  max-width: 220px;
  max-height: 96px;
  object-fit: contain;
}

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

.site-card__link {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: none;
}

.site-card__link:hover {
  text-decoration: underline;
}

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

@media (min-width: 800px) {
  .featured-sites__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
