/* ============================================================
   Anna Weinstein · Jungian Psychologist
   Psychare-inspired design system
   - Libre Baskerville (serif headings, exactly as psychare uses)
   - Mulish (body sans, exactly as psychare uses)
   - Cream + brass palette (#A67355 extracted from live site)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette — Psychare-aligned */
  --cream:        #F3EBE6;
  --cream-warm:   #FBF6F2;
  --paper:        #FFFFFF;
  --bg-pale:      #F9F7F7;
  --brown:        #2E1F17;        /* deep espresso, hero & sections */
  --brown-mid:    #4A332A;        /* warm dark sepia */
  --brown-soft:   #6B4E40;
  --brass:        #A67355;        /* accent — exact Psychare hex */
  --brass-deep:   #8A5F44;
  --brass-soft:   #C99B7C;
  --ink:          #1F1B18;
  --ink-soft:     #5F5F5F;        /* live-extracted psychare body color */
  --muted:        #8A8480;
  --line:         rgba(46,31,23,0.12);
  --gold-line:    rgba(166,115,85,0.35);

  /* Typography — matching psychare live */
  --serif:  'Libre Baskerville', 'EB Garamond', Georgia, serif;
  --sans:   'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap:    1240px;
  --gutter:  clamp(20px, 3vw, 40px);
  --radius:  2px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream-warm);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* TYPOGRAPHY — Psychare-style heavy serif */
.serif { font-family: var(--serif); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -0.005em; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.4rem, 4.6vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.4; }
p  { margin: 0 0 1.1em; }
em { font-style: italic; }
strong { color: var(--ink); font-weight: 600; }

/* OVERLINE — Psychare's tracked caps label */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; display:inline-block; width: 6px; height: 6px; background: var(--brass); border-radius: 50%; vertical-align: middle; margin-right: 12px; position: relative; top: -2px; }
.eyebrow.center { text-align: center; display: block; }
.eyebrow.center::before { margin-right: 12px; }

/* BUTTONS — Psychare shape (square, brass border, uppercase tracked) */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all 0.28s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--brass);
  color: var(--paper);
  border-color: var(--brass);
}
.btn-primary:hover { background: var(--brass-deep); border-color: var(--brass-deep); }

.btn-dark {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.btn-dark:hover { background: var(--brown-mid); border-color: var(--brown-mid); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--brown); }

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--brass);
}
.btn-line:hover { background: var(--brass); color: var(--paper); }

.btn-sm { padding: 11px 22px; font-size: 0.72rem; }
.btn-full { width: 100%; }

/* ============================================================
   TOP BAR — Psychare's white info strip + nav
   ============================================================ */
.info-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gold-line);
  font-size: 0.82rem;
  color: var(--brown-mid);
}
.info-bar .container {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.info-bar .info-item { display: inline-flex; align-items: center; gap: 8px; }
.info-bar .info-item svg { width: 14px; height: 14px; color: var(--brass); }
.info-bar .info-item strong { color: var(--brown); font-weight: 600; }
.info-bar .socials { margin-left: auto; display: inline-flex; gap: 12px; }
.info-bar .socials a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--brass);
  transition: all 0.2s ease;
}
.info-bar .socials a:hover { background: var(--brass); color: var(--paper); border-color: var(--brass); }

/* HEADER — white, sticky */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px var(--gutter);
  max-width: var(--wrap-w, 1280px);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 52px; height: 52px;
  border: 1.5px solid var(--brass);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem;
  color: var(--brown);
  border-radius: 2px;
  background: var(--cream-warm);
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-top: 3px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
}
.site-nav a {
  position: relative;
  padding: 14px 0;
  color: var(--brown);
  transition: color 0.2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--brass); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

.header-cta {
  background: var(--brass);
  color: var(--paper) !important;
  padding: 12px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.18em;
}
.header-cta::after { display: none !important; }
.header-cta:hover { background: var(--brass-deep) !important; color: var(--paper) !important; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--brown);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — Psychare-style: split image right, eyebrow + big serif
   ============================================================ */
