/* ============================================================
   ESSENTIAL OIL AUTHORITY — Main Stylesheet
   ============================================================ */

:root {
  --primary:       #2d6a4f;
  --primary-light: #52b788;
  --primary-dark:  #1b4332;
  --accent:        #c9a227;
  --accent-light:  #f4d03f;
  --bg-light:      #f6f9f4;
  --bg-white:      #ffffff;
  --text-dark:     #1e2d23;
  --text-medium:   #4a6358;
  --text-light:    #7a9487;
  --border:        #d4e6d4;
  --shadow-sm:     0 2px 8px rgba(45,106,79,.08);
  --shadow-md:     0 4px 20px rgba(45,106,79,.12);
  --shadow-lg:     0 8px 40px rgba(45,106,79,.16);
  --radius:        8px;
  --radius-lg:     16px;
  --radius-full:   9999px;
  --transition:    all .25s ease;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Lato', 'Open Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.3; color: var(--primary-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--alt { background: var(--bg-light); }
.section-title { text-align: center; margin-bottom: 1rem; }
.section-subtitle { text-align: center; color: var(--text-medium); max-width: 640px; margin: 0 auto 3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #a8851f; border-color: #a8851f; color: #fff; }
.btn-white { background: #fff; color: var(--primary-dark); border-color: #fff; }
.btn-white:hover { background: var(--bg-light); }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── Badge ── */
.badge {
  display: inline-block; padding: .2rem .75rem;
  background: var(--primary-light); color: #fff;
  border-radius: var(--radius-full); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.badge--accent  { background: var(--accent); }
.badge--research { background: #5e4bb4; }
.badge--news    { background: #1a7fc4; }

/* ══════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--primary-dark); text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a {
  padding: .5rem .85rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; color: var(--text-medium);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: var(--bg-light); }
.nav-cta { margin-left: 1rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff; padding: 6rem 0 5rem; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem 1rem; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.5rem; color: #fff;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent-light); }
.hero-lead { font-size: 1.2rem; opacity: .9; margin-bottom: 2.5rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat-number { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--accent-light); }
.hero-stat-label  { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }

/* ══════════════════════════════════════════════
   TICKER / BREAKING NEWS BAR
══════════════════════════════════════════════ */
.news-ticker-bar {
  background: var(--primary-dark); color: #fff;
  padding: .6rem 0; overflow: hidden;
}
.ticker-label {
  background: var(--accent); padding: .25rem .75rem;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  border-radius: var(--radius); white-space: nowrap; margin-right: 1.5rem;
  flex-shrink: 0;
}
.ticker-track {
  display: flex; gap: 3rem; animation: ticker-scroll 40s linear infinite;
  white-space: nowrap; font-size: .85rem; opacity: .9;
}
.ticker-track a { color: #fff; opacity: .85; }
.ticker-track a:hover { opacity: 1; text-decoration: underline; }
.ticker-wrap {
  overflow: hidden; display: flex; align-items: center;
  width: calc(100% - 120px);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 3rem;
}
.card-body { padding: 1.5rem; }
.card-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; flex-wrap: wrap; }
.card-date { font-size: .8rem; color: var(--text-light); }
.card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.card h3 a { color: var(--primary-dark); }
.card h3 a:hover { color: var(--primary); }
.card-excerpt { color: var(--text-medium); font-size: .9rem; margin-bottom: 1rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-top: 1px solid var(--border); background: var(--bg-light); }
.card-author { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-medium); }

/* ══════════════════════════════════════════════
   AFFILIATE / LIVEGOOD BANNER
══════════════════════════════════════════════ */
.livegood-banner {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #52b788 100%);
  border-radius: var(--radius-lg); padding: 2.5rem; color: #fff;
  position: relative; overflow: hidden; text-align: center;
}
.livegood-banner::before {
  content: '🌿'; position: absolute; font-size: 8rem; opacity: .08;
  top: -1rem; right: -1rem; line-height: 1;
}
.livegood-banner-label {
  display: inline-block; background: var(--accent); color: #fff;
  padding: .25rem 1rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.livegood-banner h3 { color: #fff; margin-bottom: .75rem; font-size: 1.6rem; }
.livegood-banner p { opacity: .9; margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.livegood-banner-sidebar {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg); padding: 1.5rem; color: #fff; text-align: center;
  border: 2px solid var(--accent);
}
.livegood-banner-sidebar h4 { color: var(--accent-light); margin-bottom: .5rem; }
.livegood-banner-sidebar p { font-size: .85rem; opacity: .85; margin-bottom: 1rem; }
.banner-strip {
  background: var(--accent); color: #fff; text-align: center;
  padding: 1.25rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
}
.banner-strip a { color: #fff; text-decoration: underline; }

/* ══════════════════════════════════════════════
   ARTICLE / BLOG PAGE
══════════════════════════════════════════════ */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.article-header { margin-bottom: 2rem; }
.article-header h1 { margin-bottom: 1rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--text-medium); font-size: .9rem; margin-bottom: 1.5rem; }
.article-meta span { display: flex; align-items: center; gap: .3rem; }
.article-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 5rem;
}
img.article-hero-img { display: block; }
.article-content h2 { margin: 2rem 0 1rem; }
.article-content h3 { margin: 1.5rem 0 .75rem; }
.article-content p  { color: var(--text-medium); }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-medium); }
.article-content li { margin-bottom: .5rem; }
.article-content blockquote {
  border-left: 4px solid var(--primary-light);
  padding: 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--bg-light); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text-medium);
}
.article-content .affiliate-link {
  color: var(--primary); font-weight: 700;
  border-bottom: 2px solid var(--primary-light);
}
.article-content .affiliate-link:hover { color: var(--primary-dark); border-color: var(--primary); }
.sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-widget h4 { margin-bottom: 1rem; color: var(--primary-dark); }
.toc-list { display: flex; flex-direction: column; gap: .5rem; }
.toc-list a { font-size: .9rem; color: var(--text-medium); display: flex; align-items: center; gap: .5rem; }
.toc-list a:hover { color: var(--primary); }
.toc-list a::before { content: '▸'; color: var(--primary-light); font-size: .75rem; }

/* ══════════════════════════════════════════════
   DIRECTORY
══════════════════════════════════════════════ */
.directory-search {
  background: var(--primary-dark); padding: 3rem 0; color: #fff;
}
.directory-search h2 { color: #fff; text-align: center; margin-bottom: .5rem; }
.directory-search p { text-align: center; opacity: .8; margin-bottom: 2rem; }
.search-form {
  display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center;
  max-width: 800px; margin: 0 auto;
}
.search-form input, .search-form select {
  flex: 1; min-width: 180px;
  padding: .75rem 1.25rem; border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1);
  color: #fff; font-size: .95rem; outline: none; transition: var(--transition);
}
.search-form input::placeholder { color: rgba(255,255,255,.6); }
.search-form input:focus, .search-form select:focus { border-color: var(--accent-light); background: rgba(255,255,255,.15); }
.search-form select option { color: var(--text-dark); background: #fff; }
.therapist-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 1.75rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; gap: 1.25rem;
}
.therapist-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.therapist-avatar {
  width: 72px; height: 72px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.8rem; font-weight: 700;
}
.therapist-info h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.therapist-practice { color: var(--primary); font-weight: 600; font-size: .9rem; margin-bottom: .5rem; }
.therapist-location { color: var(--text-medium); font-size: .85rem; display: flex; align-items: center; gap: .3rem; }
.therapist-specialties { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.specialty-tag {
  background: var(--bg-light); border: 1px solid var(--border);
  padding: .15rem .6rem; border-radius: var(--radius-full);
  font-size: .75rem; color: var(--text-medium);
}
.directory-form-section { background: var(--bg-light); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: .7rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: .95rem; color: var(--text-dark);
  background: var(--bg-white); outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ══════════════════════════════════════════════
   NEWS AGENT PAGE
══════════════════════════════════════════════ */
.news-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 1.5rem 0;
}
.filter-btn {
  padding: .4rem 1rem; border-radius: var(--radius-full);
  border: 1px solid var(--border); background: var(--bg-white);
  font-size: .85rem; cursor: pointer; transition: var(--transition); font-weight: 600;
  color: var(--text-medium);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.news-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.news-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-source { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary-light); margin-bottom: .5rem; }
.news-item h3 { font-size: 1rem; margin-bottom: .5rem; }
.news-item h3 a { color: var(--text-dark); }
.news-item h3 a:hover { color: var(--primary); }
.news-excerpt { font-size: .85rem; color: var(--text-medium); margin-bottom: .75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-footer { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--text-light); }
.news-loading { text-align: center; padding: 3rem; color: var(--text-medium); }
.news-loading .spinner {
  width: 48px; height: 48px; border: 4px solid var(--border);
  border-top-color: var(--primary); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.agent-status-bar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--bg-light); padding: 1rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 1.5rem;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.agent-status-text { font-size: .85rem; color: var(--text-medium); }
.agent-status-text strong { color: var(--primary-dark); }

/* ══════════════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════════════ */
.study-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.study-card:hover { box-shadow: var(--shadow-md); }
.study-card-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 1.5rem;
}
.study-card-header .badge { margin-bottom: .75rem; }
.study-card-header h3 { color: #fff; font-size: 1.05rem; }
.study-card-body { padding: 1.5rem; }
.study-detail { display: flex; gap: .5rem; margin-bottom: .5rem; font-size: .875rem; color: var(--text-medium); }
.study-detail strong { color: var(--text-dark); min-width: 90px; }
.study-outcome {
  background: var(--bg-light); border-left: 4px solid var(--primary-light);
  padding: .75rem 1rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1rem; font-size: .875rem;
}
.study-outcome strong { color: var(--primary-dark); display: block; margin-bottom: .25rem; }

/* ══════════════════════════════════════════════
   SHOP / PRODUCTS
══════════════════════════════════════════════ */
.product-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 220px; background: linear-gradient(135deg, var(--bg-light), #e8f5e9);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; position: relative;
}
.product-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--accent); color: #fff;
  padding: .2rem .6rem; border-radius: var(--radius-full);
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
}
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary-light); margin-bottom: .35rem; }
.product-body h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.product-desc { color: var(--text-medium); font-size: .875rem; margin-bottom: 1rem; flex: 1; }
.product-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1rem; }
.product-price .original { font-size: 1rem; color: var(--text-light); text-decoration: line-through; margin-left: .5rem; }

