/* =========================================================
   Discovery Hub — Main Stylesheet
   Faith · Health · Serenity · Intentional Living
   Sage / cream / stone palette.
   ========================================================= */

/* ── Variables ── */
:root {
  --hub-sage: #7A9E7E;
  --hub-sage-dark: #4E7255;
  --hub-cream: #F5F0E8;
  --hub-stone: #C9BFA8;
  --hub-charcoal: #2C2926;
  --hub-warm-gray: #7A7067;
  --hub-white: #FDFBF7;
  --hub-forest: #2D3E33;
  --hub-gold: #C4A84B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── Base ── */
.hub-body {
  background: var(--hub-white);
  color: var(--hub-charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.hub-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--hub-white);
  border-bottom: 1px solid var(--hub-stone);
}
.hub-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hub-nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--hub-forest);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hub-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hub-nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-warm-gray);
  text-decoration: none;
  transition: color 0.15s;
}
.hub-nav-links a:hover { color: var(--hub-forest); }
.hub-nav-links a.hub-nav-soon { cursor: default; opacity: 0.5; text-decoration: none; }
/* "Start Here" nav link — accented to stand out as the on-ramp for new visitors */
.hub-nav-links a.hub-nav-start-here { color: var(--hub-sage-dark); font-weight: 500; }
.hub-nav-links a.hub-nav-start-here:hover { color: var(--hub-forest); }
/* "Find Your Archetype" quiz link — linen pill to catch the eye without shouting */
.hub-nav-links a.hub-nav-quiz {
  background: var(--hub-cream);
  color: var(--hub-forest);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--hub-stone);
}
.hub-nav-links a.hub-nav-quiz:hover { background: var(--hub-sage-dark); color: var(--hub-white); border-color: var(--hub-sage-dark); }
.hub-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hub-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hub-charcoal);
}
@media (max-width: 680px) {
  .hub-nav-toggle { display: flex; }
  .hub-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--hub-white); flex-direction: column; padding: 1rem 2rem; border-bottom: 1px solid var(--hub-stone); gap: 1rem; }
  .hub-nav--open .hub-nav-links { display: flex; }
}

/* ── Section label ── */
.hub-section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

/* ── Hero ── */
.hub-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hub-hero-bg {
  position: absolute;
  inset: 0;
}
.hub-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,41,38,0.38) 0%, rgba(44,41,38,0.55) 100%);
}
.hub-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FDFBF7;
  max-width: 720px;
  padding: 2rem;
}
.hub-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.hub-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hub-hero-headline em { font-style: italic; color: #D4BC6A; }
.hub-hero-body {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hub-hero-cta {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.45);
  color: #FDFBF7;
  padding: 13px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.hub-hero-cta:hover { background: rgba(255,255,255,0.25); }
.hub-hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
/* Quiz CTA in hero — distinguishable from primary explore CTA */
.hub-hero-quiz-cta {
  display: inline-block;
  background: var(--hub-sage);
  color: #fff;
  padding: 13px 28px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s;
}
.hub-hero-quiz-cta:hover { background: var(--hub-sage-dark); }
/* Secondary "New here?" nudge row below the main CTA row */
.hub-hero-start-here-row {
  margin-top: 1.2rem;
  text-align: center;
}
.hub-hero-start-here-link {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(253,251,247,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.hub-hero-start-here-link:hover { color: var(--hub-white); }

/* ── Pillars ── */
.hub-pillars {
  background: var(--hub-cream);
  padding: 6rem 2rem;
}
.hub-pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hub-pillars-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--hub-forest);
  margin-bottom: 3rem;
}
.hub-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.hub-pillar-card {
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  padding: 2.5rem 1.75rem;
  text-align: left;
  transition: border-color 0.2s;
}
.hub-pillar-card:hover { border-color: var(--hub-sage); }
.hub-pillar-icon {
  font-size: 1.5rem;
  color: var(--hub-sage-dark);
  margin-bottom: 1rem;
  line-height: 1;
}
.hub-pillar-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--hub-forest);
  margin-bottom: 0.75rem;
}
.hub-pillar-body {
  font-size: 0.88rem;
  color: var(--hub-warm-gray);
  line-height: 1.65;
}
/* Link variant — pillar cards become clickable anchors */
.hub-pillar-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.hub-pillar-card-link:hover { border-color: var(--hub-sage); }
.hub-pillar-explore {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
}

