:root {
  --coral: #e85c4a;
  --coral-dark: #c94534;
  --ink: #23231f;
  --soft: #fff4f0;
  --line: #eadfd9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
}
a { color: var(--coral-dark); }
img { max-width: 100%; height: auto; border-radius: 10px; }

.site-header {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  padding: 14px 5vw; border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 800; font-size: 22px; text-decoration: none;
  color: var(--coral);
}
.site-header nav { display: flex; gap: 18px; align-items: center; }
.site-header nav a { text-decoration: none; color: var(--ink); font-weight: 600; }
.site-header nav a.cta {
  background: var(--coral); color: #fff; padding: 7px 16px; border-radius: 999px;
}

main { max-width: 960px; margin: 0 auto; padding: 12px 5vw 48px; }
h1 { font-size: 34px; line-height: 1.2; }
h2 { margin-top: 40px; }
.lead { font-size: 18px; }

.hero { text-align: center; padding: 44px 0 22px; }
.hero p { max-width: 560px; margin: 12px auto; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.button {
  display: inline-block; background: var(--coral); color: #fff;
  font-weight: 700; text-decoration: none;
  padding: 12px 24px; border-radius: 999px;
}
.button:hover { background: var(--coral-dark); }
.button.ghost {
  background: #fff; color: var(--coral-dark);
  border: 2px solid var(--coral);
}

.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.card {
  text-decoration: none; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; background: #fff;
}
.card:hover { border-color: var(--coral); }
.card h3 { margin: 10px 0 2px; font-size: 17px; }
.card p { margin: 0; color: #6b655f; font-size: 14px; }

.strip { background: var(--soft); border-radius: 14px; padding: 8px 28px 20px; margin-top: 44px; }
.theme-page .feature { margin: 8px 0; }
.post-list { list-style: none; padding: 0; }
.post-list li { margin-bottom: 18px; }
.post-list span { color: #6b655f; font-size: 15px; }

.site-footer {
  border-top: 1px solid var(--line); margin-top: 30px;
  padding: 20px 5vw 40px; color: #6b655f; font-size: 14px;
  text-align: center;
}
