/* Reset / base */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffaf4;
  color: #222;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  background: #ffffffee;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #f0d4b3;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: #e4572e;
}

.main-nav a {
  margin-left: 1rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: #444;
}

.main-nav a:hover {
  color: #e4572e;
}

/* Hero */

.hero {
  padding: 80px 5% 60px;
  background: radial-gradient(circle at top left, #ffe1c2, #fffaf4);
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.hero p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  color: #555;
}

.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: #e4572e;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #c74520;
}

/* Search (if you add it later) */

.search-section {
  padding: 20px 5% 10px;
  text-align: center;
}

.search-form {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.search-form input {
  padding: 0.55rem 0.8rem;
  min-width: 220px;
  border-radius: 999px;
  border: 1px solid #e0c6a3;
}

.search-form button {
  padding
