/* This Week's Deals — magnet v1. Cream/green. Clone: keep class names, swap colors if needed. */
:root {
  --cream: #f6f0e4;
  --paper: #fffaf1;
  --ink: #1c2a22;
  --muted: #4d5c52;
  --green: #2f6b45;
  --green-dark: #245536;
  --line: #dccdb3;
  --warn: #8a3b2a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

header .brand {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 700;
}

.sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.teasers {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.teasers li {
  position: relative;
  padding: 0 0 10px 1.4em;
  font-size: 1rem;
}

.teasers li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

form label.field {
  display: block;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
}

input[type="email"] {
  width: 100%;
  font-size: 16px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0 0 16px;
}

input[type="email"]:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 18px;
  cursor: pointer;
}

.consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green);
}

button[type="submit"] {
  width: 100%;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 650;
  padding: 13px 16px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: var(--green-dark);
}

.fine {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0;
}

.err {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: var(--warn);
  margin: 0 0 12px;
  display: none;
}

.err.show { display: block; }

.thanks {
  background: #e7f2ea;
  border: 1px solid #b7d4c2;
  color: var(--green-dark);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 6px;
  margin: 0 0 22px;
}

.lede {
  margin: 0 0 22px;
  color: var(--muted);
}

ol.checks {
  margin: 0;
  padding-left: 1.3em;
}

ol.checks li {
  margin: 0 0 16px;
  font-size: 1.02rem;
}

ol.checks li strong {
  display: inline;
}

.hint {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.foot {
  margin-top: 36px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.foot a { color: var(--green); }

@media (max-width: 480px) {
  .wrap { padding: 24px 16px 40px; }
}

@media print {
  body { background: #fff; }
  .card, .thanks { border: 0; background: transparent; padding: 0; }
  button, form { display: none; }
  .wrap { max-width: none; padding: 0; }
  a { text-decoration: none; color: inherit; }
  .noprint { display: none; }
}
