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

:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --navy-dark: #111927;
  --gold: #c9913d;
  --gold-light: #d4a55a;
  --gold-dark: #a87730;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-text: #6b7280;
  --text-dark: #1f2937;
  --text-body: #374151;
  --danger: #dc2626;
  --success: #059669;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 700;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

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

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

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

/* ===== HEADER & NAV ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

nav a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-left: 8px;
}

nav a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 145, 61, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero .subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 145, 61, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

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

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

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

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

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

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto;
}

.section-header .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: var(--gray-text);
  font-size: 15px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: 44px;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== STORY / CONTENT PAGES ===== */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 32px;
  margin: 48px 0 16px;
}

.prose h3 {
  font-size: 24px;
  margin: 36px 0 12px;
}

.prose p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--gray-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
}

.prose .callout {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
}

.prose .callout h3 {
  color: var(--gold);
  margin-top: 0;
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.timeline-item {
  margin-bottom: 32px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
}

.timeline-item h4 {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: 18px;
  margin: 4px 0 8px;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-mid);
}

.stat-card .stat-number {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 8px;
  display: block;
}

/* ===== FORMS ===== */
.form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-mid);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 145, 61, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-note {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 4px;
}

/* ===== MEMBERSHIP TIERS ===== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.tier-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 2px solid var(--gray-mid);
  text-align: center;
  transition: all 0.2s;
  position: relative;
}

.tier-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 145, 61, 0.2);
}

.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tier-name {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.tier-price {
  font-size: 42px;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.tier-price span {
  font-size: 16px;
  color: var(--gray-text);
  font-family: -apple-system, sans-serif;
  font-weight: 400;
}

.tier-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.tier-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-light);
  padding-left: 24px;
  position: relative;
}

.tier-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ===== PILLARS ===== */
.pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.pillar-number {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.pillar h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pillar p {
  color: var(--gray-text);
  font-size: 16px;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
}

.success-message h2 {
  color: var(--success);
  font-size: 28px;
  margin-bottom: 12px;
}

.success-message p {
  color: var(--text-body);
  font-size: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 12px 14px;
  }

  nav a.nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subtitle {
    font-size: 17px;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-stat .number {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 28px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .pillar-number {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .form-container {
    padding: 24px;
  }

  .tier-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

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