/* ===================================================
   Kim Fisher — Design System & Global Styles
   Matched to agelessbykim.com design language
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors — matched to agelessbykim.com */
  --brand-dark: #022C22;
  --brand-green: #022C22;
  --brand-gold: #D4AF37;
  --brand-gold-hover: #C19B2E;
  --brand-cream: #FAF9F6;
  --stone-100: #F5F5F4;
  --stone-200: #E7E5E4;
  --stone-400: #A8A29E;
  --stone-600: #57534E;
  --stone-800: #1C1917;

  /* Spacing */
  --section-padding: 4rem 1.5rem;
  --section-padding-mobile: 2.5rem 1.25rem;
  --max-width: 1152px;
  --max-width-narrow: 768px;

  /* Transitions */
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
}

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--stone-800);
  background-color: var(--brand-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--stone-800);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--stone-600);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--brand-gold); }
.text-green { color: var(--brand-dark); }

.section {
  padding: var(--section-padding);
}

.section-cream {
  background-color: var(--brand-cream);
}

.section-stone {
  background-color: var(--stone-100);
}

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

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: white;
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

/* ---------- Buttons (pill-shaped like agelessbykim.com) ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9999px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
}

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

.btn-gold:hover {
  background-color: var(--brand-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

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

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-dark {
  background-color: transparent;
  border: 1.5px solid var(--stone-200);
  color: var(--stone-800);
}

.btn-outline-dark:hover {
  border-color: var(--brand-gold);
  color: var(--brand-dark);
}

.btn-lg {
  padding: 0.875rem 2.5rem;
  font-size: 0.95rem;
}

/* ---------- Navigation (transparent overlay like agelessbykim.com) ---------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  background: transparent;
}

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

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.3px;
}

.nav-brand .accent {
  color: var(--brand-gold);
  font-style: italic;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Lato', sans-serif;
}

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

.nav-cta {
  background-color: var(--brand-gold) !important;
  color: var(--brand-dark) !important;
  padding: 0.65rem 1.75rem !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.nav-cta:hover {
  background-color: var(--brand-gold-hover) !important;
  transform: translateY(-1px);
}

/* Sticky nav for inner pages */
.nav-sticky {
  position: sticky;
  top: 0;
  background: var(--brand-dark);
  box-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: var(--transition);
}

/* ---------- Hero Section (full-height like agelessbykim.com) ---------- */
.hero {
  background-color: var(--brand-dark);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(212,175,55,0.06) 0%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Split Hero (homepage with photo) */
.hero.hero-split {
  text-align: left;
  padding: 0;
  display: block;
}

.hero-split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 100vh;
  gap: 4rem;
  padding: 6rem 3rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 85vh;
  width: auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  object-fit: contain;
}

.hero-split .subtitle {
  margin-left: 0;
}

.hero-split .hero-buttons {
  justify-content: flex-start;
}

.hero-split .scroll-indicator {
  left: 50%;
  transform: translateX(-50%);
}

.hero .pre-heading {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--brand-gold);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero h1 {
  color: white;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

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

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}

.hero .scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  margin: 0.75rem auto 0;
}

/* ---------- Emotional Hook Section (like "Do you feel invisible?") ---------- */
.emotional-hook {
  padding: 5rem 2rem 1rem !important;
  background-color: var(--brand-cream);
  text-align: center;
}

.emotional-hook h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.emotional-hook h2 em {
  font-style: italic;
}

.emotional-hook p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  color: var(--stone-400);
  line-height: 1.9;
}

/* ---------- Split Content Section (text left + content right) ---------- */
.split-section {
  padding: 1rem 1.5rem 5rem !important;
  background-color: var(--brand-cream);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.split-text {
  border-left: 2px solid var(--stone-200);
  padding-left: 2rem;
}

.split-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--stone-600);
}

.split-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.split-card h3 {
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

/* Numbered list like agelessbykim.com */
.numbered-list {
  list-style: none;
  padding: 0;
}

.numbered-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stone-200);
  font-size: 1rem;
  color: var(--stone-800);
}

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

.numbered-list .num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brand-gold);
  font-weight: 500;
  flex-shrink: 0;
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brand-gold);
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-200);
  line-height: 1.5;
}

/* ---------- Credential Badges (like agelessbykim.com stats) ---------- */
.stats-row {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--brand-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--stone-400);
  margin-top: 0.5rem;
  font-weight: 400;
}

/* ---------- Feature Cards (3-column like agelessbykim.com) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  padding: 3rem 2rem;
  text-align: left;
  border-right: 1px solid var(--stone-200);
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--brand-dark);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--stone-800);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--stone-400);
  line-height: 1.7;
}

/* ---------- Testimonials (dark bg, glass cards like agelessbykim.com) ---------- */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--brand-dark);
  overflow: hidden;
}

.testimonials h2 {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C\201C';
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--brand-gold);
  opacity: 0.3;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.testimonial-detail {
  font-size: 0.8rem;
  color: var(--brand-gold);
}

/* ---------- Paths / Two Columns ---------- */
.paths {
  padding: var(--section-padding);
  background: var(--brand-cream);
}

