:root {
  --pink: #f6d9e4;
  --pink-strong: #e9b5c6;
  --cream: #fff8ee;
  --white: #ffffff;
  --gold: #c9a54b;
  --text: #2f2a2d;
  --muted: #6f6670;
  --shadow: 0 10px 30px rgba(46, 30, 39, 0.08);
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fffdf9 40%, #fff 100%);
  line-height: 1.7;
}
a { color: #9b4f72; text-decoration: none; }
a:hover { color: #7f3d5c; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid #f2e7eb; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { width: 44px; height: 44px; }
.nav-menu { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.95rem; }
.hero { padding: 56px 0 34px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px; align-items: center; }
.kicker { display: inline-block; background: var(--pink); color: #7d4864; padding: 6px 12px; border-radius: 999px; font-size: 0.82rem; margin-bottom: 14px; }
h1 { margin: 0 0 14px; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.2; }
.lead { color: var(--muted); margin-bottom: 22px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 20px; font-weight: 600; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-secondary { border: 1px solid #e8d7dd; color: #7f3d5c; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.section { padding: 44px 0; }
.section h2 { margin: 0 0 10px; font-size: clamp(1.55rem, 2.7vw, 2.2rem); }
.section p.section-intro { color: var(--muted); margin-top: 0; }
.grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-card h3, .article-card h3 { margin-top: 10px; margin-bottom: 8px; }
.category-card p, .article-card p { color: var(--muted); margin-top: 0; }
.thumb { border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9; }
.cta-box { background: linear-gradient(120deg, #fff3f8 0%, #fff9f0 100%); border: 1px solid #f1dfe6; }
.footer { background: #2f2730; color: #f7eef2; padding: 34px 0 24px; margin-top: 28px; }
.footer a { color: #ffdf95; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
.small { font-size: .9rem; color: #d9cad0; }
.breadcrumb { margin: 12px 0 16px; font-size: .88rem; color: var(--muted); }
.breadcrumb a { color: #8d4b68; }
.article-content { max-width: 900px; }
.article-content h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.article-content h2 { margin-top: 26px; }
.article-content ul { padding-left: 22px; }
@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
}
