/* ============================================
   Grid & Haven — Brand Design System
   ============================================
   Housing transition strategy for flexible
   residential properties.
   ============================================ */

/* ── Design Tokens ── */
:root {
  /* Four Pillars Brand Colors */
  --gh-connection: #7A9E8E;
  --gh-growth: #B5A882;
  --gh-independence: #C4929A;
  --gh-privacy: #8A7F76;

  /* Primary (sage) scale */
  --gh-primary-50: #F0F5F2;
  --gh-primary-100: #D9E8DF;
  --gh-primary-200: #B3D1BF;
  --gh-primary-300: #8DBA9F;
  --gh-primary-400: #7A9E8E;
  --gh-primary-500: #5C7D6D;
  --gh-primary-600: #4A6558;
  --gh-primary-700: #3A5045;
  --gh-primary-800: #2A3B32;
  --gh-primary-900: #1A2620;

  /* Neutral warm scale */
  --gh-warm-50: #FAF8F5;
  --gh-warm-100: #F3F0EB;
  --gh-warm-200: #E5E0DA;
  --gh-warm-300: #CFC8BF;
  --gh-warm-400: #B5AEA5;
  --gh-warm-500: #9C9590;
  --gh-warm-600: #555555;
  --gh-warm-700: #6B6560;
  --gh-warm-800: #4A4540;
  --gh-warm-900: #1A1A1A;

  /* Typography */
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 72rem;
  --container-narrow: 48rem;
  --container-wide: 80rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}


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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 450;
  line-height: 1.7;
  color: var(--gh-warm-900);
  background-color: var(--gh-warm-50);
  overflow-x: hidden;
}

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

a {
  color: var(--gh-primary-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gh-primary-700);
}


/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  color: var(--gh-warm-900);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: var(--space-lg); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: var(--space-sm); }
h4 { font-size: 1.125rem; margin-bottom: var(--space-sm); }

p {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.gh-text-muted {
  color: var(--gh-warm-600);
}

.gh-text-center { text-align: center; }
.gh-text-left { text-align: left; }


/* ============================================
   Layout
   ============================================ */
.gh-container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

@media (min-width: 640px) {
  .gh-container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .gh-container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

.gh-container-narrow {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.gh-section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .gh-section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

.gh-section-alt {
  background-color: #FFFFFF;
}

.gh-section-dark {
  background-color: var(--gh-warm-900);
  color: var(--gh-warm-300);
}

.gh-section-dark h1,
.gh-section-dark h2,
.gh-section-dark h3 {
  color: #FFFFFF;
}

.gh-section-sage {
  background-color: var(--gh-primary-700);
  color: #FFFFFF;
}

.gh-section-sage h2,
.gh-section-sage h3 {
  color: #FFFFFF;
}


/* ── Grid system ── */
.gh-grid {
  display: grid;
  gap: var(--space-lg);
}

.gh-grid-2 { grid-template-columns: 1fr; }
.gh-grid-3 { grid-template-columns: 1fr; }
.gh-grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .gh-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .gh-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .gh-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gh-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.gh-grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .gh-grid-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}


/* ============================================
   Section Heading Component
   ============================================ */
.gh-section-heading {
  max-width: var(--container-narrow);
  margin-bottom: var(--space-2xl);
}

.gh-section-heading.gh-text-center {
  margin-left: auto;
  margin-right: auto;
}

.gh-section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gh-primary-500);
  margin-bottom: var(--space-sm);
}

.gh-section-title {
  margin-bottom: var(--space-md);
}

.gh-section-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}

.gh-section-dark .gh-section-subtitle,
.gh-section-sage .gh-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   Buttons
   ============================================ */
.gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.gh-btn-primary {
  background-color: var(--gh-primary-500);
  color: #FFFFFF;
}

.gh-btn-primary:hover {
  background-color: var(--gh-primary-600);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.gh-btn-secondary {
  background-color: transparent;
  color: var(--gh-warm-900);
  border: 1px solid var(--gh-warm-300);
}

.gh-btn-secondary:hover {
  background-color: var(--gh-warm-100);
  border-color: var(--gh-warm-400);
  color: var(--gh-warm-900);
}

.gh-btn-white {
  background-color: #FFFFFF;
  color: var(--gh-primary-700);
}

.gh-btn-white:hover {
  background-color: var(--gh-warm-100);
  color: var(--gh-primary-700);
  box-shadow: var(--shadow-md);
}

.gh-btn-ghost {
  background: none;
  color: var(--gh-primary-500);
  padding-left: 0;
  padding-right: 0;
}

.gh-btn-ghost:hover {
  color: var(--gh-primary-700);
}

.gh-btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.gh-btn-full {
  width: 100%;
}

.gh-btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .gh-btn-group {
    flex-direction: row;
  }
}


/* ============================================
   Cards
   ============================================ */