.hero {
  position: relative;
  background: var(--brown);
  color: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 600px;
  align-items: stretch;
}
.hero-content {
  padding: 100px clamp(28px, 4vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(166,115,85,0.18), transparent 60%),
    var(--brown);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 1.4rem;
  font-weight: 600;
}
.hero-eyebrow::before { content:""; display:inline-block; width:6px; height:6px; background:var(--brass-soft); border-radius:50%; margin-right:12px; vertical-align: middle; position: relative; top:-2px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.18;
  color: var(--cream);
  margin: 0 0 1.2rem;
}
.hero-title em { font-style: italic; color: var(--brass-soft); }
.hero-lead {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(251,246,242,0.85);
  max-width: 50ch;
  margin: 0 0 1.8rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  background: url('../../img/anna_portrait.png') center/cover no-repeat;
  min-height: 500px;
}
.hero-image::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: linear-gradient(to right, transparent, var(--brown));
  z-index: 1;
}

/* sub-hero — for inner pages */
.sub-hero {
  background:
    linear-gradient(rgba(46,31,23,0.65), rgba(46,31,23,0.65)),
    url('../../img/hero_forest.png') center/cover no-repeat;
  color: var(--cream);
  padding: 120px 0 90px;
  text-align: center;
}
.sub-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--cream);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.sub-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: rgba(251,246,242,0.88);
  max-width: 56ch;
  margin: 0 auto;
}
.sub-hero .eyebrow {
  color: var(--brass-soft);
  display: block;
  margin-bottom: 1.2rem;
}

/* ============================================================
   STATS BAND — Psychare's cream panel with 4 big numbers
   ============================================================ */
.stats-band {
  background: var(--cream);
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--gold-line);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat {
  padding: 12px 18px;
  border-right: 1px solid var(--gold-line);
}
.stat:last-child { border-right: 0; }
.stat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  color: var(--brass);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  color: var(--brown);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

/* ============================================================
   SECTIONS — generic blocks
   ============================================================ */
.section {
  padding: 90px 0;
}
.section-tight { padding: 60px 0; }
.section-cream { background: var(--cream); }
.section-pale  { background: var(--bg-pale); }
.section-dark {
  background:
    linear-gradient(rgba(46,31,23,0.92), rgba(46,31,23,0.92)),
    url('../img/retreat_room.png') center/cover no-repeat;
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(243,235,230,0.92); }
.section-dark .section-header p { color: rgba(243,235,230,0.88); }
.section-dark .eyebrow { color: var(--brass-soft); }
.section-dark .feather-list { color: var(--cream); }
.feather-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feather-list li { position: relative; padding-left: 28px; line-height: 1.65; }
.feather-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 14px; height: 1px;
  background: var(--brass);
}
.section-dark .feather-list li::before { background: var(--brass-soft); }
.section-dark strong,
.section-dark .feather-list strong,
.section-dark .feather-list li strong { color: var(--cream); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { font-weight: 700; }
.section-header p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink-soft); }
.section-cta { text-align: center; margin: 50px 0 0; }
.section-cta .btn { display: inline-block; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.two-col--wide { grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col.center { align-items: center; }

.intro-figure {
  position: relative;
  overflow: visible;
}
.intro-figure img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 50px -20px rgba(46,31,23,0.35);
}
.intro-figure .signature {
  position: absolute;
  bottom: -30px; left: -30px;
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
  color: var(--brass);
  background: var(--paper);
  padding: 16px 26px;
  box-shadow: 0 12px 30px -14px rgba(46,31,23,0.3);
  border-radius: 2px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.feature-list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--brass);
}
.feature-list .check-bg {
  width: 26px; height: 26px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
}
.feature-list .check-bg svg { width: 12px; height: 12px; }
.feature-list strong {
  display: block;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-weight: 700;
}