/* ── Articles ── */
.hub-articles {
  padding: 6rem 2rem;
  background: var(--hub-white);
}
.hub-articles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hub-articles-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--hub-forest);
  margin-bottom: 2.5rem;
}
.hub-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.hub-article-card {
  border: 1px solid var(--hub-stone);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.hub-article-card:hover { border-color: var(--hub-sage); transform: translateY(-2px); }
.hub-article-link { text-decoration: none; color: inherit; display: block; }
.hub-article-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.hub-article-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hub-article-card:hover .hub-article-img { transform: scale(1.03); }
.hub-article-body { padding: 1.5rem; }
.hub-article-pillar {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.hub-pillar-faith { background: #E8F0EA; color: #3B6B42; }
.hub-pillar-health { background: #EAF0E8; color: #4A7040; }
.hub-pillar-serenity { background: #E8EEF0; color: #3B5E6B; }
.hub-pillar-intentional { background: #F0EDE8; color: #6B5B3B; }
.hub-article-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--hub-forest);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.hub-article-teaser {
  font-size: 0.85rem;
  color: var(--hub-warm-gray);
  line-height: 1.6;
}
.hub-articles-more {
  margin-top: 2.5rem;
  text-align: center;
}
.hub-more-btn {
  display: inline-block;
  border: 1px solid var(--hub-sage-dark);
  color: var(--hub-sage-dark);
  padding: 12px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hub-more-btn:hover { background: var(--hub-sage-dark); color: var(--hub-white); }

/* ── Email Capture ── */
.hub-join {
  background: var(--hub-forest);
  padding: 6rem 2rem;
  color: var(--hub-cream);
  text-align: center;
}
.hub-join-inner { max-width: 600px; margin: 0 auto; }
.hub-join-inner .hub-section-label { color: var(--hub-stone); }
.hub-join-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--hub-cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.hub-join-body { font-size: 0.95rem; opacity: 0.75; margin-bottom: 2rem; }
.hub-join-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 1rem;
}
.hub-join-input {
  flex: 1;
  padding: 13px 16px;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--hub-cream);
  outline: none;
  font-family: var(--font-body);
}
.hub-join-input::placeholder { color: rgba(245,240,232,0.5); }
.hub-join-input:focus { border-color: var(--hub-sage); }
.hub-join-btn {
  padding: 13px 22px;
  background: var(--hub-sage);
  color: var(--hub-white);
  border: none;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
  white-space: nowrap;
}
.hub-join-btn:hover { background: var(--hub-sage-dark); }
.hub-join-fine { font-size: 0.72rem; opacity: 0.5; }
.hub-join-success { color: var(--hub-stone); font-size: 0.95rem; margin-top: 1rem; }
@media (max-width: 480px) {
  .hub-join-form { flex-direction: column; }
  .hub-join-btn { width: 100%; }
}

/* ── Footer ── */
.hub-footer { background: #1E2B21; color: var(--hub-stone); }
.hub-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
}
.hub-footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--hub-cream);
  display: block;
  margin-bottom: 1rem;
}
.hub-footer-manifesto {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 480px;
  opacity: 0.7;
}
.hub-footer-cols { display: flex; gap: 3rem; align-items: flex-start; }
.hub-footer-col-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-stone);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.hub-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.hub-footer-col a { font-size: 0.83rem; color: var(--hub-stone); text-decoration: none; opacity: 0.75; transition: opacity 0.15s; }
.hub-footer-col a:hover { opacity: 1; }
.hub-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
}
.hub-footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hub-footer-disclosure { font-size: 0.72rem; opacity: 0.5; }
.hub-footer-copy { font-size: 0.72rem; opacity: 0.5; }
@media (max-width: 768px) {
  .hub-footer-inner { grid-template-columns: 1fr; }
  .hub-footer-cols { flex-wrap: wrap; gap: 2rem; }
  .hub-footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Articles index page ── */
.hub-articles-page { padding: 5rem 2rem; min-height: 60vh; }
.hub-articles-page-inner { max-width: 1100px; margin: 0 auto; }
.hub-articles-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--hub-forest);
  margin-bottom: 0.5rem;
}
.hub-articles-page .hub-articles-lede { color: var(--hub-warm-gray); margin-bottom: 3rem; font-size: 1rem; }
.hub-filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hub-filter-btn {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--hub-stone);
  color: var(--hub-warm-gray);
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.hub-filter-btn:hover, .hub-filter-btn.active { background: var(--hub-sage-dark); color: var(--hub-white); border-color: var(--hub-sage-dark); }

/* ── Article detail page ── */
.hub-article-page { padding: 4rem 2rem; }
.hub-article-page-inner { max-width: 720px; margin: 0 auto; }
.hub-article-page-hero { width: 100%; aspect-ratio: 16/7; object-fit: cover; margin-bottom: 2rem; }
.hub-article-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--hub-forest);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hub-article-page-body { font-size: 1rem; line-height: 1.8; color: var(--hub-charcoal); }
.hub-article-page-body p { margin-bottom: 1.5rem; }
.hub-article-page-body h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.hub-article-back { display: inline-block; margin-bottom: 2rem; font-size: 0.78rem; color: var(--hub-sage-dark); text-decoration: none; letter-spacing: 0.05em; }
.hub-article-back:hover { text-decoration: underline; }

/* ── About / Contact pages ── */
.hub-simple-page { padding: 5rem 2rem; min-height: 60vh; }
.hub-simple-page-inner { max-width: 720px; margin: 0 auto; }
.hub-simple-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--hub-forest);
  margin-bottom: 1.5rem;
}
.hub-simple-page p { font-size: 1rem; line-height: 1.8; color: var(--hub-warm-gray); margin-bottom: 1.25rem; }
.hub-contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.hub-contact-form input, .hub-contact-form textarea {
  padding: 12px 14px;
  font-size: 0.9rem;
  border: 1px solid var(--hub-stone);
  background: var(--hub-white);
  font-family: var(--font-body);
  color: var(--hub-charcoal);
  outline: none;
}
.hub-contact-form input:focus, .hub-contact-form textarea:focus { border-color: var(--hub-sage); }
.hub-contact-form textarea { min-height: 140px; resize: vertical; }
.hub-contact-form button {
  padding: 13px 28px;
  background: var(--hub-forest);
  color: var(--hub-cream);
  border: none;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  align-self: flex-start;
  transition: background 0.2s;
}
.hub-contact-form button:hover { background: var(--hub-sage-dark); }

/* ── Affiliate Product Cards ── */
.ap-disclosure {
  background: #F5F0E8;
  border-left: 3px solid var(--hub-stone);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--hub-warm-gray);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Inline product card (injected inside article body at [[product:N]] markers) */
