/* ============================================
   1Dream Coaching — Brand Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Palette */
  --plum:        #6A2C70;
  --plum-light:  #8A4C90;
  --plum-dark:   #4E1A54;
  --mauve:       #D8A7B1;
  --mauve-light: #E8C5CC;
  --off-white:   #F5F2EF;
  --off-white-warm: #FAF8F6;
  --rose-gold:   #E4C2A2;
  --wine:        #7B3B3B;
  --wine-dark:   #5E2D2D;

  /* Neutrals */
  --text-primary:   #2D2D2D;
  --text-secondary: #555555;
  --text-light:     #777777;
  --white:          #FFFFFF;

  /* Typography */
  --font-heading: 'Inter', 'Poppins', 'Calibri', sans-serif;
  --font-accent:  'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Arial', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-width: 1100px;
  --container-pad: 0 24px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--off-white);
}

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

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

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

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--plum);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--plum);
}

.subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 12px;
}

/* ── Rose-Gold Rule ── */
.rule {
  border: none;
  height: 1.5px;
  background: var(--rose-gold);
  max-width: 80px;
  margin: 32px 0;
}

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

.rule--wide {
  max-width: 160px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: 7px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  letter-spacing: 0.02em;
  text-align: center;
}

.btn--primary {
  background: var(--plum);
  color: var(--off-white);
  border-color: var(--plum);
}

.btn--primary:hover {
  background: var(--plum-light);
  border-color: var(--plum-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106, 44, 112, 0.2);
}

.btn--secondary {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}

.btn--secondary:hover {
  background: var(--plum);
  color: var(--off-white);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--wine);
  color: var(--off-white);
  border-color: var(--wine);
}

.btn--accent:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 59, 59, 0.25);
}

/* ── Header / Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 242, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--rose-gold);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.01em;
}

.logo span {
  font-weight: 400;
  color: var(--mauve);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--plum);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--plum);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.85rem !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  background: var(--plum);
  color: var(--off-white) !important;
}

.nav-cta:hover {
  background: var(--plum-light) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

/* ── Hero Section ── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--off-white-warm) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 167, 177, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  margin-bottom: 28px;
}

.hero-text .subtitle {
  margin-bottom: 16px;
}

.hero-statement {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--plum);
  max-width: 700px;
  margin-bottom: 32px;
  line-height: 1.7;
  font-style: italic;
}

.hero .btn {
  margin-top: 8px;
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 60px rgba(106, 44, 112, 0.12);
  border: 3px solid rgba(228, 194, 162, 0.4);
}

/* ── Sections ── */
.section {
  padding: var(--section-pad);
}

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

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

.section--mauve {
  background: linear-gradient(135deg, rgba(216, 167, 177, 0.12) 0%, rgba(228, 194, 162, 0.08) 100%);
}

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

.section--plum h2,
.section--plum h3,
.section--plum h4 {
  color: var(--off-white);
}

.section--plum .subtitle {
  color: rgba(245, 242, 239, 0.8);
}

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

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

.section-header .rule {
  margin: 20px auto;
}

/* ── Card Grids ── */
.card-grid {
  display: grid;
  gap: 32px;
}

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

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(228, 194, 162, 0.3);
  transition: all 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(106, 44, 112, 0.08);
  border-color: var(--mauve);
}

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

.card p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.card .rule {
  margin: 16px 0;
}

/* ── Pain Points ── */
.pain-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(228, 194, 162, 0.3);
}

.pain-item:last-child {
  border-bottom: none;
}

.pain-item h4 {
  color: var(--plum);
  margin-bottom: 6px;
}

.pain-item p {
  color: var(--text-secondary);
}

/* ── Credibility Bar ── */
.credibility {
  text-align: center;
  padding: 72px 0;
  background: var(--white);
  border-top: 1.5px solid var(--rose-gold);
  border-bottom: 1.5px solid var(--rose-gold);
}

.credibility h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.credibility .tagline {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.credibility-details {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.client-logos {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ── Testimonial Cards ── */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  border: 1px solid rgba(228, 194, 162, 0.3);
  transition: all 0.4s var(--ease);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(106, 44, 112, 0.06);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--mauve-light);
  position: absolute;
  top: 20px;
  left: 32px;
  line-height: 1;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--plum);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-body {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-attribution {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
}

.testimonial-attribution span {
  font-weight: 400;
  color: var(--text-light);
}

/* ── LEAD Framework ── */
.lead-stage {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(228, 194, 162, 0.3);
  align-items: start;
}

.lead-stage:last-child {
  border-bottom: none;
}

.lead-letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
}

.lead-content h3 {
  margin-bottom: 4px;
}

.lead-content h4 {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--mauve);
  font-weight: 500;
  margin-bottom: 16px;
}

.lead-content p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.lead-content .outcome {
  font-weight: 500;
  color: var(--plum);
  font-size: 0.95rem;
}

/* ── About Timeline ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro-text h1 {
  margin-bottom: 12px;
}

.about-intro-text .lead {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--plum);
  font-style: italic;
  margin-bottom: 24px;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 60px rgba(106, 44, 112, 0.1);
  border: 3px solid rgba(228, 194, 162, 0.4);
}

.journey-photo {
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(106, 44, 112, 0.08);
  border: 2px solid rgba(228, 194, 162, 0.3);
  margin: 0 auto;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

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

.philosophy-block {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--plum);
  text-align: center;
  line-height: 1.8;
  padding: 48px 32px;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* ── Two-Column Section ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Contact Page ── */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 320px));
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.contact-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(228, 194, 162, 0.3);
  transition: all 0.4s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(106, 44, 112, 0.06);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--plum);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid rgba(228, 194, 162, 0.5);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(106, 44, 112, 0.08);
}

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

.form-group .radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.form-group .radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.form-group .radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--plum);
}

.form-section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--plum);
  margin-top: 40px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--rose-gold);
}

/* ── Confirmation State ── */
.confirmation {
  text-align: center;
  padding: 80px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.confirmation h2 {
  margin-bottom: 16px;
}

.confirmation p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.confirmation .signature {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--plum);
  margin-top: 32px;
  font-style: italic;
}

/* ── Footer ── */
.site-footer {
  background: var(--plum-dark);
  color: rgba(245, 242, 239, 0.6);
  padding: 56px 0 32px;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .logo {
  color: var(--off-white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

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

.footer-nav a {
  color: rgba(245, 242, 239, 0.6);
  font-size: 0.9rem;
  line-height: 2;
}

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

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 24px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(245, 242, 239, 0.1);
  text-align: center;
  font-size: 0.82rem;
}

/* ── Scroll Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
}

.cta-section .note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1.5px solid var(--rose-gold);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-photo {
    order: -1;
  }

  .hero-img {
    max-width: 280px;
  }

  .about-intro,
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .lead-stage {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .lead-letter {
    font-size: 2.4rem;
  }

  :root {
    --section-pad: 72px 0;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 130px 0 72px;
  }

  .header-inner {
    height: 60px;
  }

  .nav-links {
    top: 60px;
  }

  :root {
    --section-pad: 56px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 36px 28px;
  }

  .card {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-640 { max-width: 640px; }
.max-w-780 { max-width: 780px; }
