/*
Theme Name: Integrative Recovery Care
Theme URI: https://irocrecovery.com
Author: Integrative Recovery Care, LLC
Author URI: https://irocrecovery.com
Description: Custom WordPress theme for Integrative Recovery Care, LLC - Licensed Outpatient Behavioral Health and Addiction Treatment in West Virginia. Built with full SEO optimization, schema.org markup, and mobile-first responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: irc-theme
Tags: one-column, custom-menu, featured-images, translation-ready, blog
*/

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

:root {
  /* Brand Colors */
  --brand-green: #1B5E20;
  --brand-green-dark: #154B23;
  --brand-green-darker: #0D3317;
  --brand-green-light: #E8F5E9;
  --brand-gold: #B8860B;
  --brand-gold-light: #D4AF37;
  --brand-warm-white: #FAFAF8;
  --brand-slate: #6B7280;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --border-color: #E5E7EB;

  /* Typography */
  --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --container-padding: 1rem;
}

@media (min-width: 640px) {
  :root { --container-padding: 1.5rem; }
}
@media (min-width: 1024px) {
  :root { --container-padding: 2rem; }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--brand-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--brand-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-green-dark);
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   CRISIS BAR
   ======================================== */
.crisis-bar {
  background-color: var(--brand-green-dark);
  color: #fff;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.crisis-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.crisis-bar a {
  color: var(--brand-gold-light);
  font-weight: 700;
  text-decoration: none;
}

.crisis-bar a:hover {
  color: #fff;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-logo img {
  height: 48px;
  width: auto;
}

@media (min-width: 1024px) {
  .site-logo img {
    height: 56px;
  }
}

/* Desktop Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-green);
  border-bottom-color: var(--brand-green);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-green);
    color: #fff;
    padding: 0.625rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 0.75rem;
    transition: background 0.2s ease;
  }

  .nav-cta:hover {
    background: var(--brand-green-dark);
    color: #fff;
  }
}

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s ease;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border-color);
  padding: 1rem 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem var(--container-padding);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--brand-green);
  background: var(--brand-green-light);
}

.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.75rem var(--container-padding) 0;
  background: var(--brand-green);
  color: #fff;
  padding: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-green-dark);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand-green-dark);
}

.btn-white:hover {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
}

.btn-gold {
  background: var(--brand-gold);
  color: #fff;
}

.btn-gold:hover {
  background: #9A7209;
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--brand-gold-light);
  border: 2px solid var(--brand-gold-light);
}

.btn-outline-gold:hover {
  background: rgba(255,255,255,0.1);
  color: var(--brand-gold-light);
}

/* ========================================
   SECTION HEADING
   ======================================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

.section-label.light {
  color: var(--brand-gold-light);
}

.section-heading {
  margin-bottom: 0;
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21,75,35,0.92), rgba(21,75,35,0.7), rgba(21,75,35,0.3));
}

.hero-content {
  position: relative;
  padding: 5rem 0 5rem;
  max-width: 640px;
}

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

.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #BBF7D0;
  line-height: 1.7;
  max-width: 560px;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #BBF7D0;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ========================================
   PAGE HEADER (interior pages)
   ======================================== */
.page-header {
  background: var(--brand-green-dark);
  padding: 4rem 0 4rem;
}

@media (min-width: 1024px) {
  .page-header {
    padding: 5rem 0 5rem;
  }
}

.page-header .section-label {
  color: var(--brand-gold-light);
}

.page-header h1 {
  color: #fff;
}

.page-header p {
  color: #BBF7D0;
  font-size: 1.125rem;
  max-width: 640px;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--brand-warm-white);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 1024px) {
  .card { padding: 2rem; }
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(27,94,32,0.2);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green-light);
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-green);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.grid-12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid-12 {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
}

.items-center { align-items: center; }

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
}

