/* ── Phase Family Coaching ── Global Stylesheet ── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Outfit:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --forest:      #3F6B5C;
  --forest-dark: #2E5245;
  --eucalyptus:  #5C9B85;
  --mist:        #97C4B2;
  --linen:       #F0EDE8;
  --blush:       #C9907A;
  --blush-dark:  #A8705B;
  --petal:       #E8C5B8;
  --white:       #FFFFFF;
  --text-dark:   #2C3E35;
  --text-body:   #4A5E56;
  --text-mid:    #5C6B64;
  --text-light:  #8A9E96;
  --max-w:       1120px;
  --gap:         2rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; font-weight: 300; color: var(--text-body); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 300; color: var(--forest); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-style: italic; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-style: italic; }
h3 { font-size: 1.15rem; font-style: italic; }
h4 { font-size: 1rem; font-weight: 400; }
p { font-size: 0.95rem; line-height: 1.75; }

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eucalyptus);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--linen { background: var(--linen); }
.section--forest { background: var(--forest); }
.section--petal { background: var(--petal); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--petal);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 50px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--forest); }
.nav__links a.active { border-bottom: 1.5px solid var(--forest); padding-bottom: 1px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--forest);
  transition: all 0.25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--petal);
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
}
.nav__mobile a {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.25rem 0;
  border-bottom: 0.5px solid var(--petal);
}
.nav__mobile.open { display: flex; }
}
.nav__links .btn--primary {
  color: var(--linen);
}
.nav__links .btn--primary,
.nav__links .btn--primary:hover {
  color: var(--linen);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: none;
}
.btn--primary {
  background: var(--forest);
  color: var(--linen);
  padding: 13px 32px;
}
.btn--primary:hover { background: var(--forest-dark); color: var(--linen); }
.btn--ghost {
  background: none;
  color: var(--blush);
  border: 1px solid var(--blush);
  padding: 12px 28px;
}
.btn--ghost:hover { background: var(--blush); color: var(--white); }
.btn--linen {
  background: var(--linen);
  color: var(--forest);
  padding: 13px 32px;
}
.btn--linen:hover { background: var(--petal); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--petal);
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-bar__item {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.04em;
}
.trust-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--eucalyptus);
  flex-shrink: 0;
}

/* ── NOTICE BANNER ── */
.notice {
  background: var(--petal);
  border-left: 3px solid var(--blush);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0;
}
.notice svg { flex-shrink: 0; margin-top: 2px; }
.notice p { font-size: 0.85rem; color: var(--forest-dark); line-height: 1.6; }
.notice strong { font-weight: 500; }

/* ── HERO ── */
.hero {
  background: var(--linen);
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.hero--left { text-align: left; padding: 4.5rem 0 4rem; }
.hero__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 520px;
  margin: 1rem auto 2.5rem;
}
.hero--left .hero__sub { margin-left: 0; }
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero--left .hero__ctas { justify-content: flex-start; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--petal);
  padding: 1.75rem 1.5rem;
}
.card--accent { border-left: 3px solid var(--eucalyptus); }
.card--blush-accent { border-left: 3px solid var(--blush); }
.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card__icon svg { color: var(--blush); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--text-mid); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--gap); }
.grid-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.6fr); gap: 4rem; align-items: center; }

