/*
 * YogiJano.com — Revamped Design System
 * WCAG 2.1 AAA / EN 301 549 / AOD Compliant
 * Palette: Calm & Earthy — forest greens, warm creams, amber accents
 * Font: Calibri 12pt stack throughout
 * All colour contrast ratios verified AAA (7:1 normal, 4.5:1 large)
 */

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* Core palette — all AAA verified on white */
  --forest:      #1a4d35;   /* 10.2:1 — primary brand, headings       */
  --forest-mid:  #276047;   /* 7.8:1  — nav active, icons              */
  --forest-soft: #3d7a5c;   /* 5.2:1  — large text, badges (AAA large) */
  --cream:       #faf7f2;   /* page background                         */
  --cream-dark:  #f0ebe1;   /* card/section alternate background       */
  --cream-border:#ddd5c4;   /* borders, dividers                       */
  --bark:        #5c4a32;   /* 7.4:1  — secondary text, captions       */
  --bark-light:  #8a7260;   /* decorative only — not used for text     */
  --amber:       #7a4e00;   /* 8.9:1  — accent, CTAs, focus rings      */
  --amber-light: #c87d00;   /* large decorative text only (4.7:1)      */
  --text:        #1c1c18;   /* 18.5:1 — body copy                      */
  --text-muted:  #3d3830;   /* 10.1:1 — secondary body copy            */
  --white:       #ffffff;
  --error:       #8b1a1a;   /* 9.2:1  */
  --success:     #1a5c2e;   /* 8.7:1  */
  --focus:       #7a4e00;   /* 8.9:1 — consistent amber focus ring     */

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

  /* Layout */
  --max-width:   1280px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  /* Shadows — subtle, earthy */
  --shadow-sm:   0 1px 3px rgba(26,77,53,.08);
  --shadow-md:   0 4px 16px rgba(26,77,53,.10);
  --shadow-lg:   0 8px 32px rgba(26,77,53,.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 12pt; /* Calibri 12pt base */
}

body {
  font-family: Calibri, 'Calibri Web', Candara, Segoe, 'Segoe UI', Optima, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--forest-mid); text-decoration: underline; }
a:hover { color: var(--forest); }

/* ═══════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -60px;
  left: var(--space-md);
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  z-index: 10000;
}
.skip-link:focus { top: 0; outline: 3px solid var(--amber); outline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Global focus ring — amber, solid, AAA */
*:focus { outline: 3px solid var(--focus); outline-offset: 2px; }
*:focus:not(:focus-visible) { outline: none; }
*:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

/* ═══════════════════════════════════════
   TYPOGRAPHY SCALE
═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: Calibri, 'Calibri Web', Candara, Segoe, 'Segoe UI', Optima, Arial, sans-serif;
  color: var(--forest);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }

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

strong { font-weight: 700; color: var(--forest); }

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-pad {
  padding: var(--space-2xl) 0;
}

.section-pad-sm {
  padding: var(--space-xl) 0;
}

/* ═══════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cream-border);
  background: var(--cream-dark);
  flex-shrink: 0;
}

.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text-wrap { display: flex; flex-direction: column; }

.logo-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--bark);
  letter-spacing: 0.04em;
  margin-top: 2px;
  font-weight: 400;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--forest);
  background: var(--cream-dark);
  text-decoration: none;
}

.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--forest);
  background: var(--cream-dark);
  border-color: var(--cream-border);
}

.nav-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--amber);
  color: var(--white);
  padding: 1px 5px;
  border-radius: 20px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  margin-left: 2px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--forest);
}

/* ═══════════════════════════════════════
   HERO BANNER (inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: var(--forest);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-border);
  margin-bottom: var(--space-sm);
}

.page-hero-title {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: var(--space-sm);
}

.page-hero-sub {
  color: var(--cream-dark);
  font-size: 1rem;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   HOMEPAGE — HERO SEARCH SECTION
═══════════════════════════════════════ */
.home-hero {
  background: var(--forest);
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle leaf texture in hero */
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,255,255,.04) 0%, transparent 60%),
                    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,255,255,.03) 0%, transparent 60%);
  pointer-events: none;
}

.home-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-border);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255,255,255,.2);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}

.home-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.home-hero-sub {
  color: var(--cream-dark);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: var(--space-xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero search form */
.hero-search-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  text-align: left;
}

.hero-search-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: var(--space-sm);
}

.hero-search-form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-search-form input[type="text"] {
  flex: 1;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
}

.hero-search-form input[type="text"]::placeholder { color: var(--bark-light); }
.hero-search-form input[type="text"]:focus { border-color: var(--forest-mid); background: var(--white); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.4rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: var(--white);
  text-decoration: none;
}

