/* ============================================================
   FORAGED HEALTH — Main Stylesheet
   Brand tokens, base, components, page sections, responsive
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Mulish:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors */
  --fh-clay:        #BD6B4C;
  --fh-deep-clay:   #9C4F35;
  --fh-sage:        #93A081;
  --fh-deep-olive:  #5B6A4C;
  --fh-sand:        #F2E8D7;
  --fh-cream:       #FBF6EC;
  --fh-bark:        #322A20;
  --fh-stone:       #6E6354;
  --fh-border:      #E7DCC6;
  --fh-sage-dark:   #7E9069;

  /* Typography */
  --font-display: 'Marcellus', Georgia, serif;
  --font-body:    'Mulish', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 80px;
  --container:   1080px;
  --card-radius: 20px;
  --btn-radius:  999px;

  /* Shadows */
  --shadow-card: 0 4px 24px -8px rgba(50,42,32,.12);
  --shadow-hero: 0 24px 60px -34px rgba(50,42,32,.4);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fh-bark);
  background-color: var(--fh-sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--fh-clay); text-decoration: none; transition: color .2s; }
a:hover { color: var(--fh-deep-clay); }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* ── Layout ── */
.fh-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .fh-container { padding: 0 20px; }
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fh-bark);
  margin: 0;
}

h1 { font-size: clamp(36px, 5vw, 52px); }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; }
h3 { font-size: clamp(22px, 3vw, 30px); line-height: 1.2; }
h4 { font-size: 22px; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

/* Eyebrow / overline label */
.fh-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--fh-clay);
  margin-bottom: 14px;
}

/* ── Buttons ── */
.fh-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  text-decoration: none;
  line-height: 1;
}

.fh-btn:hover { transform: translateY(-1px); text-decoration: none; }

.fh-btn-primary {
  background: var(--fh-clay);
  color: var(--fh-cream);
}
.fh-btn-primary:hover {
  background: var(--fh-deep-clay);
  color: var(--fh-cream);
}

.fh-btn-secondary {
  background: transparent;
  color: var(--fh-deep-olive);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1.5px solid var(--fh-sage);
  border-radius: 0;
  letter-spacing: .04em;
}
.fh-btn-secondary:hover {
  color: var(--fh-deep-clay);
  border-color: var(--fh-deep-clay);
}

.fh-btn-outline {
  background: transparent;
  color: var(--fh-cream);
  border: 2px solid rgba(251,246,236,.5);
}
.fh-btn-outline:hover {
  background: rgba(251,246,236,.12);
  color: var(--fh-cream);
  border-color: var(--fh-cream);
}

/* ── Cards ── */
.fh-card {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

/* ── Tags / Pills ── */
.fh-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--btn-radius);
  background: var(--fh-deep-olive);
  color: var(--fh-cream);
}

/* ================================================================
   SITE HEADER / NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fh-cream);
  border-bottom: 1px solid var(--fh-border);
  box-shadow: 0 2px 16px -4px rgba(50,42,32,.08);
}

.site-header .fh-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.site-branding { display: flex; align-items: center; flex-shrink: 0; }

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fh-bark);
}
.site-logo-link:hover { color: var(--fh-bark); }

.site-logo-link .custom-logo { height: 40px; width: auto; }

.site-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fh-bark);
  line-height: 1;
}

/* Primary Navigation */
.primary-navigation { display: flex; align-items: center; gap: 32px; }

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-navigation ul li { position: relative; }

.primary-navigation ul li a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fh-stone);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
}
.primary-navigation ul li a:hover,
.primary-navigation ul li.current-menu-item > a {
  color: var(--fh-clay);
}

/* Dropdown */
.primary-navigation ul li ul {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  flex-direction: column;
  gap: 0;
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: 14px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 32px -8px rgba(50,42,32,.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
  display: flex;
}

.primary-navigation ul li:hover > ul,
.primary-navigation ul li:focus-within > ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.primary-navigation ul li ul li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  letter-spacing: .04em;
}
.primary-navigation ul li ul li a:hover {
  background: var(--fh-sand);
}

.nav-cta { margin-left: 8px; display: flex; align-items: center; gap: 12px; }

.site-header .fh-social-link { background: rgba(189,107,76,.08); color: var(--fh-clay); }
.site-header .fh-social-link:hover { background: var(--fh-clay); color: var(--fh-cream); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fh-bark);
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.fh-hero {
  background: var(--fh-sand);
  overflow: hidden;
}

