@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Poppins:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS  (shared with home.css)
═══════════════════════════════════════════════════════════════ */

:root {
  --hhg-bg:         #f7f4ef;
  --hhg-white:      #ffffff;
  --hhg-text:       #2b2b2b;
  --hhg-muted:      #6d6d6d;
  --hhg-olive:      #80896f;
  --hhg-olive-dark: #6e7660;
  --hhg-sage:       #adb4a6;
  --hhg-tan:        #cbad8d;
  --hhg-clay:       #bb836b;
  --hhg-neutral:    #e2ddcd;
  --hhg-border:     #e9e2d7;
  --hhg-shadow:     0 14px 48px rgba(43, 43, 43, 0.09);
  --hhg-shadow-sm:  0 4px 16px rgba(43, 43, 43, 0.07);
}

/* ═══════════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════════ */

body {
  font-family: 'Poppins', sans-serif;
  background: var(--hhg-bg);
  color: var(--hhg-text);
}

.hhg-page {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT PRIMITIVES
═══════════════════════════════════════════════════════════════ */

.hhg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hhg-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.hhg-section {
  padding: 88px 0;
}

.hhg-section--sm {
  padding: 64px 0;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */

.hhg-eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hhg-olive);
  font-weight: 600;
}

.hhg-eyebrow--light {
  color: rgba(255,255,255,0.72);
}

.hhg-page h1,
.hhg-page h2,
.hhg-page h3,
.hhg-page h4 {
  font-family: 'Playfair Display', serif;
  color: var(--hhg-text);
  font-weight: 600;
}

.hhg-page h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}

.hhg-page h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.hhg-page h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.35;
  margin: 0 0 12px;
}

.hhg-page h4 {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 0 10px;
}

.hhg-page p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--hhg-muted);
  margin: 0 0 18px;
}

.hhg-page p:last-child {
  margin-bottom: 0;
}

.hhg-lead {
  font-size: 18px;
  line-height: 1.78;
  color: var(--hhg-muted);
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════════ */

.hhg-page-hero {
  background: var(--hhg-white);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--hhg-border);
}

.hhg-page-hero--beige {
  background: var(--hhg-bg);
}

.hhg-page-hero--olive {
  background: linear-gradient(135deg, #5a6350 0%, var(--hhg-olive) 65%, #7a7260 100%);
}

.hhg-page-hero--olive h1,
.hhg-page-hero--olive .hhg-lead {
  color: #fff;
}

.hhg-page-hero--olive .hhg-eyebrow {
  color: rgba(255,255,255,0.7);
}

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

.hhg-page-hero-inner--centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */

.hhg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.hhg-btn-primary {
  background: var(--hhg-olive);
  color: #fff;
  border-color: var(--hhg-olive);
}

.hhg-btn-primary:hover {
  background: var(--hhg-olive-dark);
  border-color: var(--hhg-olive-dark);
  color: #fff;
}

.hhg-btn-secondary {
  background: transparent;
  color: var(--hhg-olive);
  border-color: var(--hhg-olive);
}

.hhg-btn-secondary:hover {
  background: rgba(128, 137, 111, 0.09);
  color: var(--hhg-olive);
}

.hhg-btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.hhg-btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.hhg-text-link {
  color: var(--hhg-olive);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hhg-text-link:hover {
  text-decoration: underline;
  color: var(--hhg-olive);
}

.hhg-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS
═══════════════════════════════════════════════════════════════ */

.hhg-img-placeholder {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(
    150deg,
    rgba(173, 180, 166, 0.45) 0%,
    rgba(203, 173, 141, 0.22) 48%,
    rgba(226, 221, 205, 0.88) 100%
  );
  border: 1px solid var(--hhg-border);
  box-shadow: var(--hhg-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hhg-sage);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   TWO-COLUMN GRID
═══════════════════════════════════════════════════════════════ */

.hhg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hhg-two-col--wide-right {
  grid-template-columns: 1fr 1.15fr;
}

/* ═══════════════════════════════════════════════════════════════
   CONTENT CARDS / CALLOUT BOXES
═══════════════════════════════════════════════════════════════ */

.hhg-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 18px;
  padding: 36px 40px;
}

.hhg-card--beige {
  background: var(--hhg-bg);
}

.hhg-callout {
  background: var(--hhg-neutral);
  border-left: 3px solid var(--hhg-tan);
  border-radius: 10px;
  padding: 24px 28px;
  font-size: 15px;
  font-style: italic;
  color: var(--hhg-text);
  line-height: 1.8;
}

.hhg-callout p {
  margin: 0;
  color: var(--hhg-text);
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════
   PILLAR LIST (icon + text rows)
═══════════════════════════════════════════════════════════════ */

.hhg-pillar-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hhg-pillar-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.hhg-pillar-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hhg-tan);
  margin-top: 7px;
}

.hhg-pillar-item h4 {
  color: var(--hhg-text);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.hhg-pillar-item p {
  font-size: 15px;
  line-height: 1.78;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════════════════════════════ */

.hhg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.hhg-pricing-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hhg-pricing-card--featured {
  border-color: var(--hhg-olive);
  box-shadow: 0 0 0 1px var(--hhg-olive);
}

.hhg-pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--hhg-olive);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-bottom-left-radius: 10px;
}

.hhg-pricing-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--hhg-tan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hhg-pricing-card h3 {
  font-size: 1.1rem;
  color: var(--hhg-text);
  margin-bottom: 8px;
}

.hhg-pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--hhg-text);
  line-height: 1;
  margin: 16px 0 8px;
}