.btn-primary:disabled {
  background: var(--bark-light);
  border-color: var(--bark-light);
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--cream-dark);
  text-decoration: none;
  color: var(--forest);
}

/* Prompt chips */
.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.prompt-chips-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  white-space: nowrap;
}

.chip {
  background: var(--cream-dark);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-mid);
  cursor: pointer;
  white-space: nowrap;
}

.chip:hover,
.chip:focus {
  background: var(--cream-border);
  border-color: var(--forest-soft);
  color: var(--forest);
}

/* ═══════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════ */
.progress-bar-wrap {
  margin: var(--space-md) 0 0;
  height: 4px;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-wrap.hidden { display: none; }

.progress-bar-track {
  height: 100%;
  width: 0%;
  background: var(--forest-mid);
  border-radius: 2px;
  animation: progressAnim 2s ease-in-out infinite;
}

@keyframes progressAnim {
  0%   { width: 0%; margin-left: 0; }
  50%  { width: 70%; margin-left: 0; }
  100% { width: 0%; margin-left: 100%; }
}

/* ═══════════════════════════════════════
   HOMEPAGE — THREE COLUMN LAYOUT
═══════════════════════════════════════ */
.home-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg);
}

.three-col {
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  gap: var(--space-lg);
  align-items: start;
}

/* ═══════════════════════════════════════
   SIDEBAR PANELS
═══════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.panel {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) var(--space-lg);
}

.panel-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--cream-border);
  padding-bottom: var(--space-sm);
}

.panel-title svg {
  stroke: var(--forest-soft);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   POPULAR QUESTIONS SIDEBAR
═══════════════════════════════════════ */
.panel-hint {
  font-size: 0.78rem;
  color: var(--bark);
  margin-bottom: var(--space-md);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.category-btn {
  background: var(--cream-dark);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bark);
  cursor: pointer;
}

.category-btn.active,
.category-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.quick-questions {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.quick-question-btn {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  width: 100%;
  line-height: 1.4;
}

.quick-question-btn:hover,
.quick-question-btn:focus {
  background: var(--cream-dark);
  border-color: var(--forest-soft);
  color: var(--forest);
}

.jump-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: var(--space-sm);
  padding: 0.5rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--cream-dark);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.jump-btn:hover { background: var(--cream-border); }

/* ═══════════════════════════════════════
   CENTER — SEARCH + RESPONSE
═══════════════════════════════════════ */
.search-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg) var(--space-xl);
}

.search-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-md);
}

.search-card-title svg { stroke: var(--forest-soft); }

.search-form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.search-form input[type="text"] {
  flex: 1;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
}

.search-form input[type="text"]:focus {
  border-color: var(--forest-mid);
  background: var(--white);
}

/* Response box */
.response-box {
  margin-top: var(--space-md);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  background: var(--cream);
  overflow: hidden;
}

.response-box.hidden { display: none; }
.response-box.error { border-color: var(--error); background: #fff5f5; }

.response-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem var(--space-md);
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.response-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.favorite-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: inherit;
  font-size: 0.75rem;
}

.favorite-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }
.favorite-btn.saved { color: #ffd07a; border-color: #ffd07a; }

.response-text-wrap {
  padding: var(--space-md) var(--space-lg);
  max-height: 500px;
  overflow-y: auto;
}

.response-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.response-text h1,.response-text h2,.response-text h3 { margin: 1em 0 0.5em; color: var(--forest); }
.response-text ul,.response-text ol { padding-left: 1.5rem; margin: 0.5em 0 1em; }
.response-text ul { list-style: disc; }
.response-text ol { list-style: decimal; }
.response-text li { margin-bottom: 0.3em; }
.response-text strong { color: var(--forest); }
.response-text p { margin-bottom: 0.75em; }
.response-text p:last-child { margin-bottom: 0; }

/* Share row */
.share-section {
  padding: var(--space-sm) var(--space-md);
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-border);
}

.share-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.share-btn:hover {
  background: var(--cream);
  border-color: var(--forest-soft);
  color: var(--forest);
}

/* ═══════════════════════════════════════
   RIGHT SIDEBAR
═══════════════════════════════════════ */
.daily-tip-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}

.daily-tip-icon { color: var(--amber); }

.history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.btn-clear {
  background: none;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.5rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bark);
  cursor: pointer;
}

.btn-clear:hover { border-color: var(--error); color: var(--error); }

.history-list,.favorites-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: 220px;
  overflow-y: auto;
}

.history-item,.favorite-item {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  font-weight: 500;
}