.gh-card {
  background-color: #FFFFFF;
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gh-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gh-card-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.gh-card-body {
  padding: var(--space-lg);
}

.gh-card-title {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: var(--space-sm);
}

.gh-card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}


/* ── Pillar Card (with brand color accent) ── */
.gh-pillar-card {
  position: relative;
  background-color: var(--gh-warm-50);
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gh-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gh-pillar-card-image-wrap {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

.gh-pillar-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-pillar-card-overlay {
  position: absolute;
  inset: 0;
}

.gh-pillar-card-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.gh-pillar-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gh-pillar-card-body {
  padding: var(--space-lg);
}

.gh-pillar-card-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.gh-pillar-card-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.gh-pillar-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}


/* ── Pathway Card ── */
.gh-pathway-card {
  background-color: #FFFFFF;
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gh-pathway-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gh-pathway-card-image-wrap {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.gh-pathway-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-pathway-card-gradient {
  position: absolute;
  inset: 0;
}

.gh-pathway-card-body {
  padding: var(--space-lg);
  text-align: center;
}

.gh-pathway-card-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.gh-pathway-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}


/* ============================================
   Hero Section
   ============================================ */
.gh-hero {
  position: relative;
  overflow: hidden;
}

.gh-hero-bg {
  position: absolute;
  inset: 0;
}

.gh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26, 38, 32, 0.88) 0%,
    rgba(26, 38, 32, 0.72) 50%,
    rgba(26, 38, 32, 0.35) 100%
  );
}

.gh-hero-content {
  position: relative;
  max-width: 40rem;
  padding: var(--space-4xl) 0;
}

@media (min-width: 768px) {
  .gh-hero-content {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .gh-hero-content {
    padding: 8rem 0;
  }
}

.gh-hero-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gh-primary-300);
  margin-bottom: var(--space-md);
}

.gh-hero h1 {
  color: #FFFFFF;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gh-hero-body {
  font-size: 1.125rem;
  font-weight: 450;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .gh-hero-body {
    font-size: 1.25rem;
  }
}

.gh-hero .gh-credential {
  color: rgba(255, 255, 255, 0.7);
}

.gh-hero .gh-credential svg {
  color: var(--gh-primary-300);
}

.gh-hero .gh-btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.gh-hero .gh-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}


/* ── Page Hero (inner pages, no image) ── */
.gh-page-hero {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--gh-warm-200);
}

@media (min-width: 768px) {
  .gh-page-hero {
    padding: var(--space-4xl) 0;
  }
}

.gh-page-hero-content {
  max-width: var(--container-narrow);
}

.gh-page-hero-content.gh-text-center {
  margin-left: auto;
  margin-right: auto;
}

.gh-page-hero h1 {
  margin-bottom: var(--space-md);
}

.gh-page-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .gh-page-hero-subtitle {
    font-size: 1.25rem;
  }
}


/* ============================================
   CTA Section
   ============================================ */
.gh-cta {
  position: relative;
  overflow: hidden;
}

.gh-cta-bg {
  position: absolute;
  inset: 0;
}

.gh-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(58, 80, 69, 0.93) 0%,
    rgba(42, 59, 50, 0.88) 100%
  );
}

.gh-cta-content {
  position: relative;
  text-align: center;
  padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
  .gh-cta-content {
    padding: var(--space-4xl) 0;
  }
}

.gh-cta h2 {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.gh-cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}


/* ============================================
   Navbar
   ============================================ */
.gh-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(250, 248, 245, 0.9);
  border-bottom: 1px solid var(--gh-warm-200);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.gh-navbar.scrolled {
  background-color: rgba(250, 248, 245, 0.97);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gh-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .gh-navbar-inner {
    height: 5rem;
  }
}

.gh-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gh-warm-900);
  text-decoration: none;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .gh-logo {
    font-size: 1.5rem;
  }
}

.gh-logo-amp {
  color: var(--gh-primary-400);
}

.gh-logo-tagline {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 500;
  font-variant: small-caps;
  letter-spacing: 0.06em;
  color: var(--gh-warm-500);
  margin-top: 0.0625rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .gh-logo-tagline {
    display: grid;
    font-size: 0.5625rem;
  }
}

/* Brand bar — Four Dimensions tagline */
.gh-brand-bar {
  background: var(--gh-primary-700);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.gh-brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.gh-brand-bar-word {
  font-family: 'Raleway', var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}

.gh-brand-bar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .gh-brand-bar {
    padding: var(--space-xl) 0;
  }

  .gh-brand-bar-word {
    font-size: 1.25rem;
    letter-spacing: 0.25em;
  }

  .gh-brand-bar-inner {
    gap: var(--space-2xl);
  }

  .gh-brand-bar-dot {
    width: 6px;
    height: 6px;
  }
}

