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

:root {
  --bg: #0f1923;
  --bg-card: #162231;
  --bg-accent: #1a2b3d;
  --cream: #e8e2d6;
  --cream-dim: #b0a898;
  --gold: #c4922a;
  --gold-light: #d4a94a;
  --white: #ffffff;
  --radius: 12px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--cream);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  min-height: 60vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 25, 35, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 226, 214, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold); }

/* Members portal link — gold accent so insiders spot it without
   adding an icon or pill that would clash with the rest of the nav. */
.nav-links a.nav-members,
.footer-nav a.nav-members {
  color: var(--gold);
}
.nav-links a.nav-members:hover,
.nav-links a.nav-members:focus-visible,
.footer-nav a.nav-members:hover,
.footer-nav a.nav-members:focus-visible {
  color: var(--gold-light);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #152538 0%, var(--bg) 100%);
  text-align: center;
  padding: 120px 24px 64px;
}

.hero-medallion {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  filter: drop-shadow(0 4px 24px rgba(196, 146, 42, 0.2));
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.when-pill {
  display: inline-block;
  background: rgba(196, 146, 42, 0.15);
  border: 1px solid rgba(196, 146, 42, 0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.step-pill {
  display: inline-block;
  background: rgba(232, 226, 214, 0.1);
  border: 1px solid rgba(232, 226, 214, 0.2);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-sub {
  color: var(--cream-dim);
  font-size: 1rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 44px;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232, 226, 214, 0.25);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--cream);
  background: rgba(232, 226, 214, 0.05);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-accent {
  background: var(--bg-accent);
}

h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.body-text {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.body-text em { color: var(--cream); }

.link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(196, 146, 42, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.link:hover,
.link:focus-visible { text-decoration-color: var(--gold); }

/* Details Card */
.details-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: var(--radius);
  padding: 8px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.detail-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
}

.detail-item:nth-last-child(-n+2) { border-bottom: none; }

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.pillar-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.pillar h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* What to Expect */
.expect-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expect-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.expect-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 146, 42, 0.15);
  border: 1px solid rgba(196, 146, 42, 0.3);
  color: var(--gold);
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.expect-item h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.expect-item p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Resources */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  transition: all 0.2s;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(232, 226, 214, 0.2);
  transform: translateY(-2px);
}

.resource-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.resource-card p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.4;
}

/* News */
.news-item { padding: 8px 0; }

.news-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.news-item p {
  margin-top: 6px;
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Email Signup */
.signup-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.signup-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.signup-sub {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.signup-form { margin: 0; }

.signup-input-wrap {
  display: flex;
  gap: 8px;
}

.signup-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(232, 226, 214, 0.15);
  background: rgba(232, 226, 214, 0.06);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.signup-input::placeholder { color: var(--cream-dim); opacity: 0.6; }
.signup-input:focus { border-color: var(--gold); }

.signup-btn {
  flex-shrink: 0;
  padding: 12px 24px;
}

.signup-note {
  font-size: 0.75rem;
  color: var(--cream-dim);
  opacity: 0.7;
  margin-top: 8px;
}

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

@media (max-width: 520px) {
  .signup-input-wrap {
    flex-direction: column;
  }

  .signup-btn {
    width: 100%;
    text-align: center;
  }
}

/* CTA */
.cta-section {
  background: linear-gradient(180deg, var(--bg) 0%, #152538 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
}

.cta-section .body-text {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 24px 100px;
  border-top: 1px solid rgba(232, 226, 214, 0.08);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--gold); }

.footer .nav-brand {
  display: block;
  margin-bottom: 8px;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-top: 4px;
}

.footer-meta a { color: var(--cream-dim); }
.footer-meta a:hover,
.footer-meta a:focus-visible { color: var(--gold); }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232, 226, 214, 0.08);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  gap: 10px;
  justify-content: center;
  z-index: 100;
}

.mobile-cta .btn { flex: 1; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgb(15, 25, 35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 226, 214, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 8px 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(232, 226, 214, 0.06);
  }

  .nav-links a:last-child { border-bottom: none; }

  .hero { padding: 100px 24px 48px; }
  .hero-actions { justify-content: center; }

  .section { padding: 48px 0; }

  .details-card {
    grid-template-columns: 1fr;
  }
  .detail-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(232, 226, 214, 0.06); }
  .detail-item:last-child { border-bottom: none; }

  .pillars-grid { grid-template-columns: 1fr; }

  .resources-grid { grid-template-columns: 1fr; }

  .mobile-cta { display: flex; }

  main {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }

  .hero { padding: 92px 20px 44px; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .details-card { padding: 6px 16px; }
  .detail-item { padding: 16px 0; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.75rem; }
  .when-pill { font-size: 0.85rem; padding: 6px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.faq-list details {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: var(--radius);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--white);
  padding: 18px 20px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.faq-list details[open] summary::after { content: '−'; }

.faq-list details p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 20px 18px;
}

/* ===== Shared subpage styles ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.back-link:hover,
.back-link:focus-visible { color: var(--gold); }

.back-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-nav a[aria-current="page"],
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

/* ===== Recordings Page ===== */
.recordings-header,
.about-header,
.seventh-header {
  padding: 100px 24px 32px;
  background: linear-gradient(180deg, #152538 0%, var(--bg) 100%);
}

.recordings-header h1,
.about-header h1,
.seventh-header h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.recordings-header p,
.about-header p,
.seventh-header p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.6;
}

.recordings-list {
  padding: 0 0 120px;
}

.step-group-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  padding: 28px 24px 8px;
  border-bottom: 1px solid rgba(196, 146, 42, 0.2);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.step-group-heading:first-child {
  margin-top: 0;
}

.recording-card {
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
  transition: background 0.15s;
}

.recording-card:hover {
  background: rgba(232, 226, 214, 0.03);
}

.recording-card.active {
  background: var(--bg-card);
}

.recording-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.recording-info {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  text-align: left;
  color: inherit;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px 16px 24px;
  cursor: pointer;
}

.copy-link-btn {
  flex-shrink: 0;
  margin-right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(196, 146, 42, 0.35);
  background: rgba(196, 146, 42, 0.08);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.copy-link-btn:hover,
.copy-link-btn:focus-visible {
  background: rgba(196, 146, 42, 0.18);
}

.play-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 146, 42, 0.15);
  border: 1px solid rgba(196, 146, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.recording-card.active .play-icon,
.recording-card:hover .play-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.play-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  margin-left: 2px;
}

.recording-card.active .play-icon svg,
.recording-card:hover .play-icon svg {
  fill: var(--bg);
}

.pause-icon { display: none; }
.recording-card.active .play-triangle { display: none; }
.recording-card.active .pause-icon { display: block; }

.recording-meta {
  flex: 1;
  min-width: 0;
}

.recording-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.recording-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.player-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  will-change: max-height;
}

.recording-card.active .player-wrapper {
  max-height: 220px;
}

.player-inner {
  padding: 0 24px 16px;
  padding-left: 84px;
}

.player-inner audio {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background: var(--bg-accent);
  display: block;
}

.recording-count {
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(232, 226, 214, 0.08);
}

.noscript-note {
  color: var(--cream-dim);
  padding: 16px 24px 8px;
  font-size: 0.95rem;
}

.noscript-recordings {
  list-style: none;
  padding: 0 24px 24px;
  margin: 0;
}

.noscript-recordings li {
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
}

.noscript-recordings a {
  display: block;
  padding: 12px 0;
  color: var(--cream);
  text-decoration: none;
}

.noscript-recordings a:hover,
.noscript-recordings a:focus-visible {
  color: var(--gold);
}

.share-page {
  padding: 100px 24px 80px;
}

.share-page h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 8px;
}

