:root {
  --paper: #f6f1e8;
  --card: #fffaf3;
  --ink: #1c1712;
  --muted: #5c5348;
  --line: #e2d6c4;
  --copper: #c45c26;
  --copper-dark: #9a4318;
  --olive: #3d4f3a;
  --char: #241e18;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
}
a { color: var(--copper-dark); }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  background: var(--char);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 3px solid var(--copper);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}
.logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.28rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo span { color: #e8a06a; }
nav { display: flex; gap: 1.15rem; flex-wrap: wrap; }
nav a { color: #efe6d8; text-decoration: none; font-size: .94rem; }
nav a:hover { color: #fff; }
.menu-btn {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid #4a4036;
  padding: .4rem .7rem;
  border-radius: 8px;
}
.hero {
  background:
    radial-gradient(1200px 420px at 10% -10%, rgba(196,92,38,.28), transparent 55%),
    linear-gradient(165deg, #241e18 0%, #3a2c22 58%, #4a3828 100%);
  color: #fff;
  padding: 3.8rem 0 3.2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.2rem;
  align-items: center;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.05rem, 4.4vw, 3.15rem);
  line-height: 1.12;
  margin: .35rem 0 .85rem;
}
.hero p { color: #eadccb; font-size: 1.12rem; max-width: 40rem; }
.kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 700;
  color: #e8a06a;
}
.btn {
  display: inline-block;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  padding: .72rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
}
.btn:hover { background: var(--copper-dark); }
.hero-art {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #5a4636;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.section { padding: 2.6rem 0; }
.section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  margin: 0 0 .7rem;
}
.lede { color: var(--muted); max-width: 46rem; }
.prose-block p { max-width: 48rem; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 1.4rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card:hover { border-color: #cbb89d; }
.card img { width: 100%; height: 168px; object-fit: cover; }
.card-body { padding: 1rem 1.05rem 1.15rem; }
.card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  margin: 0 0 .4rem;
  line-height: 1.3;
}
.card p { margin: 0; color: var(--muted); font-size: .94rem; }
.meta { font-size: .78rem; color: #8a7b6a; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; }
.page { padding: 2.2rem 0 3.4rem; }
.article-hero { margin-bottom: 1.3rem; }
.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.prose { max-width: 46rem; }
.prose h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  line-height: 1.18;
  margin: .2rem 0 .6rem;
}
.prose h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.38rem;
  margin: 1.7rem 0 .55rem;
}
.prose h3 { font-size: 1.08rem; margin: 1.2rem 0 .4rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin: .28rem 0; }
.note, .callout {
  background: #efe4d2;
  border-left: 4px solid var(--copper);
  padding: .85rem 1rem;
  border-radius: 0 10px 10px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
  margin: 1rem 0 1.3rem;
}
th, td {
  border: 1px solid var(--line);
  padding: .55rem .65rem;
  text-align: left;
  vertical-align: top;
}
th { background: #efe4d2; }
.ad-slot {
  border: 1px dashed #cbb89d;
  background: #efe8db;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7b6a;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 1.4rem 0;
  border-radius: 8px;
}
.ad-slot-top { min-height: 90px; }
.ad-slot-mid { min-height: 250px; }
.ad-slot-side { min-height: 280px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 92px;
}
.sidebar .box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.sidebar h3 { margin: 0 0 .6rem; font-size: 1rem; }
.sidebar a { display: block; margin: .35rem 0; text-decoration: none; }
footer {
  background: var(--char);
  color: #efe6d8;
  padding: 2.2rem 0 2.6rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
}
.footer-col a { display: block; color: #d7c8b4; text-decoration: none; margin: .28rem 0; }
footer p { color: #b7a894; }
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: #2a231c;
  color: #f3eadc;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  max-width: 920px;
  margin: 0 auto;
}
.cookie-banner p { margin: 0; font-size: .92rem; }
.cookie-banner a { color: #e8a06a; }
.cookie-actions { display: flex; gap: .7rem; align-items: center; white-space: nowrap; }
.cookie-accept {
  background: var(--copper);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: .5rem .9rem;
  font-weight: 600;
  cursor: pointer;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: .7rem 0;
}
.faq summary { cursor: pointer; font-weight: 600; }
.checklist li { margin: .4rem 0; }
@media (max-width: 900px) {
  .hero-grid, .article-layout, .guide-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .sidebar { position: static; }
  nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 74px;
    background: #2a231c;
    padding: .8rem 1rem;
    border-radius: 10px;
    flex-direction: column;
    min-width: 180px;
  }
  nav.open { display: flex; }
  .menu-btn { display: inline-block; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}


/* Google Ad Manager placements supplied by site owner */
.gam-placement {
  width: min(100%, 760px);
  margin: 1.35rem auto;
  text-align: center;
  min-height: 18px;
}
.gam-placement > font {
  display: block;
  margin-bottom: .35rem;
  letter-spacing: .03em;
}
.gam-placement > div[id^="Content"] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1px;
}
.cookie-reject {
  background: transparent;
  color: #f3eadc;
  border: 1px solid #7f7060;
  border-radius: 8px;
  padding: .5rem .9rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-reject:hover { border-color: #b9a58f; }
@media (max-width: 600px) {
  .gam-placement { margin: 1rem auto; overflow-x: hidden; }
  .cookie-actions { width: 100%; white-space: normal; flex-wrap: wrap; }
}