.fh-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 580px;
  align-items: stretch;
}

.fh-hero-content {
  padding: 80px 56px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fh-hero-content h1 {
  margin-top: 12px;
  color: var(--fh-bark);
}

.fh-hero-content p {
  font-size: 17px;
  color: var(--fh-stone);
  max-width: 480px;
  margin: 20px 0 32px;
}

.fh-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.fh-hero-visual {
  background: linear-gradient(150deg, #9aa886, var(--fh-sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.fh-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(189,107,76,.18) 0%, transparent 70%);
}

.fh-hero-sprig {
  position: relative;
  z-index: 1;
  opacity: .88;
}

.fh-hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(251,246,236,.92);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--fh-deep-olive);
  max-width: 220px;
  z-index: 2;
}

.fh-hero-badge strong { font-weight: 700; }

/* ================================================================
   SECTION STRUCTURE
   ================================================================ */
.fh-section {
  padding: var(--section-pad) 0;
}

.fh-section-cream {
  background: var(--fh-cream);
  border-top: 1px solid var(--fh-border);
  border-bottom: 1px solid var(--fh-border);
}

.fh-section-olive {
  background: var(--fh-deep-olive);
  color: var(--fh-sand);
}

.fh-section-bark {
  background: var(--fh-bark);
  color: var(--fh-sand);
}

.fh-section-clay {
  background: var(--fh-deep-clay);
  color: var(--fh-cream);
}

.fh-section-header {
  margin-bottom: 48px;
}

.fh-section-header h2 { margin-top: 12px; }
.fh-section-header p {
  font-size: 17px;
  color: var(--fh-stone);
  max-width: 640px;
  margin-top: 16px;
}

.fh-section-olive .fh-section-header p,
.fh-section-bark .fh-section-header p {
  color: rgba(242,232,215,.7);
}

/* ================================================================
   CONDITIONS / PILLARS GRID
   ================================================================ */
.fh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fh-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.fh-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fh-pillar-card {
  background: var(--fh-sand);
  border-radius: 16px;
  padding: 28px;
}

.fh-section-cream .fh-pillar-card {
  background: var(--fh-sand);
}

.fh-pillar-card h3 {
  font-size: 22px;
  color: var(--fh-deep-olive);
  margin-bottom: 10px;
}

.fh-pillar-card p {
  font-size: 14px;
  color: var(--fh-stone);
  line-height: 1.6;
}

/* Condition tags */
.fh-conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.fh-condition-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--btn-radius);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fh-bark);
}

.fh-condition-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--fh-sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================================
   APPROACH STEPS
   ================================================================ */
.fh-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fh-approach-card {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  padding: 36px;
  position: relative;
}

.fh-approach-number {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--fh-border);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  user-select: none;
}

.fh-approach-card h3 {
  font-size: 22px;
  color: var(--fh-bark);
  margin-bottom: 12px;
}

.fh-approach-card p {
  font-size: 15px;
  color: var(--fh-stone);
  line-height: 1.65;
}

/* ================================================================
   PRACTITIONER / WHY CHOOSE US
   ================================================================ */
.fh-bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.fh-bio-visual {
  background: linear-gradient(135deg, var(--fh-sage-dark), var(--fh-deep-olive));
  border-radius: var(--card-radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fh-bio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--card-radius);
}

.fh-bio-visual .fh-bio-sprig-watermark {
  opacity: .35;
}

.fh-bio-credentials {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(251,246,236,.92);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fh-deep-olive);
}

.fh-bio-credentials strong { display: block; font-weight: 700; font-size: 14px; margin-bottom: 2px; color: var(--fh-bark); }
.fh-bio-credentials span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fh-clay); font-weight: 600; }

.fh-bio-content h2 { margin-bottom: 20px; }

.fh-bio-content p {
  font-size: 16px;
  color: var(--fh-stone);
  margin-bottom: 14px;
}

.fh-bio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.fh-stat {
  background: var(--fh-sand);
  border-radius: 14px;
  padding: 18px 20px;
}

.fh-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--fh-clay);
  line-height: 1;
}

.fh-stat-label {
  font-size: 13px;
  color: var(--fh-stone);
  margin-top: 4px;
}

/* Why cards row */
.fh-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.fh-why-card {
  background: var(--fh-sand);
  border-radius: 16px;
  padding: 28px;
}