/* Mid-page CTA */
.gh-mid-cta {
  background: var(--gh-primary-50);
  border-top: 1px solid var(--gh-primary-100);
  border-bottom: 1px solid var(--gh-primary-100);
  padding: var(--space-2xl) 0;
}

.gh-mid-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.gh-mid-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gh-warm-900);
  margin-bottom: var(--space-sm);
}

.gh-mid-cta-inner p {
  color: var(--gh-warm-600);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .gh-mid-cta {
    padding: var(--space-3xl) 0;
  }

  .gh-mid-cta-inner h3 {
    font-size: 1.75rem;
  }
}

/* Desktop nav */
.gh-nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .gh-nav-links {
    display: flex;
  }
}

.gh-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-warm-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.gh-nav-links a:hover,
.gh-nav-links .current-menu-item a {
  color: var(--gh-primary-500);
}

.gh-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.gh-nav-cta {
  display: none;
}

@media (min-width: 640px) {
  .gh-nav-cta {
    display: inline-flex;
  }
}

/* Mobile menu toggle */
.gh-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gh-warm-900);
}

@media (min-width: 1024px) {
  .gh-menu-toggle {
    display: none;
  }
}

.gh-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--gh-warm-900);
}

/* Mobile menu panel */
.gh-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(20rem, 85vw);
  background-color: #FFFFFF;
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.gh-mobile-menu.open {
  transform: translateX(0);
}

.gh-mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.gh-mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.gh-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--gh-warm-200);
}

.gh-mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gh-warm-600);
}

.gh-mobile-menu-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.gh-mobile-menu-nav {
  padding: var(--space-lg);
  list-style: none;
  margin: 0;
}

.gh-mobile-menu-nav li {
  border-bottom: 1px solid var(--gh-warm-100);
}

.gh-mobile-menu-nav a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gh-warm-700);
  text-decoration: none;
}

.gh-mobile-menu-nav a:hover {
  color: var(--gh-primary-500);
}

.gh-mobile-menu-cta {
  padding: var(--space-lg);
}


/* ============================================
   Footer
   ============================================ */
.gh-footer {
  background-color: var(--gh-warm-900);
  color: var(--gh-warm-400);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
}

.gh-footer h3,
.gh-footer h4 {
  color: #FFFFFF;
}

.gh-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .gh-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.gh-footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: var(--space-md);
}

.gh-footer-heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gh-warm-300);
  margin-bottom: var(--space-md);
}

.gh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gh-footer-links li {
  margin-bottom: var(--space-sm);
}

.gh-footer-links a {
  font-size: 0.875rem;
  color: var(--gh-warm-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.gh-footer-links a:hover {
  color: #FFFFFF;
}

.gh-footer-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gh-footer-areas li {
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.gh-footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gh-warm-700);
  text-align: center;
  font-size: 0.8125rem;
}

.gh-footer-bottom p {
  margin-bottom: var(--space-xs);
}

.gh-footer-disclaimer {
  font-style: italic;
  color: var(--gh-warm-500);
}


/* ============================================
   Before/After Comparison
   ============================================ */
.gh-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .gh-comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.gh-comparison-before,
.gh-comparison-after {
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
}

.gh-comparison-before {
  background-color: var(--gh-warm-50);
  border: 1px solid var(--gh-warm-200);
}

.gh-comparison-after {
  border: 2px solid var(--gh-primary-400);
}

.gh-comparison-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.gh-comparison-before .gh-comparison-label {
  color: var(--gh-warm-500);
}

.gh-comparison-after .gh-comparison-label {
  color: var(--gh-primary-400);
}

.gh-comparison-text {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.gh-comparison-before .gh-comparison-text {
  color: var(--gh-warm-600);
}

.gh-comparison-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gh-warm-500);
  margin-top: var(--space-lg);
}


/* ============================================
   Geographic Focus Section
   ============================================ */
.gh-geo {
  position: relative;
  overflow: hidden;
}

.gh-geo-bg {
  position: absolute;
  inset: 0;
}

.gh-geo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-geo-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(250, 248, 245, 0.9);
}

.gh-geo-content {
  position: relative;
}

.gh-geo-card {
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.gh-geo-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
}

.gh-geo-card h3 {
  font-family: var(--font-heading);
}

.gh-geo-card p {
  font-size: 0.875rem;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}


/* ============================================
   Process Steps
   ============================================ */
.gh-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  counter-reset: step;
}

@media (min-width: 768px) {
  .gh-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gh-step {
  text-align: center;
  counter-increment: step;
}

.gh-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--gh-primary-50);
  color: var(--gh-primary-500);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 auto var(--space-md);
}

.gh-step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
}

.gh-step p {
  font-size: 0.875rem;
  color: var(--gh-warm-600);
}


/* ============================================
   Newsletter Signup
   ============================================ */
.gh-newsletter-embed {
  text-align: center;
}