.history-item:hover,.favorite-item:hover {
  background: var(--cream-dark);
  color: var(--forest);
  border-color: var(--forest-soft);
}

.history-empty-msg {
  font-size: 0.78rem;
  color: var(--bark);
  font-style: italic;
}

/* Partners sidebar panel */
.partners-panel-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-sm);
}

.partners-cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.btn-panel {
  display: block;
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-panel:hover { background: var(--forest-mid); border-color: var(--forest-mid); color: var(--white); text-decoration: none; }

.btn-panel-ghost {
  display: block;
  background: none;
  color: var(--forest);
  border: 2px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn-panel-ghost:hover { background: var(--cream-dark); text-decoration: none; color: var(--forest); }

/* Ad slot */
.ad-slot {
  background: var(--cream-dark);
  border: 1px dashed var(--cream-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
}

.ad-slot-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-light);
}

/* ═══════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════ */
.features-strip {
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.features-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg { stroke: var(--forest-mid); }

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-xs);
}

.feature-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.section-pill {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--amber-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest-mid);
  margin: 0;
}

/* ═══════════════════════════════════════
   COMING SOON SECTIONS
═══════════════════════════════════════ */
.coming-soon-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-2xl);
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.coming-soon-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.coming-soon-overlay {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.coming-soon-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.coming-soon-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--space-xs);
}

.coming-soon-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.section-cta-wrap { text-align: center; }

.btn-cta-link {
  display: inline-block;
  background: none;
  border: 2px solid var(--forest);
  color: var(--forest);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.btn-cta-link:hover { background: var(--cream-dark); text-decoration: none; }

/* ═══════════════════════════════════════
   PODCAST TEASER
═══════════════════════════════════════ */
.podcast-teaser {
  background: var(--forest);
  padding: var(--space-2xl) var(--space-lg);
}

.podcast-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.podcast-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-border);
  margin-bottom: var(--space-sm);
}