.fh-why-icon {
  width: 44px;
  height: 44px;
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fh-why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.fh-why-card p {
  font-size: 14px;
  color: var(--fh-stone);
  line-height: 1.6;
}

/* ================================================================
   PATH TO HEALING (DISCOVER · RESET · THRIVE)
   ================================================================ */
.fh-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fh-path-card {
  background: rgba(107,124,91,.5);
  border: 1px solid rgba(207,224,185,.2);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.fh-path-step {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #cfe0b9;
  margin-bottom: 16px;
}

.fh-path-card h3 {
  font-size: 32px;
  color: var(--fh-cream);
  margin-bottom: 16px;
}

.fh-path-card p {
  font-size: 15px;
  color: rgba(242,232,215,.8);
  line-height: 1.65;
  margin: 0;
}

.fh-path-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(207,224,185,.4);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* ================================================================
   SERVICES GRID
   ================================================================ */
.fh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fh-service-card {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  padding: 36px 30px;
  transition: box-shadow .2s, transform .2s;
}

.fh-service-card:hover {
  box-shadow: 0 12px 40px -12px rgba(50,42,32,.18);
  transform: translateY(-2px);
}

.fh-service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--fh-clay);
}

.fh-service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.fh-service-card p {
  font-size: 14px;
  color: var(--fh-stone);
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.fh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fh-testimonial {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.fh-testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--fh-bark);
  flex: 1;
  margin-bottom: 24px;
}

.fh-testimonial-quote::before { content: '\201C'; color: var(--fh-clay); }
.fh-testimonial-quote::after  { content: '\201D'; color: var(--fh-clay); }

.fh-testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fh-stone);
}

.fh-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--fh-clay);
  font-size: 16px;
}

/* ================================================================
   GETTING STARTED STEPS
   ================================================================ */
.fh-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.fh-steps::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--fh-border);
  z-index: 0;
}

.fh-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.fh-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--fh-clay);
  color: var(--fh-cream);
  font-family: var(--font-display);
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.fh-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.fh-step p {
  font-size: 15px;
  color: var(--fh-stone);
  line-height: 1.6;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.fh-faq { max-width: 800px; margin: 0 auto; }

.fh-faq-item {
  border-bottom: 1px solid var(--fh-border);
}

.fh-faq-item:first-child { border-top: 1px solid var(--fh-border); }

.fh-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fh-bark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  line-height: 1.3;
}

.fh-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fh-sand);
  border: 1px solid var(--fh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .3s;
  color: var(--fh-clay);
  font-size: 18px;
  line-height: 1;
}

.fh-faq-item.is-open .fh-faq-icon {
  background: var(--fh-clay);
  color: var(--fh-cream);
  transform: rotate(45deg);
}

.fh-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.fh-faq-answer-inner {
  padding: 0 4px 24px;
  font-size: 16px;
  color: var(--fh-stone);
  line-height: 1.7;
}

.fh-faq-item.is-open .fh-faq-answer { max-height: 600px; }

/* ================================================================
   CTA BAND
   ================================================================ */
.fh-cta-band {
  text-align: center;
  padding: 80px 40px;
}

.fh-cta-band h2 {
  color: var(--fh-cream);
  margin-bottom: 16px;
}

.fh-cta-band p {
  color: rgba(242,232,215,.8);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.fh-cta-band .fh-btn-primary {
  background: var(--fh-cream);
  color: var(--fh-deep-clay);
  font-size: 14px;
  padding: 17px 36px;
}
.fh-cta-band .fh-btn-primary:hover {
  background: var(--fh-sand);
  color: var(--fh-deep-clay);
}

/* ================================================================
   SITE FOOTER
   ================================================================ */
.site-footer {
  background: var(--fh-bark);
  color: rgba(202,191,172,.9);
}

.site-footer a { color: rgba(202,191,172,.7); }
.site-footer a:hover { color: var(--fh-sand); }

.fh-footer-inner {
  padding: 64px 0 40px;
}

.fh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.fh-footer-brand .site-name { color: var(--fh-sand); font-size: 16px; }

.fh-footer-tagline {
  font-size: 14px;
  color: rgba(202,191,172,.65);
  margin-top: 12px;
  line-height: 1.6;
}

.fh-footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(202,191,172,.5);
  margin-bottom: 16px;
}

.fh-footer-col ul li + li { margin-top: 10px; }
.fh-footer-col ul li a { font-size: 14px; }