.gh-newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.gh-newsletter-subtitle {
  font-size: 1rem;
  color: var(--gh-warm-600);
  margin-bottom: var(--space-lg);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.gh-section-sage .gh-newsletter-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.gh-newsletter-fallback-form .gh-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .gh-newsletter-fallback-form .gh-form-row {
    flex-direction: row;
  }
}

.gh-newsletter-fallback-form .gh-input {
  flex: 1;
}


/* ============================================
   Forms (Fallback & HubSpot Override)
   ============================================ */
.gh-input,
.gh-select,
.gh-textarea {
  width: 100%;
  padding: 0.75rem var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--gh-warm-300);
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  color: var(--gh-warm-900);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gh-input:focus,
.gh-select:focus,
.gh-textarea:focus {
  outline: none;
  border-color: var(--gh-primary-400);
  box-shadow: 0 0 0 3px rgba(122, 158, 142, 0.15);
}

.gh-input::placeholder {
  color: var(--gh-warm-400);
}

.gh-textarea {
  resize: vertical;
  min-height: 6rem;
}

.gh-form-group {
  margin-bottom: var(--space-lg);
}

.gh-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-warm-700);
  margin-bottom: var(--space-xs);
}

.gh-form-group .required {
  color: var(--gh-independence);
}

.gh-form-note {
  font-size: 0.8125rem;
  color: var(--gh-warm-500);
  font-style: italic;
  text-align: center;
  margin-top: var(--space-md);
}

/* HubSpot form style overrides */
.gh-hubspot-form .hs-form-field {
  margin-bottom: var(--space-lg);
}

.gh-hubspot-form .hs-form-field label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-warm-700);
}

.gh-hubspot-form input[type="text"],
.gh-hubspot-form input[type="email"],
.gh-hubspot-form input[type="tel"],
.gh-hubspot-form textarea,
.gh-hubspot-form select {
  width: 100% !important;
  padding: 0.75rem var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--gh-warm-300);
  border-radius: var(--radius-md);
}

.gh-hubspot-form input:focus,
.gh-hubspot-form textarea:focus,
.gh-hubspot-form select:focus {
  outline: none;
  border-color: var(--gh-primary-400);
  box-shadow: 0 0 0 3px rgba(122, 158, 142, 0.15);
}

.gh-hubspot-form .hs-button {
  background-color: var(--gh-primary-500);
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.gh-hubspot-form .hs-button:hover {
  background-color: var(--gh-primary-600);
}


/* ============================================
   Blog Styles
   ============================================ */

/* Blog card grid */
.gh-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .gh-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gh-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gh-post-card {
  background-color: #FFFFFF;
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gh-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gh-post-card-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.gh-post-card-body {
  padding: var(--space-lg);
}

.gh-post-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gh-primary-500);
  margin-bottom: var(--space-sm);
}

.gh-post-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.gh-post-card-title a {
  color: var(--gh-warm-900);
  text-decoration: none;
}

.gh-post-card-title a:hover {
  color: var(--gh-primary-500);
}

.gh-post-card-excerpt {
  font-size: 0.875rem;
  color: var(--gh-warm-600);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.gh-post-card-meta {
  font-size: 0.8125rem;
  color: var(--gh-warm-500);
}

/* Blog layout with sidebar */
.gh-blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .gh-blog-layout {
    grid-template-columns: 1fr 20rem;
  }
}

/* Single post content */
.gh-post-content {
  max-width: 42rem;
  margin: 0 auto;
}

.gh-post-header {
  margin-bottom: var(--space-2xl);
}

.gh-post-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

.gh-post-meta {
  font-size: 0.875rem;
  color: var(--gh-warm-500);
  margin-bottom: var(--space-lg);
}

.gh-post-body h2 { margin-top: var(--space-2xl); }
.gh-post-body h3 { margin-top: var(--space-xl); }

.gh-post-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.gh-post-body blockquote {
  border-left: 3px solid var(--gh-primary-400);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--gh-warm-600);
}

.gh-post-body ul,
.gh-post-body ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.gh-post-body li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.gh-post-body img {
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
}

/* Sidebar */
.gh-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.gh-widget {
  padding: var(--space-lg);
  background-color: var(--gh-warm-50);
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
}

.gh-widget-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gh-warm-700);
  margin-bottom: var(--space-md);
}


/* ============================================
   Scroll Reveal Animation
   ============================================ */
.gh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.gh-reveal-delay-1 { transition-delay: 0.1s; }
.gh-reveal-delay-2 { transition-delay: 0.2s; }
.gh-reveal-delay-3 { transition-delay: 0.3s; }
.gh-reveal-delay-4 { transition-delay: 0.4s; }
.gh-reveal-delay-5 { transition-delay: 0.5s; }
.gh-reveal-delay-6 { transition-delay: 0.6s; }


/* ============================================
   Utility Classes
   ============================================ */