/* Design polish pass */
.hhg-page {
  background:
    radial-gradient(circle at top left, rgba(203, 173, 141, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(173, 180, 166, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf7f2 0%, #f7f4ef 28%, #ffffff 100%);
}

.hhg-section,
.hhg-section--sm,
.hhg-page-hero,
.hhg-cta-banner,
.hhg-product-hero,
.hhg-product-description-section,
.hhg-product-next-section,
.hhg-product-related-section {
  position: relative;
}

.hhg-section::before,
.hhg-section--sm::before,
.hhg-page-hero::before,
.hhg-product-description-section::before,
.hhg-product-next-section::before,
.hhg-product-related-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(128, 137, 111, 0.028) 1px, transparent 1px);
  background-size: 100% 116px;
  opacity: 0.5;
}

.hhg-page .hhg-container,
.hhg-page .hhg-container--narrow {
  position: relative;
  z-index: 1;
}

.hhg-page-hero {
  overflow: hidden;
}

.hhg-page-hero--olive {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.13), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(203, 173, 141, 0.18), transparent 24%),
    linear-gradient(135deg, #66705b 0%, #7d8770 52%, #8a7d6d 100%);
}

.hhg-page-hero--olive::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 30px;
  width: 280px;
  height: 280px;
  border-radius: 42% 58% 60% 40% / 48% 34% 66% 52%;
  background: rgba(255,255,255,0.07);
  filter: blur(6px);
}

.hhg-page-hero--beige {
  background:
    radial-gradient(circle at 20% 18%, rgba(203, 173, 141, 0.18), transparent 24%),
    radial-gradient(circle at 80% 12%, rgba(173, 180, 166, 0.16), transparent 22%),
    linear-gradient(180deg, #faf5ef 0%, #f3eee4 100%);
}

.hhg-page-hero-inner {
  padding: 10px 0;
}

.hhg-card,
.hhg-pricing-card,
.hhg-testing-why-item,
.hhg-test-card,
.hhg-condition-card {
  box-shadow: 0 18px 40px rgba(43, 43, 43, 0.06);
}

.hhg-card {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,237,0.9));
}

.hhg-two-col > .hhg-img-placeholder,
.hhg-testing-why-grid,
.hhg-pricing-grid,
.hhg-test-cards-grid {
  position: relative;
  z-index: 1;
}

.hhg-img-placeholder {
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,0.42), transparent 18%),
    linear-gradient(145deg, rgba(203,173,141,0.38), rgba(173,180,166,0.34)),
    linear-gradient(180deg, #f2eadf, #e6dccd);
  color: rgba(97, 88, 71, 0.8);
  border-radius: 26px;
}

.hhg-testing-why-grid,
.hhg-pricing-grid,
.hhg-test-cards-grid {
  gap: 22px;
}

.hhg-testing-why-item,
.hhg-condition-card,
.hhg-test-card {
  border-radius: 22px;
  overflow: hidden;
}

.hhg-testing-why-item,
.hhg-condition-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,244,237,0.92));
}

.hhg-testing-why-item::before,
.hhg-pricing-card::before,
.hhg-condition-card::before,
.hhg-test-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--hhg-tan), var(--hhg-olive));
}

.hhg-pricing-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,244,239,0.92));
  border-radius: 24px;
}

.hhg-pricing-card--featured {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(43, 43, 43, 0.09);
}

.hhg-pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(203,173,141,0.18), rgba(128,137,111,0.24), rgba(203,173,141,0.08));
  margin: 18px 0 18px;
}

.hhg-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hhg-pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--hhg-muted);
  font-size: 14px;
  line-height: 1.7;
}

.hhg-pricing-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--hhg-tan);
  flex-shrink: 0;
}

.hhg-test-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,244,239,0.92));
  border: 1px solid var(--hhg-border);
}

.hhg-test-card-image {
  min-height: 220px;
  border-radius: 0 !important;
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(160deg, rgba(203,173,141,0.24), rgba(173,180,166,0.22)),
    linear-gradient(180deg, #f1e8dc, #e7dccd);
  color: rgba(102, 89, 66, 0.82);
}

.hhg-test-card-body {
  padding: 24px 24px 26px;
}

.hhg-testing-bundle-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.09), transparent 22%),
    linear-gradient(135deg, #67705c 0%, #7f8971 54%, #8a7c69 100%);
}

.hhg-testing-bundle-strip::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.hhg-testing-bundle-inner {
  position: relative;
  z-index: 1;
}

.hhg-callout {
  background: linear-gradient(180deg, rgba(226,221,205,0.7), rgba(247,244,239,0.9));
  border-left-width: 4px;
  box-shadow: 0 14px 26px rgba(43, 43, 43, 0.05);
}

.hhg-cta-banner {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.1), transparent 18%),
    linear-gradient(135deg, #626b57 0%, #79836d 60%, #8b7f6e 100%);
}

.hhg-cta-banner::after {
  content: "";
  position: absolute;
  left: -110px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.hhg-cta-banner .hhg-container {
  position: relative;
  z-index: 1;
}

.hhg-btn,
.hhg-card,
.hhg-pricing-card,
.hhg-test-card,
.hhg-testing-why-item,
.hhg-condition-card {
  animation: hhgInnerFadeUp 0.75s ease both;
}

@keyframes hhgInnerFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hhg-quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.hhg-quiz-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hhg-quiz-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hhg-quiz-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--hhg-text);
  font-weight: 500;
}

.hhg-quiz-field input {
  min-height: 50px;
  border: 1px solid var(--hhg-border);
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
}

.hhg-quiz-question {
  border: 1px solid var(--hhg-border);
  border-radius: 16px;
  padding: 18px 18px 8px;
  background: var(--hhg-bg);
}

.hhg-quiz-question legend {
  padding: 0 6px;
  font-weight: 600;
  color: var(--hhg-text);
  font-size: 15px;
  margin-bottom: 12px;
}