.fh-footer-contact p {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.fh-footer-bottom {
  border-top: 1px solid rgba(202,191,172,.12);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(202,191,172,.45);
}

.fh-footer-legal { display: flex; gap: 20px; }
.fh-footer-legal a { color: rgba(202,191,172,.45); font-size: 12px; }
.fh-footer-legal a:hover { color: var(--fh-sand); }

.fh-social-links { display: flex; gap: 12px; }

.fh-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(202,191,172,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(202,191,172,.7);
  transition: background .2s, color .2s;
  font-size: 15px;
}
.fh-social-link:hover {
  background: var(--fh-clay);
  color: var(--fh-cream);
}

/* ================================================================
   BLOG — ARCHIVE / LOOP
   ================================================================ */
.fh-blog-header {
  background: var(--fh-cream);
  border-bottom: 1px solid var(--fh-border);
  padding: 60px 0 48px;
}

.fh-blog-header h1 { margin-top: 12px; }

.fh-blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 64px 0;
}

.fh-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-content: start;
}

.fh-post-card {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.fh-post-card:hover {
  box-shadow: 0 12px 40px -12px rgba(50,42,32,.16);
  transform: translateY(-2px);
}

.fh-post-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--fh-sage), var(--fh-deep-olive));
  overflow: hidden;
  position: relative;
}

.fh-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.fh-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .35;
}

.fh-post-body { padding: 28px; }

.fh-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fh-post-cat {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fh-clay);
}

.fh-post-date {
  font-size: 12px;
  color: var(--fh-stone);
}

.fh-post-card h2, .fh-post-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.fh-post-card h2 a, .fh-post-card h3 a {
  color: var(--fh-bark);
}
.fh-post-card h2 a:hover, .fh-post-card h3 a:hover { color: var(--fh-clay); }

.fh-post-excerpt {
  font-size: 14px;
  color: var(--fh-stone);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fh-read-more {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fh-clay);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fh-read-more::after { content: '→'; }
.fh-read-more:hover { color: var(--fh-deep-clay); gap: 10px; }

/* ================================================================
   SINGLE POST
   ================================================================ */
.fh-single-header {
  background: var(--fh-cream);
  border-bottom: 1px solid var(--fh-border);
  padding: 64px 0 0;
}

.fh-single-header-inner { max-width: 800px; }

.fh-single-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 12px 0 20px;
  line-height: 1.15;
}

.fh-single-featured-img {
  margin-top: 40px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  overflow: hidden;
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--fh-sage), var(--fh-deep-olive));
}
.fh-single-featured-img img { width: 100%; height: 100%; object-fit: cover; }

.fh-single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 56px 0;
}

.fh-single-content { max-width: 720px; }

/* WordPress .entry-content styling */
.fh-single-content .entry-content h2,
.fh-single-content .entry-content h3 {
  margin: 36px 0 14px;
  color: var(--fh-bark);
}

.fh-single-content .entry-content p {
  font-size: 17px;
  color: var(--fh-stone);
  line-height: 1.75;
  margin-bottom: 1.4em;
}

.fh-single-content .entry-content ul,
.fh-single-content .entry-content ol {
  font-size: 17px;
  color: var(--fh-stone);
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 1.4em;
  list-style: revert;
}

.fh-single-content .entry-content blockquote {
  border-left: 3px solid var(--fh-clay);
  margin: 32px 0;
  padding: 20px 28px;
  background: var(--fh-cream);
  border-radius: 0 14px 14px 0;
}

.fh-single-content .entry-content blockquote p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fh-bark);
  line-height: 1.45;
  margin: 0;
}

.fh-single-content .entry-content a { color: var(--fh-clay); text-decoration: underline; text-decoration-color: rgba(189,107,76,.35); }
.fh-single-content .entry-content a:hover { text-decoration-color: var(--fh-clay); }

.fh-single-content .entry-content img {
  border-radius: 14px;
  margin: 24px 0;
}

/* Post tags */
.fh-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--fh-border);
}

.fh-post-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--btn-radius);
  background: var(--fh-sand);
  border: 1px solid var(--fh-border);
  font-size: 12px;
  font-weight: 500;
  color: var(--fh-stone);
  transition: background .2s, color .2s;
}
.fh-post-tag:hover { background: var(--fh-clay); color: var(--fh-cream); border-color: var(--fh-clay); }

/* Author box */
.fh-author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 48px;
  padding: 28px;
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
}

.fh-author-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--fh-border);
}