.share-meta {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

/* ===== About Page ===== */
.differs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.differs-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.differs-card .pillar-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.differs-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.differs-card p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cycle-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.cycle-table thead th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(196, 146, 42, 0.3);
}

.cycle-table tbody tr {
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
  transition: background 0.15s;
}

.cycle-table tbody tr:hover {
  background: rgba(232, 226, 214, 0.03);
}

.cycle-table tbody td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--cream-dim);
  vertical-align: top;
}

.cycle-table .week-num {
  color: var(--gold);
  font-weight: 600;
  font-family: 'Lora', Georgia, serif;
  white-space: nowrap;
}

.cycle-table .step-col {
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
}

.cycle-table .title-col {
  color: var(--cream);
  font-weight: 500;
}

.cycle-table .pages-col {
  white-space: nowrap;
}

.table-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.qual-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qual-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.qual-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196, 146, 42, 0.15);
  border: 1px solid rgba(196, 146, 42, 0.3);
  color: var(--gold);
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.qual-list li span {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-top: 4px;
}

.themes-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.themes-list li {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.themes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196, 146, 42, 0.4);
  border: 1px solid var(--gold);
}

/* ===== Seventh Tradition Page ===== */
.contribute-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.contribute-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 226, 214, 0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.contribute-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.contribute-card p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contribute-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 146, 42, 0.12);
  color: var(--gold);
  margin-bottom: 16px;
}