.ap-card {
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  display: flex;
  gap: 1.5rem;
  margin: 2.5rem 0;
  overflow: hidden;
}
.ap-card-inline { align-items: stretch; }
.ap-card-img-wrap { flex: 0 0 160px; min-height: 160px; overflow: hidden; }
.ap-card-img-square { aspect-ratio: 1/1; flex: 0 0 160px; }
.ap-card-img { width: 100%; height: 100%; object-fit: cover; }
.ap-card-body { padding: 1.25rem 1.25rem 1.25rem 0; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.ap-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
  font-weight: 400;
}
.ap-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--hub-forest);
  margin: 0;
}
.ap-card-blurb {
  font-size: 0.85rem;
  color: var(--hub-warm-gray);
  line-height: 1.55;
  margin: 0;
}
.ap-card-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0;
}
.ap-card-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.ap-btn {
  display: inline-block;
  padding: 9px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.ap-btn-tiktok {
  background: var(--hub-sage-dark);
  color: var(--hub-white);
  border: 1px solid var(--hub-sage-dark);
}
.ap-btn-tiktok:hover { background: var(--hub-forest); border-color: var(--hub-forest); }

/* Platform badge on inline cards */
.ap-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 8px;
}
.ap-badge-tiktok_shop { background: #2d3e33; color: #f5f0e8; }
.ap-badge-other { background: var(--hub-sage); color: var(--hub-white); }

/* Disabled button */
.ap-btn-disabled {
  display: inline-block;
  padding: 9px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e8e2d6;
  color: #b0a89a;
  border: 1px dashed #c9bfa8;
  cursor: not-allowed;
}

/* Image placeholder for products without images */
.ap-card-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e2d6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Closing "Shop this article" stack */
.ap-closing-stack {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hub-stone);
}
.ap-closing-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.ap-closing-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ap-card-closing { flex-direction: row; }

/* ── Live This — Products We Love (editorial product section) ── */
.lt-section {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--hub-stone);
}
.lt-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lt-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hub-sage);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.lt-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--hub-charcoal);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.lt-sub {
  font-size: 0.85rem;
  color: var(--hub-warm-gray);
  font-style: italic;
}
.lt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.lt-card {
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.lt-card:hover {
  box-shadow: 0 4px 20px rgba(44, 41, 38, 0.08);
}
.lt-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--hub-cream);
}
.lt-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.lt-card:hover .lt-card-img { transform: scale(1.03); }
.lt-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--hub-cream);
}
.lt-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
}
.lt-badge-tiktok_shop { background: #2d3e33; color: #f5f0e8; }
.lt-badge-other { background: var(--hub-cream); color: var(--hub-charcoal); border: 1px solid var(--hub-stone); }
.lt-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.lt-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0;
  line-height: 1.25;
}
.lt-card-desc {
  font-size: 0.82rem;
  color: var(--hub-warm-gray);
  margin: 0;
  line-height: 1.5;
}
.lt-card-price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0;
}
.lt-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 10px 20px;
  background: var(--hub-sage-dark);
  color: var(--hub-white);
  border: 1px solid var(--hub-sage-dark);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.15s;
}
.lt-btn:hover { background: var(--hub-forest); border-color: var(--hub-forest); }
.lt-btn-arrow { font-size: 0.9em; }
.lt-btn-disabled {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 10px 20px;
  background: var(--hub-cream);
  color: var(--hub-warm-gray);
  border: 1px dashed var(--hub-stone);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: not-allowed;
}

@media (max-width: 580px) {
  .ap-card { flex-direction: column; }
  .ap-card-img-wrap { flex: 0 0 auto; min-height: 200px; width: 100%; }
  .ap-card-body { padding: 1rem; }
  .lt-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* =========================================================
   Pillar Landing Pages — /pillar/:slug
   ========================================================= */

/* ── Pillar Hero ── */
.pillar-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.pillar-hero-bg {
  position: absolute;
  inset: 0;
}
.pillar-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.pillar-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,41,38,0.78) 0%, rgba(44,41,38,0.3) 50%, rgba(44,41,38,0.1) 100%);
}
.pillar-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  width: 100%;
}
.pillar-hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-stone);
  margin-bottom: 1rem;
}
.pillar-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--hub-white);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.pillar-hero-promise {
  font-size: 1.05rem;
  color: rgba(253,251,247,0.85);
  font-weight: 300;
  max-width: 560px;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.pillar-hero-cta {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(253,251,247,0.7);
  color: var(--hub-white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.pillar-hero-cta:hover {
  background: rgba(253,251,247,0.12);
  border-color: var(--hub-white);
}

/* ── Manifesto Callout ── */
.pillar-manifesto {
  background: var(--hub-cream);
  padding: 5rem 2rem;
}
.pillar-manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.pillar-manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--hub-charcoal);
  line-height: 1.75;
  margin: 1.5rem 0 0;
  border-left: 3px solid var(--hub-sage);
  padding-left: 1.75rem;
}

/* ── Article Section ── */
.pillar-articles {
  padding: 5rem 2rem;
  background: var(--hub-white);
}
.pillar-articles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pillar-articles-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0.5rem 0 0.25rem;
}
.pillar-articles-lede {
  color: var(--hub-warm-gray);
  font-size: 0.9rem;
  margin: 0 0 2.5rem;
}
.pillar-articles-empty {
  grid-column: 1/-1;
  color: var(--hub-warm-gray);
  padding: 3rem 0;
  font-size: 0.95rem;
}
.pillar-articles-empty a {
  color: var(--hub-sage-dark);
  text-decoration: underline;
}
.hub-article-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--hub-cream);
}