.fh-author-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fh-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fh-cream);
  font-family: var(--font-display);
  font-size: 28px;
  flex-shrink: 0;
}

.fh-author-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fh-bark);
  margin-bottom: 6px;
}

.fh-author-title {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fh-clay);
  font-weight: 600;
  margin-bottom: 10px;
}

.fh-author-bio { font-size: 14px; color: var(--fh-stone); line-height: 1.6; }

/* Post navigation */
.fh-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.fh-post-nav-link {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: 14px;
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.fh-post-nav-link:hover { border-color: var(--fh-clay); box-shadow: 0 4px 16px -6px rgba(189,107,76,.2); }

.fh-post-nav-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fh-stone);
  font-weight: 600;
  margin-bottom: 6px;
}

.fh-post-nav-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--fh-bark);
  line-height: 1.3;
}

.fh-post-nav-link.fh-nav-next { text-align: right; }

/* ================================================================
   SIDEBAR
   ================================================================ */
.fh-sidebar { display: flex; flex-direction: column; gap: 28px; }

.fh-widget {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  padding: 28px;
}

.fh-widget-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fh-stone);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fh-border);
}

.fh-widget ul li { padding: 8px 0; border-bottom: 1px solid rgba(231,220,198,.5); }
.fh-widget ul li:last-child { border-bottom: none; }
.fh-widget ul li a { font-size: 14px; color: var(--fh-stone); }
.fh-widget ul li a:hover { color: var(--fh-clay); }

.fh-cta-widget {
  background: var(--fh-deep-clay);
  border-color: transparent;
  text-align: center;
  padding: 32px 24px;
}

.fh-cta-widget h3 {
  font-size: 22px;
  color: var(--fh-cream);
  margin-bottom: 12px;
}

.fh-cta-widget p {
  font-size: 14px;
  color: rgba(251,246,236,.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.fh-cta-widget .fh-btn-primary {
  background: var(--fh-cream);
  color: var(--fh-deep-clay);
  width: 100%;
  text-align: center;
}
.fh-cta-widget .fh-btn-primary:hover { background: var(--fh-sand); }

/* ================================================================
   PAGE TEMPLATE — standard inner page
   ================================================================ */
.fh-page-header {
  background: var(--fh-cream);
  border-bottom: 1px solid var(--fh-border);
  padding: 60px 0 48px;
}

.fh-page-header h1 { margin-top: 12px; }

.fh-page-content {
  padding: 56px 0 80px;
}

.fh-page-content .entry-content { max-width: 800px; }
.fh-page-content .entry-content h2 { font-size: 30px; margin: 36px 0 14px; }
.fh-page-content .entry-content h3 { font-size: 24px; margin: 28px 0 12px; }
.fh-page-content .entry-content p { font-size: 17px; color: var(--fh-stone); line-height: 1.75; margin-bottom: 1.4em; }
.fh-page-content .entry-content ul,
.fh-page-content .entry-content ol { padding-left: 24px; list-style: revert; font-size: 17px; color: var(--fh-stone); line-height: 1.7; margin-bottom: 1.4em; }
.fh-page-content .entry-content a { color: var(--fh-clay); }

/* ================================================================
   SEARCH PAGE
   ================================================================ */
.fh-search-header { background: var(--fh-cream); border-bottom: 1px solid var(--fh-border); padding: 52px 0; }
.fh-search-form { max-width: 560px; margin: 0; }
.fh-search-input-wrap { display: flex; gap: 0; border: 1px solid var(--fh-border); border-radius: var(--btn-radius); overflow: hidden; background: var(--fh-cream); }
.fh-search-input-wrap input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fh-bark);
  outline: none;
}
.fh-search-input-wrap button { background: var(--fh-clay); color: var(--fh-cream); border: none; padding: 14px 24px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; transition: background .2s; }
.fh-search-input-wrap button:hover { background: var(--fh-deep-clay); }

/* ================================================================
   404 PAGE
   ================================================================ */
.fh-404 { text-align: center; padding: 120px 0; }
.fh-404-num { font-family: var(--font-display); font-size: clamp(100px, 20vw, 180px); color: var(--fh-border); line-height: 1; }
.fh-404 h1 { font-size: 36px; margin-top: -16px; margin-bottom: 16px; }
.fh-404 p { font-size: 17px; color: var(--fh-stone); max-width: 420px; margin: 0 auto 32px; }

/* ================================================================
   COMMENTS
   ================================================================ */