.contribute-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.coming-soon {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(196, 146, 42, 0.1);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}

.funds-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.funds-list li {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.funds-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 768px) {
  .differs-grid { grid-template-columns: 1fr; }
  .contribute-grid { grid-template-columns: 1fr; }

  .cycle-table thead { display: none; }
  .cycle-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 2px 12px;
  }
  .cycle-table tbody td {
    padding: 0;
    display: inline;
  }
  .cycle-table .desc-col {
    display: block;
    width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .recordings-header,
  .about-header,
  .seventh-header {
    padding: 90px 20px 28px;
  }

  .player-inner {
    padding: 0 16px 14px;
    padding-left: 16px;
  }

  .recording-info {
    padding: 14px 8px 14px 16px;
  }

  .copy-link-btn {
    margin-right: 8px;
    padding: 8px 10px;
  }

  .recording-count,
  .noscript-note,
  .noscript-recordings {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Print styles */
@media print {
  body {
    background: #fff;
    color: #222;
    font-size: 11pt;
  }

  .nav,
  .mobile-cta,
  .skip-link,
  .hero-actions,
  .cta-section {
    display: none !important;
  }

  .hero {
    background: none;
    padding: 24px 0;
  }

  .hero h1 {
    color: #1a2744;
    font-size: 24pt;
  }

  .hero-sub,
  .when-pill {
    color: #444;
  }

  .when-pill {
    background: none;
    border: 1px solid #999;
    color: #333;
  }

  .section,
  .section-accent {
    background: none;
    padding: 16px 0;
  }

  h2 {
    color: #1a2744;
    font-size: 16pt;
    margin-bottom: 8px;
  }

  .body-text,
  .body-text em,
  .pillar p,
  .expect-item p,
  .resource-card p,
  .news-item p {
    color: #333;
  }

  .pillar h3,
  .expect-item h3,
  .resource-card h3 {
    color: #1a2744;
  }

  .details-card,
  .pillar,
  .resource-card {
    background: none;
    border: 1px solid #ccc;
  }

  .detail-label,
  .pillar-num,
  .news-date {
    color: #7a6020;
  }

  .expect-num {
    background: none;
    border: 1px solid #999;
    color: #7a6020;
  }

  .link { color: #7a6020; }

  .footer {
    border-top: 1px solid #ccc;
    padding: 16px 0;
  }

  .footer .nav-brand,
  .footer-meta,
  .footer-meta a {
    color: #444;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .nav-brand[href]::after,
  .nav-links a[href]::after,
  .btn[href]::after {
    content: none;
  }
}
