/* ============================================================
   Ruach Counseling — Home page (new design)
   Scoped under .home so no other page is affected.
   Uses palette / buttons / nav / footer from styles.css.
   ============================================================ */

.home { --pad: clamp(72px, 9vw, 128px); }
.home section { position: relative; }
.home .lead-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 720px; margin: 18px auto 0; text-align: center; line-height: 1.7; }

.home .h-title { font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: -0.01em; text-align: center; }

/* ---------- Nav overlay (transparent over hero, solid on scroll) ---------- */
.home .nav { position: fixed; top: 0; left: 0; right: 0; background: transparent; border-color: transparent; box-shadow: none; }
.nav__logo--white { display: none; }
.home .nav:not(.is-scrolled) .nav__logo--navy { display: none; }
.home .nav:not(.is-scrolled) .nav__logo--white { display: block; }
.home .nav:not(.is-scrolled) .nav__links a,
.home .nav:not(.is-scrolled) .nav__dropbtn { color: rgba(255, 255, 255, 0.92); }
.home .nav:not(.is-scrolled) .nav__links a:hover,
.home .nav:not(.is-scrolled) .nav__dropdown:hover .nav__dropbtn { color: #fff; }
.home .nav:not(.is-scrolled) .nav__toggle span { background: #fff; }
.home .nav.is-scrolled { background: rgba(250, 247, 241, 0.94); box-shadow: var(--shadow-sm); border-color: var(--line); }
/* Services dropdown items always read navy-blue on the white menu card,
   regardless of whether the nav is transparent over the hero or solid on scroll. */
.home .nav .nav__menu a { color: var(--sage) !important; }
.home .nav .nav__menu a:hover { color: var(--sage-deep) !important; }

/* ---------- HERO ---------- */
.nhero { min-height: clamp(640px, 100vh, 960px); display: flex; flex-direction: column; align-items: stretch; justify-content: center; overflow: hidden; isolation: isolate; padding: 96px 0; }
.nhero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
/* Soft scrim, strongest behind the left copy; keeps the warm light alive on the right */
.nhero__scrim { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(20,32,54,0.62) 0%, rgba(20,32,54,0.38) 46%, rgba(20,32,54,0.14) 78%),
    linear-gradient(180deg, rgba(20,32,54,0.30) 0%, rgba(20,32,54,0) 34%, rgba(15,24,42,0.34) 100%); }

/* Two-column hero: message left (on background), trust card right */
.nhero__grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(40px, 5vw, 84px); align-items: center; }
.nhero__copy { color: #fff; text-align: left; max-width: 600px; }
.nhero__title { color: #fff; font-size: clamp(2.6rem, 4.8vw, 4.1rem); line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 24px; text-shadow: 0 2px 30px rgba(15,24,42,0.4); }
.nhero__verse { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.38rem); color: rgba(255,255,255,0.94); line-height: 1.55; max-width: 540px; margin-bottom: 18px; }
.nhero__verse-ref { display: block; margin-top: 8px; font-size: 0.88em; color: var(--sand); }

/* Compact frosted-glass trust card */
.nhero__card {
  justify-self: end; width: 100%; max-width: 410px; color: #fff;
  padding: clamp(30px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15, 24, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.nhero__trust { display: flex; flex-direction: column; gap: 18px; }
.nhero__trust li { display: flex; align-items: center; gap: 13px; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.95); list-style: none; text-align: left; }
.nhero__trust svg { width: 20px; height: 20px; color: var(--sand); flex: none; }
.nhero__card-cta { width: 100%; margin-top: 26px; }
.nhero__note { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.6; margin-top: 16px; text-align: center; }

/* Scroll hint — "SCROLL" over a short line with a golden light traveling down */
.nhero__scroll { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none;
  color: rgba(255,255,255,0.70); transition: color 0.25s var(--ease); }
.nhero__scroll:hover { color: #fff; }
.nhero__scroll-label { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; }
.nhero__scroll-line { position: relative; width: 2px; height: 40px; border-radius: 2px; overflow: hidden; background: rgba(255,255,255,0.20); }
.nhero__scroll-line::after { content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 45%; border-radius: 2px;
  background: linear-gradient(to bottom, rgba(201,168,106,0), var(--terracotta) 72%, #e7cf96);
  box-shadow: 0 0 10px 1px rgba(201,168,106,0.65);
  animation: scrollFlare 2.4s cubic-bezier(0.45, 0, 0.2, 1) infinite; }
@keyframes scrollFlare {
  0%   { top: -55%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
.nhero__scroll-line::after { animation: none; top: 28%; opacity: 0.7; }
}

/* ---------- PILLARS (Therapy that sees the whole you) ---------- */
.pillars { padding: var(--pad) 0; background: var(--white); }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(40px, 5vw, 64px); }
.pillar { text-align: center; padding: 40px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--offwhite);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pillar__ico { width: 60px; height: 60px; border-radius: 50%; background: rgba(201,168,106,0.16); color: var(--sage);
  display: grid; place-items: center; margin: 0 auto 22px; }
.pillar__ico svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 10px; }
.pillar p { font-size: 0.97rem; }

/* ---------- MEET ANNU ---------- */
.meet2 { padding: var(--pad) 0; background: var(--offwhite); }
.meet2__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.meet2__photo { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; object-fit: cover; }
.meet2__label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.meet2__name { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 22px; }
.meet2__copy p { font-size: 1.05rem; margin-bottom: 16px; }
.meet2__link { display: inline-flex; align-items: center; gap: 8px; color: var(--sage); font-weight: 600; margin-top: 8px; transition: gap 0.25s var(--ease), color 0.2s; }
.meet2__link:hover { gap: 14px; color: var(--terracotta-d); }

/* ---------- SPECIALTIES (You're not alone in this) ---------- */
.specialties { padding: var(--pad) 0; background: var(--white); }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(40px, 5vw, 60px); }
.spec-card { display: flex; align-items: center; gap: 18px; padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm); transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s; }
.spec-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,168,106,0.45); }
.spec-card__ico { flex: none; width: 52px; height: 52px; border-radius: 14px; background: rgba(201,168,106,0.14); color: var(--sage); display: grid; place-items: center; }
.spec-card__ico svg { width: 26px; height: 26px; }
.spec-card h3 { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-weight: 600; color: var(--sage-deep); }