.gh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gh-mb-0 { margin-bottom: 0; }
.gh-mb-sm { margin-bottom: var(--space-sm); }
.gh-mb-md { margin-bottom: var(--space-md); }
.gh-mb-lg { margin-bottom: var(--space-lg); }
.gh-mb-xl { margin-bottom: var(--space-xl); }
.gh-mb-2xl { margin-bottom: var(--space-2xl); }

.gh-mt-0 { margin-top: 0; }
.gh-mt-lg { margin-top: var(--space-lg); }
.gh-mt-xl { margin-top: var(--space-xl); }

.gh-rounded-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gh-rounded-image img {
  width: 100%;
  height: auto;
}


/* ============================================
   Statistics Bar
   ============================================ */
.gh-stats-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .gh-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gh-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gh-stat {
  text-align: center;
  padding: var(--space-lg);
}

.gh-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gh-primary-400);
  margin-bottom: var(--space-xs);
}

.gh-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}

.gh-stat-source {
  font-size: 0.6875rem;
  color: var(--gh-warm-400);
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.gh-section-dark .gh-stat-label {
  color: var(--gh-warm-300);
}

.gh-section-dark .gh-stat-source {
  color: var(--gh-warm-500);
}


/* ============================================
   Comparison Table (G&H vs Traditional)
   ============================================ */
.gh-compare-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 52rem;
  margin: 0 auto;
}

.gh-compare-table th,
.gh-compare-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gh-warm-200);
}

.gh-compare-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gh-warm-500);
  padding-bottom: var(--space-lg);
}

.gh-compare-table th:first-child {
  color: var(--gh-warm-700);
}

.gh-compare-table th.gh-compare-highlight {
  color: var(--gh-primary-500);
}

.gh-compare-table td:first-child {
  font-weight: 500;
  color: var(--gh-warm-700);
}

.gh-compare-table td.gh-compare-traditional {
  color: var(--gh-warm-500);
}

.gh-compare-table td.gh-compare-gh {
  color: var(--gh-warm-900);
  font-weight: 500;
}

.gh-compare-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 639px) {
  .gh-compare-table {
    font-size: 0.8125rem;
  }

  .gh-compare-table th,
  .gh-compare-table td {
    padding: var(--space-sm) var(--space-md);
  }
}


/* ============================================
   Framework Walkthrough
   ============================================ */
.gh-walkthrough {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.gh-walkthrough-property {
  background-color: var(--gh-warm-50);
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.gh-walkthrough-property-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gh-warm-500);
  margin-bottom: var(--space-sm);
}

.gh-walkthrough-property-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.gh-walkthrough-property-details {
  font-size: 0.9375rem;
  color: var(--gh-warm-600);
  margin-bottom: 0;
}

.gh-walkthrough-pillar {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--gh-warm-200);
}

.gh-walkthrough-pillar:last-child {
  border-bottom: none;
}

.gh-walkthrough-pillar-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-top: 0.25rem;
}

.gh-walkthrough-pillar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gh-walkthrough-pillar-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.gh-walkthrough-pillar-score {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.gh-walkthrough-pillar-finding {
  font-size: 0.9375rem;
  color: var(--gh-warm-600);
  line-height: 1.6;
  margin-bottom: 0;
}

.gh-walkthrough-result {
  background-color: var(--gh-primary-50);
  border: 2px solid var(--gh-primary-400);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  text-align: center;
}

.gh-walkthrough-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gh-primary-500);
  margin-bottom: var(--space-sm);
}

.gh-walkthrough-result-pathway {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gh-primary-700);
  margin-bottom: var(--space-sm);
}

.gh-walkthrough-result-rationale {
  font-size: 0.9375rem;
  color: var(--gh-warm-600);
  max-width: 32rem;
  margin: 0 auto;
}


/* ============================================
   Lead Magnet Section
   ============================================ */
.gh-lead-magnet {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gh-lead-magnet {
    grid-template-columns: 1fr 1.2fr;
  }
}

.gh-lead-magnet-preview {
  background-color: var(--gh-warm-100);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gh-lead-magnet-preview-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--gh-primary-400);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.gh-lead-magnet-preview-icon svg {
  width: 2rem;
  height: 2rem;
}

.gh-lead-magnet-preview-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.gh-lead-magnet-preview-type {
  font-size: 0.8125rem;
  color: var(--gh-warm-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.gh-lead-magnet-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.gh-lead-magnet-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.gh-lead-magnet-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  color: var(--gh-warm-700);
}

.gh-lead-magnet-list li::before {
  content: "✓";
  color: var(--gh-primary-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}


/* ============================================
   Calendly Embed
   ============================================ */
.gh-calendly-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gh-warm-200);
  min-height: 600px;
}

.gh-calendly-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem var(--space-lg);
  background-color: var(--gh-primary-50);
  border: 1px solid var(--gh-primary-200);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-primary-700);
  text-decoration: none;
  transition: all var(--transition-base);
}

