/* ===== VARIABLES ===== */
:root {
  --warm-beige: #F7F4EF;
  --warm-beige-alt: #EDE9E2;
  --cream: #FBF8F3;
  --deep-blue: #2F5D63;
  --deep-blue-light: #6F8F97;
  --orange: #E2B874;
  --orange-hover: #D4A862;
  --sage: #8FAFA6;
  --sage-light: #B3CCC5;
  --blue-icon: #6F8F97;
  --text-dark: #2B2B2B;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --border-light: #D8D1C4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--warm-beige);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--deep-blue);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 184, 116, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
  letter-spacing: 0.5px;
}

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 0 24px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-blue);
}

.nav-logo span {
  color: var(--orange);
}

.nav-logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-top: -4px;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-medium);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--deep-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  margin-top: 72px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 50%, var(--warm-beige-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 135, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

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

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-subtitle-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-bottom: 24px;
  font-family: 'Playfair Display', Georgia, serif;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

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

.hero-image {
  flex: 0 0 380px;
  position: relative;
  z-index: 1;
}

.hero-image-placeholder {
  width: 380px;
  height: 440px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(27, 58, 75, 0.15);
}

.hero-image img {
  width: 380px;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(27, 58, 75, 0.15);
}

/* ===== SERVICE CARDS ===== */
.services-overview {
  padding: 80px 0;
  background-color: var(--white);
}

.services-overview h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--warm-beige);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--sage-light), var(--blue-icon));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-card-body p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card-body .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ===== HOW WE CAN HELP ===== */
.how-help {
  padding: 80px 0;
  background-color: var(--warm-beige);
}

.how-help h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.help-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.help-item:hover {
  transform: translateY(-4px);
}

.help-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.help-icon.blue {
  background-color: rgba(91, 143, 168, 0.12);
  color: var(--blue-icon);
}

.help-icon.sage {
  background-color: rgba(122, 158, 126, 0.12);
  color: var(--sage);
}

.help-icon.orange {
  background-color: rgba(226, 184, 116, 0.15);
  color: var(--orange);
}

.help-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.help-item p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ===== OUR APPROACH ===== */
.our-approach {
  padding: 80px 0;
  background-color: var(--warm-beige);
}

.our-approach h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
}

.our-approach .approach-intro {
  text-align: left;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.approach-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.approach-column {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border-light);
}

.approach-column h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.approach-column h3 .col-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-column h3 .col-icon.blue {
  background-color: rgba(91, 143, 168, 0.12);
  color: var(--blue-icon);
}

.approach-column h3 .col-icon.sage {
  background-color: rgba(122, 158, 126, 0.12);
  color: var(--sage);
}

.approach-column p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.approach-result {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.approach-result p {
  color: var(--deep-blue);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.approach-result .approach-note {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .approach-columns {
    grid-template-columns: 1fr;
  }
}

/* ===== COACHING BANNER ===== */
.coaching-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
  color: var(--white);
  text-align: center;
}

.coaching-banner h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 32px;
}

.banner-checks {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.banner-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.banner-check svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

.coaching-banner .btn-primary {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== MEET NICOLE ===== */
.meet-nicole {
  padding: 80px 0;
  background-color: var(--white);
}

.meet-nicole .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nicole-content {
  flex: 1;
}

.nicole-content h2 {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.nicole-content .subtitle {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.nicole-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.nicole-checks {
  list-style: none;
  margin: 24px 0;
}

.nicole-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-weight: 500;
}

.nicole-checks li svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
}

.nicole-image {
  flex: 0 0 350px;
}

.nicole-image-placeholder {
  width: 350px;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  box-shadow: 0 16px 48px rgba(27, 58, 75, 0.12);
}

.nicole-image img {
  width: 350px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(27, 58, 75, 0.12);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--warm-beige);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--deep-blue-light);
}

.cta-section p {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--deep-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

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

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand .nav-logo small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

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

.footer ul a {
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer ul 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;
  font-size: 0.85rem;
}

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

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  margin-top: 72px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige-alt) 100%);
  text-align: center;
}

.subpage-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.subpage-hero p {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== SUBPAGE CONTENT ===== */
.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background-color: var(--white);
}

.content-section:nth-child(odd) {
  background-color: var(--warm-beige);
}

.content-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-flex.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.content-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-image {
  flex: 0 0 400px;
}

.content-image-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--blue-icon) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

/* ===== CHALLENGE LIST ===== */
.challenge-list {
  list-style: none;
  margin: 20px 0;
}

.challenge-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-medium);
  line-height: 1.5;
}

.challenge-list li svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== APPROACH SECTION ===== */
.approach-section {
  padding: 80px 0;
  background-color: var(--white);
}

.approach-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.approach-card {
  padding: 36px 28px;
  background: var(--warm-beige);
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.approach-card .help-icon {
  margin-bottom: 20px;
}

.approach-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.approach-card p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== PRICING INFO ===== */
.pricing-info {
  padding: 60px 0;
  background-color: var(--warm-beige);
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-details {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-medium);
}

.pricing-details li svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border-light);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--blue-icon);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--deep-blue);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--orange);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-description {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex: none;
  }

  .hero-image-placeholder,
  .hero-image img {
    width: 300px;
    height: 350px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .banner-checks {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .meet-nicole .container {
    flex-direction: column;
    text-align: center;
  }

  .nicole-image {
    flex: none;
    order: -1;
  }

  .nicole-checks li {
    justify-content: center;
  }

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

  .content-flex,
  .content-flex.reverse {
    flex-direction: column;
  }

  .content-image {
    flex: none;
    width: 100%;
  }

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

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

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 16px;
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

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

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

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

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

  .subpage-hero h1 {
    font-size: 2rem;
  }
}