/* ---------- CONSULT (Start With a Free 15-Minute Conversation) ---------- */
.consult { padding: var(--pad) 0; background: var(--offwhite); }
.consult-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(40px, 5vw, 60px); }
.consult-card { position: relative; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--terracotta);
  border-radius: 6px 6px var(--radius) var(--radius); padding: 34px 28px 30px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.consult-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.consult-card__num { width: 48px; height: 48px; border-radius: 50%; background: var(--terracotta); color: #fff;
  display: grid; place-items: center; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; margin-bottom: 22px; }
.consult-card h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.2; }
.consult-card p { font-size: 0.96rem; }
.consult__cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ---------- GEORGIA (text section) ---------- */
.georgia { padding: var(--pad) 0; background: var(--white); text-align: center; }
.georgia__inner { max-width: 820px; margin-inline: auto; }
.georgia__inner p { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); margin-top: 22px; }

/* ---------- TESTIMONIALS (Real transformation, real people) ---------- */
.transform { padding: var(--pad) 0; background: var(--offwhite); }
.transform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(40px, 5vw, 60px); align-items: start; }
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 30px 34px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tcard__tag { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--sage-deep); background: rgba(201,168,106,0.14);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.tcard__stars { color: var(--terracotta); letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.tcard__head { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.35rem; color: var(--sage-deep); margin-bottom: 14px; }
.tcard__quote { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 18px; }
.tcard__by { font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- CARRYING (full-bleed sky band) ---------- */
.carrying { padding: clamp(90px, 12vw, 150px) 0; text-align: center; color: #fff; overflow: hidden; }
.carrying__bg { position: absolute; inset: 0; z-index: -2; background-image: url('assets/sky.jpg'); background-size: cover; background-position: center; }
.carrying__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30,45,74,0.72), rgba(30,45,74,0.6)); }
.carrying__inner { max-width: 820px; margin-inline: auto; }
.carrying__title { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.5rem); margin-bottom: 30px; text-shadow: 0 2px 30px rgba(15,24,42,0.4); }
.carrying__inner p { font-size: 1.12rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 22px; }
.carrying__inner p.em { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.4rem; color: #fff; }

/* ---------- NEXT STEPS (What happens next) ---------- */
.nextsteps { padding: var(--pad) 0; background: var(--white); }
.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); margin-top: clamp(44px, 5vw, 68px); text-align: center; }
.next-step__num { width: 62px; height: 62px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif; font-size: 1.7rem; margin: 0 auto 22px; box-shadow: 0 0 0 8px rgba(30,58,95,0.06); }
.next-step h3 { font-size: 1.4rem; margin-bottom: 12px; }
.next-step p { font-size: 0.99rem; }

/* ---------- FAQ (reuses .faq from styles.css) ---------- */
.home .faq { padding: var(--pad) 0; background: var(--white); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
.nhero__grid { grid-template-columns: 1fr; gap: 40px; }.nhero__copy { max-width: 600px; }.nhero__card { justify-self: start; max-width: 440px; }.pillars__grid { grid-template-columns: 1fr 1fr; }.meet2__grid { grid-template-columns: 1fr; }.meet2__photo { max-width: 520px; }.spec-grid, .transform-grid, .consult-grid, .next-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
.pillars__grid, .spec-grid, .transform-grid, .consult-grid, .next-grid { grid-template-columns: 1fr; }.nhero__card { max-width: none; }.nhero__card-cta { width: 100%; }
}