.hhg-quiz-question label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 12px;
  color: var(--hhg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hhg-quiz-question input[type="radio"] {
  margin-top: 5px;
}

.hhg-order-support {
  padding: 28px 0 10px;
}

@media (max-width: 900px) {
  .hhg-quiz-layout,
  .hhg-quiz-field-grid {
    grid-template-columns: 1fr;
  }
}

.hhg-pricing-price sup {
  font-size: 1rem;
  vertical-align: super;
  font-weight: 600;
}

.hhg-pricing-card > p {
  font-size: 14.5px;
  color: var(--hhg-muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 24px;
}

.hhg-pricing-divider {
  height: 1px;
  background: var(--hhg-border);
  margin: 20px 0;
}

.hhg-pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.hhg-pricing-features li {
  font-size: 14px;
  color: var(--hhg-muted);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hhg-pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hhg-sage);
  margin-top: 7px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE CTA BANNER
═══════════════════════════════════════════════════════════════ */

.hhg-cta-banner {
  background: linear-gradient(135deg, #5a6350 0%, var(--hhg-olive) 65%, #7a7260 100%);
  padding: 80px 0;
  text-align: center;
}

.hhg-cta-banner h2 {
  color: #fff;
  margin-bottom: 14px;
}

.hhg-cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ═══════════════════════════════════════════════════════════════
   PROSE (long-form rich text sections)
═══════════════════════════════════════════════════════════════ */

.hhg-prose {
  max-width: 760px;
}

.hhg-prose p {
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--hhg-muted);
  margin: 0 0 22px;
}

.hhg-prose h3 {
  font-size: 1.15rem;
  color: var(--hhg-text);
  margin: 36px 0 12px;
}

.hhg-prose strong {
  color: var(--hhg-text);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════════ */

.hhg-legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 40px;
}

.hhg-legal-body h2 {
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--hhg-text);
  margin: 36px 0 10px;
  letter-spacing: 0;
}

.hhg-legal-body p,
.hhg-legal-body li {
  font-size: 15px;
  color: var(--hhg-muted);
  line-height: 1.85;
}

.hhg-legal-body ul {
  padding-left: 20px;
  margin: 0 0 18px;
}

.hhg-legal-body li {
  margin-bottom: 6px;
}

.hhg-legal-meta {
  font-size: 13px;
  color: var(--hhg-muted);
  border-bottom: 1px solid var(--hhg-border);
  padding-bottom: 24px;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */

.hhg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.hhg-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hhg-contact-block h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hhg-olive);
  margin: 0 0 6px;
}

.hhg-contact-block p,
.hhg-contact-block a {
  font-size: 15.5px;
  color: var(--hhg-text);
  text-decoration: none;
  line-height: 1.6;
  margin: 0;
}

.hhg-contact-block a:hover {
  color: var(--hhg-olive);
}

.hhg-contact-form {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 20px;
  padding: 44px 40px;
}

.hhg-contact-form h3 {
  margin-bottom: 28px;
  color: var(--hhg-text);
}

.hhg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hhg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.hhg-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hhg-muted);
}

.hhg-field input,
.hhg-field select,
.hhg-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--hhg-border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--hhg-text);
  background: var(--hhg-bg);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.hhg-field input:focus,
.hhg-field select:focus,
.hhg-field textarea:focus {
  border-color: var(--hhg-olive);
  background: var(--hhg-white);
}

.hhg-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* ═══════════════════════════════════════════════════════════════
   CONDITIONS PAGE
═══════════════════════════════════════════════════════════════ */

.hhg-conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hhg-condition-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 16px;
  padding: 28px 28px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  cursor: default;
}

.hhg-condition-card:hover {
  box-shadow: var(--hhg-shadow-sm);
  transform: translateY(-2px);
}

.hhg-condition-card h3 {
  font-size: 1.05rem;
  color: var(--hhg-text);
  margin-bottom: 10px;
}

.hhg-condition-card p {
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

.hhg-condition-accent {
  width: 24px;
  height: 3px;
  background: var(--hhg-tan);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   TESTING PACKAGES LANDING
═══════════════════════════════════════════════════════════════ */

.hhg-testing-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hhg-testing-why-item {
  background: var(--hhg-bg);
  border: 1px solid var(--hhg-border);
  border-radius: 14px;
  padding: 24px 22px;
}

.hhg-testing-why-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--hhg-text);
  margin: 0 0 6px;
}

.hhg-testing-why-item p {
  font-size: 14px;
  color: var(--hhg-muted);
  line-height: 1.7;
  margin: 0;
}

.hhg-test-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hhg-test-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--hhg-text);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hhg-test-card:hover {
  box-shadow: var(--hhg-shadow);
  transform: translateY(-3px);
  color: var(--hhg-text);
}

.hhg-test-card-image {
  flex-shrink: 0;
}

.hhg-test-card-image.hhg-img-placeholder--test {
  position: relative;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 240px;
  padding: 22px;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 22%),
    linear-gradient(145deg, rgba(128,137,111,0.94), rgba(203,173,141,0.72));
}

.hhg-test-card-image.hhg-img-placeholder--test::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(37, 38, 31, 0.42)),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 20%);
}

.hhg-test-card-kicker,
.hhg-test-card-title {
  position: relative;
  z-index: 1;
  display: block;
}

.hhg-test-card-kicker {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.hhg-test-card-title {
  max-width: 18ch;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.hhg-test-card-image--gut-microbiome-stool-test-consult {
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.2), transparent 18%),
    linear-gradient(145deg, rgba(173,180,166,0.94), rgba(128,137,111,0.92)),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
}

.hhg-test-card-image--sibo-breath-test-consult {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(187,131,107,0.9), rgba(128,137,111,0.92));
}