/* ============================================================
   EXPERTISE — Psychare-style "MY PRACTICE" 4-column with icons
   ============================================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.practice-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(166,115,85,0.3);
  padding: 36px 26px;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.section:not(.section-dark) .practice-tile { background: var(--paper); border: 1px solid var(--line); }
.practice-tile:hover { border-color: var(--brass); transform: translateY(-4px); }
.practice-tile .icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
}
.practice-tile h3 { font-family: var(--serif); font-size: 1.18rem; margin-bottom: 10px; color: inherit; }
.section-dark .practice-tile h3 { color: var(--cream); }
.practice-tile p { font-size: 0.94rem; margin: 0; }

/* 7-card full expertise */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.exp-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.exp-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brown);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(.7,0,.3,1);
  z-index: 0;
}
.exp-tile:hover::before { transform: scaleY(1); }
.exp-tile > * { position: relative; z-index: 1; transition: color 0.3s ease; }
.exp-tile:hover { color: var(--cream); }
.exp-tile:hover .exp-num { color: var(--brass-soft); }
.exp-tile:hover .exp-icon { color: var(--brass-soft); }
.exp-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--brass);
  margin-bottom: 18px;
  display: block;
}
.exp-icon { color: var(--brass); width: 32px; height: 32px; margin-bottom: 18px; }
.exp-tile h3 { font-family: var(--serif); font-weight: 700; font-size: 1.16rem; margin-bottom: 12px; }
.exp-tile:hover h3 { color: var(--cream); }
.exp-tile p { font-size: 0.93rem; margin: 0; line-height: 1.65; }
.exp-tile.exp-wide { grid-column: span 4; }

/* ============================================================
   PULLQUOTE — Psychare uses hands-and-script centered quotes
   ============================================================ */
.quote-strip {
  background: var(--brass);
  color: var(--cream);
  padding: 70px 0;
  text-align: center;
  position: relative;
}
.quote-strip::before, .quote-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 80px;
  background: var(--brass-soft);
}
.quote-strip::before { top: 20px; }
.quote-strip::after  { bottom: 20px; }
.quote-strip blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
  margin: 0 auto;
  max-width: 50ch;
}
.quote-strip cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 18px;
  font-weight: 600;
}

/* ============================================================
   PROCESS — 3-step "THE PROCESS" like Psychare
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}
.process-step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px;
  border-radius: 2px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover { border-color: var(--brass); }
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  display: block;
  margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 12px;
}
.process-step p { font-size: 0.95rem; margin: 0; }

/* ============================================================
   TESTIMONIALS — Psychare slider style (static snapshot)
   ============================================================ */
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 30px;
  border-radius: 2px;
  margin: 0 10px;
}
.testimonial-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.testimonial-ava {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-position: center 30%;
  background-size: cover;
  background-color: var(--cream);
  border: 2px solid var(--brass);
  box-shadow: 0 0 0 4px var(--paper);
}
.testimonial h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown);
  margin: 0;
}
.testimonial .place {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.testimonial-stars { color: var(--brass); margin-bottom: 14px; letter-spacing: 4px; font-size: 1.1rem; }
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  color: var(--ink-soft);
}
.testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ============================================================
   PROGRAMS / EVENTS — Psychare card grid
   ============================================================ */
.program-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.program-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px -16px rgba(46,31,23,0.2); border-color: var(--brass); }
.program-cover { height: 220px; background-size: cover; background-position: center; }
.program-body { padding: 24px; }
.program-cat {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 12px;
}
.program-card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.18rem; color: var(--brown); margin-bottom: 10px; }
.program-card p { font-size: 0.92rem; margin: 0 0 12px; }

.event-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}
.event-card {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.event-cover { background-size: cover; background-position: center; min-height: 280px; }
.event-body { padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
.event-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 14px;
}
.event-card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--brown); margin-bottom: 12px; }
.event-meta { display: flex; gap: 18px; flex-wrap: wrap; margin: 12px 0 18px; font-size: 0.86rem; color: var(--ink-soft); }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   PRICING — Psychare's $250/$300/$400 three-up
   ============================================================ */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 50px 32px;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}
