﻿:root {
  --bg: #f7f5f1;
  --card: #ffffff;
  --ink: #1c1f26;
  --muted: #4f5664;
  --accent: #d8a24a;
  --accent-strong: #c4871b;
  --line: #e6e0d6;
  --shadow: 0 18px 44px rgba(28, 31, 38, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrapper { max-width: 1160px; margin: 0 auto; padding: 32px 22px 88px; }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 8px; gap: 18px; flex-wrap: wrap;
}
.brand { display: grid; gap: 2px; }
.brand .name { font-weight: 800; letter-spacing: -0.02em; font-size: 20px; }
.brand .tag { color: var(--muted); font-size: 13px; font-weight: 700; }
.nav-links { display: flex; gap: 14px; flex-wrap: wrap; }
.nav-links a { padding: 10px 14px; border-radius: 12px; color: var(--muted); font-weight: 700; }
.nav-links a:hover { background: rgba(200,135,27,0.10); color: var(--accent-strong); }

.hero {
  background: var(--card);
  border-radius: 26px;
  padding: 42px 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  margin: 16px 0 44px;
}
.hero img { width: 100%; border-radius: 20px; object-fit: cover; box-shadow: 0 16px 38px rgba(0,0,0,0.08); }

.badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; background: rgba(216,162,74,0.16); color: var(--accent-strong); border-radius: 999px; font-weight: 800; font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; }

h1 { font-size: clamp(34px, 4.3vw, 48px); margin: 14px 0 12px; letter-spacing: -0.02em; }
h2 { font-size: 26px; margin: 0 0 14px; letter-spacing: -0.01em; }
h3 { margin: 0 0 10px; font-size: 20px; }

.lead { font-size: 18px; color: var(--muted); margin: 6px 0 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 14px;
  background: linear-gradient(135deg, #e7bb65, #c98a25);
  color: #1b1204; font-weight: 800;
  box-shadow: 0 18px 36px rgba(201,138,37,0.30);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.02); box-shadow: 0 22px 46px rgba(201,138,37,0.36); }

section.card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 26px 22px; box-shadow: 0 12px 30px rgba(0,0,0,0.04); margin-bottom: 26px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 16px; }
.feature { padding: 16px; border: 1px solid #e8e2d7; border-radius: 14px; background: #fdfbf7; font-weight: 700; color: #1f252e; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.01); }

.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: 0 10px 24px rgba(0,0,0,0.03); }
.post h3 { margin-bottom: 10px; }
.post p { margin: 6px 0 0; color: var(--muted); }
.post .tag { display: inline-flex; padding: 6px 10px; border-radius: 10px; background: rgba(216,162,74,0.14); color: var(--accent-strong); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.post a.read { color: var(--accent-strong); font-weight: 800; }

.list-inline { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 6px 0 0; list-style: none; }
.list-inline li { padding: 10px 12px; border-radius: 12px; background: #f6f1e7; border: 1px solid #eadfc9; font-weight: 700; color: #1f2933; }

.form { display: grid; gap: 12px; max-width: 520px; }
.form input, .form textarea { padding: 12px 12px; border-radius: 12px; border: 1px solid #d9d4cb; font-size: 15px; font-family: inherit; background: #fff; }
.form textarea { min-height: 140px; resize: vertical; }

.footer { margin-top: 40px; padding: 18px 0 10px; color: #6b7280; font-size: 14px; text-align: center; }

@media (max-width: 900px) { .hero { grid-template-columns: 1fr; padding: 32px 24px; } }