.fh-comments { margin-top: 56px; }
.fh-comments-title { font-size: 26px; margin-bottom: 32px; }

.comment {
  padding: 24px 0;
  border-top: 1px solid var(--fh-border);
}

.comment .comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment .comment-author img { border-radius: 50%; }
.comment .fn { font-weight: 600; font-size: 15px; color: var(--fh-bark); }
.comment .comment-meta { font-size: 12px; color: var(--fh-stone); margin-top: 2px; }
.comment .comment-content p { font-size: 15px; color: var(--fh-stone); line-height: 1.7; }

.comment-reply-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fh-clay);
}

#respond { margin-top: 48px; }
#reply-title { font-size: 24px; margin-bottom: 24px; }

.comment-form label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--fh-stone); margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--fh-border);
  border-radius: 12px;
  background: var(--fh-cream);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fh-bark);
  outline: none;
  transition: border-color .2s;
  margin-bottom: 18px;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--fh-clay); }
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form .submit { background: var(--fh-clay); color: var(--fh-cream); border: none; padding: 14px 28px; border-radius: var(--btn-radius); font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.comment-form .submit:hover { background: var(--fh-deep-clay); }

/* ================================================================
   PAGINATION
   ================================================================ */
.fh-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--fh-border);
}

.fh-pagination .page-numbers {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--fh-stone);
  border: 1px solid var(--fh-border);
  background: var(--fh-cream);
  transition: background .2s, color .2s, border-color .2s;
}

.fh-pagination .page-numbers:hover,
.fh-pagination .page-numbers.current {
  background: var(--fh-clay);
  color: var(--fh-cream);
  border-color: var(--fh-clay);
}

.fh-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: var(--fh-stone);
}

/* ================================================================
   WORDPRESS ALIGNMENTS
   ================================================================ */