/* ══════════════════════════════════════════════
   RESOURCES / MARKET DATA
══════════════════════════════════════════════ */
.stat-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-number { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: .35rem; }
.stat-label  { font-size: .85rem; color: var(--text-medium); text-transform: uppercase; letter-spacing: .06em; }
.resource-link-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  transition: var(--transition);
}
.resource-link-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.resource-link-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--bg-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.resource-link-title { font-weight: 700; margin-bottom: .25rem; color: var(--primary-dark); }
.resource-link-desc { font-size: .85rem; color: var(--text-medium); }

/* ══════════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff; padding: 4rem 0 3.5rem;
}
.page-header h1 { color: #fff; margin-bottom: .5rem; }
.page-header p  { opacity: .85; font-size: 1.1rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; opacity: .75; margin-bottom: 1.25rem; }
.breadcrumb a { color: #fff; }
.breadcrumb span { opacity: .6; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--primary-dark); color: rgba(255,255,255,.8);
  padding: 5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; color: #fff; }
.footer-brand p { font-size: .9rem; line-height: 1.7; opacity: .75; margin-bottom: 1.25rem; }
.footer-heading { color: #fff; font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .9rem; opacity: .75; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; opacity: .6;
}
.footer-disclaimer { text-align: center; font-size: .8rem; opacity: .55; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.social-links { display: flex; gap: .5rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; transition: var(--transition);
}
.social-link:hover { background: var(--primary-light); color: #fff; }

/* ══════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════ */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-medium); }
.font-bold    { font-weight: 700; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  background: var(--bg-light); border: 1px solid var(--border);
  padding: .25rem .75rem; border-radius: var(--radius-full);
  font-size: .8rem; color: var(--text-medium); font-weight: 600;
  transition: var(--transition);
}
.tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius);
  border-left: 4px solid; margin-bottom: 1rem;
}
.alert-info { background: #e8f4fd; border-color: #1a7fc4; color: #0d4f80; }
.alert-success { background: #e8f5e9; border-color: var(--primary); color: var(--primary-dark); }
.alert-warning { background: #fff8e1; border-color: var(--accent); color: #7d5a00; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 1rem; flex-direction: column; box-shadow: var(--shadow-md); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero-stats { gap: 1.5rem; }
  .therapist-card { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .search-form { flex-direction: column; }
  .hero-actions { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════ */
@media print {
  .site-header, .site-footer, .sidebar, .news-ticker-bar { display: none; }
  .article-layout { display: block; }
  a::after { content: ' (' attr(href) ')'; font-size: .75em; color: #666; }
}