.hhg-test-card-image--leaky-gut-test-consult {
  background:
    radial-gradient(circle at 80% 16%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(203,173,141,0.88), rgba(128,137,111,0.92));
}

.hhg-test-card-image--allergy-intolerance-test-consult {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(187,131,107,0.82), rgba(173,180,166,0.92));
}

.hhg-test-card-image--h-pylori-breath-test-consult {
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(128,137,111,0.94), rgba(90,99,80,0.96));
}

.hhg-test-card-image--wellness-check-blood-test-consult {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(173,180,166,0.88), rgba(203,173,141,0.9));
}

.hhg-test-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hhg-test-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.hhg-test-card-body p {
  font-size: 14px;
  color: var(--hhg-muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 16px;
}

.hhg-test-includes {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hhg-test-includes li {
  font-size: 13px;
  color: var(--hhg-muted);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hhg-test-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hhg-sage);
  margin-top: 6px;
}

.hhg-test-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hhg-border);
  font-size: 13.5px;
  color: var(--hhg-muted);
  flex-wrap: wrap;
}

.hhg-test-price-row strong {
  color: var(--hhg-text);
  font-weight: 700;
  font-size: 15px;
}

.hhg-testing-bundle-strip {
  background: linear-gradient(135deg, #5a6350 0%, var(--hhg-olive) 65%, #7a7260 100%);
  padding: 56px 0;
}

.hhg-testing-bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   BUNDLES PAGE
═══════════════════════════════════════════════════════════════ */

.hhg-bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hhg-bundle-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hhg-bundle-card--featured {
  border-color: var(--hhg-olive);
  box-shadow: 0 0 0 1px var(--hhg-olive);
}

.hhg-bundle-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--hhg-olive);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-bottom-left-radius: 12px;
}

.hhg-bundle-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hhg-border);
}

.hhg-bundle-header h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--hhg-text);
  margin-bottom: 8px;
}

.hhg-bundle-subtitle {
  font-size: 13px;
  color: var(--hhg-muted);
  line-height: 1.6;
  margin: 0;
}

.hhg-bundle-includes {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}

.hhg-bundle-includes li {
  font-size: 14px;
  color: var(--hhg-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hhg-bundle-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hhg-tan);
  margin-top: 6px;
}

.hhg-bundle-pricing {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--hhg-bg);
  border: 1px solid var(--hhg-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.hhg-bundle-price-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  gap: 4px;
}

.hhg-bundle-price-divider {
  width: 1px;
  background: var(--hhg-border);
  flex-shrink: 0;
}

.hhg-bundle-price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hhg-muted);
}

.hhg-bundle-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--hhg-text);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   EBOOKS PAGE
═══════════════════════════════════════════════════════════════ */

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

.hhg-ebook-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hhg-ebook-card:hover {
  box-shadow: var(--hhg-shadow);
  transform: translateY(-3px);
}

.hhg-ebook-image {
  flex-shrink: 0;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--hhg-sage);
}

.hhg-ebook-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hhg-ebook-body h3 {
  font-size: 1.1rem;
  color: var(--hhg-text);
  margin-bottom: 12px;
}

.hhg-ebook-body p {
  font-size: 15px;
  color: var(--hhg-muted);
  line-height: 1.78;
  flex-grow: 1;
  margin-bottom: 16px;
}

.hhg-ebook-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.hhg-ebook-features li {
  font-size: 13.5px;
  color: var(--hhg-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hhg-ebook-features li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hhg-tan);
  margin-top: 7px;
}

.hhg-ebook-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--hhg-border);
  flex-wrap: wrap;
}

.hhg-ebook-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hhg-text);
}

.hhg-ebook-optin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hhg-ebook-optin-form input[type="text"],
.hhg-ebook-optin-form input[type="email"] {
  border-radius: 10px !important;
  background: var(--hhg-bg) !important;
  color: var(--hhg-text) !important;
  border: 1.5px solid var(--hhg-border) !important;
}

.hhg-ebook-optin-form input:focus {
  border-color: var(--hhg-olive) !important;
}

.hhg-ebook-optin-form input::placeholder {
  color: var(--hhg-muted) !important;
}

/* ═══════════════════════════════════════════════════════════════
   CONDITION PAGES
═══════════════════════════════════════════════════════════════ */

.hhg-condition-test-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--hhg-bg);
  border: 1px solid var(--hhg-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hhg-condition-test-card:hover {
  border-color: var(--hhg-olive);
  background: var(--hhg-white);
}

.hhg-related-conditions-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hhg-related-cond-pill {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hhg-text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hhg-related-cond-pill:hover {
  border-color: var(--hhg-olive);
  color: var(--hhg-olive);
  background: rgba(128, 137, 111, 0.05);
}

/* ═══════════════════════════════════════════════════════════════
   MY STORY PAGE — specific components
═══════════════════════════════════════════════════════════════ */

.hhg-story-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.hhg-story-pillar-item {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--hhg-text);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — Contact page
═══════════════════════════════════════════════════════════════ */

.hhg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hhg-faq-item {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 12px;
  overflow: hidden;
}

.hhg-faq-item + .hhg-faq-item {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.hhg-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--hhg-text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.hhg-faq-q::-webkit-details-marker { display: none; }

.hhg-faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--hhg-olive);
  transition: transform 0.2s ease;
}

.hhg-faq-item[open] .hhg-faq-q::after {
  transform: rotate(45deg);
}

.hhg-faq-a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--hhg-muted);
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FORM SUCCESS STATE
═══════════════════════════════════════════════════════════════ */

.hhg-form-success {
  background: rgba(128, 137, 111, 0.1);
  border: 1px solid var(--hhg-olive);
  border-radius: 12px;
  padding: 20px 24px;
}

