/* ============================================================
   ROOTED CONNECTIONS COACHING — rococoaching.com
   Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --cream:      #f6f3ee;
  --taupe:      #e7dfd6;
  --gray-light: #dddddd;
  --teal-dark:  #45646a;
  --teal-mid:   #6d918e;
  --teal-light: #639796;
  --white:      #ffffff;
  --text-body:  #4a5a5c;
  --text-head:  #3a6673;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text-body); line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text-head); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.container--narrow{ max-width: 740px;  margin: 0 auto; padding: 0 2.5rem; }
.section          { padding: 5.5rem 0; }
.section--cream   { background: var(--cream); }
.section--white   { background: var(--white); }
.section--taupe   { background: var(--taupe); }
.section--teal    { background: var(--teal-dark); }
.section--teal h2,
.section--teal h3 { color: var(--white); }
.text-center      { text-align: center; }

/* --- Eyebrow labels --- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: block;
  margin-bottom: 0.7rem;
}

/* --- Divider --- */
.divider { width: 44px; height: 2px; background: var(--teal-light); margin: 1.4rem auto; }
.divider--left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); }
.btn--primary:hover { background: var(--teal-mid); border-color: var(--teal-mid); }
.btn--outline { background: transparent; color: var(--teal-dark); border-color: var(--teal-dark); }
.btn--outline:hover { background: var(--teal-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 2.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 18px rgba(0,0,0,0.08);
}
.nav__logo img { height: 46px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav__links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-dark); transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--teal-light); }
.nav__links .btn { padding: 0.6rem 1.4rem; font-size: 0.75rem; }
/* Fix specificity: nav link color must not override button text */
.nav__links a.btn--primary { color: var(--white); }
.nav__links a.btn--primary:hover { color: var(--white); }

/* Hero-page nav — starts transparent over photo */
body.hero-page .nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.9); }
body.hero-page .nav:not(.scrolled) .nav__logo img { filter: brightness(0) invert(1); opacity: 0.9; }
body.hero-page .nav:not(.scrolled) .btn--primary { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  /* PHOTO: silhouette with arms outstretched against bright sky */
  /* Replace placeholder with: background-image: url('images/hero-silhouette.jpg'); */
  background-image: linear-gradient(155deg, #6a9a97 0%, #45646a 45%, #2d4d52 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(25,50,55,0.3) 0%, rgba(25,50,55,0.6) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 2rem; max-width: 820px;
}
.hero__eyebrow {
  font-family: var(--font-sans); font-size: 0.78rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); display: block; margin-bottom: 1.3rem;
}
.hero__title {
  font-family: var(--font-serif); font-style: italic;
  color: var(--white); font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1; margin-bottom: 1.3rem; font-weight: 600;
}
.hero__tagline {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: rgba(255,255,255,0.88); margin-bottom: 2.5rem;
  font-weight: 400; letter-spacing: 0.04em;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero__scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGE HEADER (non-hero pages)
   ============================================================ */
.page-header {
  padding: 10rem 2.5rem 5rem;
  background: var(--teal-dark); text-align: center;
}
.page-header h1 { color: var(--white); font-style: italic; }
.page-header p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 1.2rem auto 0; font-size: 1.05rem; }

/* ============================================================
   PHOTO PLACEHOLDERS (replace with real images)
   ============================================================ */
.photo {
  width: 100%; overflow: hidden;
  background: var(--teal-mid);
  position: relative;
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--portrait  { aspect-ratio: 3/4; }
.photo--square    { aspect-ratio: 1/1; }
.photo--landscape { aspect-ratio: 16/9; }
.photo--tall      { aspect-ratio: 2/3; }
.photo__label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); text-align: center; padding: 1rem;
}

/* ============================================================
   HOME: INTRO STRIP
   ============================================================ */
.intro-strip {
  text-align: center; padding: 5rem 0;
}
.intro-strip h2 { margin-bottom: 1rem; }
.intro-strip p { font-size: 1.08rem; color: var(--text-body); max-width: 640px; margin: 0 auto 1.5rem; }

/* ============================================================
   HOME: FEATURE CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0;
}
.card {
  border-top: 3px solid var(--teal-light);
  background: var(--white);
  overflow: hidden;
  padding: 0;
}
.card + .card { border-left: 1px solid var(--gray-light); }
.card__img {
  width: 100%; height: 260px; overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.card__body { padding: 2.2rem 2.2rem; }
.card__body h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.card__body p { font-size: 0.95rem; }

/* ============================================================
   HOME: THRESHOLD PREVIEW (3 top, 2 centered below)
   ============================================================ */
.threshold-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.threshold-preview__item {
  flex: 0 1 calc(33.333% - 1.5rem);
  min-width: 200px;
  padding: 2rem 1.5rem;
  border-left: 3px solid var(--teal-light);
  background: var(--white);
}
.threshold-preview__num {
  font-family: var(--font-serif); font-size: 2.5rem;
  color: var(--teal-light); opacity: 0.5; line-height: 1; margin-bottom: 0.5rem;
}
.threshold-preview__item h4 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 700; }
.threshold-preview__item p { font-size: 0.88rem; }