.section.bg-white { background: #fff; }
.section.bg-warm { background: var(--brand-warm-white); }
.section.bg-green-light { background: rgba(232,245,233,0.5); }
.section.bg-green-dark { background: var(--brand-green-dark); color: #fff; }
.section.bg-green-dark h2,
.section.bg-green-dark h3 { color: #fff; }
.section.bg-green-dark p { color: #BBF7D0; }

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

/* ========================================
   STEP INDICATORS
   ======================================== */
.step-number {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.step-circle.green { background: var(--brand-green); color: #fff; }
.step-circle.gold { background: var(--brand-gold); color: #fff; }

.step-circle svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ========================================
   CHECK LIST
   ======================================== */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.check-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ========================================
   DETAIL BOX
   ======================================== */
.detail-box {
  background: var(--brand-warm-white);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .detail-box { padding: 2rem; }
}

.detail-box h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 1rem;
}

.detail-box .note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E5E7EB;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   BLOCKQUOTE / TESTIMONIAL
   ======================================== */
.quote-section {
  max-width: 768px;
  margin: 0 auto;
}

.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

@media (min-width: 1024px) {
  .quote-section blockquote { font-size: 1.875rem; }
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: #fff;
  border: 1px solid #E5E7EB;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(27,94,32,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

/* ========================================
   CONFIDENTIALITY NOTICE
   ======================================== */
.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.privacy-notice svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ========================================
   SIDEBAR CARD
   ======================================== */
.sidebar-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .sidebar-card { padding: 2rem; }
  .sidebar-sticky { position: sticky; top: 8rem; }
}

.sidebar-card.dark {
  background: var(--brand-green-dark);
  color: #fff;
}

.sidebar-card.dark h3 { color: #fff; }
.sidebar-card.dark p { color: #BBF7D0; }

.sidebar-card.light {
  background: #fff;
  border: 1px solid var(--border-color);
}

/* ========================================
   EMERGENCY NOTICE
   ======================================== */
.emergency-notice {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  padding: 1.5rem;
}

.emergency-notice h3 {
  color: #92400E;
  margin-bottom: 0.5rem;
}

.emergency-notice p {
  color: #92400E;
  font-size: 0.875rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-cta {
  background: var(--brand-green);
  padding: 3rem 0;
  text-align: center;
}

.footer-cta h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-cta p {
  color: #BBF7D0;
  margin-bottom: 2rem;
}

.footer-cta .btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

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

.site-footer {
  background: var(--brand-green-darker);
  color: #BBF7D0;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a {
  color: #BBF7D0;
  font-size: 0.875rem;
  display: block;
  padding: 0.25rem 0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: #86EFAC;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: rgba(187,247,208,0.6);
}

.footer-bottom p {
  color: rgba(187,247,208,0.6);
  font-size: 0.75rem;
}

/* ========================================
   BLOG STYLES
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.blog-card {
  background: #fff;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.blog-card h3 a {
  color: var(--text-dark);
}

.blog-card h3 a:hover {
  color: var(--brand-green);
}

.blog-card .excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.read-more {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.read-more:hover {
  gap: 0.625rem;
}

/* Single Post */
.single-post-content {
  max-width: 768px;
  margin: 0 auto;
}

.single-post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.single-post-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.single-post-content p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.single-post-content li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.post-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--brand-green-light);
  color: var(--brand-green);
  font-weight: 600;
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.pagination .current {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

/* ========================================
   SVG ICONS (inline)
   ======================================== */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }

/* ========================================
   UTILITY
   ======================================== */
.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;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ========================================
   TAG PILLS
   ======================================== */
.tag-pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  background: var(--brand-green-light);
  color: var(--brand-green);
  transition: background 0.2s ease, color 0.2s ease;
}

.tag-pill:hover,
.tag-pill.active {
  background: var(--brand-green);
  color: #fff;
}

.tag-pill.small {
  font-size: 0.625rem;
  padding: 0.25rem 0.625rem;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(187,247,208,0.6);
}

.breadcrumb a {
  color: #BBF7D0;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  margin: 0 0.375rem;
}

.breadcrumb .current {
  color: rgba(187,247,208,0.6);
}

/* ========================================
   PROSE (blog post content)
   ======================================== */
.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--brand-green);
  background: var(--brand-green-light);
  font-style: italic;
}

.prose blockquote p {
  color: var(--brand-green-dark);
}

.prose img {
  margin: 1.5rem 0;
}

.prose strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ========================================
   BLOG CARD IMAGE
   ======================================== */
.blog-card-image {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green-light);
  color: var(--brand-green);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card-meta time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   GRID COL-6
   ======================================== */
@media (min-width: 1024px) {
  .col-6 { grid-column: span 6; }
}

/* ========================================
   WORDPRESS PAGINATION OVERRIDE
   ======================================== */
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.pagination .page-numbers.current {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

.pagination .page-numbers:hover:not(.current) {
  background: var(--brand-green-light);
}

/* ========================================
   MOBILE TOGGLE ANIMATION
   ======================================== */
.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   FOOTER CONTACT ICONS
   ======================================== */
.site-footer a svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* ========================================
   CRISIS BAR ICON
   ======================================== */
.crisis-bar a svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}