.hhg-form-success p {
  color: var(--hhg-olive);
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG ARCHIVE (home.php)
═══════════════════════════════════════════════════════════════ */

.hhg-blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hhg-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--hhg-bg);
  border: 1px solid var(--hhg-border);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.hhg-blog-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  text-decoration: none;
}

.hhg-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hhg-blog-card:hover .hhg-blog-image img {
  transform: scale(1.04);
}

.hhg-blog-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    150deg,
    rgba(173, 180, 166, 0.4) 0%,
    rgba(226, 221, 205, 0.85) 100%
  );
  color: var(--hhg-sage);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hhg-blog-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hhg-blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.hhg-blog-date {
  font-size: 12px;
  color: var(--hhg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}

.hhg-blog-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--hhg-olive);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(128, 137, 111, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
}

.hhg-blog-card-title,
.hhg-blog-body h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.hhg-blog-card-title a,
.hhg-blog-body h3 a {
  color: var(--hhg-text);
  text-decoration: none;
}

.hhg-blog-card-title a:hover,
.hhg-blog-body h3 a:hover {
  color: var(--hhg-olive);
}

.hhg-blog-body p {
  font-size: 14.5px;
  color: var(--hhg-muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 16px;
}

.hhg-blog-pagination {
  margin-top: 56px;
  text-align: center;
}

.hhg-blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hhg-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--hhg-muted);
  text-decoration: none;
  border: 1px solid var(--hhg-border);
  background: var(--hhg-white);
  transition: background 0.2s ease, color 0.2s ease;
}

.hhg-blog-pagination .page-numbers.current,
.hhg-blog-pagination .page-numbers:hover {
  background: var(--hhg-olive);
  color: #fff;
  border-color: var(--hhg-olive);
}

.hhg-blog-pagination .page-numbers.prev,
.hhg-blog-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
  border-radius: 999px;
}

.hhg-blog-empty {
  text-align: center;
  padding: 48px 0;
}

.hhg-blog-optin-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hhg-blog-optin-form input[type="email"] {
  padding: 13px 18px;
  border: 1.5px solid var(--hhg-border);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--hhg-text);
  background: var(--hhg-white);
  outline: none;
  width: 280px;
  max-width: 100%;
  transition: border-color 0.2s ease;
}

.hhg-blog-optin-form input[type="email"]:focus {
  border-color: var(--hhg-olive);
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE POST (single.php)
═══════════════════════════════════════════════════════════════ */

.hhg-post-hero {
  background: var(--hhg-white);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--hhg-border);
}

.hhg-post-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hhg-post-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--hhg-olive);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(128, 137, 111, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
}

.hhg-post-category:hover {
  background: rgba(128, 137, 111, 0.2);
}

.hhg-post-date,
.hhg-post-read-time {
  font-size: 13px;
  color: var(--hhg-muted);
  font-weight: 500;
}

.hhg-post-meta-sep {
  color: var(--hhg-border);
  font-size: 16px;
}

.hhg-post-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.hhg-post-excerpt {
  font-size: 18px;
  line-height: 1.75;
  color: var(--hhg-muted);
  margin: 0;
  max-width: 680px;
}

.hhg-post-featured-image {
  background: var(--hhg-white);
  padding: 0 0 0;
}

.hhg-post-featured-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0 0 24px 24px;
  display: block;
}

/* Post body prose */
.hhg-post-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--hhg-muted);
}

.hhg-ebook-image.hhg-img-placeholder--ebook {
  position: relative;
  min-height: 260px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 22px;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 18%),
    linear-gradient(145deg, rgba(128,137,111,0.9), rgba(203,173,141,0.72));
}

.hhg-ebook-image.hhg-img-placeholder--ebook::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(36,39,30,0.4)),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 18%);
}

.hhg-ebook-kicker,
.hhg-ebook-cover-title {
  position: relative;
  z-index: 1;
  display: block;
}

.hhg-ebook-kicker {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.hhg-ebook-cover-title {
  max-width: 18ch;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.hhg-ebook-image--gut-friendly-low-fodmap-meal-plan {
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,0.2), transparent 18%),
    linear-gradient(145deg, rgba(173,180,166,0.86), rgba(128,137,111,0.92));
}

.hhg-ebook-image--gut-repair-foundations-guide {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(203,173,141,0.82), rgba(128,137,111,0.9));
}

.hhg-ebook-image--gut-brain-calm-support-guide {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(128,137,111,0.92), rgba(90,99,80,0.96));
}

.hhg-ebook-image--bloating-and-digestion-support-guide {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(145deg, rgba(187,131,107,0.78), rgba(203,173,141,0.88));
}

.hhg-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--hhg-text);
  line-height: 1.25;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.hhg-post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--hhg-text);
  margin: 32px 0 12px;
}

.hhg-post-content p {
  margin: 0 0 22px;
  font-size: 17px;
}

.hhg-post-content ul,
.hhg-post-content ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hhg-post-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16.5px;
  line-height: 1.78;
}

.hhg-post-content ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hhg-tan);
  margin-top: 9px;
}

.hhg-post-content ol {
  counter-reset: post-ol;
}

.hhg-post-content ol li {
  counter-increment: post-ol;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16.5px;
  line-height: 1.78;
}

.hhg-post-content ol li::before {
  content: counter(post-ol) '.';
  flex-shrink: 0;
  font-weight: 700;
  color: var(--hhg-olive);
  font-size: 14px;
  margin-top: 3px;
}

.hhg-post-content strong {
  color: var(--hhg-text);
  font-weight: 600;
}

