/* I Want My Share — shared site styles */

:root {
  --navy: #0f2a4a;
  --navy-dark: #0a1c33;
  --gold: #b8860b;
  --gold-light: #e8d9a0;
  --bg: #faf7f1;
  --surface: #ffffff;
  --text: #1c1c1c;
  --text-muted: #5c5c58;
  --border: #e2ddd0;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 { font-weight: 600; line-height: 1.25; margin: 0 0 12px; }
h1 { font-size: 40px; }
h2 { font-size: 28px; }
h3 { font-size: 18px; }
p { margin: 0 0 16px; }

.eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* header */
.site-header {
  background: var(--navy);
  color: #fff;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.site-header nav a {
  color: #e8e4d8;
  text-decoration: none;
  font-size: 14px;
  margin-left: 24px;
}
.site-header nav a:hover { color: var(--gold-light); }

/* hero */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* hero with cover image, two columns */
.hero-split {
  padding: 56px 0;
  text-align: left;
}
.hero-split .wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.hero-split .hero-copy .lead { margin-left: 0; }
.hero-split .hero-actions { justify-content: flex-start; }
@media (max-width: 720px) {
  .hero-split .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-copy .lead { margin: 0 auto 28px; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-split .cover-img { margin: 0 auto; }
}

/* real imagery */
.cover-img {
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
  display: block;
  box-shadow: 0 14px 34px rgba(10,28,51,0.22);
}
.cover-img-sm {
  width: 100%;
  max-width: 170px;
  border-radius: 5px;
  display: block;
  box-shadow: 0 10px 22px rgba(10,28,51,0.2);
}
.headshot-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.headshot-img-lg {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.headshot-img-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* author bar */
.author-bar {
  display: flex;
  gap: 22px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}
.author-bar .author-name { font-weight: 600; font-size: 16px; margin: 0 0 4px; }
.author-bar p { margin: 0; }
.author-bar img { flex-shrink: 0; }
@media (max-width: 560px) {
  .author-bar { flex-direction: column; text-align: center; }
}

/* buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}
.btn:hover { background: rgba(15,42,74,0.06); }
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-dark); }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #9c7009; }
.btn-block { display: block; width: 100%; text-align: center; }

/* badges row */
.badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 0 48px;
}
.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* sections */
.section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.section-intro { max-width: 560px; margin: 0 auto 32px; }

/* grids */
.grid {
  display: grid;
  gap: 20px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 30px; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  .site-header nav a { margin-left: 0; margin-right: 20px; }
}

/* cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.card-featured {
  border: 2px solid var(--gold);
  position: relative;
}
.pill {
  display: inline-block;
  background: var(--gold-light);
  color: #6b5410;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.merit-card { text-align: left; }
.merit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184,134,11,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* tier card (used on home) */
.tier-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}
.tier-thumb {
  width: 100%;
  height: 90px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  text-align: center;
  padding: 8px;
}
.tier-thumb .thumb-label { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 4px; }
.tier-thumb-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(10,28,51,0.18);
}
.avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}
.tier-thumb-imgs {
  display: flex;
  gap: 6px;
  height: 90px;
  margin-bottom: 16px;
  justify-content: center;
}
.tier-thumb-imgs img {
  height: 100%;
  width: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(10,28,51,0.18);
}

/* catchy tier banners */
.tier-banner {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.tier-banner-gold { background: var(--gold-light); color: #6b5410; }
.tier-banner-navy { background: #dfe6ee; color: var(--navy); }
.tier-banner-teal { background: #dcead9; color: #1f5c3d; }
.tier-banner-coral { background: #f7ded2; color: #8a3620; }
.tier-name { font-weight: 600; font-size: 16px; margin: 0 0 2px; }
.tier-sub { font-size: 13px; color: var(--text-muted); margin: 0 0 10px; }
.tier-price { font-size: 22px; font-weight: 700; margin: 0 0 12px; }

/* checklist */
ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
ul.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
}
ul.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* purchase box */
.purchase-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.purchase-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 14px 0 20px;
}

/* avatar */
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 16px;
}

/* quote */
.quote {
  text-align: center;
  padding: 40px 0;
}
.quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 20px;
  margin: 0 0 8px;
}

/* footer */
.site-footer {
  background: var(--navy-dark);
  color: #cfc9b8;
  padding: 32px 0;
  margin-top: 0;
}
.site-footer p { margin: 0 0 6px; font-size: 14px; }
.site-footer .fine { font-size: 12px; color: #8f8a78; }

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}
.back-link:hover { color: var(--navy); }
