/* Tantra Authority — base stylesheet
   Clean, readable, calm. Not punk. Not New Age.
   Designed for educational long-form reading.
*/

:root {
  --bg: #faf8f4;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --accent: #8b3a3a;        /* deep red — earthy, not sex-shop red */
  --accent-soft: #c89d9c;
  --border: rgba(0,0,0,0.08);
  --gold: #b8860b;          /* muted gold for CTA */
  --max-w: 720px;
  --max-w-wide: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Charter', 'Georgia', 'Cambria', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Site header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 18px 24px;
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
.site-header-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  font-family: 'Charter', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}
.site-logo span { color: var(--accent); }
.site-nav { display: flex; gap: 22px; }
.site-nav a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--accent); }

/* Main containers */
main { max-width: var(--max-w); margin: 0 auto; padding: 48px 24px 80px; }
.wide { max-width: var(--max-w-wide); }

/* Typography */
h1 {
  font-family: 'Charter', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}
h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 48px 0 16px;
}
h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin: 32px 0 12px;
}
p, ul, ol { margin: 0 0 18px; }
ul, ol { padding-left: 28px; }
li { margin-bottom: 6px; }
strong { font-weight: 700; }
em { font-style: italic; }
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

blockquote {
  margin: 28px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--accent-soft);
  color: var(--text-muted);
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 { font-size: 52px; margin-bottom: 20px; }
.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
}

/* Article meta */
.article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.article-meta .pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(139,58,58,0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Article list (homepage) */
.article-list {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}
.article-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.article-card:last-child { border-bottom: none; }
.article-card a { text-decoration: none; color: inherit; }
.article-card h3 {
  margin: 0 0 8px;
  transition: color 0.15s;
}
.article-card a:hover h3 { color: var(--accent); }
.article-card .excerpt {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}
.article-card .meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* CTA card (book funnel) */
.cta-card {
  margin: 60px 0 0;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.cta-card .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cta-card h3 {
  font-size: 24px;
  margin: 0 0 12px;
}
.cta-card p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 24px;
}
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.15s;
}
.cta-button:hover { background: var(--gold) !important; color: #fff !important; }

/* Invite the Animal In — rich rabbit-hole CTA module */
.animal-cta {
  margin: 64px 0 24px;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, rgba(139,58,58,0.04), rgba(184,134,11,0.03));
  border: 1px solid var(--border);
  border-radius: 10px;
}
.animal-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.animal-cta-headline {
  font-family: 'Charter', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--text);
}
.animal-cta-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.rabbit-hole {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.rabbit-hole-item {
  padding: 16px 18px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s;
  display: block;
}
.rabbit-hole-item:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--accent-soft);
  transform: translateY(-1px);
}
.rabbit-hole-item .rh-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.rabbit-hole-item .rh-title {
  font-family: 'Charter', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--text);
}
.rabbit-hole-item .rh-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Newsletter inline */
.newsletter {
  margin: 48px 0;
  padding: 28px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  text-align: center;
}
.newsletter h4 {
  margin: 0 0 8px;
  font-size: 18px;
}
.newsletter p { color: var(--text-muted); margin: 0 0 18px; font-size: 15px; }
.newsletter form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.newsletter input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: #fff;
}
.newsletter button {
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.site-footer a { color: var(--text-muted); }
.site-footer .footer-imprint { margin-top: 8px; font-size: 11px; letter-spacing: 1px; }

/* Mobile */
@media (max-width: 640px) {
  body { font-size: 17px; }
  h1 { font-size: 32px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  h2 { font-size: 24px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 12px; }
  main { padding: 32px 20px 60px; }
  .cta-card { padding: 28px 20px; }
}