/* ── Live This Picks ── */
.pillar-picks {
  padding: 5rem 2rem;
  background: var(--hub-cream);
}
.pillar-picks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pillar-picks-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0.5rem 0 0.25rem;
}
.pillar-picks-lede {
  color: var(--hub-warm-gray);
  font-size: 0.85rem;
  margin: 0 0 2.5rem;
}
.pillar-picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillar-pick-card {
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.pillar-pick-card:hover {
  box-shadow: 0 4px 24px rgba(44,41,38,0.1);
}
.pillar-picks-more {
  margin-top: 2.5rem;
  text-align: center;
}

/* ── Email Join — pillar variant (inherits hub-join) ── */
.pillar-join {
  background: var(--hub-forest);
}
.pillar-join .hub-section-label { color: var(--hub-stone); }
.pillar-join .hub-join-headline { color: var(--hub-white); }
.pillar-join .hub-join-body { color: rgba(253,251,247,0.8); }
.pillar-join .hub-join-fine { color: var(--hub-stone); }
.pillar-join .hub-join-success p { color: var(--hub-white); }
.pillar-join .hub-join-input {
  background: rgba(253,251,247,0.08);
  border-color: rgba(253,251,247,0.3);
  color: var(--hub-white);
}
.pillar-join .hub-join-input::placeholder { color: rgba(253,251,247,0.5); }
.pillar-join .hub-join-btn {
  background: var(--hub-sage);
  border-color: var(--hub-sage);
  color: var(--hub-white);
}
.pillar-join .hub-join-btn:hover {
  background: var(--hub-sage-dark);
  border-color: var(--hub-sage-dark);
}

/* ── Cross-Pillar Links ── */
.pillar-cross {
  padding: 5rem 2rem;
  background: var(--hub-white);
  border-top: 1px solid var(--hub-stone);
}
.pillar-cross-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pillar-cross-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0.5rem 0 2.5rem;
}
.pillar-cross-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar-cross-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border: 1px solid var(--hub-stone);
  text-decoration: none;
  background: var(--hub-cream);
  transition: border-color 0.15s, transform 0.15s;
}
.pillar-cross-card:hover {
  border-color: var(--hub-sage);
  transform: translateY(-2px);
}
.pillar-cross-icon {
  font-size: 1.4rem;
  color: var(--hub-sage-dark);
  margin-bottom: 0.75rem;
}
.pillar-cross-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0 0 0.5rem;
}
.pillar-cross-teaser {
  font-size: 0.88rem;
  color: var(--hub-warm-gray);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.pillar-cross-link {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
}

/* ── The Practice editorial section ── */
.pillar-practice {
  padding: 5rem 2rem;
  background: var(--hub-cream);
  border-top: 1px solid var(--hub-stone);
}
.pillar-practice-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pillar-practice-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--hub-charcoal);
  margin: 0.5rem 0 2rem;
  line-height: 1.2;
}
.pillar-practice-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.pillar-practice-para {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--hub-warm-gray);
  margin: 0;
}

/* ── Read Next — journal articles ── */
.pillar-read-next {
  padding: 5rem 2rem;
  background: #FDFBF7;
  border-top: 1px solid var(--hub-stone);
}

/* ── Nav — Pillars dropdown ── */
.hub-nav-pillars { position: relative; }
.hub-nav-pillars > a { cursor: pointer; }
.hub-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -1rem;
  min-width: 200px;
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  padding: 0.5rem 0;
  z-index: 300;
  box-shadow: 0 4px 20px rgba(44,41,38,0.1);
}
.hub-nav-pillars:hover .hub-nav-dropdown,
.hub-nav-pillars:focus-within .hub-nav-dropdown {
  display: block;
}
.hub-nav-dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hub-warm-gray);
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
  white-space: nowrap;
}
.hub-nav-dropdown a:hover {
  color: var(--hub-forest);
  background: var(--hub-cream);
}
.hub-nav-dropdown-divider {
  height: 1px;
  background: var(--hub-stone);
  margin: 0.5rem 0;
}

/* ── Mobile adjustments for pillar pages ── */
@media (max-width: 768px) {
  .pillar-hero { height: 60vh; min-height: 380px; }
  .pillar-hero-content { padding: 0 1.25rem 2.5rem; }
  .pillar-manifesto { padding: 3.5rem 1.25rem; }
  .pillar-practice { padding: 3.5rem 1.25rem; }
  .pillar-read-next { padding: 3.5rem 1.25rem; }
  .pillar-articles { padding: 3.5rem 1.25rem; }
  .pillar-picks { padding: 3.5rem 1.25rem; }
  .pillar-cross { padding: 3.5rem 1.25rem; }
  .pillar-cross-grid { grid-template-columns: 1fr; }
  .pillar-picks-grid { grid-template-columns: 1fr; }
  .hub-nav-dropdown { left: auto; right: 0; }
}

/* ═══════════════════════════════════════════════════════
   Collections — Shop by Intent
   ═══════════════════════════════════════════════════════ */

/* ── Collections hero (shared by index + detail) ── */
.coll-hero {
  position: relative;
  height: 72vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.coll-hero-bg {
  position: absolute;
  inset: 0;
}
.coll-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.coll-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,41,38,0.72) 0%, rgba(44,41,38,0.15) 60%, transparent 100%);
}
.coll-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem 3.5rem;
  width: 100%;
}
.coll-hero-content .hub-section-label { color: rgba(245,240,232,0.75); margin-bottom: 0.6rem; }
.coll-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--hub-white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.coll-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  font-style: italic;
  margin: 0 0 1.75rem;
}

/* ── Collections index grid ── */
.coll-index {
  padding: 6rem 2rem 5rem;
  background: var(--hub-white);
}
.coll-index-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.coll-index-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--hub-charcoal);
  line-height: 1.15;
  margin: 0.5rem 0 0.75rem;
}
.coll-index-lede {
  font-size: 1rem;
  color: var(--hub-warm-gray);
  max-width: 560px;
  margin: 0 0 3.5rem;
  line-height: 1.65;
}
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .coll-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .coll-grid { grid-template-columns: 1fr; } }

