/* ============================================
   THE GIFTED LEADER
   High-End / Old Money
   ============================================ */

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

:root {
  --cream: #FDFBF7;
  --cream-dark: #F5F1EA;
  --navy: #0C1F3F;
  --navy-mid: #162D54;
  --navy-soft: #1E3A5F;
  --gold: #B8975F;
  --gold-light: #CBAA72;
  --gold-faint: rgba(184, 151, 95, 0.08);
  --gold-border: rgba(184, 151, 95, 0.2);
  --text: #2A2A2A;
  --text-body: #4A4A4A;
  --text-soft: #8A8A8A;
  --text-faint: #B0B0B0;
  --border: #E8E3DA;
  --border-fine: #EDEAD4;
  --white: #FFFFFF;
  --radius: 2px;
  --transition: 0.3s ease;
  --max-width: 1060px;
  --nav-height: 88px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'EB Garamond', 'Georgia', serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--navy); }

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

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 4.8rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

.section-label {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title { margin-bottom: 20px; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 64px;
  line-height: 1.85;
  font-weight: 400;
}

/* --- Thin rule --- */
.thin-rule {
  width: 48px;
  height: 0.5px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  padding: 16px 44px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 0;
}
.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--cream);
}

.btn-outline {
  padding: 15px 44px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 0;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-sm { padding: 12px 28px; }

/* --- SVG Icons --- */
.icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.result-icon .icon { width: 20px; height: 20px; }
.feature-icon .icon { width: 20px; height: 20px; }
.contact-detail-icon .icon { width: 18px; height: 18px; }

/* --- Logo --- */
.nav-logo img { height: 48px; width: auto; }
.footer-logo img { height: 40px; width: auto; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  color: var(--text-soft);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 0.5px;
  background: var(--gold);
}
.nav-links a { position: relative; }

.nav-cta { margin-left: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 20px; height: 1px;
  background: var(--navy);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding-top: var(--nav-height);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 0.5px;
  background: var(--border);
}

.hero-content {
  max-width: 640px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  margin-bottom: 32px;
  font-weight: 300;
}
.hero h1 .highlight {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  font-style: italic;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 52px;
  max-width: 480px;
  line-height: 1.9;
}

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

/* --- Sections --- */
section { padding: 120px 0; }

.section-dark { background: var(--cream); }
.section-darker { background: var(--cream-dark); }

.section-navy {
  background: var(--navy);
  color: var(--cream);
}
.section-navy h2, .section-navy h3 { color: var(--cream); }
.section-navy .section-label { color: var(--gold); }
.section-navy .section-subtitle { color: rgba(255,255,255,0.5); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Result Cards --- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.result-card {
  background: var(--white);
  padding: 44px 28px;
  text-align: center;
  transition: all var(--transition);
}
.result-card:hover {
  background: var(--cream);
}

.result-icon {
  width: 48px; height: 48px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.result-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--border);
  transition: all var(--transition);
  background: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.feature-item:hover { padding-left: 8px; }

.feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; }

/* --- 12-Week Outline Table --- */
.outline-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
}

.outline-table thead {
  border-bottom: 1.5px solid var(--navy);
}

.outline-table th {
  padding: 16px 24px 16px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.outline-table td {
  padding: 18px 24px 18px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-body);
  vertical-align: top;
}

.outline-table tr:last-child td { border-bottom: none; }

.outline-table tbody tr {
  transition: background var(--transition);
}
.outline-table tbody tr:hover { background: var(--gold-faint); }

.outline-table .week-num {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 88px 40px;
  background: var(--navy);
  position: relative;
}

.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .section-label { color: var(--gold); }
.cta-banner h2 { color: var(--cream); margin-bottom: 20px; font-weight: 300; }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}
.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.cta-banner .btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* --- Hero Split Layout --- */
.hero-split .container { max-width: 1200px; }

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* --- Full-width Image Break --- */
.image-break {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

/* --- Split Section (image + content side by side) --- */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-dark);
}

.split-text {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 440px;
}

.split-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split-feature {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
}
.split-feature:last-child { border-bottom: none; }
.split-feature .icon { flex-shrink: 0; margin-top: 2px; }
.split-feature h4 { margin-bottom: 2px; }
.split-feature p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }

/* --- CTA with Background Image --- */
.cta-image-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-image-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12, 31, 63, 0.82);
  z-index: 1;
}

/* --- About Page --- */
.about-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.about-content h2 { margin-bottom: 28px; }
.about-content p {
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.9;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--border);
  color: var(--text);
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  transition: border-color var(--transition);
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--navy);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  border: 0.5px solid var(--border);
  padding: 16px;
  margin-top: 4px;
}
.form-group textarea:focus {
  border-color: var(--navy);
}

.contact-info-card {
  background: transparent;
  border: none;
  padding: 0;
}

.contact-info-card h3 { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
}

.contact-detail h4 {
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.contact-detail p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  padding: 56px 0 40px;
  border-top: 0.5px solid var(--border);
  background: var(--cream);
}

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--navy);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.footer-links a:hover { color: var(--navy); }

.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 0.5px solid var(--border);
}

/* --- Pricing Card --- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 0.5px solid var(--border);
  padding: 60px 48px;
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 24px;
}

.pricing-amount {
  font-size: 3.6rem;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  margin: 28px 0 8px;
}

.pricing-period {
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 44px;
}
.pricing-features li {
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  padding: 0;
}

.stats-row > div {
  padding: 48px 24px;
  border-right: 0.5px solid var(--border);
}
.stats-row > div:last-child { border-right: none; }

.stat-number {
  font-size: 3.2rem;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
}

.stat-label {
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* --- Testimonial --- */
.testimonial-card {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 32px;
}

.testimonial-quote::before {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  display: none;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.testimonial-role {
  font-family: 'Inter', sans-serif;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 0.5px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-content { padding: 40px 0; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .hero-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image img { height: 360px; }
  .image-break { height: 200px; }
  .section-split { grid-template-columns: 1fr; }
  .split-image { height: 360px; }
  .split-content { padding: 48px 24px; }
  .cta-image-section { padding: 80px 0; }

  section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .about-hero { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-row > div {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
    padding: 32px 24px;
  }
  .stats-row > div:last-child { border-bottom: none; }

  .features-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }

  .pricing-card { padding: 44px 28px; }
  .pricing-amount { font-size: 2.8rem; }

  .cta-banner { padding: 64px 24px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; gap: 0; }
  h1 { font-size: 2.4rem; }
}