.paths h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.path-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.path-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.path-card h3 {
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.path-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ---------- Lead Magnets ---------- */
.lead-magnets {
  padding: var(--section-padding);
  background: var(--brand-dark);
}

.lead-magnets h2 {
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.lead-magnets > .container > p {
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 3rem;
}

.magnets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.magnet-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.magnet-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.magnet-card h3 {
  color: white;
  margin-bottom: 1rem;
}

.magnet-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.magnet-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

/* ---------- Blog Preview ---------- */
.blog-preview {
  padding: var(--section-padding);
  background: var(--brand-cream);
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  background-color: var(--stone-100);
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-category {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.blog-card-link:hover {
  color: var(--brand-gold);
}

/* ---------- Meet Kim / About Section ---------- */
.meet-kim {
  padding: var(--section-padding);
  background: var(--stone-100);
}

.meet-kim-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.meet-kim-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--brand-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}

.meet-kim-text h2 {
  margin-bottom: 1.5rem;
}

.meet-kim-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.meet-kim-text .kim-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brand-gold);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ---------- Newsletter ---------- */
.newsletter {
  padding: 5rem 2rem;
  background: var(--brand-dark);
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand-gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-form button {
  padding: 0.875rem 1.75rem;
  background-color: var(--brand-gold);
  color: var(--brand-dark);
  border: none;
  border-radius: 9999px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: var(--brand-gold-hover);
}

/* ---------- Footer (like agelessbykim.com) ---------- */
.footer {
  background-color: var(--brand-dark);
  color: white;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.footer-brand .accent {
  color: var(--brand-gold);
  font-style: italic;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--stone-400);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--brand-gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--stone-400);
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--stone-400);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--brand-gold);
  color: var(--brand-dark);
  border-color: var(--brand-gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--stone-400);
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  background-color: var(--brand-dark);
  color: white;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---------- Programs / Value Ladder ---------- */
.value-ladder {
  padding: var(--section-padding);
  background: var(--brand-cream);
}

.value-ladder h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.program-cards {
  display: grid;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.program-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
  transition: var(--transition);
}

.program-card:hover {
  box-shadow: var(--shadow-md);
}

.program-card.featured {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0A4A3A 100%);
  color: white;
  border: none;
  position: relative;
}

.program-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background-color: var(--brand-gold);
  color: var(--brand-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-card.featured h3,
.program-card.featured p {
  color: white;
}

.program-card.featured p {
  color: rgba(255,255,255,0.8);
}

.program-meta {
  text-align: center;
}

.program-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.program-duration {
  font-size: 0.75rem;
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.program-details h3 {
  margin-bottom: 0.75rem;
}

.program-details p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.program-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.program-features li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  padding-left: 1.75rem;
  position: relative;
  color: inherit;
}

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

/* ---------- Store ---------- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.store-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.store-card-image {
  width: 100%;
  height: 250px;
  background-color: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-400);
  font-size: 0.85rem;
}

.store-card-content {
  padding: 1.5rem;
}

.store-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.store-card-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.store-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brand-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.store-featured {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  border: 1px solid rgba(212,175,55,0.2);
}

.store-featured-badge {
  display: inline-block;
  background-color: var(--brand-gold);
  color: var(--brand-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--stone-600);
  margin-bottom: 0.4rem;
  margin-top: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--stone-200);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: var(--brand-gold);
}

.contact-info a:hover {
  color: var(--brand-gold-hover);
}

/* ---------- Blog Listing ---------- */
.blog-listing {
  padding: var(--section-padding);
  background: var(--brand-cream);
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Blog Post ---------- */
.blog-post {
  padding: 8rem 2rem 4rem;
  background: var(--brand-cream);
}

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-content h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.blog-post-meta {
  font-size: 0.85rem;
  color: var(--stone-400);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone-200);
}

.blog-post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.blog-post-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--stone-600);
}

.blog-post-content blockquote {
  border-left: 3px solid var(--brand-gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background-color: var(--stone-100);
  border-radius: 0 8px 8px 0;
}

.blog-post-content blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

/* ---------- Resources ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.resource-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  margin-bottom: 0.75rem;
}

.resource-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ---------- About Page ---------- */
.about-story {
  padding: var(--section-padding);
  background: var(--brand-cream);
}

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

.about-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--stone-600);
}

.about-content .highlight-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--brand-dark);
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  margin: 3rem 0;
  line-height: 1.5;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.credential-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
}

.credential-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--stone-400);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credential-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--brand-gold);
}

/* ---------- Both/And Section ---------- */
.bothand {
  padding: 5rem 2rem;
  text-align: center;
  background-color: var(--brand-cream);
}

.bothand-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--brand-dark);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.bothand-pairs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bothand-pair {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--brand-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 968px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .meet-kim-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .meet-kim-image { max-width: 400px; margin: 0 auto; }
  .program-card { grid-template-columns: 1fr; text-align: center; }
  .store-featured { grid-template-columns: 1fr; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--stone-200); }
  .feature-card:last-child { border-bottom: none; }
  .hero-split-inner { grid-template-columns: 1fr !important; text-align: center; padding: 7rem 1.5rem 4rem; }
  .hero-text { max-width: 100%; }
  .hero-split .hero-buttons { justify-content: center; }
  .hero-image img { max-width: 320px; max-height: 60vh; }
  .hero-split .subtitle { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: var(--section-padding-mobile); }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    gap: 2rem;
    z-index: 1000;
    text-align: center;
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .paths-grid { grid-template-columns: 1fr; }
  .magnets-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero { min-height: 90vh; padding: 5rem 1.25rem; }
  .hero h1 { letter-spacing: -1.5px; }
  .newsletter-form { flex-direction: column; }
  .page-header { padding: 6rem 1.25rem 3rem; }
}
