/* Two-Twenty-Two PR — Landing Page Stylesheet (v2, corrected to match site's actual dark theme)
   Shared across: founder-messaging.html, pitch-deck-messaging.html, executive-positioning.html, founders-story-architecture.html */

:root {
  --navy: #0f1535;
  --navy-mid: #182044;
  --gold: #b8923a;
  --gold-rich: #a8832e;
  --gold-light: #d4bb6e;
  --gold-pale: #e8d9a8;
  --cream: #f0e8d8;
  --cream-soft: rgba(240, 232, 216, 0.78);
  --line: rgba(212, 187, 110, 0.16);
  --max: 720px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .eyebrow-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

a { color: inherit; }

img, svg { max-width: 100%; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 32px 10px;
}

.mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-decoration: none;
}

.mark span { color: var(--gold); }

.topbar nav a {
  text-decoration: none;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 28px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.topbar nav a:hover { opacity: 1; }

.hero {
  max-width: 840px;
  margin: 0 auto;
  padding: 72px 32px 40px;
  text-align: left;
}

.hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.18;
  font-weight: 400;
  margin: 0 0 22px;
  color: var(--cream);
}

.hero .sub {
  font-size: 19px;
  color: var(--cream-soft);
  max-width: 600px;
  margin: 0;
  font-weight: 300;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 32px;
}

.section p {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--cream-soft);
  font-weight: 300;
}

.section p:last-child { margin-bottom: 0; }

.section a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.offer {
  background: var(--navy-mid);
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 48px 40px;
  max-width: var(--max);
  margin: 24px auto;
}

.offer .offer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--cream);
  margin: 0 0 6px;
}

.offer .price {
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.offer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offer li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--cream-soft);
  padding-left: 22px;
  position: relative;
}

.offer li:first-child { border-top: none; }

.offer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 1px;
  background: var(--gold-light);
}

.callout-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0 0 16px;
}

.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-list li {
  font-size: 18px;
  font-weight: 300;
  color: var(--cream-soft);
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.fit-list li:last-child { border-bottom: none; }

.fit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.process-step {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child { padding-bottom: 0; }

.process-step .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold-light);
  min-width: 40px;
}

.process-step .step-body strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--cream);
}

.process-step .step-body span {
  color: var(--cream-soft);
  font-size: 16px;
  font-weight: 300;
}

.closer-block {
  max-width: var(--max);
  margin: 8px auto 0;
  padding: 40px 32px 0;
  border-top: 1px solid var(--line);
}

.closer-block .callout-label { margin-bottom: 14px; }

.closer-block p {
  font-size: 20px;
  color: var(--cream);
  font-weight: 300;
  margin: 0;
}

.cta-final {
  text-align: center;
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 56px 32px 88px;
}

.cta-final h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 28px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy);
  text-decoration: none;
  padding: 16px 38px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.88; }

footer {
  text-align: center;
  padding: 32px;
  font-size: 13px;
  color: var(--cream-soft);
  border-top: 1px solid var(--line);
}

footer a {
  text-decoration: none;
  margin: 0 8px;
  color: var(--gold-light);
  opacity: 0.8;
}

footer a:hover { opacity: 1; }

@media (max-width: 600px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .topbar nav a { margin-left: 0; margin-right: 20px; }
  .offer { padding: 34px 24px; }
}
