/* ═══════════════════════════════════════════════════════
   SOVEREIGN RESET · SHARED DESIGN SYSTEM
   Parchment grimoire aesthetic — shared across all pages.
   Page-specific styles live inline in each page's <style>.
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --moss:        #3E4F2E;
  --moss-deep:   #2C3820;
  --moss-shadow: #1F2818;
  --terracotta:  #A84A2E;
  --mauve:       #B5786E;
  --sage:        #7A9E7E;
  --teal:        #3D7A7A;
  --cream:       #E8D4A8;
  --cream-dark:  #D4BE8C;
  --cream-warm:  #EDDCB8;
  --text:        #2E1F15;
  --text-light:  #6B4A3C;
  --gold:        #B88845;
  --amethyst:    #5B3A5C;
  --oxblood:     #722027;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Warm sand grain — global body texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='sand'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0 0.08 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23sand)'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1000;
}

/* ── Typography ─────────────────────────── */
h1, h2, h3, h4 { font-family: 'EB Garamond', serif; font-weight: 500; letter-spacing: -0.005em; }
em { font-style: italic; color: var(--terracotta); }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--text-light);
  display: inline-block;
}
.inner      { max-width: 820px; margin: 0 auto; padding: 0 40px; }
.inner-wide { max-width: 1120px; margin: 0 auto; padding: 0 48px; }

/* ── Ornamental dividers ─────────────────── */
.ornament {
  font-family: 'EB Garamond', serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 16px;
  justify-content: center;
}
.ornament::before, .ornament::after {
  content: ''; display: inline-block;
  width: 56px; height: 1px;
  background: linear-gradient(to right, transparent, var(--terracotta), transparent);
}
.ornament.light { color: var(--cream-dark); }
.ornament.light::before, .ornament.light::after {
  background: linear-gradient(to right, transparent, var(--cream-dark), transparent);
}

/* ── Reveal animations ───────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 1s ease forwards; }
.reveal.in-2 { animation: fadeUp 1s ease forwards; animation-delay: 0.15s; }
.reveal.in-3 { animation: fadeUp 1s ease forwards; animation-delay: 0.3s; }
.reveal.in-4 { animation: fadeUp 1s ease forwards; animation-delay: 0.45s; }
.reveal.in-5 { animation: fadeUp 1s ease forwards; animation-delay: 0.6s; }

/* ── Credibility strip (dark) ─────────── */
.credibility {
  background: var(--moss-deep);
  padding: 32px 40px;
  border-top: 1px solid rgba(232,212,168,0.06);
  border-bottom: 1px solid rgba(232,212,168,0.06);
}
.credibility-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 36px 56px;
}
.credibility-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(232,212,168,0.5);
  white-space: nowrap;
}
.credibility-item {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.credibility-item:hover { opacity: 0.7; }
.credibility-wordmark {
  font-family: 'EB Garamond', serif;
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream);
  border-top: 1px solid rgba(232,212,168,0.3);
  border-bottom: 1px solid rgba(232,212,168,0.3);
  padding: 6px 16px;
  white-space: nowrap;
  font-style: italic;
}
.credibility-award-svg { width: 52px; height: 52px; flex-shrink: 0; }
.credibility-award-text {
  font-family: 'EB Garamond', serif;
  color: var(--cream); line-height: 1.3;
}
.credibility-award-text .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 3px;
}
.credibility-award-text .title {
  font-size: 16px; font-weight: 500;
  display: block; letter-spacing: 0.01em;
}
.credibility-award-text .year {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  color: rgba(232,212,168,0.55);
  display: block; margin-top: 3px;
}

/* ═══ CREDIBILITY V2 (Lovable-style wordmark row, shared) ═══ */
.credibility-v2 {
  background: var(--cream);
  padding: 56px 40px 64px;
  text-align: center;
  border-top: 1px solid rgba(62,79,46,0.08);
  border-bottom: 1px solid rgba(62,79,46,0.08);
}
.credibility-v2-inner { max-width: 1120px; margin: 0 auto; }
.credibility-v2-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}
.credibility-v2-marks {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 44px 56px;
  margin-bottom: 36px;
}
.credibility-v2-mark {
  font-family: 'EB Garamond', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1;
  list-style: none;
}
.credibility-v2-mark a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.credibility-v2-mark a:hover { color: var(--terracotta); }
.credibility-v2-award-line {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  margin-bottom: 8px;
}
.credibility-v2-award-sub {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
@media (max-width: 700px) {
  .credibility-v2 { padding: 44px 22px 48px; }
  .credibility-v2-marks { gap: 22px 28px; }
  .credibility-v2-mark { font-size: 19px; }
  .credibility-v2-award-line { font-size: 10.5px; letter-spacing: 0.22em; }
}

/* ── PRESS BAR (thin top strip) — matches readings.centeredwellness.biz ── */
.press-bar {
  width: 100%;
  background: #D4BE8C;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(62, 79, 46, 0.3);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-bar-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2E1F15;
  margin: 0;
  line-height: 1.6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 4px;
}

.press-bar-label {
  font-weight: 600;
  color: #3E4F2E;
  margin-right: 18px;
  letter-spacing: 0.3em;
}

.press-bar-more {
  color: #6B4A3C;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-left: 18px;
}

.press-bar-link {
  color: #2E1F15;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.press-bar-link:hover {
  color: #3E4F2E;
  border-bottom-color: #3E4F2E;
}

@media (max-width: 740px) {
  .press-bar-text { font-size: 10px; letter-spacing: 0.15em; }
  .press-bar-label { margin-right: 10px; letter-spacing: 0.22em; }
  .press-bar-more { margin-left: 10px; }
}

/* ── Press strip (dark) ────────────────── */
.press-strip {
  background: var(--moss-shadow);
  padding: 36px 40px 30px;
  text-align: center;
  position: relative;
}
.press-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(232,212,168,0.55);
  margin-bottom: 24px;
}
.press-image {
  max-width: 780px; width: 100%;
  height: auto; display: block;
  margin: 0 auto;
  filter: invert(1) brightness(0.9) sepia(0.2);
  opacity: 0.78;
}
.press-reach {
  margin-top: 22px;
  font-family: 'EB Garamond', serif;
  font-size: 15px; font-style: italic;
  color: rgba(232,212,168,0.55);
  letter-spacing: 0.03em;
}