.price-card.featured {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: scale(1.04);
}
.price-card.featured h3,
.price-card.featured .price { color: var(--cream); }
.price-card.featured .price-amt { color: var(--brass-soft); }
.price-card.featured .feature-list strong { color: var(--cream); }
.price-card.featured .feature-list { color: rgba(251,246,242,0.85); }
.price-card.featured .feature-list .check-bg { border-color: var(--brass-soft); color: var(--brass-soft); }
.price-card.featured .btn-primary { background: var(--brass); }
.price-card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--brown); margin-bottom: 18px; }
.price-card.featured .ribbon {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brass);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 600;
}
.price-amt {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  color: var(--brass);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.price-amt strong { font-style: normal; font-weight: 700; }
.price-card .per { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; }
.price-card.featured .per { color: rgba(251,246,242,0.7); }
.price-card .feature-list { margin: 24px 0; text-align: left; }
.price-card .feature-list li { padding: 10px 0; border-bottom: 1px dashed var(--line); }
.price-card.featured .feature-list li { border-bottom-color: rgba(166,115,85,0.4); }
.price-card .feature-list li:last-child { border-bottom: 0; }
.price-card .feature-list strong { display: inline; font-family: var(--sans); font-size: 0.92rem; font-weight: 500; }

/* ============================================================
   BOOKING FORM — Psychare signature white card on dark band
   ============================================================ */
.booking-band {
  background:
    linear-gradient(rgba(46,31,23,0.92), rgba(46,31,23,0.92)),
    url('../../img/retreat_room.png') center/cover no-repeat;
  color: var(--cream);
  padding: 90px 0;
}
.booking-band h2 { color: var(--cream); margin-bottom: 0.3em; }
.booking-band .eyebrow { color: var(--brass-soft); }
.booking-band p { color: rgba(251,246,242,0.85); }
.booking-cta-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.booking-cta-center .eyebrow { display: block; margin-bottom: 14px; }
.booking-cta-center h2 { font-weight: 700; }
.booking-cta-center p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 16px auto 32px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(243,235,230,0.5);
  padding: 14px 28px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--cream);
}
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.booking-info { padding-top: 14px; }
.booking-info p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.6; color: rgba(251,246,242,0.85); }
.booking-form {
  background: var(--paper);
  padding: 40px;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.booking-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 12px;
}
.booking-form .full { grid-column: 1 / -1; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 0;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: 0; border-bottom-color: var(--brass); }
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form option { color: var(--ink); }
.booking-form .submit { grid-column: 1 / -1; }

/* contact form */
.contact-form { display: grid; gap: 18px; }
.contact-form label { display: block; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); font-weight: 600; margin-bottom: 10px; }
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 11px 14px;
  background: var(--paper); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 0.95rem;
  border-radius: var(--radius);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 0; border-color: var(--brass);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .checkbox { font-size: 0.86rem; text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-weight: 400; display: flex; gap: 10px; align-items: flex-start; }
.contact-form .checkbox input { width: auto; margin-top: 4px; }

