:root {
  --forest: #2f4632;
  --forest-dark: #1f2f22;
  --sand: #f6f1e7;
  --sand-dark: #ece3d0;
  --amber: #b45309;
  --amber-light: #d97706;
  --text: #2a2a26;
  --muted: #6b6a5f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  background: var(--forest);
  color: #fff;
  padding: 20px 0;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span { color: var(--amber-light); }

nav.main a {
  color: #eee;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
}

nav.main a:hover { color: var(--amber-light); }

.lang-switch a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  margin-left: 10px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.lang-switch a.active { background: var(--amber-light); border-color: var(--amber-light); }

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-dark) 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 64px 0 72px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,18,13,0.52) 0%, rgba(12,18,13,0.78) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 18px;
  color: #e4e4da;
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
.cta:hover { background: var(--amber-light); }

main { padding: 48px 0 64px; }

h2.section-title {
  font-size: 26px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--sand-dark);
  padding-bottom: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--sand-dark);
}

.card h3 { margin-top: 0; font-size: 19px; }
.card h3 a { color: var(--forest); text-decoration: none; }
.card h3 a:hover { color: var(--amber); }
.card p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

article.post h1 {
  font-size: 32px;
  margin-bottom: 6px;
  color: var(--forest);
}

.meta-line {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

article.post h2 {
  font-size: 22px;
  margin-top: 36px;
  color: var(--forest);
}

article.post p { font-size: 17px; }

.affiliate-box {
  background: var(--sand-dark);
  border-left: 4px solid var(--amber);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 15px;
}
.affiliate-box a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}
.affiliate-box a:hover { text-decoration: underline; }

footer.site {
  background: var(--forest-dark);
  color: #ccc;
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
}
footer.site a { color: var(--amber-light); }

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--forest); }

.featured-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.card .thumb {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 14px;
}
