/* ─────────────────────────────────────────────────────────
   THE LOAD LETTER  —  Shared Stylesheet
   ───────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #f3e8d4;
  --cream-dark:  #ece0c6;
  --dark:        #1a1007;
  --dark2:       #251808;
  --gold:        #b8892a;
  --gold-btn:    #c49a30;
  --gold-hover:  #a87820;
  --text:        #1a1007;
  --muted:       #6b5c3e;
  --muted-light: #9e8c70;
  --white:       #ffffff;
  --card-bg:     #ffffff;
  --border:      rgba(0,0,0,0.10);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   20px;
  --radius-pill: 50px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.eyebrow-gold { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-btn);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-hover); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px 24px;
}
.btn-dark:hover { background: #2e1e0a; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(0,0,0,0.22);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold-block {
  background: var(--gold-btn);
  color: var(--white);
  border-radius: var(--radius-sm);
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 24px;
}
.btn-gold-block:hover { background: var(--gold-hover); }

/* ── NAV ─────────────────────────────────────────────────── */

nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { height: 46px; width: auto; flex-shrink: 0; }

.logo-text-group { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */

.page-hero {
  padding: 72px 48px 64px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 { font-size: 48px; margin-bottom: 18px; }
.page-hero p  { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── CONTAINER ───────────────────────────────────────────── */

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section    { padding: 88px 48px; }
.section-dark { background: var(--dark); }

/* ── LEAD CAPTURE CARD (shared) ──────────────────────────── */

.lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.09);
  position: relative;
}

.lc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.lc-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 22px;
  padding-right: 64px;
}

.lc-step {
  position: absolute;
  top: 32px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.25;
  text-align: center;
}

.lc-question {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.lc-input {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
}
.lc-input::placeholder { color: #b8a88a; }
.lc-input:focus { border-color: var(--gold-btn); }

.lc-disclaimer {
  font-size: 12px;
  color: var(--muted-light);
  line-height: 1.55;
  margin-top: 12px;
}

/* form states */
.form-step { display: none; }
.form-step.active { display: block; }

.form-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.form-success.active { display: block; }
.form-success .success-icon { font-size: 40px; margin-bottom: 12px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--muted); }

.form-error {
  font-size: 13px;
  color: #c0392b;
  margin-top: 8px;
  display: none;
}
.form-error.active { display: block; }

/* ── FEATURE CARDS ───────────────────────────────────────── */

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PRICING CARDS ───────────────────────────────────────── */

.pricing-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.pricing-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.pricing-card.featured { background: var(--gold-btn); }

.pricing-card-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}
.pricing-card.featured .pricing-card-name { color: rgba(255,255,255,0.9); }

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.88); }

/* ── CHECK LIST ──────────────────────────────────────────── */

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}

.check-list li::before {
  content: '';
  display: inline-flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10.5l3.5 3.5L15 7' stroke='%23b8892a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ── HERO CHECKS (inline) ────────────────────────────────── */

.hero-checks { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }

.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

.hero-check::before {
  content: '';
  display: inline-flex;
  width: 19px;
  height: 19px;
  min-width: 19px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10.5l3.5 3.5L15 7' stroke='%236b5c3e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── BADGE ───────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 26px;
}

/* ── DIVIDER ─────────────────────────────────────────────── */

.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */

footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── ARTICLE CARDS ───────────────────────────────────────── */

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.article-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: var(--border);
}

.article-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  color: var(--text);
}

.article-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.article-meta {
  font-size: 12px;
  color: var(--muted-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-read {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── STEP GRID ───────────────────────────────────────────── */

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}

.step-body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── KIT SECTION ─────────────────────────────────────────── */

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid var(--gold-btn);
}

.kit-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.kit-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.kit-body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .article-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .kit-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .section  { padding: 64px 24px; }
  .container { padding: 0 24px; }
  .page-hero { padding: 48px 24px; }
  .page-hero h1 { font-size: 36px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
