:root {
  --ink: #1d2430;
  --muted: #5b6573;
  --bg: #f7f4ee;
  --card: #ffffff;
  --accent: #288157;
  --accent-dark: #146d43;
  --line: #e4e6eb;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { font-size: 18px; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

a { color: var(--accent-dark); }

img { max-width: 100%; height: auto; }

.wrap {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-family: Segoe UI, Roboto, Helvetica, sans-serif;
}

.brand img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

nav { display: flex; gap: 16px; flex-wrap: wrap; font-family: Segoe UI, Roboto, Helvetica, sans-serif; }
nav a { text-decoration: none; color: var(--ink); }

main { padding: 32px 0 64px; }

.hero { margin-bottom: 32px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: var(--accent); font-family: Segoe UI, Roboto, Helvetica, sans-serif; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 42rem; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guide-card a { color: inherit; text-decoration: none; display: block; }
.guide-card img { width: 100%; height: 180px; object-fit: cover; background: #eee; aspect-ratio: 10 / 3; }
.guide-card-body { padding: 16px 18px 20px; }
.guide-card h2 { margin: 0 0 8px; font-size: 1.15rem; }
.guide-card p { margin: 0 0 12px; color: var(--muted); font-size: 0.95rem; }
.read-more { color: var(--accent); font-family: Segoe UI, Roboto, Helvetica, sans-serif; font-weight: 600; }

.guide h1, .static-page h1 { margin-top: 0; line-height: 1.25; }
.guide h2 { margin-top: 2rem; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  font-family: Segoe UI, Roboto, Helvetica, sans-serif;
  color: var(--muted);
  margin: 0 0 12px;
}
.breadcrumbs a { color: var(--accent-dark); }
.related-guides { margin-top: 3rem; }
.related-guides ul { padding-left: 1.2rem; }
.meta { color: var(--muted); font-size: 0.95rem; }
.disclosure { background: #fff; border-left: 4px solid var(--accent); padding: 8px 12px; }

.guide ul, .static-page ul { padding-left: 1.2rem; }
.guide .product-rating { font-family: Segoe UI, Roboto, Helvetica, sans-serif; font-weight: 700; color: var(--accent-dark); }

.site-footer {
  background: #1d2430;
  color: #f7f4ee;
  padding: 28px 0;
  font-family: Segoe UI, Roboto, Helvetica, sans-serif;
  font-size: 0.95rem;
}
.site-footer a { color: #fff; }
.footer-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 16px 0;
}
.footer-guides a { font-size: 0.9rem; }

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 16px;
  z-index: 20;
  font-family: Segoe UI, Roboto, Helvetica, sans-serif;
}
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  border: 0;
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
}
.cookie-actions .secondary { background: #5b6573; }

@media (max-width: 480px) {
  nav { font-size: 0.9rem; }
}