/* ============================================================
   PULLQUOTE
   ============================================================ */
.pullquote { padding: 5rem 2.5rem; text-align: center; }
.pullquote blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--white);
  max-width: 760px; margin: 0 auto 1.5rem; line-height: 1.5;
}
.pullquote cite {
  font-family: var(--font-sans); font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-light);
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.two-col--wide { grid-template-columns: 1.1fr 0.9fr; }
.two-col__text h2 { margin-bottom: 1.2rem; }
.two-col__text p { font-size: 1.02rem; }

/* ============================================================
   ABOUT: CREDENTIALS STRIP
   ============================================================ */
.credentials {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}
.credential-tag {
  font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem; background: var(--taupe); color: var(--teal-dark);
  border-radius: 2px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview { max-width: 740px; margin: 0 auto; }
.blog-card {
  display: grid; grid-template-columns: 200px 1fr;
  border-top: 3px solid var(--teal-light);
  background: var(--white);
  overflow: hidden;
}
.blog-card__thumb {
  overflow: hidden;
}
.blog-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block;
}
.blog-card__content {
  padding: 2.5rem 2.5rem;
}
.blog-card__meta { margin-bottom: 0.75rem; }
.blog-card__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem; color: var(--text-head);
}
.blog-card__excerpt {
  font-size: 0.98rem; color: var(--text-body);
  margin-bottom: 1.5rem; line-height: 1.75;
}
.blog-card__link {
  font-family: var(--font-sans); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-light); transition: color var(--transition);
}
.blog-card__link:hover { color: var(--teal-dark); }

/* ============================================================
   COACHING vs THERAPY BOX
   ============================================================ */
.distinction-box {
  background: var(--teal-dark); color: var(--white);
  padding: 3rem; border-radius: 2px;
}
.distinction-box h3 { color: var(--white); margin-bottom: 1rem; }
.distinction-box p { color: rgba(255,255,255,0.85); font-size: 1.02rem; }

/* ============================================================
   HOW I HELP: THRESHOLDS
   ============================================================ */
.threshold {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 2rem; padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.threshold:last-child { border-bottom: none; }
.threshold__num {
  font-family: var(--font-serif); font-size: 3.5rem;
  color: var(--teal-light); opacity: 0.45; line-height: 1; padding-top: 0.2rem;
}
.threshold__body h3 { font-size: 1.6rem; margin-bottom: 0.7rem; }

/* ============================================================
   WORK WITH ME: PROCESS STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.8rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 48px; height: 48px;
  border-radius: 50%; background: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--white);
  flex-shrink: 0; margin-top: 0.2rem;
}
.step__body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

/* Booking embed placeholder */
.booking-embed {
  background: var(--taupe); border-left: 4px solid var(--teal-light);
  padding: 2rem 2.5rem; margin: 2rem 0;
  font-size: 0.9rem; font-style: italic; color: var(--teal-dark);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form__group { display: flex; flex-direction: column; gap: 0.45rem; }
.form__group label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark);
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 0.85rem 1rem; border: 1.5px solid var(--gray-light);
  background: var(--white); font-family: var(--font-sans); font-size: 1rem;
  color: var(--text-body); border-radius: 2px; outline: none;
  transition: border-color var(--transition);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--teal-mid); }
.form__group textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   PRICING BOX
   ============================================================ */
.pricing-box {
  background: var(--white);
  border-top: 3px solid var(--teal-light);
  padding: 3rem;
  max-width: 740px;
  margin: 0 auto;
}
.pricing-box h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.pricing-box p { font-size: 1.02rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  background: var(--white);
  border-top: 3px solid var(--teal-light);
  margin-bottom: 0.75rem;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 2rem; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--text-head); font-weight: 600; line-height: 1.3;
  gap: 1rem;
}
.faq-icon {
  font-family: var(--font-sans); font-size: 1.5rem; font-weight: 300;
  color: var(--teal-light); flex-shrink: 0; line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 2rem;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 2rem 1.5rem;
}
.faq-answer p { font-size: 1rem; color: var(--text-body); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.78);
  padding: 5rem 2.5rem 2.5rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.5rem; max-width: 1100px; margin: 0 auto 3.5rem;
}
.footer__logo img {
  height: 50px; margin-bottom: 1.2rem;
  filter: brightness(0) invert(1); opacity: 0.75;
}
.footer__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.55;
}
.footer__heading {
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1.2rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  color: rgba(255,255,255,0.7); font-size: 0.92rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem; text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  max-width: 1100px; margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .two-col, .two-col--wide { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .card + .card { border-left: none; border-top: 1px solid var(--gray-light); }
  .threshold-preview__item { flex: 0 1 100%; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .threshold { grid-template-columns: 48px 1fr; gap: 1.8rem; }
  .threshold__num { font-size: 2.4rem; }
  .step { grid-template-columns: 44px 1fr; gap: 1.2rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card__thumb { max-height: 220px; }
}