.hhg-post-content a {
  color: var(--hhg-olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hhg-post-content blockquote {
  border-left: 3px solid var(--hhg-tan);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
}

.hhg-post-content blockquote p {
  font-style: italic;
  font-size: 18px;
  color: var(--hhg-text);
}

.hhg-post-content img {
  max-width: 100%;
  border-radius: 14px;
  margin: 8px 0;
}

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

.hhg-post-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--hhg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--hhg-border);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hhg-post-tag:hover {
  border-color: var(--hhg-olive);
  color: var(--hhg-olive);
}

/* Author card */
.hhg-post-author-section {
  background: var(--hhg-bg);
  padding: 48px 0;
}

.hhg-author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 18px;
  padding: 32px;
}

.hhg-author-avatar {
  flex-shrink: 0;
}

.hhg-avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--hhg-border);
}

.hhg-author-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hhg-muted);
  margin: 0 0 4px;
}

.hhg-author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hhg-text);
  margin: 0 0 8px;
}

.hhg-author-bio {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--hhg-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   COMING SOON PAGE
═══════════════════════════════════════════════════════════════ */

.hhg-coming-soon-hero {
  background: linear-gradient(145deg, #f7f4ef 0%, rgba(203, 173, 141, 0.15) 100%);
  padding: 100px 0;
  border-bottom: 1px solid var(--hhg-border);
  text-align: center;
}

.hhg-coming-soon-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hhg-coming-soon-pill {
  display: inline-block;
  background: var(--hhg-neutral);
  color: var(--hhg-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid var(--hhg-border);
  margin-bottom: 20px;
}

.hhg-coming-soon-hero .hhg-eyebrow {
  margin-top: 8px;
}

.hhg-coming-soon-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.hhg-coming-soon-hero .hhg-lead {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 36px;
}

.hhg-coming-soon-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.hhg-coming-soon-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hhg-muted);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hhg-cs-form-row {
  display: flex;
  gap: 10px;
}

.hhg-cs-form-row input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--hhg-border);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--hhg-text);
  background: var(--hhg-white);
  outline: none;
  transition: border-color 0.2s ease;
}

.hhg-cs-form-row input[type="email"]:focus {
  border-color: var(--hhg-olive);
}

.hhg-cs-form-row .hhg-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.hhg-cs-form-note {
  font-size: 12px;
  color: var(--hhg-muted);
  text-align: center;
  margin-top: 10px;
}

.hhg-cs-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.hhg-cs-feature {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 18px;
  padding: 32px 28px;
}

.hhg-cs-feature h3 {
  color: var(--hhg-text);
  margin-bottom: 10px;
}

.hhg-cs-feature p {
  font-size: 15px;
  color: var(--hhg-muted);
  line-height: 1.75;
  margin: 0;
}

.hhg-cs-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hhg-cs-option-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.hhg-cs-option-card h3 {
  color: var(--hhg-text);
  margin-bottom: 12px;
}

.hhg-cs-option-card p {
  font-size: 15px;
  color: var(--hhg-muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════════ */

.hhg-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--hhg-white);
  border-top: 1px solid var(--hhg-border);
  border-bottom: 1px solid var(--hhg-border);
}

.hhg-stat-item {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--hhg-border);
}

.hhg-stat-item:last-child { border-right: none; }

.hhg-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--hhg-olive);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.hhg-stat-label {
  font-size: 13px;
  color: var(--hhg-muted);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS STEPS (horizontal journey diagram)
═══════════════════════════════════════════════════════════════ */

.hhg-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.hhg-process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: var(--hhg-border);
  z-index: 0;
}

.hhg-process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.hhg-process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hhg-olive);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.hhg-process-step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--hhg-text);
  margin: 0 0 8px;
}

.hhg-process-step p {
  font-size: 14px;
  color: var(--hhg-muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH GRID (numbered pillars, used on condition pages)
═══════════════════════════════════════════════════════════════ */

.hhg-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hhg-approach-pillar {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 16px;
  padding: 32px 28px;
}

.hhg-pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hhg-neutral);
  line-height: 1;
  margin-bottom: 16px;
}

.hhg-approach-pillar h3 {
  color: var(--hhg-text);
  margin-bottom: 10px;
}

.hhg-approach-pillar p {
  font-size: 15px;
  color: var(--hhg-muted);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CARD LINK + CONDITION LEARN-MORE
═══════════════════════════════════════════════════════════════ */

.hhg-card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hhg-olive);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hhg-card-link:hover { color: var(--hhg-olive-dark); }

.hhg-condition-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hhg-olive);
  margin-top: 14px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.hhg-condition-card:hover .hhg-condition-learn-more { gap: 9px; }

/* ═══════════════════════════════════════════════════════════════
   "IS THIS RIGHT FOR YOU?" checklist block
═══════════════════════════════════════════════════════════════ */

.hhg-right-for-you {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hhg-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--hhg-text);
  line-height: 1.6;
}

.hhg-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(128, 137, 111, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--hhg-olive);
}

/* ═══════════════════════════════════════════════════════════════
   WHICH BUNDLE GUIDE
═══════════════════════════════════════════════════════════════ */

.hhg-bundle-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.hhg-bundle-guide-card {
  background: var(--hhg-white);
  border: 1px solid var(--hhg-border);
  border-radius: 16px;
  padding: 28px 24px;
}

.hhg-bundle-guide-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--hhg-text);
  margin: 0 0 8px;
}