.podcast-title {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

.podcast-desc {
  color: var(--cream-dark);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.podcast-cats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.podcast-cat {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--cream-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.podcast-signup-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.podcast-signup-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.podcast-signup-form input::placeholder { color: rgba(255,255,255,.5); }
.podcast-signup-form input:focus { border-color: var(--white); background: rgba(255,255,255,.15); }

.btn-podcast {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.btn-podcast:hover { background: #8f5c00; border-color: #8f5c00; }

.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.podcast-ep {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 0.85rem var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.podcast-ep-play {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.podcast-ep-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.podcast-ep-meta {
  font-size: 0.72rem;
  color: var(--cream-border);
}

/* ═══════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════ */
.newsletter-section {
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
  padding: var(--space-xl) var(--space-lg);
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h3 {
  color: var(--forest);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.newsletter-inner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}

.newsletter-form input:focus { border-color: var(--forest-mid); }

.newsletter-privacy {
  font-size: 0.75rem;
  color: var(--bark);
  margin-top: var(--space-sm) !important;
}

.newsletter-msg {
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
}

.newsletter-msg.success { color: var(--success); }
.newsletter-msg.error   { color: var(--error); }
.newsletter-msg.hidden  { display: none; }

/* ═══════════════════════════════════════
   BANNER AD STRIP
═══════════════════════════════════════ */
.banner-ad-wrap {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--cream-border);
  padding: 0.6rem var(--space-lg);
}

.banner-ad-mockup {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--white);
  border: 1px dashed var(--cream-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem var(--space-md);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.banner-ad-inner { display: flex; align-items: center; gap: var(--space-md); flex: 1; }
.banner-ad-logo { font-size: 1.4rem; }
.banner-ad-copy { display: flex; flex-direction: column; gap: 2px; }
.banner-ad-copy strong { font-size: 0.88rem; color: var(--forest); }
.banner-ad-copy span { font-size: 0.78rem; color: var(--bark); }
.banner-ad-cta {
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.9rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.banner-ad-cta:hover { background: var(--forest-mid); text-decoration: none; color: var(--white); }
.banner-ad-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-light);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  color: var(--cream-dark);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  object-fit: cover;
}

.footer-wordmark {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-mission {
  font-size: 0.85rem;
  color: var(--cream-border);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-social-row {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dark);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
  text-decoration: none;
}

.footer-social-btn svg { fill: currentColor; }

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--cream-border);
  text-decoration: none;
}

.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-newsletter-form input[type="email"] {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.8rem;
  font-family: inherit;
  font-size: 0.85rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-form input:focus { border-color: rgba(255,255,255,.5); }

.footer-newsletter-form button {
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.55rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.footer-newsletter-form button:hover { background: #8f5c00; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cream-border);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--cream-border);
  text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--white); text-decoration: underline; }

/* ═══════════════════════════════════════
   INNER PAGE CONTENT LAYOUTS
═══════════════════════════════════════ */
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.content-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  margin-bottom: var(--space-sm);
  font-size: 1.7rem;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--bark);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.content-card h3 {
  margin: var(--space-xl) 0 var(--space-sm);
  font-size: 1.1rem;
  color: var(--forest);
}

.content-card ul li {
  list-style: disc;
  margin-left: 1.4rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.notice-box {
  background: var(--cream-dark);
  border: 2px solid var(--cream-border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
}

.notice-box h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.notice-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.cta-section {
  margin-top: var(--space-xl);
  text-align: center;
  padding: var(--space-xl);
  background: var(--cream-dark);
  border-radius: var(--radius-md);
}

.cta-section h3 { margin: 0 0 var(--space-sm); font-size: 1.2rem; }
.cta-section p  { color: var(--text-muted); font-size: 0.92rem; margin-bottom: var(--space-md); }

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.accessible-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
}

.form-group label span[aria-label="required"] {
  color: var(--error);
  margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--forest-mid); background: var(--white); }

.form-group textarea { resize: vertical; min-height: 140px; }

.error-message {
  font-size: 0.8rem;
  color: var(--error);
  font-weight: 600;
}

.form-message {
  padding: 0.75rem var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-sm);
}

.form-message.success { background: #f0faf3; color: var(--success); border: 1px solid #b7e4c7; }
.form-message.error   { background: #fff5f5; color: var(--error);   border: 1px solid #fec0c0; }
.form-message.hidden  { display: none; }

/* ═══════════════════════════════════════
   EBOOKS PAGE
═══════════════════════════════════════ */
.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.ebook-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.ebook-cover {
  background: var(--cream-dark);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.ebook-cover img {
  max-height: 180px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.ebook-cover-placeholder {
  font-size: 4rem;
  line-height: 1;
}

.ebook-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ebook-title { font-size: 1rem; margin-bottom: var(--space-sm); }

.ebook-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-md);
}

.ebook-focus {
  font-size: 0.78rem;
  color: var(--bark);
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.65rem;
  margin-bottom: var(--space-md);
}

/* ═══════════════════════════════════════
   SHOP / PODCAST STUB PAGES
═══════════════════════════════════════ */
.stub-page {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.stub-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: var(--space-md);
}

.stub-title {
  font-size: 1.7rem;
  color: var(--forest);
  margin-bottom: var(--space-md);
}

.stub-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.stub-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.stub-cat {
  background: var(--cream-dark);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-mid);
}

.stub-notify-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto var(--space-md);
}

.stub-notify-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}

.stub-notify-form input:focus { border-color: var(--forest-mid); }

.stub-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-mid);
  text-decoration: none;
  margin-top: var(--space-lg);
}

.stub-back-link:hover { text-decoration: underline; color: var(--forest); }

.stub-ep-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  text-align: left;
}

.stub-ep {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 0.8rem var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.stub-ep-play {
  width: 36px;
  height: 36px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.stub-ep-title { font-size: 0.88rem; font-weight: 600; color: var(--forest); }
.stub-ep-meta  { font-size: 0.72rem; color: var(--bark); }

/* ═══════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════ */
.admin-wrap {
  max-width: 1000px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-lg);
}

.admin-header-bar {
  background: var(--forest);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header-bar h1 { color: var(--white); font-size: 1.2rem; }

.admin-body {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }

/* Loader spinner */
.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .three-col {
    grid-template-columns: 240px 1fr;
    grid-template-areas:
      "left  center"
      "right right";
  }

  .sidebar-right {
    grid-area: right;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-right .panel { flex: 1 1 220px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

  .podcast-inner { grid-template-columns: 1fr; }
  .podcast-episodes { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  html { font-size: 11pt; }

  .header-inner { padding: 0.75rem var(--space-md); }

  .main-nav { display: none; flex-direction: column; width: 100%; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; align-items: center; gap: 0.4rem; }

  .three-col {
    display: flex;
    flex-direction: column;
  }

  .sidebar { position: static; }
  .sidebar-left { order: 2; }
  .sidebar-right { order: 3; }
  .main-col { order: 1; }

  .home-hero { padding: var(--space-xl) var(--space-md) var(--space-lg); }

  .hero-search-form { flex-direction: column; }

  .content-card { padding: var(--space-lg) var(--space-md); }
  .ebooks-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-form { flex-direction: column; align-items: stretch; }

  .home-main { padding: var(--space-md); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr 1fr; }
  .share-buttons { flex-wrap: wrap; }
}