/* ── SERVICE CARDS ── */
.svc-card { border: 1px solid var(--petal); display: flex; flex-direction: column; }
.svc-card--featured { border-color: var(--blush); }
.svc-card__head { padding: 1.75rem 1.5rem 1.25rem; border-bottom: 1px solid var(--petal); }
.svc-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.svc-tag--free { background: var(--eucalyptus); color: var(--white); }
.svc-tag--single { background: var(--forest); color: var(--linen); }
.svc-tag--bundle { background: var(--blush); color: var(--white); }
.svc-card__name { font-family: 'Fraunces', serif; font-size: 1.2rem; font-style: italic; color: var(--forest); margin-bottom: 0.2rem; }
.svc-card__price { font-size: 1.5rem; font-weight: 500; color: var(--forest); line-height: 1; }
.svc-card__price-sub { font-size: 0.78rem; font-weight: 300; color: var(--text-mid); margin-top: 3px; }
.savings-badge {
  display: inline-block;
  background: var(--petal);
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 8px;
}
.svc-card__body { padding: 1.25rem 1.5rem; flex: 1; }
.svc-card__desc { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin-bottom: 1rem; }
.check-list { display: flex; flex-direction: column; gap: 7px; }
.check-list li {
  font-size: 0.855rem;
  font-weight: 300;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C9B85' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-card__footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--petal); background: var(--linen); }
.svc-card__footer-note { font-size: 0.75rem; font-weight: 300; color: var(--text-mid); line-height: 1.55; }

/* ── SESSION STEPS ── */
.session-steps { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 1px; background: var(--petal); margin-top: 2.5rem; }
.session-step { background: var(--white); padding: 1.75rem 1rem; text-align: center; }
.session-step__icon { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 0.75rem; display: flex; align-items: center; justify-content: center; }
.session-step__time { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; color: var(--blush); margin-bottom: 0.35rem; text-transform: uppercase; }
.session-step__title { font-family: 'Fraunces', serif; font-size: 1rem; font-style: italic; color: var(--forest); margin-bottom: 0.35rem; line-height: 1.3; }
.session-step__body { font-size: 0.78rem; font-weight: 300; color: var(--text-mid); line-height: 1.55; }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.compare-table th { background: var(--forest); color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; padding: 0.9rem 1.25rem; text-align: left; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table th.col-bundle { background: var(--blush); }
.compare-table td { padding: 0.85rem 1.25rem; border-top: 1px solid var(--petal); font-size: 0.855rem; font-weight: 300; color: var(--text-body); vertical-align: middle; }
.compare-table td.feature { color: var(--forest); font-weight: 400; }
.compare-table td:not(.feature) { text-align: center; }
.compare-table td.bundle-col { background: #fdf8f5; }
.compare-table .check { color: var(--eucalyptus); font-size: 1.1rem; }
.compare-table .dash { color: var(--petal); }
.compare-table .price-cell { font-size: 1rem; font-weight: 500; color: var(--forest); }
.compare-table .price-cell.bundle { color: var(--blush); }
.compare-table .price-note { font-size: 0.72rem; font-weight: 300; color: var(--text-mid); display: block; margin-top: 2px; }

/* ── STEPS (how it works) ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1rem; font-style: italic;
  color: var(--forest); flex-shrink: 0; margin-top: 2px;
}
.step__content h4 { font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; color: var(--forest); margin-bottom: 0.2rem; }
.step__content p { font-size: 0.875rem; color: var(--text-mid); }

/* ── PULL QUOTE ── */
.pull-quote { border-left: 3px solid var(--blush); padding: 0.75rem 1.5rem; margin: 2rem 0; }
.pull-quote__text { font-family: 'Fraunces', serif; font-size: 1.25rem; font-style: italic; color: var(--forest); line-height: 1.45; }
.pull-quote__attr { font-size: 0.78rem; color: var(--eucalyptus); margin-top: 0.65rem; letter-spacing: 0.04em; }

/* ── BILLING CARDS ── */
.billing-card { border: 1px solid var(--petal); border-left: 3px solid var(--eucalyptus); padding: 1.5rem; }
.billing-card--blush { border-left-color: var(--blush); }
.billing-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.billing-card p { font-size: 0.875rem; color: var(--text-body); }

/* ── CTA BAND ── */
.cta-band { padding: 5rem 2rem; text-align: center; }
.cta-band h2 { color: var(--linen); margin-bottom: 0.75rem; }
.cta-band p { color: var(--petal); font-size: 0.95rem; max-width: 480px; margin: 0 auto 2rem; }
.cta-band .btn--linen { margin: 0 auto; }

/* ── ABOUT ── */
.about-photo {
  background: var(--petal);
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo__placeholder { text-align: center; color: var(--blush); opacity: 0.5; }
.cred-list { display: flex; flex-direction: column; gap: 10px; margin-top: 1.25rem; }
.cred-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-body); line-height: 1.5; }
.cred-item svg { flex-shrink: 0; margin-top: 1px; color: var(--eucalyptus); }

/* ── CONTACT FORM ── */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.75rem; font-weight: 500; color: var(--text-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--petal);
  border-radius: 2px;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--eucalyptus); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.75rem; color: var(--text-light); line-height: 1.55; margin-top: 0.5rem; }
.form-success { background: var(--linen); border: 1px solid var(--mist); padding: 1.25rem; font-size: 0.9rem; color: var(--forest); display: none; }

/* ── CONTACT INFO CARDS ── */
.contact-info-card { border: 1px solid var(--petal); padding: 1.25rem 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info-card svg { flex-shrink: 0; margin-top: 2px; color: var(--eucalyptus); }
.contact-info-card h4 { font-family: 'Fraunces', serif; font-style: italic; font-size: 0.95rem; color: var(--forest); margin-bottom: 0.25rem; }
.contact-info-card p { font-size: 0.855rem; color: var(--text-mid); }

/* ── FOOTER ── */
.footer { background: var(--linen); border-top: 1px solid var(--petal); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__logo { font-family: 'Fraunces', serif; font-size: 1.25rem; font-style: italic; color: var(--forest); }
.footer__tagline { font-size: 0.8rem; color: var(--eucalyptus); margin-top: 5px; line-height: 1.55; }
.footer__heading { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); margin-bottom: 1rem; }
.footer__link { display: block; font-size: 0.855rem; font-weight: 300; color: var(--text-mid); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer__link:hover { color: var(--forest); }
.footer__copy { border-top: 1px solid var(--petal); padding-top: 1.5rem; font-size: 0.72rem; color: var(--text-light); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-split { grid-template-columns: 1fr; gap: 2rem; }
  .session-steps { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .session-steps { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.75rem; }
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .name-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-grid > div:last-child {
    padding-top: 0;
  }
}
