/* Weekend Gear Clearance Sales - shared styles */
:root {
  --bg: #f7f3ec;
  --surface: #fffdf9;
  --ink: #1f2a2e;
  --muted: #5d6a6e;
  --line: #e3dccf;
  --brand: #c2562b;      /* ember orange */
  --brand-ink: #ffffff;
  --deep: #1d4b52;       /* lake teal */
  --deep-soft: #e3eeee;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(31, 42, 46, .06), 0 8px 24px rgba(31, 42, 46, .06);
  --max: 1080px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141a1c; --surface: #1b2326; --ink: #ece7de; --muted: #a3adb0; --line: #2c373a;
    --brand: #e2764a; --deep: #7fc0c6; --deep-soft: #1f3033;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .25);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 17px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
img { max-width: 100%; height: auto; }
a { color: var(--deep); text-underline-offset: 3px; }
a:hover { color: var(--brand); }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: 20px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: var(--surface); padding: 8px 12px; border-radius: 8px; z-index: 10; }

/* header */
.site-header { border-bottom: 1px solid var(--line); background: var(--surface); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 14px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-name { font-weight: 800; letter-spacing: -.01em; line-height: 1.1; }
.brand-name small { display: block; font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--ink); padding: 6px 12px; border-radius: 999px; font-size: 15px; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--deep-soft); color: var(--deep); }

/* hero */
.hero { padding-block: 56px 40px; }
.hero .eyebrow { color: var(--brand); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 10px; }
.hero h1 { font-size: clamp(32px, 5.2vw, 54px); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 16px; max-width: 16ch; }
.hero p.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); max-width: 58ch; margin: 0 0 26px; }
.btn { display: inline-block; background: var(--brand); color: var(--brand-ink); text-decoration: none; font-weight: 700; padding: 12px 20px; border-radius: 999px; }
.btn:hover { color: var(--brand-ink); filter: brightness(1.05); }
.btn.ghost { background: transparent; color: var(--deep); border: 1.5px solid var(--deep); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* sections */
section { padding-block: 28px; }
h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -.01em; line-height: 1.2; margin: 0 0 12px; }
h3 { font-size: 19px; margin: 0 0 6px; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card p { margin: 0; color: var(--muted); }
.card .num { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--deep-soft); color: var(--deep); font-weight: 800; margin-bottom: 10px; }
.card a.more { display: inline-block; margin-top: 12px; font-weight: 600; }
.band { background: var(--deep); color: #f3efe7; border-radius: var(--radius); padding: 28px; }
.band h2 { color: #fff; }
.band p { color: #d9e4e3; margin: 0; max-width: 70ch; }
@media (prefers-color-scheme: dark) { .band { background: #1f3a3e; } }
.note { font-size: 15px; color: var(--muted); }

/* daily list preview + example deal card */
.preview { display: grid; gap: 28px; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
@media (max-width: 760px) { .preview { grid-template-columns: 1fr; padding: 22px; } }
.preview-text p { color: var(--muted); margin: 0 0 12px; }
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--muted); }
.checks li strong { color: var(--ink); }
.checks li::before { content: ""; position: absolute; left: 2px; top: .45em; width: 14px; height: 8px;
  border-left: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand); transform: rotate(-45deg); }

.deal-card { position: relative; margin: 0; max-width: 300px; justify-self: center; width: 100%;
  background: var(--bg); border: 1.5px dashed var(--line); border-radius: var(--radius); padding: 14px; }
.example-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin: 0 0 10px; }
.deal-art { position: relative; display: grid; place-items: center; aspect-ratio: 4 / 3; max-width: 100%;
  border-radius: 10px; background: var(--deep-soft); color: var(--deep); }
.deal-art svg { width: 46%; height: auto; }
.deal-badge { position: absolute; left: 10px; top: 10px; background: var(--brand); color: #fff; font-weight: 800;
  font-size: 13px; padding: 3px 9px; border-radius: 999px; }
.deal-card figcaption { display: grid; gap: 3px; padding: 12px 4px 2px; }
.deal-brand { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.deal-name { font-weight: 700; line-height: 1.3; }
.deal-price b { font-size: 20px; color: var(--brand); }
.deal-price s { color: var(--muted); margin-left: 6px; }
.deal-rating { font-size: 14px; color: var(--muted); }
.stars { position: relative; display: inline-block; letter-spacing: 1px; color: #d4cdc0; }
.stars i { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; color: #e0a526; font-style: normal; }
.deal-meta { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.new-dot { background: var(--deep); color: #fff; font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 999px; }
@media (prefers-color-scheme: dark) { .stars { color: #4a4a44; } .new-dot { color: #10201f; } }

/* article pages */
.article { max-width: 72ch; padding-block: 44px 20px; }
.article h1 { font-size: clamp(30px, 4.4vw, 44px); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 10px; }
.article .meta { color: var(--muted); font-size: 15px; margin: 0 0 28px; }
.article h2 { margin-top: 34px; }
.article li { margin-bottom: 8px; }
.callout { background: var(--deep-soft); border-left: 4px solid var(--deep); padding: 14px 18px; border-radius: 8px; margin: 22px 0; }
.callout p { margin: 0; }

/* footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding-block: 28px; color: var(--muted); font-size: 15px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
.disclosure-line { flex-basis: 100%; font-size: 14px; }