/* ── Velvet pile on dark sections ──── */
/* Directional turbulence creates horizontal velvet fibers. */
.dark-velvet::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='v'%3E%3CfeTurbulence type='turbulence' baseFrequency='2.5 0.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.02 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23v)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.dark-velvet > * { position: relative; z-index: 1; }

/* ── Linen weave on parchment sections ────── */
.paper-fiber::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='linen'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.28 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23linen)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(0deg,
      transparent 0px, transparent 3px,
      rgba(107,74,60,0.02) 3px, rgba(107,74,60,0.02) 4px
    );
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.paper-fiber > * { position: relative; z-index: 1; }

/* ── Universal buttons ─────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  text-decoration: none;
  padding: 22px 52px;
  border: 1px solid rgba(232,212,168,0.12);
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--moss-shadow);
  letter-spacing: 0.32em;
}
.btn-primary:disabled { opacity: 0.5; cursor: wait; transform: none; }

/* ── Sticky mobile CTA ─────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--moss-deep);
  padding: 12px 16px;
  z-index: 1000;
  box-shadow: 0 -8px 32px rgba(31,40,24,0.35);
  display: none;
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--terracotta); color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  text-decoration: none;
  padding: 18px 20px;
}

/* ── Footer (editorial 3-column, cream-tan) ─── */
/* ═══ FOOTER (editorial 3-col, moss-deep) ═══ */
footer {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 80px 48px 36px;
  border-top: 1px solid rgba(232,212,168,0.08);
  position: relative;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 72px;
  padding-bottom: 52px;
}
.footer-brand {
  font-family: 'EB Garamond', serif;
  font-size: 28px; font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.footer-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-blurb {
  font-family: 'EB Garamond', serif;
  font-size: 15px; font-style: italic;
  line-height: 1.75;
  color: rgba(232,212,168,0.7);
  max-width: 340px;
}
.footer-col-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.footer-links li {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: rgba(232,212,168,0.85);
  list-style: none;
}
.footer-links a {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: rgba(232,212,168,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(232,212,168,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(232,212,168,0.45);
}
.footer-sundays {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-sundays:hover {
  border-bottom-color: var(--gold);
  color: var(--cream);
}
@media (max-width: 900px) {
  footer { padding: 56px 22px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Explore More menu (parchment) ──────── */
.explore {
  background: var(--cream);
  padding: 72px 40px 64px;
  border-top: 1px solid rgba(62,79,46,0.1);
  position: relative;
}
.explore-header { text-align: center; margin-bottom: 40px; }
.explore-headline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--moss);
  margin-top: 20px;
  line-height: 1.2;
}
.explore-headline em { color: var(--terracotta); font-style: italic; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; max-width: 1120px; margin: 0 auto;
}
.explore-card {
  display: block; padding: 32px 28px;
  background: var(--cream-warm);
  border: 1px solid rgba(62,79,46,0.15);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}
.explore-card::before {
  content: '✦';
  position: absolute;
  top: 22px; right: 26px;
  color: var(--terracotta);
  font-size: 12px;
  opacity: 0.5;
}
.explore-card:hover {
  background: #FFFFFF;
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(62,79,46,0.25);
}
.explore-card-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px;
}
.explore-card-title {
  font-family: 'EB Garamond', serif;
  font-size: 26px; font-weight: 500;
  color: var(--moss);
  margin-bottom: 12px; line-height: 1.2;
}
.explore-card-title em { color: var(--terracotta); font-style: italic; }
.explore-card-desc {
  font-family: 'EB Garamond', serif;
  font-size: 15px; line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 18px;
}
.explore-card-arrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--moss);
}
.explore-card:hover .explore-card-arrow { color: var(--terracotta); }

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .credibility-inner { gap: 26px 36px; }
  .credibility-wordmark { font-size: 17px; letter-spacing: 0.12em; padding: 5px 12px; }
  .credibility-award-svg { width: 42px; height: 42px; }
  .credibility-award-text .title { font-size: 13px; }
  .explore { padding: 80px 22px 70px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ── Reduced motion ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; }
}
