* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Georgia, serif;
  background: #f5f0e8;
  color: #1a1a1a;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #cc0000;
  color: #fff;
  border-bottom: 3px solid #900;
}
nav .site-name {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav .slogan {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.92;
  text-align: center;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.9rem;
  opacity: 0.88;
}
nav a:hover { opacity: 1; text-decoration: underline; }

/* Sub-banner */
.sub-banner {
  background: #f0e8d0;
  border-bottom: 1px solid #d4c9a8;
  text-align: center;
  padding: 0.6rem 2rem;
  font-size: 1rem;
  font-style: italic;
  color: #3a2a2a;
}

/* Home — two-column layout */
.home-main {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
.col-image {
  flex: 0 0 44%;
}
.col-image img {
  width: 100%;
  height: auto;
  display: block;
}
.col-headlines {
  flex: 1;
  padding-top: 0.25rem;
}

/* Purity test card */
.purity-card {
  background: #fffdf5;
  border: 2px solid #1a1a1a;
  margin-bottom: 1.6rem;
}
.purity-card .card-header {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 0.45rem 1rem;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.purity-card ul {
  list-style: none;
  padding: 0.5rem 1rem;
}
.purity-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  font-size: 1.05rem;
}
.purity-card ul li .name {
  font-weight: bold;
  white-space: nowrap;
}
.purity-card ul li .dots {
  flex: 1;
  border-bottom: 2px dotted #bbb;
  margin: 0 0.5rem;
  position: relative;
  top: -0.15rem;
}
.purity-card ul li .stamp {
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  background: #cc0000;
  padding: 0.1rem 0.45rem;
  text-transform: uppercase;
}
.purity-card .youre-next {
  background: #1a1a1a;
  color: #fff;
  padding: 0.65rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.purity-card .youre-next .blank-name {
  flex: 1;
  border-bottom: 1px solid #555;
  margin: 0 0.6rem;
  position: relative;
  top: -0.1rem;
}
.purity-card .youre-next .next-label {
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #cc0000;
  background: #fff;
  padding: 0.1rem 0.45rem;
  text-transform: uppercase;
}
.purity-card .youre-next .next-text {
  font-size: 0.85rem;
  font-family: sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* Talking points */
.col-headlines ul.points {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}
.col-headlines ul.points li {
  font-size: 1.02rem;
  line-height: 1.55;
  padding: 0.4rem 0 0.4rem 1.1rem;
  position: relative;
}
.col-headlines ul.points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #cc0000;
  font-weight: bold;
}
.col-headlines p.explainer {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #333;
}
.col-headlines p.explainer a {
  color: #cc0000;
  font-weight: bold;
}

/* Contact page */
.contact-main {
  max-width: 520px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.contact-main h1 {
  font-size: 1.8rem;
  color: #cc0000;
  border-bottom: 2px solid #cc0000;
  padding-bottom: 0.5rem;
  margin-bottom: 1.8rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
label {
  font-family: sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
}
input, textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #bbb5a0;
  background: #fffdf5;
  font-size: 1rem;
  font-family: Georgia, serif;
  color: #1a1a1a;
}
input:focus, textarea:focus {
  outline: 2px solid #cc0000;
  border-color: #cc0000;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
button {
  padding: 0.7rem 1.8rem;
  background: #cc0000;
  color: #fff;
  border: none;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
}
button:hover { background: #a30000; }
.back {
  margin-top: 1.8rem;
  font-family: sans-serif;
  font-size: 0.9rem;
}
.back a { color: #cc0000; }

/* Reagan footer */
.reagan-block {
  background: #1a1a1a;
  color: #f5f0e8;
  padding: 3rem 2rem;
  margin-top: 4rem;
}
.reagan-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.reagan-inner img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  filter: grayscale(100%);
  border: 3px solid #444;
  order: 2;
}
.reagan-quote blockquote {
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
  color: #f5f0e8;
  margin-bottom: 0.8rem;
}
.reagan-quote blockquote::before { content: "\201C"; }
.reagan-quote blockquote::after  { content: "\201D"; }
.reagan-quote cite {
  font-family: sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cc0000;
}

@media (max-width: 650px) {
  nav { flex-direction: column; gap: 0.4rem; text-align: center; }
  .home-main { flex-direction: column; }
  .col-image { flex: none; width: 100%; }
  .reagan-inner { flex-direction: column; text-align: center; }
}
