:root {
  --green-900: #1f3d2b;
  --green-800: #2d5a3d;
  --green-700: #3a7a52;
  --green-600: #4f9d6a;
  --green-100: #e6f0e8;
  --green-50: #f3f8f4;
  --cream: #faf6ee;
  --cream-2: #f3ecd9;
  --warm-100: #efe6cf;
  --ink-900: #1a1d1a;
  --ink-700: #3b403b;
  --ink-500: #6b7367;
  --ink-300: #b6bcb3;
  --accent: #d97a2c;
  --accent-soft: #f1d7b5;
  --line: #e3dec9;
  --shadow: 0 2px 8px rgba(31,61,43,.06), 0 12px 24px rgba(31,61,43,.05);
  --radius: 14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--cream);
  color: var(--ink-900);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .15s; }
a:hover { color: var(--green-900); text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250,246,238,.92);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 700; color: var(--green-900);
}
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; }
.brand em { font-style: normal; color: var(--accent); }
.nav { display: flex; gap: 24px; }
.nav a { font-weight: 500; color: var(--ink-700); font-size: 15px; }
.nav a:hover { color: var(--green-900); text-decoration: none; }
@media (max-width: 760px) {
  .site-header .container { gap: 8px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .nav { gap: 14px; flex-wrap: wrap; justify-content: flex-start; width: 100%; padding-top: 4px; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; }
  .nav a { font-size: 13px; }
  .brand { font-size: 19px; }
}

/* Hero */
.hero {
  background:
    radial-gradient(900px 480px at 88% 18%, rgba(217,122,44,.10), transparent 60%),
    radial-gradient(700px 420px at -10% 80%, rgba(79,157,106,.16), transparent 65%),
    linear-gradient(135deg, var(--green-50) 0%, var(--cream) 60%);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(31,61,43,.05) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero > * { position: relative; }
.hero-eyebrow { display: inline-block; background: var(--green-100); color: var(--green-800); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 99px; letter-spacing: .02em; margin-bottom: 18px; }
.hero-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(31,61,43,.1); flex-wrap: wrap; }
.hero-stat .num { font-family: 'Fraunces', serif; font-size: 28px; color: var(--green-900); font-weight: 700; line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
@media (max-width: 600px) { .hero { padding: 48px 0 40px; } .hero-stats { gap: 22px; } .hero-stat .num { font-size: 22px; } }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700; line-height: 1.05; margin: 0 0 18px;
  color: var(--green-900); letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.lede { font-size: 19px; color: var(--ink-700); margin: 0 0 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: transform .1s, background .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--green-800); color: white; }
.btn-primary:hover { background: var(--green-900); color: white; }
.btn-ghost { background: white; color: var(--green-900); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--cream-2); color: var(--green-900); }

.hero-card {
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; border: 1px solid var(--line);
}
.hero-card h3 { margin: 0 0 12px; font-family: 'Fraunces', serif; font-size: 19px; color: var(--green-900); }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li { padding: 9px 0; border-bottom: 1px dashed var(--line); display: flex; justify-content: space-between; gap: 12px; }
.hero-card li:last-child { border: none; }
.hero-card .pill { background: var(--accent-soft); color: #7d3a09; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 99px; }

/* Section headers */
.section { padding: 64px 0; }
.section-alt { background: var(--cream-2); }
h2.section-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px; font-weight: 700; color: var(--green-900);
  margin: 0 0 8px; letter-spacing: -.01em;
}
.section-sub { color: var(--ink-500); margin: 0 0 32px; font-size: 16px; }

/* Card grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.card {
  background: white; border-radius: var(--radius); padding: 22px;
  border: 1px solid var(--line); transition: transform .15s, box-shadow .15s;
  display: flex; flex-direction: column; gap: 10px;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card-title {
  font-family: 'Fraunces', serif; font-size: 19px; color: var(--green-900);
  font-weight: 600; margin: 0;
}
.card-meta { font-size: 13px; color: var(--ink-500); }
.card-tag { display: inline-block; background: var(--green-100); color: var(--green-800); font-size: 11px; padding: 3px 10px; border-radius: 99px; font-weight: 600; }

/* Store logo card (homepage) */
.store-card {
  background: white; border-radius: var(--radius); padding: 28px 22px;
  border: 1px solid var(--line); text-align: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.store-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-600); text-decoration: none; }
.store-mark {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 22px; color: white;
}
.store-card .store-name { font-family: 'Fraunces', serif; font-weight: 700; color: var(--green-900); font-size: 17px; }
.store-card .store-sub { font-size: 13px; color: var(--ink-500); }