.coll-card {
  text-decoration: none;
  color: var(--hub-charcoal);
  display: flex;
  flex-direction: column;
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.coll-card:hover {
  box-shadow: 0 8px 32px rgba(44,41,38,0.1);
  transform: translateY(-2px);
}
.coll-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.coll-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.coll-card:hover .coll-card-img { transform: scale(1.04); }
.coll-card-pillar {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
}
.coll-pillar-faith { background: #2D3E33; color: #F5F0E8; }
.coll-pillar-health { background: #7A9E7E; color: #FDFBF7; }
.coll-pillar-serenity { background: #C9BFA8; color: #2C2926; }
.coll-pillar-intentional_living { background: #C4A84B; color: #2C2926; }

.coll-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.coll-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--hub-charcoal);
  line-height: 1.2;
  margin: 0;
}
.coll-card-tagline {
  font-size: 0.85rem;
  color: var(--hub-warm-gray);
  line-height: 1.5;
  margin: 0.2rem 0 0;
  flex: 1;
}
.coll-card-cta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
  font-weight: 500;
  margin-top: auto;
  padding-top: 0.75rem;
}

/* ── Collection detail hero ── */
.coll-detail-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.coll-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 0 2.5rem;
  padding: 0 2.5rem 4rem 0;
}
.coll-pillar-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.15s;
}
.coll-pillar-badge:hover { opacity: 0.8; }
.coll-detail-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 400;
  color: var(--hub-white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}
.coll-detail-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(245,240,232,0.85);
  margin: 0 0 2rem;
}

/* ── Why section ── */
.coll-why {
  padding: 5.5rem 2rem 5rem;
  background: var(--hub-white);
}
.coll-why-inner {
  max-width: 760px;
  margin: 0 auto;
}
.coll-why-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--hub-charcoal);
  line-height: 1.2;
  margin: 0.5rem 0 1.75rem;
}
.coll-why-para {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--hub-charcoal);
  margin: 0 0 1.25rem;
}

/* ── Product grid (collection detail) ── */
.coll-products {
  padding: 5rem 2rem;
  background: var(--hub-cream);
}
.coll-products-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.coll-products-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--hub-charcoal);
  margin: 0.5rem 0 0.5rem;
}
.coll-products-note {
  font-size: 0.82rem;
  color: var(--hub-warm-gray);
  font-style: italic;
  margin: 0 0 2.5rem;
}
.coll-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.coll-product-card {
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  padding: 1.5rem;
}
/* Override position: absolute on badge inside product cards here (no image wrap) */
.coll-product-card .ap-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ── Pillar row ── */
.coll-pillar-row {
  padding: 3rem 2rem;
  background: var(--hub-forest);
  text-align: center;
}
.coll-pillar-row-inner { max-width: 600px; margin: 0 auto; }
.coll-pillar-row .hub-section-label { color: rgba(245,240,232,0.6); }
.coll-pillar-row-text {
  font-size: 1rem;
  color: rgba(245,240,232,0.85);
  margin: 0.5rem 0 1rem;
}
.coll-pillar-link {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hub-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,240,232,0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.coll-pillar-link:hover { border-color: var(--hub-white); }

/* ── Cross-collection ── */
.coll-cross {
  padding: 5rem 2rem;
  background: var(--hub-white);
}
.coll-cross-inner {
  max-width: 900px;
  margin: 0 auto;
}
.coll-cross-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: var(--hub-charcoal);
  border: 1px solid var(--hub-stone);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.coll-cross-card:hover { box-shadow: 0 8px 32px rgba(44,41,38,0.1); }
.coll-cross-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.coll-cross-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.coll-cross-card:hover .coll-cross-img { transform: scale(1.04); }
.coll-cross-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,41,38,0.1);
}
.coll-cross-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}
.coll-cross-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0.3rem 0 0.3rem;
}
.coll-cross-tagline {
  font-size: 0.9rem;
  color: var(--hub-warm-gray);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
@media (max-width: 640px) {
  .coll-cross-card { grid-template-columns: 1fr; }
  .coll-cross-img-wrap { aspect-ratio: 16/9; }
}

/* ── Back link ── */
.coll-back {
  padding: 1.5rem 2rem 3rem;
  max-width: 1140px;
  margin: 0 auto;
}
.coll-back-link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-warm-gray);
  text-decoration: none;
  transition: color 0.15s;
}
.coll-back-link:hover { color: var(--hub-forest); }

/* ── Homepage collections teaser section ── */
.hub-collections {
  padding: 5.5rem 2rem 5rem;
  background: var(--hub-cream);
}
.hub-collections-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.hub-collections-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hub-collections-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--hub-charcoal);
  margin: 0.4rem 0 0;
}
.hub-collections-all {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.hub-collections-all:hover { color: var(--hub-forest); }

/* ── Pillar collections row (on pillar pages) ── */
.pillar-collections {
  padding: 5rem 2rem 5rem;
  background: var(--hub-cream);
}
.pillar-collections-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.pillar-collections-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--hub-charcoal);
  margin: 0.5rem 0 0.5rem;
}
.pillar-collections-lede {
  font-size: 0.9rem;
  color: var(--hub-warm-gray);
  margin: 0 0 2.5rem;
}