.hhg-bundle-guide-card p {
  font-size: 13.5px;
  color: var(--hhg-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.hhg-bundle-guide-card .hhg-badge {
  display: inline-block;
  background: rgba(128, 137, 111, 0.1);
  color: var(--hhg-olive);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hhg-two-col,
  .hhg-two-col--wide-right {
    gap: 48px;
  }

  .hhg-contact-grid {
    gap: 48px;
  }

  .hhg-conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hhg-container,
  .hhg-container--narrow {
    padding: 0 24px;
  }

  .hhg-section {
    padding: 56px 0;
  }

  .hhg-section--sm {
    padding: 44px 0;
  }

  .hhg-page-hero {
    padding: 56px 0 48px;
  }

  .hhg-page h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: 18px;
  }

  .hhg-page h2 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .hhg-lead {
    font-size: 16px;
    max-width: 100%;
  }

  .hhg-two-col,
  .hhg-two-col--wide-right,
  .hhg-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hhg-pricing-grid {
    grid-template-columns: 1fr;
  }

  .hhg-btn-row {
    flex-direction: column;
  }

  .hhg-btn {
    width: 100%;
    justify-content: center;
  }

  .hhg-conditions-grid {
    grid-template-columns: 1fr;
  }

  .hhg-contact-form {
    padding: 32px 24px;
  }

  .hhg-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hhg-legal-body {
    padding: 48px 24px;
  }

  .hhg-cta-banner {
    padding: 56px 0;
  }

  /* Blog */
  .hhg-blog-archive-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hhg-blog-optin-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hhg-blog-optin-form input[type="email"] {
    width: 100%;
  }

  /* Single post */
  .hhg-post-hero {
    padding: 48px 0 40px;
  }

  .hhg-post-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hhg-post-excerpt {
    font-size: 16px;
  }

  .hhg-post-content {
    font-size: 16px;
  }

  .hhg-post-content p {
    font-size: 16px;
  }

  .hhg-author-card {
    flex-direction: column;
    gap: 16px;
  }

  /* Coming soon */
  .hhg-coming-soon-hero {
    padding: 72px 0;
  }

  .hhg-cs-form-row {
    flex-direction: column;
  }

  .hhg-cs-form-row .hhg-btn {
    width: 100%;
  }

  .hhg-cs-features-grid {
    grid-template-columns: 1fr;
  }

  .hhg-cs-options-grid {
    grid-template-columns: 1fr;
  }

  /* Testing landing */
  .hhg-testing-why-grid {
    grid-template-columns: 1fr;
  }

  .hhg-test-cards-grid {
    grid-template-columns: 1fr;
  }

  .hhg-testing-bundle-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Bundles */
  .hhg-bundles-grid {
    grid-template-columns: 1fr;
  }

  /* eBooks */
  .hhg-ebooks-grid {
    grid-template-columns: 1fr;
  }

  .hhg-ebook-optin-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hhg-ebook-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Condition pages */
  .hhg-related-cond-pill {
    font-size: 13px;
    padding: 8px 16px;
  }
}

.hhg-section-surface {
  background: var(--hhg-white);
}

.hhg-section-surface--compact {
  padding: 40px 0;
}

.hhg-section-surface--relaxed {
  padding: 52px 0;
}

.hhg-btn-row--centered {
  justify-content: center;
}

.hhg-btn-block {
  width: 100%;
  text-align: center;
}

.hhg-btn-spaced {
  margin-top: 8px;
}

.hhg-btn-offset-sm {
  margin-top: 4px;
}

.hhg-img-placeholder {
  justify-content: center;
  min-height: 420px;
  padding: 34px;
  text-align: center;
  color: #5d6656;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hhg-img-placeholder--story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.78), transparent 34%),
    radial-gradient(circle at bottom right, rgba(128, 137, 111, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(173, 180, 166, 0.58) 0%, rgba(203, 173, 141, 0.28) 48%, rgba(226, 221, 205, 0.92) 100%);
}

.hhg-img-placeholder--story::before,
.hhg-img-placeholder--story::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  opacity: 0.7;
}

.hhg-img-placeholder--story::before {
  width: 190px;
  height: 190px;
  right: -46px;
  top: -52px;
  background: rgba(255,255,255,0.34);
}

.hhg-img-placeholder--story::after {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -90px;
  background: rgba(128, 137, 111, 0.1);
}

.hhg-img-placeholder--consult {
  min-height: 480px;
}

.hhg-img-placeholder--condition {
  min-height: 420px;
}

.hhg-img-placeholder--ebook {
  min-height: 280px;
  border-radius: 16px 16px 0 0;
  border: none;
  box-shadow: none;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.09em;
  line-height: 1.7;
}

.hhg-section-header--centered,
.hhg-section-heading--centered,
.hhg-text-centered {
  text-align: center;
}

.hhg-section-header--narrow {
  max-width: 580px;
  margin: 0 auto 52px;
}

.hhg-section-heading--spaced {
  max-width: 580px;
  margin: 0 auto 48px;
}

.hhg-section-heading--compact {
  margin-bottom: 36px;
}

.hhg-section-title-sm {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.hhg-centered-copy {
  color: var(--hhg-muted);
  max-width: 500px;
  margin: 0 auto 32px;
}

.hhg-no-margin {
  margin: 0;
}

.hhg-inline-note {
  margin: 0;
  font-size: 15px;
}

.hhg-pillar-list--tight {
  margin-top: 8px;
}

.hhg-callout-spaced {
  margin-top: 28px;
}

.hhg-callout--centered {
  text-align: center;
}

.hhg-callout--narrow {
  max-width: 820px;
  margin: 0 auto;
}

.hhg-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hhg-approach-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.hhg-condition-test-title {
  margin: 0 0 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--hhg-text);
}

.hhg-condition-test-meta {
  margin: 0;
  font-size: 13.5px;
  color: var(--hhg-muted);
}

.hhg-condition-test-arrow {
  flex-shrink: 0;
  color: var(--hhg-olive);
  font-size: 18px;
  font-weight: 300;
}

.hhg-eyebrow-tight {
  margin-bottom: 8px;
}

.hhg-card--empty {
  grid-column: 1 / -1;
}

.hhg-optin-copy-dark,
.hhg-optin-title-dark {
  color: var(--hhg-text);
}

.hhg-optin-copy-muted,
.hhg-optin-note-muted {
  color: var(--hhg-muted);
}

.hhg-contact-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.hhg-contact-intro {
  margin-bottom: 24px;
}

.hhg-contact-submit {
  margin-top: 8px;
}

.hhg-contact-info-divider {
  height: 1px;
  background: var(--hhg-border);
}
.hhg-img-placeholder--test {
  min-height: 250px;
}

.hhg-img-placeholder--portrait {
  min-height: 460px;
}

.hhg-img-placeholder--tall {
  min-height: 520px;
}

.hhg-title-light {
  color: #fff;
}

.hhg-title-tight {
  margin-bottom: 10px;
}

.hhg-copy-light {
  color: rgba(255,255,255,0.8);
}

.hhg-copy-narrow {
  max-width: 480px;
}

.hhg-centered-copy--wide {
  max-width: 640px;
}

.hhg-pillar-list--compact {
  gap: 16px;
}

.hhg-lead-centered {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 620px;
}

.hhg-card-alert {
  margin-bottom: 28px;
  border-color: #bb836b;
}

.hhg-space-bottom-md {
  margin-bottom: 28px;
}

.hhg-space-top-md {
  margin-top: 24px;
}

.hhg-btn-row-wrap {
  flex-wrap: wrap;
}

.hhg-quiz-result-title {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.hhg-quiz-result-copy {
  margin-bottom: 18px;
}

.hhg-coming-soon-form--static {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.hhg-coming-soon-copy {
  margin: 0;
  max-width: 540px;
  color: var(--hhg-muted);
}

.hhg-story-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(226, 221, 205, 0.9);
  background-color: #e8dfd3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 24px 60px rgba(124, 114, 98, 0.12);
}

.hhg-story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.02), rgba(247, 244, 239, 0.14));
  pointer-events: none;
}

