/* ==================== RESET & VARIABLES ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --charcoal: #1c1c1e;
  --charcoal-light: #2c2c2e;
  --charcoal-surface: #232325;
  --gold: #c4a35a;
  --gold-light: #d9bc78;
  --gold-muted: #a08840;
  --gold-glow: rgba(196,163,90,0.12);
  --cream: #f8f6f1;
  --warm-white: #edeae3;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.5);
  --text-dark: #2a2a2a;
  --text-dark-muted: #6a6a6a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--charcoal);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==================== TOP BAR ==================== */
.top-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==================== NAVIGATION ==================== */
nav {
  background: rgba(28,28,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
}

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

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a svg { transition: transform 0.3s; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--charcoal) !important;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--charcoal-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s;
  list-style: none;
  margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 13px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.03);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,12,0.7) 0%,
    rgba(10,10,12,0.5) 40%,
    rgba(10,10,12,0.6) 70%,
    rgba(10,10,12,0.9) 100%
  );
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay-text {
  position: absolute;
  bottom: 12%;
  left: 80px;
  font-family: 'Playfair Display', serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  letter-spacing: -4px;
  line-height: 0.9;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: 30px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 48px;
  font-family: 'Playfair Display', serif;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,163,90,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 55px; }
}

/* ==================== IMAGE MOSAIC ==================== */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 4px;
  padding: 4px;
  background: var(--charcoal);
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.mosaic-item:nth-child(1) { grid-row: 1 / 3; }

.mosaic-item:hover { transform: scale(1.02); }

.mosaic-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ==================== INTRO SECTION ==================== */
.intro {
  background: var(--cream);
  color: var(--text-dark);
  padding: 120px 80px;
  text-align: center;
}

.intro-inner { max-width: 750px; margin: 0 auto; }

.section-label {
  color: var(--gold-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.intro p {
  font-size: 18px;
  color: var(--text-dark-muted);
  line-height: 1.8;
  font-weight: 300;
}

.intro-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 40px auto 0;
}

/* ==================== PATH CARDS ==================== */
.paths {
  background: var(--cream);
  color: var(--text-dark);
  padding: 0 80px 120px;
}

.paths-header {
  text-align: center;
  margin-bottom: 60px;
}

.paths-header .section-label { color: var(--gold-muted); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-dark-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.path-card {
  background: var(--charcoal);
  color: var(--text-light);
  border-radius: 12px;
  padding: 48px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  color: var(--text-light);
}

.path-card:hover::before { transform: scaleX(1); }

.path-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(196,163,90,0.08);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.path-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.path-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--cream);
  line-height: 1.2;
}

.path-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.path-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.path-link::after { content: '\2192'; }

.path-card:hover .path-link { gap: 14px; }

/* ==================== BEFORE / AFTER ==================== */
.before-after {
  background: var(--charcoal);
  padding: 120px 80px;
  text-align: center;
}

.before-after-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.before-after .section-label { color: var(--gold); }
.before-after .section-title { color: var(--cream); margin-bottom: 60px; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.ba-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ba-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(28,28,30,0.8);
  color: var(--gold);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.ba-caption {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ==================== ADAM SECTION ==================== */
.adam-section {
  background: var(--charcoal);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.adam-section::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 400px;
  color: rgba(196,163,90,0.04);
  position: absolute;
  top: -60px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}

.adam-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.adam-photo-wrapper { position: relative; }

.adam-photo {
  width: 300px;
  height: 380px;
  border-radius: 200px 200px 12px 12px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 2;
}

.adam-photo-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid rgba(196,163,90,0.2);
  border-radius: 212px 212px 24px 24px;
  z-index: 1;
}

.adam-content .section-label { color: var(--gold); }

.adam-quote {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 28px;
}

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

.adam-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.adam-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 28px;
  background: rgba(196,163,90,0.1);
  border: 1px solid rgba(196,163,90,0.2);
  border-radius: 8px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s;
}

