:root {
  --bg: #f7f1e8;
  --bg-soft: #fdf8f1;
  --paper: #fffdfa;
  --text: #1f1b19;
  --muted: #665d55;
  --line: #dfd2c3;
  --accent: #a35e35;
  --accent-2: #2f5b46;
  --shadow: 0 14px 34px rgba(31, 27, 25, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.72;
  background:
    radial-gradient(1000px 450px at 0% -5%, #fff8ef 0%, rgba(255, 248, 239, 0) 70%),
    radial-gradient(1000px 500px at 100% 0%, #efe4d7 0%, rgba(239, 228, 215, 0) 72%),
    var(--bg);
}

.wrap { width: min(1160px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg-soft) 88%, white 12%);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  margin-left: 16px;
}

.hero { padding: 48px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 20px;
}

.hero-main, .hero-side, .card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-main img, .card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Libre Baskerville", serif;
  line-height: 1.28;
}

h1 { font-size: clamp(30px, 4.1vw, 46px); margin-bottom: 10px; }
h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 10px; }

h1 a, h3 a { color: inherit; text-decoration: none; }
h1 a:hover, h3 a:hover { text-decoration: underline; }

.summary { color: var(--muted); }

.btn {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(120deg, var(--accent-2), #224635);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}

.hero-side ul { margin-top: 0; padding-left: 20px; }
.hero-side li { margin-bottom: 7px; }

.mini-list { display: grid; gap: 8px; margin-top: 10px; }
.mini-list a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.section { padding: 18px 0 28px; }
.alt {
  background: linear-gradient(180deg, #f2e8dc 0%, #f8f3eb 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.trend-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trend-list div {
  display: flex;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8ee;
  padding: 12px 14px;
}

.trend-list strong { color: var(--accent); }

.watch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.watch-grid article {
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px 0 40px;
}

@media (max-width: 1020px) {
  .hero-grid, .card-grid, .card-grid.two, .trend-list, .watch-grid { grid-template-columns: 1fr; }
}