/* CALENDAR */
.calendar {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 2px;
}
.calendar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.calendar-title { font-family: var(--serif); font-size: 1.18rem; color: var(--brown); margin: 0; font-weight: 700; }
.calendar-nav { display: flex; gap: 10px; }
.calendar-nav button {
  width: 34px; height: 34px;
  border: 1px solid var(--brass);
  background: transparent;
  border-radius: 50%;
  color: var(--brass);
  font-size: 0.95rem;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 12px;
}
.calendar-dow {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
  padding: 6px 0;
}
.calendar-cell {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--cream-warm);
  font-size: 0.86rem;
  text-align: left;
  padding: 6px 8px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 2px;
}
.calendar-cell.is-empty { background: transparent; border: 0; cursor: default; }
.calendar-cell.is-available { background: var(--paper); }
.calendar-cell.is-available:hover { background: var(--brass); color: var(--paper); border-color: var(--brass); }
.calendar-cell.is-full { background: var(--cream); color: var(--muted); cursor: not-allowed; opacity: 0.7; }
.calendar-cell.is-past { color: var(--muted); cursor: not-allowed; }
.calendar-cell .slot { font-size: 0.6rem; text-transform: uppercase; opacity: 0.7; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.time-slot {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 2px;
}
.time-slot:hover { border-color: var(--brass); }
.time-slot.is-selected { background: var(--brass); color: var(--paper); border-color: var(--brass); }

/* ============================================================
   FOOTER — dark band with cream text, like Psychare
   ============================================================ */
.site-footer {
  background: var(--brown);
  color: rgba(251,246,242,0.78);
  padding: 80px 0 30px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.site-footer h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--cream);
  margin: 0 0 20px;
}
.site-footer a:hover { color: var(--brass-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-grid ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-grid li { padding: 5px 0; }
.site-footer .brand-name { color: var(--cream); }
.site-footer .brand-sub { color: var(--brass-soft); }
.footer-brand p { color: rgba(251,246,242,0.75); margin-top: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(166,115,85,0.4);
  color: var(--brass-soft);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.footer-socials a:hover { background: var(--brass); color: var(--paper); border-color: var(--brass); }
.footer-contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 6px 0;
}
.footer-contact-row svg { width: 18px; height: 18px; color: var(--brass-soft); flex-shrink: 0; margin-top: 4px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(166,115,85,0.4);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: 2px;
  font-size: 0.92rem;
}
.newsletter-form input::placeholder { color: rgba(251,246,242,0.5); }
.newsletter-form input:focus { outline: 0; border-color: var(--brass-soft); }
.newsletter-form button { background: var(--brass); color: var(--paper); border: 0; padding: 0 22px; border-radius: 2px; font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; }
.newsletter-form button:hover { background: var(--brass-deep); }
.foot-bottom {
  border-top: 1px solid rgba(166,115,85,0.25);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(251,246,242,0.6);
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 50px;
  margin: 40px 0;
  border-left: 2px solid var(--gold-line);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -61px; top: 6px;
  width: 14px; height: 14px;
  border: 3px solid var(--brass);
  background: var(--paper);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--brass);
  margin-bottom: 4px;
  font-weight: 700;
}
.timeline-item h3 { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--brown); margin-bottom: 8px; }
.timeline-item p { font-size: 0.98rem; color: var(--ink-soft); }

/* TABS */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.tab {
  background: transparent;
  border: 0;
  padding: 16px 22px;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
.tab::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 22px; right: 22px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.tab.is-active { color: var(--ink); }
.tab.is-active::after { transform: scaleX(1); }
.tab-panel { display: none; max-width: 820px; margin: 0 auto; }
.tab-panel.is-active { display: block; }
.tab-panel h2 { font-weight: 700; margin-bottom: 22px; }
.tab-panel p { font-family: var(--serif); font-style: normal; font-size: 1.12rem; line-height: 1.7; margin-bottom: 1.2em; color: var(--ink-soft); }
.tab-panel .accent { color: var(--brass); font-family: var(--serif); font-style: italic; font-size: 1.18rem; }

/* ============================================================
   BLOG / JOURNAL — Psychare-style 3-up cards
   ============================================================ */
.blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--brass); }
.blog-cover { height: 220px; background-size: cover; background-position: center; }
.blog-body { padding: 24px; }
.blog-cat { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-bottom: 10px; display: block; }
.blog-card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.18rem; color: var(--brown); margin-bottom: 10px; }
.blog-card p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   RESPONSIVE — Psychare style stack on mobile
   ============================================================ */
@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-tile.exp-wide { grid-column: span 2; }
  .pricing-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .testimonial-row, .program-row, .blog-row { grid-template-columns: 1fr 1fr; }
  .event-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .info-bar { display: none; }
  .site-nav {
    position: fixed; inset: 0;
    flex-direction: column;
    background: var(--paper);
    color: var(--ink);
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 55;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    font-size: 1.3rem;
    font-family: var(--serif);
    font-weight: 700;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { padding: 8px 0; color: var(--brown); }
  .nav-toggle { display: block; z-index: 65; }
  .header-cta { display: none; }

  .hero-grid, .two-col, .two-col.reverse, .two-col--wide, .booking-grid { grid-template-columns: 1fr !important; }
  .hero-image { min-height: 320px; }
  .hero-image::before { display: none; }
  .hero-content { padding: 60px 30px; }
  .practice-grid, .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-row, .program-row, .blog-row, .process-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-tile.exp-wide { grid-column: span 1; }
  .booking-form { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 600px) {
  .stat-num { font-size: 2.2rem; }
  .calendar-cell { padding: 4px; font-size: 0.75rem; }
  .calendar-cell .slot { display: none; }
  .booking-form { padding: 24px; }
  .section { padding: 60px 0; }
}