.adam-phone:hover {
  background: rgba(196,163,90,0.18);
  border-color: rgba(196,163,90,0.4);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 120px 80px;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.cta-inner { max-width: 650px; margin: 0 auto; }

.cta-section .section-label { color: var(--gold-muted); }

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-phone-large {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-phone-large a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.cta-phone-large a:hover { color: var(--gold-muted); }

.cta-or {
  color: var(--text-dark-muted);
  font-size: 14px;
  margin: 24px 0 32px;
  font-weight: 300;
}

.form-container {
  background: white;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--warm-white);
  border-radius: 8px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #aaa;
}

.form-row textarea {
  resize: none;
  height: 56px;
}

.form-submit {
  background: var(--charcoal);
  color: var(--gold);
  border: none;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.3s;
  width: 100%;
}

.form-submit:hover {
  background: var(--charcoal-light);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ==================== BIBLE VERSE ==================== */
.verse {
  background: var(--charcoal);
  text-align: center;
  padding: 100px 80px;
  position: relative;
}

.verse::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-muted), transparent);
}

.verse blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.7;
  font-weight: 400;
}

.verse cite {
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--cream);
}

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

.footer-center {
  display: flex;
  gap: 24px;
}

.footer-center a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s;
}

.footer-center a:hover { color: var(--gold); }

.footer-right {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ==================== INNER PAGE HERO ==================== */
.page-hero {
  background: var(--charcoal);
  padding: 120px 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,0.3), transparent);
}

.page-hero .hero-eyebrow { margin-bottom: 24px; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
  padding: 100px 80px;
}

.content-section.light {
  background: var(--cream);
  color: var(--text-dark);
}

.content-section.dark {
  background: var(--charcoal);
  color: var(--text-light);
}

.content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.content-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.2;
}

.content-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin: 48px 0 16px;
}

.content-inner p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section.light h2,
.content-section.light h3 { color: var(--text-dark); }

.content-section.light p { color: var(--text-dark-muted); }

.content-section.dark h2,
.content-section.dark h3 { color: var(--cream); }

.content-section.dark p { color: var(--text-muted); }

.content-section.light .section-label { color: var(--gold-muted); }
.content-section.dark .section-label { color: var(--gold); }

/* Steps list */
.steps {
  list-style: none;
  margin: 32px 0;
}

.steps li {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.step-content p {
  margin-bottom: 0;
  font-size: 15px;
}

/* Condition list */
.condition-list {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  margin: 24px 0 32px;
}

.condition-list li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  break-inside: avoid;
}

.condition-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==================== PROBLEMS PAGE ==================== */
.problems-list {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.problems-list .problem-item {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--cream);
  line-height: 1.3;
}

.problems-closing {
  margin-top: 60px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ==================== ABOUT PAGE ==================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 250px;
  height: 300px;
  border-radius: 160px 160px 12px 12px;
  object-fit: cover;
  object-position: center 20%;
  margin: 0 auto 28px;
  border: 2px solid rgba(196,163,90,0.2);
}

.team-member h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.team-member p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}

/* ==================== BUYERS PAGE ==================== */
.buyer-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.buyer-type {
  background: var(--charcoal-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px 32px;
}

.buyer-type h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 16px;
}

.buyer-type p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ==================== STORY PAGE ==================== */
.story-content {
  max-width: 700px;
  margin: 0 auto;
}

.story-content p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.story-content .highlight {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  margin: 48px 0;
  line-height: 1.5;
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  nav { padding: 16px 40px; }
  .hero h1 { font-size: 48px; }
  .hero-overlay-text { font-size: 120px; }
  .path-cards { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .adam-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .adam-photo { margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; }
  .buyer-types { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  section, .content-section, .intro, .paths, .before-after,
  .adam-section, .cta-section, .verse, .page-hero { padding-left: 40px; padding-right: 40px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-center { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  nav { padding: 16px 24px; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .hero { min-height: 90vh; }
  .hero h1 { font-size: 36px; }
  .hero-overlay-text { display: none; }
  .hero-content { padding: 0 20px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; padding: 6px 14px; }
  .hero-sub { font-size: 16px; }
  .hero-buttons { flex-direction: column; }

  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .mosaic-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }

  .intro h2 { font-size: 32px; }
  .section-title { font-size: 32px; }
  .page-hero h1 { font-size: 38px; }

  .adam-quote { font-size: 26px; }
  .adam-photo { width: 220px; height: 280px; }

  .cta-phone-large { font-size: 36px; }
  .form-row { flex-direction: column; }
  .form-container { padding: 24px; }

  section, .content-section, .intro, .paths, .before-after,
  .adam-section, .cta-section, .verse, .page-hero { padding-left: 24px; padding-right: 24px; }

  .condition-list { columns: 1; }
  .problems-list .problem-item { font-size: 22px; }
}