/* ── Mobile: collections ── */
@media (max-width: 768px) {
  .coll-index { padding: 3.5rem 1.25rem 3rem; }
  .coll-why { padding: 3.5rem 1.25rem 3rem; }
  .coll-products { padding: 3.5rem 1.25rem 3rem; }
  .coll-cross { padding: 3.5rem 1.25rem 3rem; }
  .coll-detail-hero-content { margin-left: 0; padding: 0 1.25rem 3rem 1.25rem; }
  .hub-collections { padding: 3.5rem 1.25rem 3rem; }
  .pillar-collections { padding: 3.5rem 1.25rem 3rem; }
}

/* ─────────────────────────────────────────────────────────────
   Daily Devotional Widget + Archive
   ───────────────────────────────────────────────────────────── */

/* ── Homepage widget wrapper ── */
.dev-widget {
  background: #F7F3EB;
  border-top: 1px solid var(--hub-stone);
  border-bottom: 1px solid var(--hub-stone);
  padding: 4rem 2rem;
}
.dev-widget-inner {
  max-width: 720px;
  margin: 0 auto;
}
.dev-widget-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dev-widget-date {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--hub-warm-gray);
}
.dev-widget-intention {
  display: inline-block;
  padding: 0.2em 0.8em;
  background: var(--hub-cream);
  border: 1px solid var(--hub-stone);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-forest);
  border-radius: 2px;
}
.dev-widget-verse {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--hub-charcoal);
  line-height: 1.45;
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}
.dev-widget-reflection {
  font-size: 0.95rem;
  color: var(--hub-warm-gray);
  line-height: 1.75;
  margin: 0 0 2rem;
}

/* ── Contextual product card inside widget ── */
.dev-product-card {
  margin: 0 0 2rem;
}
.dev-product-link {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  padding: 1.25rem;
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.dev-product-link:hover {
  box-shadow: 0 4px 20px rgba(44,41,38,0.09);
}
.dev-product-img-wrap {
  flex: 0 0 90px;
  height: 90px;
  overflow: hidden;
}
.dev-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dev-product-body {
  flex: 1;
}
.dev-product-pillar {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.15em 0.6em;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}
.dev-pillar-faith    { background: #F0EBE3; color: #6B5744; }
.dev-pillar-health   { background: #E8F0E8; color: #3A5C3A; }
.dev-pillar-serenity { background: #E8ECF4; color: #3A4A6B; }
.dev-pillar-intentional_living { background: #F0EDE8; color: #5C4A3A; }
.dev-product-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--hub-charcoal);
  margin: 0 0 0.25rem;
}
.dev-product-tagline {
  font-size: 0.82rem;
  color: var(--hub-warm-gray);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}
.dev-product-cta {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--hub-sage-dark);
  font-weight: 500;
}

/* ── Email capture footer inside widget ── */
.dev-widget-footer {
  border-top: 1px solid var(--hub-stone);
  padding-top: 1.5rem;
}
.dev-sub-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.dev-sub-input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--hub-stone);
  background: var(--hub-white);
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--hub-charcoal);
  outline: none;
}
.dev-sub-input:focus { border-color: var(--hub-sage); }
.dev-sub-btn {
  padding: 0.65rem 1.5rem;
  background: var(--hub-forest);
  color: var(--hub-white);
  border: none;
  font-size: 0.82rem;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.dev-sub-btn:hover { background: var(--hub-sage-dark); }
.dev-sub-fine {
  font-size: 0.78rem;
  color: var(--hub-warm-gray);
  margin: 0;
}
.dev-archive-link {
  color: var(--hub-sage-dark);
  margin-left: 1rem;
  text-decoration: none;
}
.dev-archive-link:hover { text-decoration: underline; }
.dev-sub-success p {
  font-size: 0.9rem;
  color: var(--hub-sage-dark);
  margin: 0;
}

/* ── Devotional archive page ── */
.dev-archive-hero {
  background: var(--hub-forest);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.dev-archive-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.dev-archive-hero .hub-section-label {
  color: var(--hub-stone);
}
.dev-archive-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--hub-white);
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}
.dev-archive-sub {
  font-size: 0.92rem;
  color: var(--hub-stone);
  margin: 0;
}

/* ── Today's featured entry ── */
.dev-archive-today {
  background: #F7F3EB;
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--hub-stone);
}
.dev-archive-today-inner {
  max-width: 720px;
  margin: 0 auto;
}
.dev-archive-today-badge {
  display: inline-block;
  padding: 0.2em 0.75em;
  background: var(--hub-gold);
  color: var(--hub-white);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.dev-archive-today-date {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--hub-warm-gray);
  margin-bottom: 0.75rem;
}
.dev-intention-badge {
  display: inline-block;
  padding: 0.2em 0.8em;
  background: var(--hub-cream);
  border: 1px solid var(--hub-stone);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-forest);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.dev-archive-verse {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--hub-charcoal);
  line-height: 1.5;
  margin: 0 0 1.25rem;
  border: none;
  padding: 0;
}
.dev-archive-reflection {
  font-size: 0.95rem;
  color: var(--hub-warm-gray);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.dev-archive-product-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--hub-forest);
  color: var(--hub-white);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s;
}
.dev-archive-product-btn:hover { background: var(--hub-sage-dark); }
.dev-archive-product-btn em { font-style: normal; }

/* ── Archive subscribe strip ── */
.dev-archive-sub-strip {
  background: var(--hub-white);
  border-bottom: 1px solid var(--hub-stone);
  padding: 2.5rem 2rem;
}
.dev-archive-sub-strip-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.dev-archive-sub-copy {
  font-size: 0.92rem;
  color: var(--hub-charcoal);
  margin: 0;
  white-space: nowrap;
}
.dev-archive-sub-form {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  flex-wrap: wrap;
}
.dev-archive-sub-input {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--hub-stone);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
}
.dev-archive-sub-input:focus { border-color: var(--hub-sage); }
.dev-archive-sub-btn {
  padding: 0.6rem 1.25rem;
  background: var(--hub-sage-dark);
  color: var(--hub-white);
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s;
  white-space: nowrap;
}
.dev-archive-sub-btn:hover { background: var(--hub-forest); }
.dev-archive-sub-success p {
  font-size: 0.9rem;
  color: var(--hub-sage-dark);
  margin: 0;
}

