/* ============================================================
   LONELY LETTERS — Main Stylesheet
   Palette: Deep navy + warm parchment + gold accent
   Inspired by GlowSocial's bold, narrative-driven structure
   ============================================================ */

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

:root {
  --navy:       #1a2540;
  --navy-light: #243050;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --parchment:  #f8f4ec;
  --cream:      #fdfbf7;
  --ink:        #1a1a1a;
  --ink-soft:   #3a3a3a;
  --muted:      #717171;
  --border:     #e2dcd0;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius:     10px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 37, 64, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

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

.nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 20px;
  gap: 2px;
}
.nav-mobile.open { display: flex; }

.nav-mobile-link, .nav-mobile-cta {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-cta {
  margin-top: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-light:hover { background: var(--navy); color: var(--white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-full { width: 100%; text-align: center; font-size: 1.05rem; padding: 15px; }

/* ============================================================
   SECTION TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-headline.light { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 82vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-proof {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.hero-visual { display: flex; justify-content: center; }

.hero-letter-stack {
  position: relative;
  max-width: 460px;
  width: 100%;
}
.hero-letter-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}
.hero-letter-caption {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-style: italic;
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  background: var(--gold);
  padding: 14px 24px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.proof-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.proof-divider { color: var(--navy); opacity: 0.4; font-weight: 300; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  background: var(--cream);
  padding: 100px 24px;
}
.problem .section-headline { color: var(--navy); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.problem-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.problem-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.75;
  text-align: center;
}
.problem-copy strong { color: var(--ink); }

/* ============================================================
   VETERAN / OUR STORY
   ============================================================ */
.veteran {
  background: var(--navy);
  padding: 100px 24px;
}
.veteran-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.veteran-badge-block {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.veteran-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.veteran-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.veteran-copy strong { color: var(--white); }

.veteran-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sig-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  font-style: italic;
}
.sig-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

.veteran-photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.photo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-card img {
  width: 100%;
  object-fit: cover;
}
.photo-main img { max-height: 360px; }
.photo-letters img { max-height: 220px; }
.photo-label {
  background: rgba(26,37,64,0.9);
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-style: italic;
  padding: 10px 14px;
  text-align: center;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: var(--parchment);
  padding: 80px 24px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.drew-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.drew-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 20px;
}
.drew-quote p strong { font-style: normal; color: var(--navy); }
.drew-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   FOR WHO
   ============================================================ */
.for-who {
  background: var(--navy);
  padding: 100px 24px;
}
.for-who-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.for-who-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.for-who-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); }
/* Image-based cards */
.for-who-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
}
.for-who-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.for-who-card:hover .for-who-img { transform: scale(1.04); }
.for-who-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.for-who-card p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.65; }

.not-for {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.not-for-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  align-items: center;
}
.not-for-img-wrap {
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}
.not-for-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.not-for-img:hover { opacity: 1; }
.not-for-text {
  padding: 32px 36px;
}
.not-for-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.not-for-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.not-for-item {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ============================================================
   FREE LETTERS FUNNEL
   ============================================================ */
.free-letters {
  background: var(--parchment);
  padding: 100px 24px;
}
.free-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.free-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}

.free-body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.free-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.free-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  padding-left: 4px;
}

.free-sample {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 20px 16px;
}
.sample-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}
.sample-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 10px;
}
.sample-credit {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   FORM CARD (shared by free letters + contact)
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,37,64,0.1);
}
.form-group input.error { border-color: #c0392b; }

.form-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.check-label input[type="checkbox"] { margin-top: 2px; accent-color: var(--navy); cursor: pointer; }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon { font-size: 2.8rem; margin-bottom: 14px; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  background: var(--cream);
  padding: 100px 24px;
}
.packages-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 52px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.package-card:hover { box-shadow: var(--shadow-md); }

.pkg-featured {
  border-color: var(--navy);
  border-width: 2.5px;
  box-shadow: var(--shadow-md);
}

.pkg-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--parchment);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 18px;
}
.pkg-tag-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
}
.price-mo { font-size: 0.9rem; color: var(--muted); }

.pkg-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.pkg-features li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pkg-proof {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* VS Table */
.vs-section {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.vs-headline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.vs-table-wrap { overflow-x: auto; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.vs-table th {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.vs-table th.vs-us {
  background: var(--navy);
  color: var(--white);
  border-radius: 6px 6px 0 0;
}
.vs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
.vs-table td.vs-us {
  background: rgba(26,37,64,0.04);
  color: var(--navy);
  font-weight: 600;
}
.vs-table tr:last-child td { border-bottom: none; }
.vs-table tr:hover td { background: rgba(0,0,0,0.02); }
.vs-table tr:hover td.vs-us { background: rgba(26,37,64,0.07); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--navy);
  padding: 100px 24px;
  border-top: 3px solid var(--gold);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.manifesto-item { display: flex; flex-direction: column; gap: 14px; }
.manifesto-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.25);
  line-height: 1;
}
.manifesto-item p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--parchment);
  padding: 100px 24px;
}
.faq .section-headline { color: var(--navy); margin-bottom: 48px; }
.faq-list { max-width: 780px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA / CONTACT
   ============================================================ */
.final-cta {
  background: var(--cream);
  padding: 100px 24px;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.cta-proof { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 60px 24px 32px;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-logo { color: var(--white); }
.footer-tag { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-style: italic; margin-top: 6px; }
.footer-vet { font-size: 0.82rem; font-weight: 600; color: var(--gold-light); margin-top: 4px; letter-spacing: 0.04em; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 24px 60px;
    min-height: unset;
    gap: 40px;
  }
  .hero-letter-caption { font-size: 0.72rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .veteran-inner { grid-template-columns: 1fr; gap: 48px; }
  .for-who-grid { grid-template-columns: 1fr 1fr; }
  .not-for-inner { grid-template-columns: 1fr; }
  .not-for-img-wrap { min-height: 200px; max-height: 240px; }
  .not-for-text { padding: 24px; }
  .free-inner { grid-template-columns: 1fr; gap: 48px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .for-who-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .vs-section { padding: 24px 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .cta-actions { flex-direction: column; }
  .packages-grid { max-width: 100%; }
  .hero-letter-caption { display: none; }
}

/* =============================================
   ORDER MODALS
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.82);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.modal-open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 2rem 2.5rem;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.modal-overlay.modal-open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.modal-close:hover { color: #1a2540; }
.modal-header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.modal-pkg-tag {
  display: inline-block;
  background: #f0ede6;
  color: #1a2540;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.modal-pkg-tag-featured {
  background: #c9a84c;
  color: #fff;
}
.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2540;
  margin: 0 0 0.35rem;
}
.modal-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}
.modal-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 1.25rem 0 0.6rem;
}
.modal-payment-note {
  background: #f8f4ec;
  border-left: 3px solid #c9a84c;
  padding: 0.85rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.modal-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-group-sm {
  max-width: 100px;
}
@media (max-width: 480px) {
  .modal-box { padding: 1.5rem 1.25rem 2rem; }
  .modal-title { font-size: 1.25rem; }
  .form-group-sm { max-width: unset; }
}
