/* ============================================
   UNWOVEN - Landing Page Styles
   divorce.nouriam.com
   ============================================ */

/* CSS Variables - Divorce palette: soft terracotta, rose, warm neutrals */
:root {
  /* Primary Colors */
  --terracotta: #C2785C;
  --terracotta-dark: #A65D42;
  --terracotta-light: #D4967E;
  --rose: #C49B9B;
  --rose-dark: #A67B7B;
  --rose-light: #E8D0D0;
  --rose-pale: #F5EAEA;

  /* Neutrals */
  --warm-cream: #FDF8F5;
  --warm-beige: #F5EDE6;
  --warm-tan: #E8DDD3;
  --charcoal: #3D3632;
  --text-primary: #4A4340;
  --text-secondary: #6B625D;
  --text-light: #9A918B;

  /* Golden accent (for kintsugi theme) */
  --gold: #C9A962;
  --gold-light: #E8D9A8;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--warm-cream);
}

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

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

a:hover {
  color: var(--terracotta-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--rose-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(194, 120, 92, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 120, 92, 0.4);
  color: white;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--warm-tan);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

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

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--warm-tan);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(180deg, var(--rose-pale) 0%, var(--warm-cream) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--rose-dark);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Social Proof */
.social-proof {
  padding: 4rem 0;
  background: var(--charcoal);
  color: white;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--rose-light);
  max-width: 180px;
}

/* Problem Section */
.problem-section {
  padding: var(--section-padding) 0;
  background: var(--warm-cream);
}

.problem-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.problem-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.problem-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* About Section */
.about-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--warm-beige) 0%, var(--warm-cream) 100%);
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-style: italic;
}

.about-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

/* Chapters Section */
.chapters-section {
  padding: var(--section-padding) 0;
  background: var(--warm-cream);
}

.chapters-section h2 {
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.chapter-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.chapter-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta);
  background: var(--rose-pale);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.chapter-card h3 {
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.chapter-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Included Section */
.included-section {
  padding: var(--section-padding) 0;
  background: var(--rose-pale);
}

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

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.included-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--terracotta);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.included-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.included-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Audio Section */
.audio-section {
  padding: var(--section-padding) 0;
  background: var(--warm-cream);
}

.audio-section h2 {
  text-align: center;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.audio-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
}

.audio-preview-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--terracotta);
  background: var(--rose-pale);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.audio-card h4 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  padding-right: 4rem;
}

.audio-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.audio-card audio {
  width: 100%;
  height: 40px;
}

/* Testimonials */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--warm-beige) 0%, var(--warm-cream) 100%);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
}

.author-info {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding) 0;
  background: var(--warm-cream);
}

.pricing-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-intro {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pricing-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 2px solid var(--rose-light);
}

.pricing-includes {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-item svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
}

.price {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Nouriam Section */
.nouriam-section {
  padding: var(--section-padding) 0;
  background: var(--rose-pale);
  text-align: center;
}

.nouriam-section p {
  max-width: 700px;
  margin: 0 auto 1rem;
  color: var(--text-secondary);
}

.nouriam-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--terracotta);
}

/* Crisis Section */
.crisis-section {
  padding: var(--section-padding) 0;
  background: var(--warm-beige);
  text-align: center;
}

.crisis-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}

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

.crisis-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
}

.crisis-item h4 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.crisis-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.crisis-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.crisis-reminder {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--rose-dark);
}

/* Footer */
.footer {
  background: var(--charcoal);
  padding: 3rem 0 1.5rem;
  color: var(--rose-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--rose-light);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container,
  .about-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-list {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto;
  }

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

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

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

  .proof-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat {
    flex: 0 0 45%;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }

  .hero {
    padding: 8rem 0 4rem;
  }

  .chapters-grid,
  .included-grid,
  .audio-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .proof-stats {
    gap: 1.5rem;
  }

  .stat {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 4rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }

  .hero {
    padding: 7rem 0 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .price {
    font-size: 2.5rem;
  }
}
