:root{
  --gold:#e5cf8c;
  --text:#1b1b1b;
  --muted:#5e5e5e;
  --bg:#ffffff;
  --card:#ffffff;
  --line:rgba(0,0,0,.08);
  --shadow: 0 18px 45px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Quicksand, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit}
.wrap{max-width:1100px;margin:0 auto;padding:0 24px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.logo{ text-decoration:none; }
.logo-text{
  font-family:'Great Vibes', Georgia, serif;
  font-size:38px;
  color:#857546;
  line-height:1;
}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:#3a3833;
  padding:10px 8px;
  border-radius:10px;
}
.nav a:hover{color:#857546}
.nav a.active{color:#857546}

/* Hamburger */
.hamburger{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.hamburger span{
  display:block;
  width:18px;height:2px;
  background:#3a3833;
  border-radius:2px;
}

/* Drawer */
.no-scroll{overflow:hidden}
.drawer{
  position:fixed;
  top:0; left:0;
  width:320px; max-width:85vw;
  height:100vh;
  background:#161616;
  color:#f7f7f7;
  transform:translateX(-110%);
  transition:transform .25s ease;
  z-index:60;
  padding:18px;
}
.drawer.open{transform:translateX(0)}
.drawer-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:14px;
}
.drawer-title{font-weight:800; letter-spacing:.5px}
.drawer-close{
  width:40px;height:40px;border:0;background:transparent;
  color:#f7f7f7;font-size:30px;cursor:pointer;
}
.drawer-links a{
  display:block;
  padding:14px 12px;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#f7f7f7;
  font-weight:700;
}
.drawer-links a.active{color:var(--gold)}
.drawer-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.35);
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
  z-index:55;
}
.drawer-backdrop.open{opacity:1; pointer-events:auto}

/* Hero */
.hero{
  background: var(--gold);
  padding:54px 0 44px;
}
.hero-inner{ text-align:center; }
.kicker{
  font-family:'Great Vibes', Georgia, serif;
  color:#161616;
  font-size:20px;
  margin-bottom:10px;
}
.hero-title{
  font-family:'Great Vibes', Georgia, serif;
  margin:0 0 12px;
  color:#161616;
  font-size:52px;
  line-height:1.05;
}
.hero-meta{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:#3a3833;
}
.dot{opacity:.7}

/* Page grid */
.page{padding:34px 0 64px}
.page-grid{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:26px;
  align-items:start;
}

/* Card */
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow);
}
.article{overflow:hidden}
.article-cover{
  height:260px;
  background-size:cover;
  background-position:center;
}
.article-body{padding:22px 22px 18px}
.article-body p{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.8;
  color:#3a3833;
}
.article-body h2{
  margin:22px 0 10px;
  font-size:22px;
  line-height:1.2;
  color:#161616;
}
.divider{
  height:1px;
  background:var(--line);
  margin:18px 0 14px;
}
.tags{display:flex; gap:10px; flex-wrap:wrap}
.tag{
  font-size:12px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(229,207,140,.25);
  color:#3a3833;
  border:1px solid rgba(133,117,70,.25);
}

/* Aside */
.aside{position:sticky; top:90px}
.aside-card{padding:16px}
.aside-title{
  font-weight:900;
  font-size:12px;
  letter-spacing:.9px;
  text-transform:uppercase;
  margin-bottom:12px;
  color:#161616;
}
.aside-link{
  display:block;
  text-decoration:none;
  padding:12px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--line);
  margin-bottom:10px;
  font-weight:700;
  color:#3a3833;
}
.aside-link:hover{border-color:rgba(133,117,70,.45)}
.aside-text{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}
.btn{
  display:inline-block;
  text-decoration:none;
  background:#161616;
  color:#fff;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
}

/* Footer */
.footer{
  padding:34px 0;
  border-top:1px solid var(--line);
}
.footer-inner{display:flex; justify-content:center}
.footer-text{
  text-align:center;
  color:#595959;
  font-size:12px;
  line-height:1.7;
}

/* Cookie */
.cookie{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:70;
  width:min(420px, calc(100vw - 36px));
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow);
  padding:14px;
}
.cookie.hide{display:none}
.cookie-inner{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
}
.cookie-title{font-weight:900;margin-bottom:6px}
.cookie-text{color:#3a3833;font-size:13px;line-height:1.55}
.cookie-btn{
  flex:0 0 auto;
  border:0;
  background:#161616;
  color:#fff;
  font-weight:900;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 980px){
  .page-grid{grid-template-columns:1fr}
  .aside{position:static}
}
@media (max-width: 860px){
  .nav{display:none}
  .hamburger{display:flex}
  .hero-title{font-size:44px}
}
@media (max-width: 520px){
  .hero-title{font-size:38px}
  .logo-text{font-size:32px}
  .article-cover{height:210px}
}