/* ── Archive grid ── */
.dev-archive-grid-section {
  padding: 4rem 2rem 5rem;
  background: var(--hub-white);
}
.dev-archive-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.dev-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.dev-archive-card {
  background: var(--hub-cream);
  border: 1px solid var(--hub-stone);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dev-archive-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.dev-archive-card-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--hub-warm-gray);
}
.dev-intention-sm {
  font-size: 0.63rem;
  padding: 0.15em 0.55em;
}
.dev-archive-card-verseref {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--hub-warm-gray);
  text-transform: uppercase;
  margin: 0;
}
.dev-archive-card-reflection {
  font-size: 0.85rem;
  color: var(--hub-charcoal);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dev-archive-card-link {
  font-size: 0.78rem;
  color: var(--hub-sage-dark);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--hub-stone);
}
.dev-archive-card-link:hover { text-decoration: underline; }

/* ── Mobile: devotional ── */
@media (max-width: 640px) {
  .dev-widget { padding: 3rem 1.25rem; }
  .dev-product-link { flex-direction: column; }
  .dev-product-img-wrap { flex: 0 0 auto; height: 160px; width: 100%; }
  .dev-archive-today { padding: 2.5rem 1.25rem; }
  .dev-archive-sub-strip-inner { flex-direction: column; align-items: flex-start; }
  .dev-archive-sub-copy { white-space: normal; }
  .dev-archive-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   /shop — Unified Affiliate Catalog
   ════════════════════════════════════════════ */

/* ── Shop Hero ── */
.shop-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
}
.shop-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,41,38,0.35) 0%, rgba(44,41,38,0.60) 100%);
}
.shop-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FDFBF7;
  max-width: 680px;
  padding: 2rem;
}
.shop-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.shop-hero-body {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Filter Rail ── */
.shop-filters {
  background: var(--hub-cream);
  border-bottom: 1px solid var(--hub-stone);
  position: sticky;
  top: 57px;
  z-index: 100;
}
.shop-filters-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.shop-filter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.shop-search-wrap {
  display: flex;
  gap: 0.5rem;
  max-width: 360px;
}
.shop-search-input {
  flex: 1;
  padding: 0.55rem 1rem;
  border: 1px solid var(--hub-stone);
  background: var(--hub-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--hub-charcoal);
  outline: none;
}
.shop-search-input:focus { border-color: var(--hub-sage); }
.shop-search-btn {
  padding: 0.55rem 1rem;
  background: var(--hub-sage);
  color: var(--hub-white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s;
}
.shop-search-btn:hover { background: var(--hub-sage-dark); }

.shop-filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.shop-filter-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-warm-gray);
  white-space: nowrap;
  min-width: 70px;
}
.shop-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.shop-chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  border: 1px solid var(--hub-stone);
  color: var(--hub-warm-gray);
  text-decoration: none;
  background: var(--hub-white);
  transition: all 0.15s;
  white-space: nowrap;
}
.shop-chip:hover {
  border-color: var(--hub-sage);
  color: var(--hub-forest);
}
.shop-chip--active {
  background: var(--hub-forest);
  border-color: var(--hub-forest);
  color: var(--hub-white);
}
.shop-chip--faith { border-left: 3px solid #B8A878; }
.shop-chip--health { border-left: 3px solid var(--hub-sage); }
.shop-chip--serenity { border-left: 3px solid #8AACCF; }
.shop-chip--intentional_living { border-left: 3px solid #C4A84B; }

/* ── Grid ── */
.shop-grid-section {
  padding: 3.5rem 0 4rem;
}
.shop-grid-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.shop-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-grid-count {
  font-size: 0.82rem;
  color: var(--hub-warm-gray);
}
.shop-clear-link {
  color: var(--hub-sage-dark);
  text-decoration: underline;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* ── Card ── */
.shop-card {
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.shop-card:hover { box-shadow: 0 4px 16px rgba(44,41,38,0.1); }
.shop-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.shop-card:hover .shop-card-img { transform: scale(1.03); }
.shop-card-img-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hub-cream);
}
.shop-card-pillar-icon {
  font-size: 2rem;
  opacity: 0.4;
}
.shop-pillar-bg-faith { background: #F5EFE2; }
.shop-pillar-bg-health { background: #E9F2EA; }
.shop-pillar-bg-serenity { background: #E5EDF5; }
.shop-pillar-bg-intentional_living { background: #F2EDD8; }

.shop-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shop-card-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.shop-card-pillar-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 2px 7px;
  border-radius: 2px;
}
.shop-pillar-faith { background: #F5EFE2; color: #7A6B4E; }
.shop-pillar-health { background: #E9F2EA; color: #4E7255; }
.shop-pillar-serenity { background: #E5EDF5; color: #4A6E8A; }
.shop-pillar-intentional_living { background: #F2EDD8; color: #8A7340; }

.shop-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--hub-forest);
}
.shop-card-desc {
  font-size: 0.85rem;
  color: var(--hub-warm-gray);
  line-height: 1.55;
  flex: 1;
}
.shop-card-btns { margin-top: auto; padding-top: 0.5rem; }
.shop-card-btn { width: 100%; text-align: center; }

/* ── Empty state ── */
.shop-empty {
  text-align: center;
  padding: 4rem 0;
}
.shop-empty-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--hub-charcoal);
  margin-bottom: 0.5rem;
}
.shop-empty-body {
  color: var(--hub-warm-gray);
  font-size: 0.9rem;
}
.shop-empty-body a { color: var(--hub-sage-dark); }

/* ── Affiliate note ── */
.shop-affiliate-note {
  font-size: 0.75rem;
  color: var(--hub-warm-gray);
  margin-top: 2.5rem;
  text-align: center;
  opacity: 0.75;
}

/* ── Email capture section ── */
.shop-join { background: var(--hub-forest); }

/* ── Collections "See more like this" CTA ── */
.coll-shop-cta {
  text-align: center;
  padding: 1.5rem 2rem 0.5rem;
}
.coll-shop-cta-link {
  font-size: 0.88rem;
  color: var(--hub-sage-dark);
  text-decoration: underline;
  letter-spacing: 0.03em;
}
.coll-shop-cta-link:hover { color: var(--hub-forest); }

/* ── Mobile ── */
@media (max-width: 680px) {
  .shop-filters { position: static; }
  .shop-filters-inner { padding: 1rem; }
  .shop-filter-group { gap: 0.5rem; }
  .shop-filter-label { min-width: unset; }
  .shop-search-wrap { max-width: 100%; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .shop-grid-inner { padding: 0 1rem; }
}
@media (max-width: 420px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ── About Page ── */
.about-hero {
  position: relative;
  height: 56vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,41,38,0.18) 0%, rgba(44,41,38,0.62) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--hub-white);
  padding: 2rem 2rem 3rem;
}
.about-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.about-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  margin: 0;
  line-height: 1.2;
}

.about-main {}

.about-section {
  padding: 5rem 2rem;
}
.about-vision {
  background: var(--hub-cream);
}
.about-mission {
  background: var(--hub-white);
}
.about-section-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--hub-forest);
  line-height: 1.3;
  margin: 0;
  /* Vision statement IS the h1 on screen */
}
/* Mission section has a visually-hidden h1, body carries the weight */
.about-heading--mission {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.about-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  color: var(--hub-charcoal);
  max-width: 660px;
  margin: 1.5rem auto 0;
}

.about-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  max-width: 560px;
  margin: 0 auto;
}
.about-divider-line {
  flex: 1;
  height: 1px;
  background: var(--hub-stone);
}
.about-divider-motif {
  font-size: 0.9rem;
  color: var(--hub-sage-dark);
  line-height: 1;
}

.about-cta-section {
  background: var(--hub-cream);
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--hub-stone);
}
.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta-primary {
  display: inline-block;
  background: var(--hub-forest);
  color: var(--hub-cream);
  padding: 13px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}
.about-cta-primary:hover { background: var(--hub-sage-dark); }
.about-cta-secondary {
  display: inline-block;
  border: 1px solid var(--hub-sage-dark);
  color: var(--hub-sage-dark);
  padding: 13px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.about-cta-secondary:hover { background: var(--hub-sage-dark); color: var(--hub-white); }

.about-story {
  padding: 5rem 2rem;
  background: var(--hub-white);
  border-top: 1px solid var(--hub-stone);
}
.about-story-inner {
  max-width: 680px;
  margin: 0 auto;
}
.about-story-body {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--hub-warm-gray);
  margin-bottom: 1.25rem;
}
.about-story-link {
  color: var(--hub-sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}
.about-story-link:hover { color: var(--hub-forest); }

@media (max-width: 680px) {
  .about-hero { height: 44vh; min-height: 280px; }
  .about-section { padding: 3.5rem 1.5rem; }
  .about-cta-section { padding: 2.5rem 1.5rem; }
  .about-story { padding: 3.5rem 1.5rem; }
}

/* ── Homepage Vision & Mission Feature ── */
.hub-mission-feature {
  background: var(--hub-forest);
  padding: 5rem 2rem;
  text-align: center;
}
.hub-mission-feature-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hub-mission-feature .hub-section-label {
  color: var(--hub-stone);
}
.hub-mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--hub-cream);
  line-height: 1.45;
  margin: 0.75rem 0 1.75rem;
  border: none;
  padding: 0;
}
.hub-mission-link {
  display: inline-block;
  color: var(--hub-stone);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s;
}
.hub-mission-link:hover { color: var(--hub-cream); }