/* Deal card */
.deal-card {
  background: white; border-radius: var(--radius-sm); padding: 16px;
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px;
}
.deal-price { font-family: 'Fraunces', serif; font-size: 20px; color: var(--accent); font-weight: 700; }
.deal-was { color: var(--ink-300); text-decoration: line-through; font-size: 13px; margin-left: 6px; }
.deal-name { font-weight: 600; color: var(--ink-900); font-size: 15px; }
.deal-meta { font-size: 12px; color: var(--ink-500); }

/* Article body */
.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
@media (max-width: 860px) { .article-wrap { grid-template-columns: 1fr; gap: 28px; } }
.article-body { background: white; padding: 40px; border-radius: var(--radius); border: 1px solid var(--line); }
.article-body h1 { font-family: 'Fraunces', serif; font-size: 36px; color: var(--green-900); margin: 0 0 8px; line-height: 1.15; letter-spacing: -.01em; }
.article-body h2 { font-family: 'Fraunces', serif; font-size: 24px; color: var(--green-900); margin: 28px 0 10px; }
.article-body h3 { font-family: 'Fraunces', serif; font-size: 19px; color: var(--green-800); margin: 22px 0 8px; }
.article-body .crumbs { font-size: 13px; color: var(--ink-500); margin: 0 0 18px; }
.article-body .crumbs a { color: var(--ink-500); }
.article-body p { color: var(--ink-700); margin: 0 0 16px; font-size: 16px; }
.article-body ul { color: var(--ink-700); padding-left: 20px; }
.article-body ul li { margin-bottom: 6px; }
.editorial-link { color: var(--ink-500); font-style: italic; font-size: 15px; padding: 12px 0; border-left: 3px solid var(--green-100); padding-left: 14px; margin: 18px 0 !important; }
.editorial-link a { color: var(--green-700); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-block { background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.sidebar-block h3 { font-family: 'Fraunces', serif; font-size: 17px; color: var(--green-900); margin: 0 0 12px; }
.sidebar-block ul { list-style: none; padding: 0; margin: 0; }
.sidebar-block li { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.sidebar-block li:last-child { border: none; }
.sidebar-block a { color: var(--ink-700); font-size: 14px; }

/* Lead form */
.lead-form { background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius); padding: 24px; margin: 32px 0; }
.lead-form h3 { font-family: 'Fraunces', serif; color: var(--green-900); margin: 0 0 6px; font-size: 20px; }
.lead-form p { color: var(--ink-500); margin: 0 0 16px; font-size: 14px; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr 110px; gap: 8px; margin-bottom: 8px; }
@media (max-width: 600px) { .lead-form .row { grid-template-columns: 1fr; } }
.lead-form input { padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-family: inherit; background: white; }
.lead-form input:focus { outline: none; border-color: var(--green-600); }
.lead-form button { padding: 12px; background: var(--green-800); color: white; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; font-size: 14px; }
.lead-form button:hover { background: var(--green-900); }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* AdSense placeholder */
.ad-slot { background: rgba(0,0,0,.02); border: 1px dashed var(--line); border-radius: 10px; padding: 18px; text-align: center; color: var(--ink-300); font-size: 12px; margin: 24px 0; }

/* Related resources (PBN footer block) */
.related-resources { background: white; border-radius: var(--radius-sm); padding: 22px; border: 1px solid var(--line); }
.related-resources h3 { font-family: 'Fraunces', serif; font-size: 16px; color: var(--green-900); margin: 0 0 12px; }
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { padding: 9px 0; border-bottom: 1px dashed var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.related-list li:last-child { border: none; }
.related-list a { color: var(--ink-700); font-size: 14px; }
.related-meta { font-size: 11px; color: var(--ink-300); text-transform: uppercase; letter-spacing: .05em; }

/* Footer */
.site-footer { background: var(--green-900); color: var(--cream); padding: 56px 0 28px; margin-top: 64px; }
.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .site-footer .container { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { font-family: 'Fraunces', serif; color: white; margin: 0 0 12px; font-size: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.site-footer a:hover { color: white; }
.site-footer .footer-meta { color: rgba(255,255,255,.4); font-size: 12px; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); grid-column: 1 / -1; }

/* Hub link grid */
.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin: 16px 0 24px; }
.link-grid a { background: white; border: 1px solid var(--line); padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--green-800); }
.link-grid a:hover { background: var(--green-50); text-decoration: none; border-color: var(--green-600); }
