:root {
  --bg: #f7f5ee;
  --paper: #ffffff;
  --ink: #0e1a14;
  --ink-soft: #3d4a44;
  --muted: #7a857f;
  --line: #e3ddc9;
  --line-strong: #c9c2a6;
  --brand: #14532d;          /* deep forest green */
  --brand-deep: #0a3a1f;
  --brand-soft: #e9f1ea;
  --gold: #f4b400;           /* vivid yellow-gold */
  --gold-deep: #a87a00;
  --gold-soft: #fff4cc;
  --accent: #d6411e;         /* clearance red */
  --accent-deep: #8a2510;
  --warn: #b35200;
  --shadow-sm: 0 1px 2px rgba(10,30,20,.06);
  --shadow:    0 1px 2px rgba(10,30,20,.05), 0 8px 24px rgba(10,30,20,.06);
  --shadow-lg: 0 4px 8px rgba(10,30,20,.06), 0 20px 48px rgba(10,30,20,.09);
  --radius: 14px;
  --radius-sm: 10px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; color: var(--ink); }

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

/* Header */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 28px; padding: 16px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 22px; letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--brand); color: var(--gold);
  border-radius: 10px; font-weight: 900; font-size: 17px;
  font-family: var(--font-display);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.brand-name { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; }
.primary-nav { display: flex; gap: 22px; margin-left: 8px; flex: 1; }
.primary-nav a { color: var(--ink-soft); font-weight: 600; font-size: 15px; padding: 8px 2px; border-bottom: 2px solid transparent; }
.primary-nav a:hover { color: var(--brand-deep); border-bottom-color: var(--gold); text-decoration: none; }
.primary-nav .nav-cta {
  background: var(--gold); color: var(--brand-deep);
  padding: 9px 16px; border-radius: 999px; border-bottom: none;
  font-weight: 700;
}
.primary-nav .nav-cta:hover { background: var(--gold-deep); color: #fff; border-bottom: none; }
.header-search { display: flex; gap: 0; }
.header-search input {
  border: 1px solid var(--line-strong); border-right: none;
  padding: 10px 16px; border-radius: 999px 0 0 999px;
  font-size: 14px; min-width: 240px; background: #fbfaf3;
  font-family: var(--font-sans);
}
.header-search input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.header-search button {
  border: 1px solid var(--brand); background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: 0 999px 999px 0; cursor: pointer; font-size: 14px; font-weight: 700;
}

.trust-strip { background: var(--brand); color: #e9f1ea; }
.trust-inner { display: flex; flex-wrap: wrap; gap: 18px; padding: 10px 24px; align-items: center; font-size: 13px; }
.trust-badge { background: var(--brand-deep); border: 1px solid #1f6b3f; color: var(--gold); padding: 4px 12px; border-radius: 999px; font-weight: 700; letter-spacing: 0.01em; }
.press-strip { margin-left: auto; color: #c0d0c4; }
.press-strip em { color: #fff; font-style: normal; font-weight: 700; margin: 0 4px; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%); border-bottom: 1px solid var(--line); padding: 56px 0 64px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -100px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%); opacity: 0.7; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; position: relative; }
.kicker { color: var(--brand-deep); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px; display: inline-flex; align-items: center; gap: 8px; }
.kicker::before { content: ""; width: 24px; height: 2px; background: var(--gold); display: inline-block; }
.hero h1 { font-family: var(--font-display); font-weight: 700; font-size: 60px; line-height: 1.02; margin: 0 0 18px; letter-spacing: -0.03em; color: var(--ink); }
.hero h1 .hl { background: linear-gradient(180deg, transparent 60%, var(--gold) 60%); padding: 0 4px; }
.hero-sub { font-size: 19px; color: var(--ink-soft); margin: 0 0 28px; max-width: 560px; line-height: 1.55; }
.hero-lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-width: 560px; }
.hero-lead-form input { padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); font-size: 15px; background: #fff; font-family: var(--font-sans); }
.hero-lead-form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.hero-lead-form input[type="text"]:nth-of-type(2) { grid-column: 1 / -1; }
.hero-lead-form button {
  grid-column: 1 / -1; padding: 16px; border: 0; border-radius: var(--radius-sm);
  background: var(--brand); color: #fff; font-weight: 700; font-size: 16px; cursor: pointer;
  box-shadow: var(--shadow); font-family: var(--font-sans);
  transition: all 0.15s ease;
}
.hero-lead-form button:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.hero-trust { margin-top: 14px; color: var(--muted); font-size: 13px; }
.hero-trust strong { color: var(--ink-soft); }
.hero-art { position: relative; }
.hero-art img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-art .deal-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--brand-deep);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 800; font-size: 13px; letter-spacing: 0.03em;
  box-shadow: var(--shadow);
  transform: rotate(6deg);
}

/* Deal of the week */
.dotw { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; padding: 36px 0; border-bottom: 4px solid var(--gold); }
.dotw-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch; }
.dotw-lead { padding-right: 16px; }
.dotw-lead .kicker { color: var(--gold); }
.dotw-lead .kicker::before { background: var(--gold); }
.dotw-lead h2 { font-family: var(--font-display); font-size: 32px; line-height: 1.1; margin: 0 0 10px; letter-spacing: -0.02em; }
.dotw-lead p { color: #c8d5cb; margin: 0 0 16px; }
.dotw-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-lg); position: relative; }
.dotw-card .ribbon { position: absolute; top: -10px; left: 16px; background: var(--gold); color: var(--brand-deep); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.05em; }
.dotw-card h3 { margin: 8px 0 4px; font-size: 17px; font-weight: 700; line-height: 1.3; }
.dotw-card .dotw-store { color: var(--brand-deep); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.dotw-card .dotw-discount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent); margin: 4px 0; }
.dotw-card .dotw-cta { margin-top: auto; color: var(--brand-deep); font-weight: 700; font-size: 14px; }

