/*
Theme Name: Heartfelt Guidance
Theme URI: https://heartfeltguidance.com
Author: Dr. Lanny R. Morrow II
Author URI: https://heartfeltguidance.com
Description: A cutting-edge, faith-centered pastoral counseling theme with elegant typography, warm earth tones, and full telehealth booking integration.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: heartfelt-guidance
Tags: counseling, faith, telehealth, elegant, responsive, full-width-template
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --sage:          #4a6741;
  --sage-mid:      #5c7d52;
  --sage-light:    #7a9b6f;
  --sage-pale:     #eef3ec;
  --sage-xpale:    #f5f8f4;
  --cream:         #f9f5ee;
  --warm-white:    #fdfaf5;
  --earth:         #6b5b4e;
  --earth-light:   #a08978;
  --charcoal:      #2c2825;
  --charcoal-mid:  #3e3a36;
  --text-muted:    #7a7068;
  --gold:          #b8965a;
  --gold-light:    #d4b47a;
  --gold-pale:     #f5ecd8;
  --white:         #ffffff;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', system-ui, sans-serif;

  --radius-sm:     3px;
  --radius-md:     6px;
  --radius-lg:     12px;

  --shadow-sm:     0 2px 12px rgba(44,40,37,0.07);
  --shadow-md:     0 8px 32px rgba(44,40,37,0.10);
  --shadow-lg:     0 20px 60px rgba(44,40,37,0.14);

  --transition:    0.25s ease;
  --max-width:     1280px;
  --section-pad:   clamp(4rem, 8vw, 8rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--warm-white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.eyebrow--sage  { color: var(--sage); }
.eyebrow--gold  { color: var(--gold); }
.eyebrow--white { color: rgba(255,255,255,0.6); }

em.accent { font-style: italic; color: var(--sage); }
em.accent--gold { font-style: italic; color: var(--gold-light); }

.body-lg {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.body-md {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

.section { padding-block: var(--section-pad); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,90,0.35);
  color: var(--white);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#site-header.scrolled {
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(74,103,65,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  transition: padding var(--transition);
}

#site-header.scrolled .header-inner { padding-block: 1rem; }

.site-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo span {
  font-size: 0.58rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.primary-nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--sage);
  transition: right var(--transition);
}

.primary-nav a:hover { color: var(--sage); }
.primary-nav a:hover::after { right: 0; }

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
}
.nav-cta:hover {
  background: var(--sage-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(74,103,65,0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(184,150,90,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 55%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(74,103,65,0.15) 25%,
    rgba(74,103,65,0.15) 75%,
    transparent 100%
  );
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vw, 9rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
  display: block;
}

.hero-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--earth-light);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.hero-link:hover { color: var(--sage); border-color: var(--sage); }
.hero-link svg { width: 14px; height: 14px; }

.hero-proof {
  display: flex;
  gap: 2.5rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 4vw, 4rem);
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-image-wrap img,
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-image-placeholder {
  background: linear-gradient(145deg, #c8d8c3 0%, #a8c09e 50%, #7fa374 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative frame */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid rgba(74,103,65,0.2);
  border-radius: var(--radius-md);
  z-index: -1;
}

/* Floating quote card */
.hero-float-card {
  position: absolute;
  bottom: 4rem;
  left: -2rem;
  background: var(--white);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 230px;
  border-left: 3px solid var(--gold);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-card p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.hero-float-card cite {
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Scripture badge */
.hero-scripture {
  position: absolute;
  top: 5rem;
  right: -1rem;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal-mid);
  padding: 1.6rem 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 2rem;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2rem;
  background: rgba(255,255,255,0.15);
}

.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--warm-white);
}

.about-text { padding-right: 2rem; }

.about-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.credential-card {
  background: var(--cream);
  border-left: 2px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.25rem;
}

.credential-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}

.credential-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 400;
}

