/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1a2332;
  --navy-deep: #0f1822;
  --navy-light: #243347;
  --cream: #faf8f5;
  --cream-dark: #f0ece6;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a8872e;
  --text: #2c3e50;
  --text-light: #5a6a7a;
  --white: #ffffff;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* === Nav === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.97);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

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

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8125rem;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

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

/* === Hero === */
.hero {
  padding: 180px 0 120px;
  background: var(--cream);
}

.hero-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-sub strong {
  color: var(--navy);
  font-weight: 600;
}

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

/* === Stats Bar === */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(250, 248, 245, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--white);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 600px;
  margin-top: -40px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.section-note {
  margin-top: 40px;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
  max-width: 600px;
}

/* === Cards (What You Get) === */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 10px;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === Example Quotes (Who This Is For) === */
.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.example-card {
  padding: 32px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.example-card p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

/* === Timeline (Process) === */
.timeline {
  max-width: 680px;
}

.timeline-step {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}

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

.timeline-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--cream-dark);
}

.timeline-step:last-child::before { display: none; }

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  padding-top: 2px;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

.step-content p strong {
  color: var(--navy);
}

/* === Why Grid === */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 40px 36px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.3s;
}

.why-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === Pricing === */
.pricing-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pricing-text .section-title {
  margin-bottom: 24px;
}

.pricing-philosophy {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
}

.pricing-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 32px;
}

.pricing-dollar {
  font-size: 1.75rem;
  vertical-align: top;
  position: relative;
  top: 8px;
  margin-right: 2px;
}

.pricing-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-includes li {
  font-size: 0.9375rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-guarantee {
  background: var(--cream);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-guarantee strong {
  color: var(--navy);
}

.pricing-cta {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* === Access Grid === */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.access-item {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.access-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.access-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}

.access-item p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === About === */
.about-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

.about-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.about-photo img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  filter: grayscale(10%);
}

.about-intro h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-intro p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
}

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

.credential {
  padding: 28px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.04);
}

.credential h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.credential p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === CTA / Form Section === */
.cta-section {
  background: var(--navy);
}

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--cream);
  margin-bottom: 12px;
  text-align: center;
}

.cta-sub {
  color: rgba(250, 248, 245, 0.65);
  margin-bottom: 48px;
  font-size: 1.0625rem;
  text-align: center;
}

/* === Form === */
.intake-form {
  max-width: 640px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(250, 248, 245, 0.8);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(250, 248, 245, 0.08);
  border: 1px solid rgba(250, 248, 245, 0.15);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 248, 245, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250, 248, 245, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.intake-form .btn-gold {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.intake-form .btn-gold:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(250, 248, 245, 0.35);
  font-style: italic;
  margin-top: 24px;
}

/* === Form Success === */
.form-success {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0;
}

.success-icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.form-success > p {
  color: rgba(250, 248, 245, 0.65);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* === Footer === */
.footer {
  background: var(--navy-deep);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .logo {
  color: rgba(250, 248, 245, 0.6);
  font-size: 1.1rem;
}

.footer .logo span {
  color: var(--gold-dark);
  opacity: 0.6;
}

.footer p {
  font-size: 0.8125rem;
  color: rgba(250, 248, 245, 0.3);
}

/* === Responsive === */

/* Tablet */
@media (max-width: 900px) {
  .stats-inner {
    flex-wrap: wrap;
    gap: 32px 48px;
  }

  .pricing-container { grid-template-columns: 1fr; gap: 32px; }

  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Small tablet / large phone */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s;
    box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 101; }

  .hero { padding: 140px 0 80px; }

  .stat-num { font-size: 1.75rem; }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .examples {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grid-2x2 { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 28px; }

  .about-header {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .about-intro p { max-width: none; }

  .credentials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  /* Prevent iOS auto-zoom on input focus */
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section { padding: 72px 0; }
  .section-title { margin-bottom: 40px; }
  .section-lead { margin-top: -24px; }
}

/* Phone */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  .hero { padding: 120px 0 64px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .stats-bar { padding: 36px 0; }
  .stats-inner { gap: 24px 36px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.6875rem; }

  .timeline-step { gap: 20px; }

  .pricing-amount { font-size: 2.75rem; }
  .pricing-dollar { font-size: 1.35rem; top: 6px; }

  .example-card { padding: 24px; }
  .access-item { padding: 28px 24px; }
  .credential { padding: 24px 20px; }
  .why-card { padding: 28px 24px; }
  .card { padding: 32px 24px; }

  .section { padding: 56px 0; }
}
