:root {
  --oxblood: #500203;
  --oxblood-dark: #2f0102;
  --cream: #f8f1e9;
  --paper: #fffdf9;
  --gold: #a36a3d;
  --sage: #6f7c68;
  --ink: #25211e;
  --muted: #6d625b;
  --line: #dfd3c8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; width: 230px; }
.brand img { width: 100%; height: auto; }
.header-link {
  color: var(--oxblood);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding: 8px 0;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  min-height: 660px;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  background:
    radial-gradient(circle at 72% 20%, rgba(163,106,61,.35), transparent 24%),
    linear-gradient(135deg, var(--oxblood-dark), var(--oxblood) 58%, #7f352b);
  color: white;
  box-shadow: 0 28px 70px rgba(80,2,3,.18);
}
.hero-copy { padding: 70px 34px 70px 72px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #e2b786; }
h1, h2, h3, .issue-name, .issue-hook, .footer-signoff {
  font-family: Georgia, "Times New Roman", serif;
}
h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero-lede {
  max-width: 630px;
  margin: 28px 0 32px;
  color: #f6e8dc;
  font-size: 19px;
  line-height: 1.65;
}
.primary-button, .form-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}
.primary-button { padding: 0 28px; }
.primary-button:hover, .form-button:hover { transform: translateY(-2px); background: #bd7d47; }
.primary-button:focus-visible, .form-button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible {
  outline: 3px solid #efbe7f;
  outline-offset: 3px;
}
.microcopy { margin: 14px 0 0; color: #dfcfc5; font-size: 13px; }

.issue-preview {
  width: min(430px, calc(100% - 60px));
  justify-self: center;
  transform: rotate(2deg);
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(20,0,0,.34);
}
.issue-topline {
  background: var(--gold);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.issue-inner { padding: 58px 44px 48px; }
.issue-name { color: var(--oxblood); font-size: 19px; letter-spacing: .14em; margin: 0 0 36px; }
.issue-hook { color: var(--oxblood); font-size: 37px; line-height: 1.08; margin: 0; }
.road-line { height: 5px; margin: 34px 0 28px; background: var(--sage); position: relative; }
.road-line span { display: block; width: 32%; height: 100%; background: var(--gold); }
.issue-note { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }
.issue-signoff { padding: 18px 28px; background: var(--oxblood); color: white; text-align: center; font-family: Georgia, serif; }

.value-strip {
  width: min(1050px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(63,37,24,.1);
}
.value-item { padding: 28px; display: flex; gap: 18px; align-items: flex-start; }
.value-item + .value-item { border-left: 1px solid var(--line); }
.value-item span { color: var(--gold); font-weight: 900; font-size: 12px; }
.value-item p { margin: 0; font-size: 14px; line-height: 1.55; font-weight: 700; }

.weekend-section, .trust-section { width: min(1080px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 680px; margin-bottom: 40px; }
.section-heading h2, .trust-section h2, .signup-copy h2 {
  color: var(--oxblood);
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.section-heading > p:last-child, .trust-section > p:last-child { color: var(--muted); font-size: 18px; line-height: 1.65; }
.weekend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stop-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); }
.stop-card:nth-child(2) { background: #eef2ec; }
.stop-card:nth-child(3) { background: #f4e7de; }
.stop-day { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.stop-card h3 { color: var(--oxblood); font-size: 27px; line-height: 1.12; margin: 28px 0 14px; }
.stop-card > p:last-child { color: var(--muted); line-height: 1.65; margin: 0; }

.signup-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
  border-radius: 30px;
  background: var(--oxblood-dark);
  color: white;
}
.signup-copy h2 { color: white; }
.signup-copy > p:not(.eyebrow) { color: #ecdcd0; font-size: 18px; line-height: 1.7; }
blockquote { margin: 38px 0 0; padding-left: 22px; border-left: 3px solid var(--gold); color: #e2b786; font-family: Georgia, serif; font-size: 20px; line-height: 1.55; }
.signup-card { background: white; color: var(--ink); border-radius: 22px; padding: 34px; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.form-heading p { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; margin: 0 0 8px; }
.form-heading h3 { color: var(--oxblood); font-size: 31px; margin: 0 0 24px; }
.signup-card label { display: block; margin: 0 0 18px; color: #4f4641; font-size: 13px; font-weight: 800; }
.signup-card label span { color: #8b8179; font-weight: 400; }
.signup-card input, .signup-card select { width: 100%; height: 52px; margin-top: 8px; border: 1px solid #cfc2b6; border-radius: 10px; background: var(--paper); color: var(--ink); padding: 0 14px; }
.form-button { width: 100%; margin-top: 4px; }
.form-button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-trust { color: #756a63; text-align: center; font-size: 12px; line-height: 1.55; margin: 14px 10px 0; }
.form-message { border-radius: 9px; padding: 12px; margin: 14px 0 0; font-size: 13px; font-weight: 700; }
.form-message.success { color: #31512e; background: #eaf4e8; }
.form-message.error { color: #711315; background: #f8e5e5; }
.honeypot { position: absolute!important; width: 1px!important; height: 1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; }

.trust-section { max-width: 820px; text-align: center; }
.trust-section .eyebrow { text-align: center; }
footer { padding: 48px 20px; background: var(--cream); text-align: center; color: var(--muted); font-size: 13px; }
.footer-signoff { color: var(--oxblood); font-size: 27px; margin: 0 0 14px; }
footer nav { display: flex; gap: 22px; justify-content: center; margin-top: 22px; }
footer a { color: var(--oxblood); font-weight: 800; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 58px; }
  .hero-copy { padding: 62px 44px 48px; }
  .issue-preview { transform: rotate(1deg); }
  .value-strip { grid-template-columns: 1fr; margin-top: 24px; }
  .value-item + .value-item { border-left: 0; border-top: 1px solid var(--line); }
  .weekend-grid { grid-template-columns: 1fr; }
  .stop-card { min-height: 0; }
  .signup-section { grid-template-columns: 1fr; gap: 44px; padding: 52px; }
}

@media (max-width: 600px) {
  .site-header { min-height: 76px; width: min(100% - 28px, 1180px); }
  .brand { width: 175px; }
  .header-link { font-size: 11px; }
  .hero, .signup-section { width: calc(100% - 20px); border-radius: 20px; }
  .hero-copy { padding: 44px 24px 38px; }
  h1 { font-size: 49px; }
  .hero-lede { font-size: 17px; }
  .issue-preview { width: calc(100% - 40px); }
  .issue-inner { padding: 42px 28px 36px; }
  .issue-hook { font-size: 31px; }
  .value-strip, .weekend-section, .trust-section { width: calc(100% - 28px); }
  .weekend-section, .trust-section { padding: 80px 0; }
  .signup-section { padding: 42px 20px; }
  .signup-card { padding: 26px 20px; }
  .section-heading h2, .trust-section h2, .signup-copy h2 { font-size: 40px; }
  footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none!important; }
}

.simple-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}
.simple-page > .brand { margin-bottom: 44px; }
.simple-card {
  padding: clamp(36px, 7vw, 78px);
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.simple-card h1 { color: var(--oxblood); font-size: clamp(46px, 7vw, 76px); }
.simple-card > p:not(.eyebrow):not(.footer-signoff) { color: var(--muted); font-size: 18px; line-height: 1.7; }
.simple-card .primary-button { margin: 20px 0 42px; }
.legal-copy h1 { margin-bottom: 34px; }
.legal-copy a { color: var(--oxblood); font-weight: 800; }