.gh-calendly-inline:hover {
  background-color: var(--gh-primary-100);
  color: var(--gh-primary-700);
}

.gh-calendly-inline svg {
  width: 1.125rem;
  height: 1.125rem;
}


/* ============================================
   Four Pillars Diagram
   ============================================ */
.gh-pillars-diagram {
  max-width: 36rem;
  margin: 0 auto var(--space-2xl);
}

.gh-pillars-diagram svg {
  width: 100%;
  height: auto;
}

.gh-pillars-diagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 28rem;
  margin: 0 auto var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gh-pillars-diagram-cell {
  padding: var(--space-xl);
  text-align: center;
  color: #FFFFFF;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.gh-pillars-diagram-cell:hover {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.gh-pillars-diagram-cell h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: var(--space-xs);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.gh-pillars-diagram-cell p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.gh-pillars-diagram-cell svg {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 auto var(--space-sm);
  opacity: 0.9;
}

.gh-pillars-diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  pointer-events: none;
}

.gh-pillars-diagram-center-text {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--gh-warm-700);
  text-align: center;
  line-height: 1.3;
}


/* ============================================
   Credential Bar
   ============================================ */
.gh-credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.gh-credential {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--gh-warm-600);
}

.gh-credential svg {
  width: 1rem;
  height: 1rem;
  color: var(--gh-primary-400);
  flex-shrink: 0;
}

.gh-section-dark .gh-credential {
  color: var(--gh-warm-400);
}


/* ============================================
   Situation Cards (emotional trigger cards)
   ============================================ */
.gh-situation-card {
  background-color: #FFFFFF;
  border: 1px solid var(--gh-warm-200);
  border-left: 4px solid var(--gh-warm-300);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.gh-situation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Audience color accents */
.gh-audience-sellers .gh-situation-card { border-left-color: var(--gh-connection); }
.gh-audience-buyers .gh-situation-card { border-left-color: var(--gh-growth); }
.gh-audience-investors .gh-situation-card { border-left-color: var(--gh-independence); }

.gh-situation-card-quote {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--gh-warm-900);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.gh-situation-card-desc {
  font-size: 0.875rem;
  color: var(--gh-warm-600);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.gh-situation-card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-primary-500);
  text-decoration: none;
}

.gh-situation-card-link:hover {
  color: var(--gh-primary-700);
}


/* ============================================
   Order utilities for responsive reorder
   ============================================ */
@media (min-width: 1024px) {
  .gh-order-1 { order: -1; }
  .gh-order-2 { order: 1; }
}


/* ============================================
   Skip-to-Content & Focus Styles (ADA)
   ============================================ */
.gh-skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 9999;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--gh-primary-700);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top var(--transition-fast);
}

.gh-skip-link:focus {
  top: var(--space-md);
}

*:focus-visible {
  outline: 3px solid var(--gh-primary-400);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gh-primary-400);
  outline-offset: 2px;
}


/* ============================================
   Reading Progress Bar
   ============================================ */
.gh-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gh-primary-400), var(--gh-primary-600));
  z-index: 9999;
  transition: width 80ms linear;
  pointer-events: none;
}


/* ============================================
   Sticky Section Navigation
   ============================================ */
.gh-section-nav {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gh-warm-200);
  transform: translateY(-120%);
  transition: transform var(--transition-slow);
  padding: var(--space-sm) 0;
}

.gh-section-nav.visible {
  transform: translateY(0);
}

.gh-section-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.gh-section-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gh-warm-700);
  white-space: nowrap;
}

.gh-section-nav-dots {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.gh-section-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gh-warm-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.gh-section-nav-dot:hover {
  background-color: var(--gh-warm-500);
  transform: scale(1.3);
}

.gh-section-nav-dot.active {
  background-color: var(--gh-primary-500);
  transform: scale(1.4);
}

@media (max-width: 767px) {
  .gh-section-nav { display: none; }
}


/* ============================================
   Journey Selector (Audience Tabs)
   ============================================ */
.gh-journey-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.gh-journey-btn {
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gh-warm-600);
  background-color: transparent;
  border: 2px solid var(--gh-warm-200);
  border-radius: 2rem;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.gh-journey-btn:hover {
  border-color: var(--gh-warm-400);
  color: var(--gh-warm-900);
}

.gh-journey-btn.active {
  background-color: var(--gh-primary-500);
  border-color: var(--gh-primary-500);
  color: #FFFFFF;
}

.gh-journey-btn[data-audience="sellers"].active {
  background-color: var(--gh-connection);
  border-color: var(--gh-connection);
}

.gh-journey-btn[data-audience="buyers"].active {
  background-color: var(--gh-growth);
  border-color: var(--gh-growth);
}

.gh-journey-btn[data-audience="investors"].active {
  background-color: var(--gh-independence);
  border-color: var(--gh-independence);
}

/* Audience group filtering */
.gh-audience-group {
  transition: opacity var(--transition-slow), max-height var(--transition-slow);
  overflow: hidden;
}

.gh-audience-group.hidden {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}


/* ============================================
   Social Proof / Testimonials
   ============================================ */
.gh-social-proof {
  text-align: center;
  padding: var(--space-3xl) 0;
  background-color: var(--gh-primary-50);
  border-top: 1px solid var(--gh-primary-100);
  border-bottom: 1px solid var(--gh-primary-100);
}

.gh-testimonial-slider {
  position: relative;
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
  min-height: 8rem;
}

.gh-testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gh-testimonial.active {
  position: relative;
  opacity: 1;
}

.gh-testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--gh-warm-900);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.gh-testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gh-warm-600);
}