.alignleft  { float: left;  margin: 8px 24px 16px 0; }
.alignright { float: right; margin: 8px 0 16px 24px; }
.aligncenter { display: block; margin: 24px auto; text-align: center; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }
.alignwide  { width: calc(100% + 80px); margin-left: -40px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 64px; }

  .fh-footer-grid { grid-template-columns: 1fr 1fr; }
  .fh-grid-4 { grid-template-columns: 1fr 1fr; }
  .fh-services-grid { grid-template-columns: 1fr 1fr; }
  .fh-why-cards { grid-template-columns: 1fr 1fr; }
  .fh-bio-layout { grid-template-columns: 1fr; gap: 36px; }
  .fh-bio-visual { aspect-ratio: 16/7; max-width: 480px; }
  .fh-blog-layout { grid-template-columns: 1fr; }
  .fh-single-layout { grid-template-columns: 1fr; }
  .fh-sidebar { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 52px; }

  /* Nav */
  .menu-toggle { display: flex; }

  .primary-navigation {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fh-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 24px;
    overflow-y: auto;
    border-top: 1px solid var(--fh-border);
    gap: 0;
  }

  .primary-navigation.is-open { display: flex; }

  .primary-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .primary-navigation ul li { width: 100%; border-bottom: 1px solid var(--fh-border); }
  .primary-navigation ul li a { display: block; padding: 16px 4px; font-size: 16px; }

  .primary-navigation ul li ul {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
    display: flex;
  }

  .nav-cta { margin: 20px 0 0; width: 100%; }
  .nav-cta .fh-btn { display: block; text-align: center; }

  /* Hero */
  .fh-hero-inner { grid-template-columns: 1fr; }
  .fh-hero-content { padding: 52px 0; }
  .fh-hero-visual { min-height: 280px; }

  /* Grids */
  .fh-grid-3, .fh-grid-2, .fh-approach-grid,
  .fh-path-grid, .fh-services-grid, .fh-testimonials-grid,
  .fh-why-cards { grid-template-columns: 1fr; }

  .fh-steps { grid-template-columns: 1fr; }
  .fh-steps::after { display: none; }

  .fh-posts-grid { grid-template-columns: 1fr; }
  .fh-post-nav { grid-template-columns: 1fr; }
  .fh-footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .fh-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .fh-container { padding: 0 16px; }
  .fh-bio-stats { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   ABOUT / STAFF PAGE
═══════════════════════════════════════ */
.fh-staff-section {
  padding: var(--section-pad) 0;
  background: var(--fh-sand);
}
.fh-staff-section--alt {
  background: var(--fh-cream);
}
.fh-staff-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.fh-staff-section--alt .fh-staff-inner {
  flex-direction: row-reverse;
}
.fh-staff-photo {
  flex: 0 0 360px;
  position: sticky;
  top: 120px;
}
.fh-staff-img {
  width: 100%;
  border-radius: var(--card-radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}
.fh-staff-content {
  flex: 1;
  min-width: 0;
}
.fh-staff-content h2 {
  margin: 8px 0 4px;
}
.fh-staff-creds {
  color: var(--fh-clay);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  margin: 0 0 28px;
}
.fh-staff-bio p {
  color: var(--fh-stone);
  line-height: 1.85;
  margin-bottom: 16px;
}
.fh-staff-quote {
  border-left: 3px solid var(--fh-clay);
  padding: 16px 24px;
  margin: 28px 0 0;
  background: rgba(189,107,76,.06);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  font-style: italic;
  color: var(--fh-bark);
  font-size: 1.05rem;
  line-height: 1.7;
}
.fh-staff-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--fh-border);
}
.fh-staff-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fh-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fh-clay);
  line-height: 1;
}
.fh-stat-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fh-stone);
}
@media (max-width: 900px) {
  .fh-staff-inner,
  .fh-staff-section--alt .fh-staff-inner {
    flex-direction: column;
  }
  .fh-staff-photo {
    flex: none;
    position: static;
    max-width: 340px;
  }
}
@media (max-width: 480px) {
  .fh-staff-photo { max-width: 100%; }
  .fh-staff-stats { gap: 20px; }
}

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.fh-page-intro {
  color: var(--fh-stone);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.fh-svc-section { padding: var(--section-pad) 0; }
.fh-svc-alt { background: var(--fh-cream); }
.fh-section-intro {
  color: var(--fh-stone);
  max-width: 680px;
  margin: 12px 0 36px;
  line-height: 1.7;
}
.fh-start-box {
  position: relative;
  background: var(--fh-cream);
  border: 2px solid var(--fh-clay);
  border-radius: var(--card-radius);
  padding: 44px;
  margin-top: 44px;
}
.fh-start-box-label {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--fh-clay);
  color: var(--fh-cream);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 999px;
}
.fh-start-box-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.fh-start-box-left { flex: 1; }
.fh-start-box-left h3 { margin: 0 0 4px; font-size: 1.7rem; }
.fh-start-subhead {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  color: var(--fh-stone);
  display: block;
  margin-top: 2px;
}
.fh-start-desc {
  color: var(--fh-stone);
  margin: 12px 0 20px;
  line-height: 1.65;
  font-size: .95rem;
}
.fh-start-includes { list-style: none; padding: 0; margin: 0; }
.fh-start-includes li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--fh-bark);
  font-size: .9rem;
  border-bottom: 1px solid var(--fh-border);
}
.fh-start-includes li:last-child { border-bottom: none; }
.fh-start-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fh-sage);
  font-weight: 700;
}
.fh-start-box-right {
  flex: 0 0 200px;
  text-align: center;
  background: var(--fh-sand);
  border-radius: 12px;
  padding: 32px 24px;
}
.fh-price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--fh-clay);
  line-height: 1;
  display: block;
}
.fh-price-note {
  font-size: .75rem;
  color: var(--fh-stone);
  display: block;
  margin-top: 6px;
  line-height: 1.4;
}
.fh-start-split {
  font-size: .8rem;
  color: var(--fh-stone);
  line-height: 1.5;
  margin: 16px 0 20px;
}
.fh-test-includes {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  margin: 0 0 36px;
  padding: 18px 24px;
  background: rgba(147,160,129,.13);
  border-radius: var(--card-radius);
}
.fh-test-include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .82rem;
  color: var(--fh-deep-olive);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.fh-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fh-test-card {
  background: var(--fh-sand);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.fh-test-card:hover { box-shadow: 0 4px 20px rgba(50,42,32,.08); }
.fh-test-card--featured {
  background: var(--fh-cream);
  border-color: var(--fh-clay);
  border-width: 2px;
}
.fh-test-featured-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fh-clay);
  margin-bottom: 8px;
}
.fh-test-card-body { flex: 1; margin-bottom: 20px; }
.fh-test-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fh-bark);
  margin: 0 0 6px;
}
.fh-test-card p {
  color: var(--fh-stone);
  font-size: .85rem;
  line-height: 1.55;
  margin: 0;
}
.fh-test-card-footer {
  border-top: 1px solid var(--fh-border);
  padding-top: 16px;
}
.fh-test-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--fh-clay);
  line-height: 1;
}
.fh-test-rof { font-size: .72rem; color: var(--fh-stone); margin-top: 3px; }
.fh-svc-note { font-size: .8rem; color: var(--fh-stone); margin-top: 24px; font-style: italic; }
.fh-membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.fh-membership-card {
  background: var(--fh-cream);
  border: 1px solid var(--fh-border);
  border-radius: var(--card-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.fh-membership-card--featured {
  border-color: var(--fh-clay);
  border-width: 2px;
  box-shadow: 0 8px 40px rgba(189,107,76,.14);
}
.fh-membership-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fh-clay);
  color: var(--fh-cream);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.fh-membership-card--vip {
  background: var(--fh-deep-olive);
  border-color: var(--fh-deep-olive);
}
.fh-membership-card--vip h3,
.fh-membership-card--vip .fh-price-amount,
.fh-membership-card--vip strong { color: var(--fh-sand); }
.fh-membership-card--vip .fh-membership-tagline,
.fh-membership-card--vip .fh-price-period,
.fh-membership-card--vip li { color: rgba(251,246,236,.8); }
.fh-membership-card--vip li { border-color: rgba(251,246,236,.15); }
.fh-membership-card--vip li::before { color: var(--fh-sage) !important; }
.fh-membership-header { margin-bottom: 24px; }
.fh-membership-header h3 { margin: 0 0 6px; font-size: 1.3rem; }
.fh-membership-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}
.fh-membership-price .fh-price-amount { font-size: 2.5rem; }
.fh-price-period { font-size: 1rem; color: var(--fh-stone); }
.fh-membership-tagline { font-size: .85rem; color: var(--fh-stone); margin: 0; }
.fh-membership-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.fh-membership-features li {
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--fh-border);
  font-size: .88rem;
  color: var(--fh-bark);
  position: relative;
  line-height: 1.4;
}
.fh-membership-features li:last-child { border-bottom: none; }
.fh-membership-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fh-clay);
  font-weight: 700;
}
/* Outline button on light-background membership cards */
.fh-membership-card:not(.fh-membership-card--vip) .fh-btn-outline {
  color: var(--fh-clay);
  border-color: var(--fh-clay);
}
.fh-membership-card:not(.fh-membership-card--vip) .fh-btn-outline:hover {
  background: var(--fh-clay);
  color: var(--fh-cream);
  border-color: var(--fh-clay);
}
.fh-btn-outline--light {
  border-color: rgba(251,246,236,.5);
  color: var(--fh-cream);
}
.fh-btn-outline--light:hover {
  background: rgba(251,246,236,.15);
  border-color: var(--fh-cream);
  color: var(--fh-cream);
}
.fh-alacarte-subhead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fh-bark);
  margin: 0 0 20px;
}
.fh-price-table-wrap {
  overflow-x: auto;
  border-radius: var(--card-radius);
  border: 1px solid var(--fh-border);
}
.fh-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--fh-sand);
}
.fh-price-table th {
  background: var(--fh-deep-olive);
  color: var(--fh-cream);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.fh-price-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--fh-border);
  font-size: .88rem;
  color: var(--fh-bark);
  line-height: 1.4;
}
.fh-price-table tr:last-child td { border-bottom: none; }
.fh-price-table tr:nth-child(even) td { background: var(--fh-cream); }
.fh-price-table td:last-child {
  font-weight: 600;
  color: var(--fh-clay);
  white-space: nowrap;
}
.fh-referral { font-size: .8rem; color: var(--fh-stone); font-weight: 400; }
.fh-svc-notes {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--fh-cream);
  border-radius: var(--card-radius);
  border-left: 3px solid var(--fh-sage);
}
.fh-svc-notes p {
  font-size: .875rem;
  color: var(--fh-stone);
  line-height: 1.7;
  margin: 0 0 10px;
}
.fh-svc-notes p:last-child { margin: 0; }
@media (max-width: 900px) {
  .fh-start-box-inner { flex-direction: column; }
  .fh-start-box-right { flex: none; width: 100%; }
  .fh-test-grid { grid-template-columns: repeat(2, 1fr); }
  .fh-membership-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 600px) {
  .fh-test-grid { grid-template-columns: 1fr; }
  .fh-start-box { padding: 32px 20px; }
  .fh-membership-grid { max-width: 100%; }
}