.about-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* About visual column */
.about-visual { position: relative; }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-image-wrap img,
.about-image-ph {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image-ph {
  background: linear-gradient(160deg, var(--sage-pale) 0%, #c5d9c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--charcoal);
  color: white;
  padding: 1.8rem 2.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
  display: block;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--cream); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(74,103,65,0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74,103,65,0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon-wrap { background: rgba(74,103,65,0.18); }

.service-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.services-footer { text-align: center; margin-top: 3rem; }

/* ============================================================
   TELEHEALTH SECTION
   ============================================================ */
.telehealth-section {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

.telehealth-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.telehealth-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.telehealth-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.telehealth-left {}

.telehealth-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.telehealth-body {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.telehealth-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.telehealth-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-check svg {
  width: 11px; height: 11px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-text strong {
  font-weight: 500;
  color: var(--white);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.feature-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Steps card */
.telehealth-steps {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.steps-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.step:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  min-width: 2rem;
}

.step-info strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.step-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { background: var(--warm-white); }

.pricing-intro {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.pricing-tab {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(74,103,65,0.2);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
}

.pricing-tab.active,
.pricing-tab:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.price-card {
  background: var(--white);
  border: 1px solid rgba(74,103,65,0.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition);
  position: relative;
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(74,103,65,0.2);
}

.price-card.featured {
  border-color: var(--sage);
  border-width: 2px;
}

.featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-sessions {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
  line-height: 0;
}

.price-per {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-affirm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--earth);
  background: var(--gold-pale);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.price-affirm svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.price-cta { width: 100%; justify-content: center; }

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.pricing-note a { color: var(--sage); border-bottom: 1px solid rgba(74,103,65,0.3); }

/* ============================================================
   TESTIMONIALS / SCRIPTURE
   ============================================================ */
.scripture-section {
  background: var(--cream);
  padding-block: var(--section-pad);
}

.scripture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.scripture-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.scripture-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.scripture-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 0.8;
  margin-bottom: 1rem;
  display: block;
}

.scripture-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.scripture-ref {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
}

.cta-ring:nth-child(1) { width: 400px; height: 400px; }
.cta-ring:nth-child(2) { width: 700px; height: 700px; }
.cta-ring:nth-child(3) { width: 1000px; height: 1000px; }

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

.cta-eyebrow { color: var(--gold-light) !important; }
.cta-eyebrow::before { background: var(--gold-light) !important; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-body {
  color: rgba(255,255,255,0.5);
  font-size: 0.97rem;
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-contact {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.cta-contact a {
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color var(--transition);
}

.cta-contact a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #1a1815;
  padding-block: 4rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-brand {}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
  display: block;
}

.footer-logo-text em { color: var(--gold-light); font-style: italic; }

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   INTERIOR PAGES
   ============================================================ */

/* Page hero */
.page-hero {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 6vw, 6rem);
  border-bottom: 1px solid rgba(74,103,65,0.1);
}

.page-hero-inner { max-width: 680px; }

/* Content pages */
.page-content {
  padding-block: var(--section-pad);
  background: var(--warm-white);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  font-size: 0.97rem;
  color: white !important;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.prose ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.prose ul li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* Appointment embed page */
.appointment-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}

.appointment-info {}

.appointment-embed-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,103,65,0.08);
  min-height: 600px;
}

/* ============================================================
   WIDGETS / SIDEBAR
   ============================================================ */
.widget-area { display: flex; flex-direction: column; gap: 2rem; }

.widget {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(74,103,65,0.12);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(74,103,65,0.08);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--sage-pale);
}

.blog-body { padding: 1.75rem; }

.blog-cat {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.blog-card:hover .blog-title { color: var(--sage); }

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.blog-meta {
  font-size: 0.72rem;
  color: var(--earth-light);
  letter-spacing: 0.05em;
}

/* ============================================================
   FORMS
   ============================================================ */
.hg-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(74,103,65,0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,103,65,0.1);
}

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

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.wp-block-image img { border-radius: var(--radius-md); }

.aligncenter { text-align: center; margin-inline: auto; }
.alignleft { float: left; margin-right: 2rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 2rem; margin-bottom: 1rem; }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { min-height: 100vh; padding-top: 8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-panel.active { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--warm-white);
    padding: 6rem 2rem 3rem;
    align-items: flex-start;
    gap: 2rem;
    z-index: 999;
  }
  .primary-nav.open a { font-size: 1.4rem; letter-spacing: 0.05em; }
  .menu-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .telehealth-grid { grid-template-columns: 1fr; }
  .scripture-grid { grid-template-columns: 1fr; }
  .pricing-panel.active { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .appointment-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-bar-inner { justify-content: flex-start; }
  .about-stat-card { position: static; margin-top: 1.5rem; display: inline-block; }
  .credentials-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 1.5rem; }
}