/* Page hero */
.page-hero { padding: 44px 0 28px; border-bottom: 1px solid var(--line); background: var(--paper); position: relative; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: 44px; margin: 0 0 10px; letter-spacing: -0.025em; line-height: 1.1; }
.page-hero-sub { color: var(--ink-soft); margin: 0; font-size: 17px; max-width: 720px; }

.crumbs { padding: 18px 0 0; color: var(--muted); font-size: 13px; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--brand-deep); }
.crumbs span { color: var(--ink); font-weight: 700; }

/* Layout */
.layout-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 44px; padding: 44px 24px; }
.layout-main { min-width: 0; }

/* Blocks */
.block { margin-bottom: 52px; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; gap: 16px; }
.block-head h2 { font-family: var(--font-display); font-weight: 700; font-size: 28px; margin: 0; letter-spacing: -0.02em; }
.block-head .link { color: var(--brand-deep); font-weight: 700; font-size: 14px; }
.muted { color: var(--muted); font-size: 14px; }

/* Coupon grid */
.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.coupon-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.coupon-card::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 4px; background: var(--brand); border-radius: 0 4px 4px 0; opacity: 0; transition: opacity .18s; }
.coupon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.coupon-card:hover::before { opacity: 1; }
.coupon-top { display: flex; flex-wrap: wrap; gap: 6px; }
.store-pill, .cat-pill, .verified-pill {
  font-size: 11px; padding: 3px 10px; border-radius: 999px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
}
.store-pill { background: var(--brand-soft); color: var(--brand-deep); }
.cat-pill { background: var(--gold-soft); color: var(--gold-deep); }
.verified-pill { background: #fff5f0; color: var(--accent-deep); }
.coupon-title { font-size: 17px; line-height: 1.35; margin: 0; font-weight: 700; }
.coupon-title a { color: var(--ink); }
.coupon-title a:hover { color: var(--brand-deep); }
.coupon-meta { color: var(--ink-soft); font-size: 14px; margin: 0; }
.coupon-bottom { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px dashed var(--line); }
.coupon-code { background: var(--brand); color: var(--gold); padding: 5px 12px; border-radius: 6px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; }
.auto-apply { background: var(--gold-soft); color: var(--gold-deep); padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.expires { font-size: 12px; color: var(--muted); }
.expires-soon { color: var(--accent); font-weight: 700; }

/* Tile grid (stores/categories) */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.store-tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 6px; color: var(--ink);
  transition: all .18s ease; position: relative; overflow: hidden;
}
.store-tile::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.store-tile:hover { text-decoration: none; border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.store-tile:hover::after { transform: scaleX(1); }
.store-tile-logo {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  background: var(--brand-soft); color: var(--brand-deep); border-radius: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  margin-bottom: 4px;
}
.store-tile-name { font-weight: 700; font-size: 17px; }
.store-tile-count { font-size: 13px; color: var(--brand-deep); font-weight: 700; }
.store-tile-tag { font-size: 12px; color: var(--muted); }

/* Chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--paper); border: 1.5px solid var(--line); padding: 9px 16px; border-radius: 999px; color: var(--ink); font-size: 14px; font-weight: 600; transition: all .15s; }
.chip:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--brand-deep); text-decoration: none; transform: translateY(-1px); }
.chip span { color: var(--muted); margin-left: 8px; font-size: 12px; font-weight: 500; }
.chip-grid .chip-active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Category logo chips */
.catchip-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.catchip { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 12px; text-align: center; color: var(--ink); transition: all .15s; }
.catchip:hover { border-color: var(--gold); background: var(--gold-soft); text-decoration: none; transform: translateY(-2px); }
.catchip-icon { font-size: 28px; margin-bottom: 6px; line-height: 1; }
.catchip-name { font-weight: 700; font-size: 14px; display: block; }
.catchip-count { color: var(--muted); font-size: 12px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.side-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.side-card h3 { font-family: var(--font-display); font-weight: 700; margin: 0 0 8px; font-size: 19px; letter-spacing: -0.01em; }
.side-card p { margin: 0 0 12px; color: var(--ink-soft); font-size: 14px; }
.lead-capture { background: linear-gradient(160deg, var(--paper) 0%, var(--brand-soft) 100%); border-color: #cfe6d8; }
.lead-form { display: grid; gap: 10px; }
.lead-form label { display: block; }
.lead-form span { display: block; font-size: 12px; color: var(--ink-soft); margin-bottom: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.lead-form input { width: 100%; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 8px; font-size: 14px; font-family: var(--font-sans); background: #fff; }
.lead-form input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.lead-form button { width: 100%; padding: 13px; border: 0; border-radius: 8px; background: var(--brand); color: #fff; font-weight: 700; cursor: pointer; font-family: var(--font-sans); transition: background .15s; }
.lead-form button:hover { background: var(--brand-deep); }
.lead-trust { font-size: 12px; color: var(--muted); margin: 6px 0 0; text-align: center; }
.lead-form-big input { padding: 14px; font-size: 16px; }
.lead-form-big button { padding: 16px; font-size: 17px; }

.cashback { background: linear-gradient(160deg, var(--paper) 0%, var(--gold-soft) 100%); border-color: #f3e1a8; }
.credit-card { background: var(--paper); }
.credit-card .fineprint { font-size: 11px; color: var(--muted); margin-top: 8px; }

.popular-stores ul { list-style: none; padding: 0; margin: 0; }
.popular-stores li { border-top: 1px solid var(--line); }
.popular-stores li:first-child { border-top: 0; }
.popular-stores a { display: flex; justify-content: space-between; padding: 10px 0; color: var(--ink); font-size: 14px; font-weight: 500; }
.popular-stores a:hover { color: var(--brand-deep); text-decoration: none; }
.popular-stores a span { color: var(--muted); font-size: 12px; }

.related-resources ul { list-style: none; padding: 0; margin: 0; }
.related-resources li { padding: 10px 0; border-top: 1px solid var(--line); }
.related-resources li:first-child { border-top: 0; }
.related-resources a { color: var(--brand-deep); font-weight: 600; font-size: 14px; display: block; }
.related-resources .res-desc { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 400; }

.btn { display: inline-block; padding: 11px 18px; border-radius: 8px; font-weight: 700; font-size: 14px; transition: all .15s; }
.btn-primary { background: var(--gold); color: var(--brand-deep); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; text-decoration: none; }
.btn-secondary { background: var(--brand); color: #fff; }
.btn-secondary:hover { background: var(--brand-deep); text-decoration: none; }

/* CTA bar */
.cashback-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  padding: 20px 24px; border-radius: var(--radius); margin: 24px 0;
}
.cashback-cta strong { display: block; font-size: 16px; margin-bottom: 4px; }
.cashback-cta p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Coupon detail */
.coupon-detail h1 { font-family: var(--font-display); font-weight: 700; font-size: 38px; margin: 8px 0 8px; line-height: 1.1; letter-spacing: -0.02em; }
.coupon-detail .lede { color: var(--ink-soft); font-size: 17px; margin: 0 0 20px; }
.redeem-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 22px; margin: 24px 0; box-shadow: var(--shadow-sm);
}
.redeem-row { display: grid; grid-template-columns: 140px 1fr; padding: 14px 0; border-top: 1px solid var(--line); align-items: center; }
.redeem-row:first-child { border-top: 0; }
.redeem-label { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.redeem-value { font-size: 15px; }
.big-code { background: var(--brand); color: var(--gold); padding: 9px 16px; border-radius: 8px; font-family: ui-monospace, monospace; font-size: 17px; font-weight: 700; letter-spacing: 0.06em; }

/* Prose */
.prose { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow-sm); }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 32px 0 14px; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 24px 0 10px; font-weight: 700; }
.prose p, .prose li { color: var(--ink); font-size: 16px; line-height: 1.7; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 18px; }
.prose li { margin-bottom: 6px; }
.prose blockquote { border-left: 4px solid var(--gold); padding: 6px 18px; color: var(--ink-soft); font-style: italic; margin: 18px 0; background: var(--gold-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.prose .pull { background: var(--brand-soft); border-left: 4px solid var(--brand); padding: 18px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 18px 0; font-size: 15px; }
.prose .pull strong { color: var(--brand-deep); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin: 28px 0 8px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 9px 15px; border: 1px solid var(--line-strong); border-radius: 8px; color: var(--ink); background: var(--paper); font-size: 14px; font-weight: 600; }
.pagination a:hover { background: var(--gold-soft); border-color: var(--gold); text-decoration: none; }
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Search big form */
.search-form-big { display: flex; gap: 8px; max-width: 700px; margin-top: 16px; }
.search-form-big input { flex: 1; padding: 15px 18px; border: 1px solid var(--line-strong); border-radius: 10px; font-size: 17px; font-family: var(--font-sans); }
.search-form-big input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.search-form-big button { padding: 15px 24px; border: 0; background: var(--brand); color: #fff; font-weight: 700; border-radius: 10px; cursor: pointer; font-size: 16px; font-family: var(--font-sans); }
.search-form-big button:hover { background: var(--brand-deep); }

/* Footer */
.site-footer { background: #0a1612; color: #b9c4be; margin-top: 64px; padding: 48px 0 0; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 36px; }
.footer-grid h4 { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #b9c4be; font-size: 14px; }
.footer-grid a:hover { color: #fff; text-decoration: none; }
.brand-footer { margin-bottom: 14px; }
.brand-footer .brand-name { color: #fff; }
.footer-blurb { font-size: 14px; color: #8a958f; max-width: 380px; line-height: 1.6; }
.footer-fineprint { border-top: 1px solid #1d2b25; padding: 20px 24px; font-size: 12px; color: #6a766f; }
.footer-fineprint p { margin: 0; max-width: 1240px; line-height: 1.6; }

/* Combo (store x category) header */
.combo-hero { background: linear-gradient(135deg, var(--brand-soft) 0%, var(--paper) 100%); border-bottom: 1px solid var(--line); padding: 44px 0 28px; }
.combo-tag { display: inline-flex; align-items: center; gap: 10px; background: var(--gold-soft); color: var(--gold-deep); padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: 13px; margin-bottom: 14px; }
.combo-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Guide hero */
.guide-hero { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; padding: 48px 0 36px; }
.guide-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: 44px; margin: 8px 0 12px; letter-spacing: -0.025em; line-height: 1.05; }
.guide-hero .kicker { color: var(--gold); }
.guide-hero .kicker::before { background: var(--gold); }
.guide-hero p { font-size: 18px; color: #d4dfd7; max-width: 700px; margin: 0; }

/* Responsive */
@media (max-width: 980px) {
  .header-inner { flex-wrap: wrap; }
  .primary-nav { order: 3; flex-basis: 100%; overflow-x: auto; }
  .header-search { order: 2; }
  .header-search input { min-width: 0; flex: 1; }
  .hero { padding: 40px 0 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .layout-with-sidebar { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .coupon-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .catchip-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .press-strip { display: none; }
  .dotw-inner { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
  .guide-hero h1 { font-size: 32px; }
}
@media (max-width: 580px) {
  .container { padding: 0 18px; }
  .coupon-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .catchip-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 26px; }
  .guide-hero h1 { font-size: 26px; }
  .hero-lead-form { grid-template-columns: 1fr; }
  .cashback-cta { flex-direction: column; align-items: flex-start; }
  .redeem-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  .prose { padding: 22px 20px; }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .brand-name { display: none; }
  .trust-strip { display: none; }
  .primary-nav { gap: 12px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .primary-nav::-webkit-scrollbar { display: none; }
  .primary-nav a { font-size: 14px; padding: 6px 0; white-space: nowrap; }
  .primary-nav .nav-cta { padding: 7px 12px; }
  .header-search input { padding: 9px 12px; font-size: 13px; }
  .hero { padding: 28px 0 32px; }
  .dotw { padding: 28px 0; }
  .dotw-lead h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