.hhg-story-photo--tall {
  min-height: 620px;
  background-position: center 26%;
}

.hhg-story-photo--landscape {
  min-height: 360px;
  margin-top: 34px;
  background-position: center 34%;
}

.hhg-story-photo--portrait {
  min-height: 420px;
  background-position: center 24%;
}

.hhg-story-photo--writing {
  background-position: center 22%;
}

.hhg-story-inline-photo-wrap {
  margin-top: 18px;
}

.hhg-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  border-bottom: 1px solid var(--hhg-border);
  background:
    linear-gradient(180deg, rgba(247, 244, 239, 0.72), rgba(247, 244, 239, 0.9)),
    url('../images/home/clinic-shelf.png') center 30% / cover no-repeat;
}

.hhg-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.2), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(203,173,141,0.16), transparent 20%);
}

.hhg-contact-hero .hhg-container,
.hhg-contact-hero-inner {
  position: relative;
  z-index: 1;
}

.hhg-contact-hero-inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.hhg-contact-hero .hhg-lead {
  margin-left: auto;
  margin-right: auto;
}

.hhg-contact-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: start;
}

.hhg-contact-map-card,
.hhg-contact-details-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,244,239,0.92));
  border: 1px solid var(--hhg-border);
  border-radius: 24px;
  box-shadow: var(--hhg-shadow-sm);
}

.hhg-contact-map-card {
  padding: 18px;
}

.hhg-contact-map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: 18px;
  background: rgba(173,180,166,0.15);
  border: 1px solid rgba(226,221,205,0.92);
}

.hhg-contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.78) contrast(0.94);
}

.hhg-contact-details-card {
  padding: 34px 34px 30px;
}

.hhg-contact-info {
  display: grid;
  gap: 22px;
}

.hhg-contact-block p + p {
  margin-top: 8px;
}

.hhg-contact-block h4 {
  margin-bottom: 10px;
}

.hhg-contact-form-banner {
  max-width: 380px;
  margin: 0 auto 34px;
  padding: 22px 28px;
  text-align: center;
  background: #b9c5b1;
  color: #fff;
  border-radius: 2px;
}

.hhg-contact-form-banner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.hhg-contact-form-panel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(247,244,239,0.78), rgba(247,244,239,0.92)),
    url('../images/home/hero-seated.png') center center / cover no-repeat;
  border: 1px solid rgba(226,221,205,0.86);
}

.hhg-contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.16)),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.18), transparent 18%);
}

.hhg-contact-form--overlay {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(226,221,205,0.92);
}

.hhg-contact-form--overlay h3 {
  text-align: left;
}

.hhg-contact-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hhg-muted);
  margin-top: 6px;
}

.hhg-contact-checkbox input {
  margin: 0;
}

.hhg-contact-submit {
  min-width: 140px;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .hhg-story-photo--tall,
  .hhg-story-photo--portrait,
  .hhg-story-photo--landscape {
    min-height: 420px;
  }

  .hhg-contact-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hhg-story-photo--tall,
  .hhg-story-photo--portrait,
  .hhg-story-photo--landscape {
    min-height: 320px;
    border-radius: 22px;
  }

  .hhg-story-photo--landscape,
  .hhg-story-inline-photo-wrap {
    margin-top: 24px;
  }

  .hhg-contact-hero {
    padding: 72px 0 78px;
    background-position: center center;
  }

  .hhg-contact-map-card,
  .hhg-contact-details-card,
  .hhg-contact-form-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .hhg-contact-map-frame,
  .hhg-contact-map-frame iframe {
    min-height: 300px;
  }

  .hhg-contact-form-banner {
    margin-bottom: 22px;
    padding: 18px 20px;
  }

  .hhg-contact-form--overlay {
    padding: 28px 22px;
  }
}