.gh-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.gh-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gh-warm-300);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  padding: 0;
}

.gh-testimonial-dot.active {
  background-color: var(--gh-primary-500);
}

.gh-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gh-primary-100);
}

.gh-trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gh-warm-700);
}

.gh-trust-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gh-primary-500);
}


/* ============================================
   Section Dividers
   ============================================ */
.gh-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.gh-divider::before,
.gh-divider::after {
  content: '';
  flex: 1;
  max-width: 6rem;
  height: 1px;
  background-color: var(--gh-warm-200);
}

.gh-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gh-primary-400);
}


/* ============================================
   Navigation Dropdowns
   ============================================ */
.gh-nav-dropdown {
  position: relative;
}

.gh-nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-warm-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.gh-nav-dropdown-trigger:hover {
  color: var(--gh-primary-500);
}

.gh-nav-dropdown-trigger svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform var(--transition-fast);
}

.gh-nav-dropdown.open .gh-nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.gh-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 14rem;
  background-color: #FFFFFF;
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 110;
}

.gh-nav-dropdown.open .gh-nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.gh-nav-dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--gh-warm-700);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.gh-nav-dropdown-menu a:hover {
  background-color: var(--gh-primary-50);
  color: var(--gh-primary-600);
}


/* ============================================
   Animated Stats Counter
   ============================================ */
.gh-stat-number {
  font-variant-numeric: tabular-nums;
}

.gh-stat-number.counting {
  color: var(--gh-primary-300);
}


/* ============================================
   Comparison Section Upgrade
   ============================================ */
.gh-comparison {
  position: relative;
}

.gh-comparison-arrow {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background-color: var(--gh-primary-500);
  border-radius: 50%;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .gh-comparison-arrow {
    display: flex;
  }
}

.gh-comparison-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}


/* ============================================
   Pull Quote (Content Breathing)
   ============================================ */
.gh-pull-quote {
  border-left: 4px solid var(--gh-primary-400);
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-3xl) auto;
  max-width: var(--container-narrow);
}

.gh-pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--gh-warm-800);
  margin-bottom: 0;
}


/* ============================================
   Accessibility Toggle Widget
   ============================================ */
.gh-a11y-toggle {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 500;
}

.gh-a11y-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--gh-primary-700);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.gh-a11y-btn:hover {
  transform: scale(1.1);
  background-color: var(--gh-primary-800);
}

.gh-a11y-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gh-a11y-panel {
  position: absolute;
  bottom: calc(100% + var(--space-md));
  right: 0;
  width: 16rem;
  background-color: #FFFFFF;
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.gh-a11y-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.gh-a11y-panel-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gh-warm-700);
  margin-bottom: var(--space-md);
}

.gh-a11y-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gh-warm-100);
}

.gh-a11y-option:last-child {
  border-bottom: none;
}

.gh-a11y-option-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gh-warm-700);
}

/* Toggle switch */
.gh-toggle {
  position: relative;
  width: 2.5rem;
  height: 1.375rem;
  background-color: var(--gh-warm-300);
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  padding: 0;
}

.gh-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.gh-toggle.active {
  background-color: var(--gh-primary-500);
}

.gh-toggle.active::after {
  transform: translateX(1.125rem);
}


/* ============================================
   ADA Enhanced Readability Mode
   ============================================ */
body.gh-ada-enhanced {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.9;
}

body.gh-ada-enhanced h1,
body.gh-ada-enhanced h2,
body.gh-ada-enhanced h3,
body.gh-ada-enhanced h4 {
  font-weight: 700;
}

body.gh-ada-enhanced .gh-section-label {
  font-size: 0.875rem;
}

body.gh-ada-enhanced .gh-situation-card-desc,
body.gh-ada-enhanced .gh-card-text,
body.gh-ada-enhanced .gh-walkthrough-pillar-finding,
body.gh-ada-enhanced .gh-pathway-card-desc {
  font-size: 1rem;
  line-height: 1.8;
}

body.gh-ada-enhanced .gh-btn {
  min-height: 52px;
  font-size: 1.0625rem;
}


/* ============================================
   ADA High Contrast Mode
   ============================================ */