@media (max-width: 680px) {
  .hub-mission-feature { padding: 3.5rem 1.5rem; }
}

/* ── Footer Mission Mini-block ── */
.hub-footer-mission {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hub-footer-mission-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-stone);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.hub-footer-mission-text {
  font-size: 0.85rem;
  color: rgba(253,251,247,0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.hub-footer-mission-link {
  font-size: 0.78rem;
  color: var(--hub-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.hub-footer-mission-link:hover { color: var(--hub-stone); }

/* ── Back Arrow Button ── */
.site-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: fixed;
  top: 1.1rem;
  left: 1.25rem;
  z-index: 9999;
  padding: 0.45rem 0.85rem 0.45rem 0.6rem;
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  border-radius: 3px;
  color: var(--hub-warm-gray);
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(44,41,38,0.08);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.site-back-btn:hover { background: var(--hub-cream); color: var(--hub-charcoal); border-color: var(--hub-charcoal); }
.site-back-btn svg { flex-shrink: 0; transition: transform 0.15s; }
.site-back-btn:hover svg { transform: translateX(-2px); }
@media (max-width: 600px) {
  .site-back-btn { top: 0.85rem; left: 0.75rem; padding: 0.4rem 0.75rem 0.4rem 0.5rem; font-size: 0.72rem; }
}
