/* Prime Publishing — shared stylesheet */
:root {
  --navy: #1B2A4A;
  --navy-deep: #122036;
  --gold: #C07A1F;
  --gold-soft: #E3B96B;
  --cream: #F4F1EA;
  --ink: #222222;
  --muted: #5A5A5A;
  --line: #DDD6C6;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, .serif {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--navy);
  line-height: 1.25;
}

a { color: var(--gold); }
a:hover { color: var(--navy); }

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

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 960px;
  margin: 0 auto;
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.brand .accent { color: var(--gold-soft); }
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 48px 0 40px;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin: 0 0 16px;
}
.hero h1 .gold { color: var(--gold-soft); }
.hero p.subhead {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 24px;
  color: #D9D3C5;
}
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #A96B1A; color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); }
.btn-large { padding: 19px 48px; font-size: 1.2rem; }
.btn-note {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section { padding: 40px 0; }
.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 12px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 24px;
}
.divider {
  width: 64px; height: 4px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Split: who this is for */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
}
.split-card h3 { margin-top: 0; font-size: 1.45rem; }
.split-card ul { padding-left: 20px; }
.split-card li { margin-bottom: 8px; }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card.featured {
  border: 2px solid var(--gold);
}
.card-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card .audience {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 8px;
}
.product-card h3 { font-size: 1.6rem; margin: 0 0 10px; }
.product-card .desc { color: var(--muted); flex: 1; }
.price {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  color: var(--navy);
  margin: 12px 0 2px;
}
.price-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 52px; height: 52px;
  line-height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.steps h3 { margin: 8px 0 6px; font-size: 1.2rem; }
.steps p { color: var(--muted); font-size: 0.95rem; }

/* Trust strip */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.trust-items span::before { content: "✓ "; color: var(--gold-soft); font-weight: bold; }

/* Email capture */
.email-capture {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 28px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.email-capture h2 { margin-top: 0; }
.email-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.email-form input[type="email"],
.email-form input[type="text"] {
  flex: 1 1 240px;
  padding: 13px 16px;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #E9F2E6;
  border: 1px solid #9DBE97;
  border-radius: 6px;
  color: #2F5D2A;
  font-size: 0.95rem;
}

/* Sales page elements */
.product-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 44px 0 36px;
}
.product-hero h1 { color: var(--white); font-size: 2.4rem; margin: 0 0 14px; }
.product-hero .lede { color: #D9D3C5; font-size: 1.15rem; max-width: 660px; }
.buy-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  max-width: 520px;
  margin: 28px auto;
}
.buy-box h2 { margin-top: 0; }
.checklist { list-style: none; padding: 0; text-align: left; }
.checklist li { padding: 6px 0 6px 34px; position: relative; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  color: var(--gold);
  font-weight: bold;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
}
.panel h3 { margin-top: 0; }
.faq-item { margin-bottom: 18px; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.guarantee {
  background: var(--white);
  border: 2px dashed var(--gold);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.guarantee h2 { margin-top: 0; }

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
}
.contact-form label {
  display: block;
  font-weight: bold;
  margin: 18px 0 6px;
  font-size: 0.95rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-family: inherit;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #C9C2B4;
  padding: 32px 0 20px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-grid h4 {
  color: var(--white);
  margin: 0 0 12px;
  font-family: Georgia, serif;
}
.footer-grid a { color: #C9C2B4; text-decoration: none; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.disclaimer {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 16px;
  color: #A39B8B;
  font-size: 0.8rem;
  line-height: 1.6;
}
.copyright { margin-top: 12px; font-size: 0.78rem; color: #8A8378; }

/* ---------- Images ---------- */
.hero-img {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 28px auto 0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.img-block { margin: 26px auto; max-width: 760px; }
.img-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(27,42,74,0.15);
}
.card-img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 2rem; }
  .product-hero h1 { font-size: 1.85rem; }
  .section-title { font-size: 1.6rem; }
  .nav-bar { flex-direction: column; gap: 10px; }
  .nav-links { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .split, .product-grid, .two-col { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  section { padding: 40px 0; }
  .email-capture { padding: 28px 20px; }
  .buy-box { padding: 24px 20px; }
  .product-card { padding: 28px 22px; }
}