body.gh-ada-highcontrast {
  color: #000000;
  background-color: #FFFFFF;
}

body.gh-ada-highcontrast h1,
body.gh-ada-highcontrast h2,
body.gh-ada-highcontrast h3,
body.gh-ada-highcontrast h4 {
  color: #000000;
}

body.gh-ada-highcontrast .gh-text-muted,
body.gh-ada-highcontrast .gh-section-subtitle,
body.gh-ada-highcontrast .gh-situation-card-desc,
body.gh-ada-highcontrast .gh-card-text,
body.gh-ada-highcontrast .gh-walkthrough-pillar-finding,
body.gh-ada-highcontrast .gh-credential {
  color: #333333;
}

body.gh-ada-highcontrast .gh-section-alt {
  background-color: #F5F5F5;
}

body.gh-ada-highcontrast .gh-situation-card,
body.gh-ada-highcontrast .gh-card {
  border-color: #666666;
}


/* ============================================
   ADA Reduce Motion Mode
   ============================================ */
body.gh-ada-reducemotion *,
body.gh-ada-reducemotion *::before,
body.gh-ada-reducemotion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

body.gh-ada-reducemotion .gh-reveal {
  opacity: 1;
  transform: none;
}

body.gh-ada-reducemotion .gh-progress-bar {
  display: none;
}


/* ============================================
   Respect prefers-reduced-motion (default)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .gh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gh-progress-bar {
    display: none;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================
   Parallax Hero
   ============================================ */
.gh-hero-bg img {
  will-change: transform;
}


/* ============================================
   Animated Gradient on Hero Overlay
   ============================================ */
@keyframes gh-shimmer {
  0% { opacity: 0.88; }
  50% { opacity: 0.82; }
  100% { opacity: 0.88; }
}

.gh-hero-overlay {
  animation: gh-shimmer 8s ease-in-out infinite;
}


/* ============================================
   CTA Button Gradient Hover
   ============================================ */
.gh-btn-primary {
  background: linear-gradient(135deg, var(--gh-primary-500), var(--gh-primary-600));
  transition: all var(--transition-base);
}

.gh-btn-primary:hover {
  background: linear-gradient(135deg, var(--gh-primary-600), var(--gh-primary-700));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 125, 109, 0.3);
}


/* ============================================
   Newsletter Preview Section
   ============================================ */
.gh-newsletter-preview {
  background-color: var(--gh-warm-50);
  border: 1px solid var(--gh-warm-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 36rem;
  margin: 0 auto;
}

.gh-newsletter-preview-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gh-primary-500);
  margin-bottom: var(--space-sm);
}

.gh-newsletter-preview-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.gh-newsletter-preview-excerpt {
  font-size: 0.9375rem;
  color: var(--gh-warm-600);
  line-height: 1.6;
}


/* ============================================
   Mobile Menu Dropdown Groups
   ============================================ */
.gh-mobile-menu-group-title {
  display: block;
  padding: var(--space-md) 0 var(--space-xs);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gh-warm-500);
  border-bottom: none;
}

.gh-mobile-menu-nav .gh-mobile-submenu a {
  padding-left: var(--space-lg);
  font-size: 0.9375rem;
}


/* ============================================
   FAQ Accordion
   ============================================ */

.gh-faq-group {
  max-width: 48rem;
  margin: 0 auto;
}

.gh-faq-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gh-sage, #7A9E8E);
  margin-bottom: var(--space-lg, 1.5rem);
  padding-top: var(--space-2xl, 3rem);
}

.gh-faq-group:first-of-type .gh-faq-group-title {
  padding-top: 0;
}

.gh-faq-item {
  border-bottom: 1px solid var(--gh-warm-200, #ede8e1);
  padding: 0;
}

.gh-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg, 1.5rem) 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gh-warm-800, #3d342d);
  line-height: 1.4;
  list-style: none;
  transition: color 0.2s ease;
}

.gh-faq-item summary::-webkit-details-marker {
  display: none;
}

.gh-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gh-warm-400, #b5aa9e);
  flex-shrink: 0;
  margin-left: var(--space-md, 1rem);
  transition: transform 0.2s ease, color 0.2s ease;
}

.gh-faq-item[open] summary::after {
  content: '\2212';
  color: var(--gh-sage, #7A9E8E);
}

.gh-faq-item summary:hover {
  color: var(--gh-sage, #7A9E8E);
}

.gh-faq-answer {
  padding: 0 0 var(--space-lg, 1.5rem) 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gh-warm-600, #6b6058);
}

.gh-faq-answer p {
  margin-bottom: 0.75rem;
}

.gh-faq-answer p:last-child {
  margin-bottom: 0;
}

.gh-faq-answer a {
  color: var(--gh-sage, #7A9E8E);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gh-faq-answer a:hover {
  color: var(--gh-warm-900, #2c2520);
}
