/* ============================================
   CADASIA LEVY — POETRY & ART PLATFORM
   Design System & Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --bg-primary: #0A0A0A;
  --bg-surface: #111111;
  --bg-surface-2: #1A1A1A;
  --bg-surface-3: #222222;
  --gold: #D4AF37;
  --gold-light: #E8D48B;
  --gold-dark: #8B6914;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-shimmer: rgba(212, 175, 55, 0.08);
  --text-primary: #F5F0E8;
  --text-secondary: #B8B0A0;
  --text-muted: #6B6560;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.07);
  --overlay: rgba(0, 0, 0, 0.85);
  --danger: #E74C3C;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-poem: 'Cormorant Garamond', Georgia, serif;

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

  /* Layout */
  --max-width: 1200px;
  --nav-height: 70px;
  --border-radius: 12px;
  --border-radius-lg: 20px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold-glow);
  --shadow-gold: 0 0 40px var(--gold-glow);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: var(--space-sm);
  letter-spacing: 0.02em;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-btn .lang-btn-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--bg-surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
  z-index: 100;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.lang-option:hover {
  background: var(--glass-hover);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--gold);
  background: var(--gold-shimmer);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* Screen-reader only */
.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;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-photo-wrapper {
  margin: 0 auto var(--space-lg);
  width: 200px;
  height: 200px;
  position: relative;
}

.hero-photo-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.5;
  animation: pulse-ring 3s ease-in-out infinite;
}

.hero-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold-dark);
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
  line-height: 1.1;
}

.hero-name span {
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-quote {
  font-family: var(--font-poem);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  min-height: 3.6em;
}

.hero-quote .typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--space-lg);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--glass-border);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  border-radius: var(--border-radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about-text {
  padding: var(--space-lg) 0;
}

.about-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.about-bio {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-shimmer);
  transform: translateY(-2px);
}

/* ============================================
   POETRY SECTION
   ============================================ */
.poetry {
  background: var(--bg-primary);
}

.poetry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.poem-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.poem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.poem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.poem-card:hover::before {
  opacity: 1;
}

.poem-card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-shimmer);
  line-height: 1;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-normal);
}

.poem-card:hover .poem-card-number {
  color: rgba(212, 175, 55, 0.15);
}

.poem-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.poem-card-preview {
  font-family: var(--font-poem);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poem-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.poem-card-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.poem-card-read {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.poem-card:hover .poem-card-read {
  gap: 10px;
}

/* ---------- Poem Modal ---------- */
.poem-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
  padding: var(--space-md);
  overflow-y: auto;
}

.poem-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.poem-modal {
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  text-align: center;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s var(--ease-out);
}

.poem-modal-overlay.open .poem-modal {
  transform: scale(1) translateY(0);
}

.poem-modal::-webkit-scrollbar {
  width: 4px;
}

.poem-modal::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

.poem-modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.poem-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.poem-modal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.poem-modal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.05em;
}

.poem-modal-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto var(--space-xl);
}

.poem-modal-body {
  text-align: left;
}

.poem-modal-line {
  font-family: var(--font-poem);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-primary);
  line-height: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.poem-modal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.poem-modal-line.empty {
  height: 1.6em;
}

.poem-modal-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.poem-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.poem-action-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   MERCH SECTION
   ============================================ */
.merch {
  background: var(--bg-surface);
}

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

.merch-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.merch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.merch-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
  transition: transform var(--transition-slow);
}

.merch-card:hover .merch-card-image {
  transform: scale(1.03);
}

.merch-card-image-wrapper {
  overflow: hidden;
}

.merch-card-body {
  padding: var(--space-md);
}

.merch-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.merch-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.merch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.merch-card-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}

.merch-card-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.merch-card-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ============================================
   SUPPORT / DONATE SECTION
   ============================================ */
.support {
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-shimmer) 0%, transparent 70%);
  pointer-events: none;
}

.support-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.support-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.support-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.cashapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00D632 0%, #00B828 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0, 214, 50, 0.3);
  text-decoration: none;
}

.cashapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 214, 50, 0.4);
  color: #ffffff;
}

.cashapp-btn svg {
  width: 24px;
  height: 24px;
}

.cashapp-tag {
  display: block;
  margin-top: var(--space-md);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

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

.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

.footer-heart {
  color: var(--gold);
}

/* ============================================
   1. PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 40%,
    var(--gold) 60%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderShimmer 2s linear infinite;
}

.page-loader-bar {
  width: 120px;
  height: 2px;
  background: var(--bg-surface-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.page-loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes loaderSlide {
  0%   { left: -40%; }
  100% { left: 100%; }
}

/* ============================================
   2. DAILY VERSE SECTION
   ============================================ */
.daily-verse {
  padding: var(--space-lg) 0;
}

.daily-verse-card {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--border-radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  text-align: center;
}

.daily-verse-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.daily-verse-label::before,
.daily-verse-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-dark);
}

.daily-verse-quote {
  font-family: var(--font-poem);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--text-primary);
  font-style: italic;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}

.daily-verse-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.6;
}

.daily-verse-attribution {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.daily-verse-attribution strong {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   3. ART GALLERY
   ============================================ */
.gallery {
  background: var(--bg-surface);
}

.gallery-masonry {
  column-count: 3;
  column-gap: var(--space-md);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  transition: filter var(--transition-normal);
}

.gallery-item:hover img {
  filter: brightness(0.65);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.gallery-item-medium {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
  padding: var(--space-lg);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.5s var(--ease-out);
}

.gallery-lightbox.open .gallery-lightbox-img {
  transform: scale(1);
}

.gallery-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 3001;
}

.gallery-lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-lightbox-caption {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3001;
}

.gallery-lightbox-caption h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.gallery-lightbox-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   4. AUDIO PLAYER
   ============================================ */
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-surface-2);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 10px 20px 10px 14px;
  margin-top: var(--space-sm);
  max-width: 420px;
  transition: border-color var(--transition-fast);
}

.audio-player:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.audio-play-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 12px var(--gold-glow);
}

.audio-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.audio-play-btn.playing {
  background: var(--gold-dark);
}

.audio-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 28px;
  flex: 1;
  min-width: 0;
}

.audio-waveform-bar {
  width: 3px;
  min-width: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  height: 40%;
  transition: height 0.15s ease, background 0.3s ease;
}

.audio-waveform-bar.active {
  background: var(--gold);
}

.audio-player.playing .audio-waveform-bar {
  animation: waveformPulse 0.8s ease-in-out infinite alternate;
}

.audio-player.playing .audio-waveform-bar:nth-child(odd) {
  animation-delay: 0.1s;
}

.audio-player.playing .audio-waveform-bar:nth-child(3n) {
  animation-delay: 0.25s;
}

.audio-player.playing .audio-waveform-bar:nth-child(5n) {
  animation-delay: 0.4s;
}

.audio-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.audio-preview-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-shimmer);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes waveformPulse {
  0%   { height: 20%; }
  25%  { height: 60%; }
  50%  { height: 35%; }
  75%  { height: 80%; }
  100% { height: 45%; }
}

/* Sticky Now-Playing Bar */
.now-playing-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  padding: 10px var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.now-playing-bar.visible {
  transform: translateY(0);
}

.now-playing-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.now-playing-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-playing-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.now-playing-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.now-playing-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.now-playing-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Audio Upgrade Modal */
.audio-upgrade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.audio-upgrade-overlay.open {
  opacity: 1;
  visibility: visible;
}

.audio-upgrade-modal {
  background: var(--bg-surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.5s var(--ease-out);
}

.audio-upgrade-overlay.open .audio-upgrade-modal {
  transform: scale(1) translateY(0);
}

.audio-upgrade-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.audio-upgrade-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.audio-upgrade-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.audio-upgrade-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.audio-upgrade-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--gold-glow);
}

.audio-upgrade-close {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.audio-upgrade-close:hover {
  color: var(--text-secondary);
}

/* ============================================
   5. NEWSLETTER SECTION
   ============================================ */
.newsletter {
  padding: var(--space-2xl) 0;
}

.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.newsletter-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.newsletter-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  background: var(--bg-surface-2);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-shimmer);
}

.newsletter-submit {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* ============================================
   6. BOOK ANNOUNCEMENT
   ============================================ */
.book-announcement {
  padding: var(--space-2xl) 0;
}

.book-banner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.book-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.book-banner-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: goldGlow 3s ease-in-out infinite;
}

.book-banner-icon {
  font-size: 3.5rem;
  min-width: 60px;
  text-align: center;
}

.book-banner-content {
  flex: 1;
}

.book-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.book-banner-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.book-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 24px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.book-banner-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   7. COMMUNITY / THINK VENTURES
   ============================================ */
/* --- Mapped class aliases for HTML --- */

/* Loader aliases */
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.loader-logo {
  width: 240px;
  max-width: 65vw;
  filter: drop-shadow(0 0 24px var(--gold-glow));
  animation: pulse 2.5s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--bg-surface-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

/* Daily Verse aliases */
.daily-verse-text {
  font-family: var(--font-poem);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.9;
  margin: var(--space-sm) 0;
}

.daily-verse-source {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Hero Location */
.hero-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
}

/* Hero Brand Logo */
.hero-brand-logo {
  width: 340px;
  max-width: 75vw;
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 0 30px var(--gold-glow));
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

/* Nav Logo Image */
.nav-logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

/* Footer Logo Image */
.footer-logo-img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

/* About Badge Divider */
.about-badge-divider {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* Gallery Grid (non-masonry, using CSS grid) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.gallery-item-inner {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.gallery-item-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.gallery-item:hover .gallery-item-image {
  transform: scale(1.04);
  filter: brightness(0.6);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-poem {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.gallery-item-view {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Book Card (alternate layout using glass-card) */
.book-card {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.book-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.book-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 4px 16px;
  border-radius: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  animation: goldGlow 3s ease-in-out infinite;
}

.book-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.book-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.book-cta {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 24px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.book-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 24px var(--gold-glow);
}

/* Community — think ventures */
.community {
  background: var(--bg-surface);
  padding: var(--space-2xl) 0;
}

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

.community-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-xs);
}

.community-brand {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.community-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

.community-badge {
  padding: 8px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.community-badge:hover {
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--gold);
}

/* Newsletter aliases */
.newsletter-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.newsletter-btn {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.newsletter-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* Audio sticky bar alias */
.audio-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  padding: 12px var(--space-md);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.audio-sticky-bar.visible {
  transform: translateY(0);
}

.audio-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  max-width: var(--max-width);
  margin: 0 auto;
}

.audio-sticky-icon {
  font-size: 1.2rem;
}

.audio-sticky-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.audio-sticky-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.audio-sticky-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Audio upgrade modal alias */
.audio-upgrade-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.audio-upgrade-modal.open {
  opacity: 1;
  visibility: visible;
}

.audio-upgrade-content {
  max-width: 420px;
  width: 100%;
  text-align: center;
  padding: var(--space-xl);
}

.audio-upgrade-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.audio-upgrade-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.audio-upgrade-close {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  margin-left: auto;
  margin-right: auto;
}

.audio-upgrade-close:hover {
  color: var(--text-secondary);
}

/* Audio bar */
.audio-bar {
  width: 3px;
  min-width: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: height 0.15s ease, background 0.3s ease;
}

.audio-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-shimmer);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Poem card audio container */
.poem-card-audio {
  margin-top: var(--space-xs);
}

/* ---------- Old duplicate removed ---------- */

/* Community Search Bar */
.community-search {
  max-width: 480px;
  margin: 0 auto var(--space-md);
}

.community-search-input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23A09B8C' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
}

.community-search-input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.community-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Community Filter Chips */
.community-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.community-filter {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.community-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.community-filter.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  border-color: var(--gold);
  font-weight: 600;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.community-card.hidden {
  display: none;
}

.community-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.community-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.community-card:hover .community-card-accent {
  opacity: 1;
}

.community-card-tagline {
  font-family: var(--font-poem);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.community-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.community-card-logo-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all var(--transition-fast);
}

.community-card-logo-wrap--dark {
  background: rgba(255, 255, 255, 0.1);
}

.community-card:hover .community-card-logo-wrap {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.community-card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter var(--transition-fast);
}

.community-card:hover .community-card-logo {
  filter: grayscale(0);
}

.community-card-logo-placeholder {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: var(--gold-shimmer);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.community-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.community-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.community-card-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.community-card-link:hover {
  gap: 10px;
  color: var(--gold-light);
}

/* ============================================
   8. COMMUNITY IMPACT — Rocky Mount Arts
   ============================================ */
.community-impact {
  padding: var(--space-xl) 0;
  text-align: center;
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--glass);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
}

.impact-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-shimmer);
}

.impact-badge-icon {
  font-size: 1.6rem;
}

.impact-badge-text {
  text-align: left;
}

.impact-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.impact-badge-city {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.impact-description {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   9. BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out),
              transform 0.4s var(--ease-out), background var(--transition-fast);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px var(--gold-glow);
}

/* Shift up when now-playing bar is visible */
.now-playing-bar.visible ~ .back-to-top,
body.now-playing-active .back-to-top {
  bottom: 80px;
}

/* ============================================
   10. POEM TEASER NOTE
   ============================================ */
.poem-teaser-note {
  font-family: var(--font-poem);
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--space-sm);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.poem-teaser-note::before {
  content: '✦';
  color: var(--gold-dark);
  font-style: normal;
  font-size: 0.7rem;
}

.poem-teaser-note a {
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px dotted var(--gold-dark);
  transition: all var(--transition-fast);
}

.poem-teaser-note a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.2;
  }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldGlow {
  0%, 100% {
    box-shadow: 0 0 20px var(--gold-glow);
  }
  50% {
    box-shadow: 0 0 40px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.15);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    gap: var(--space-lg);
  }

  .gallery-masonry {
    column-count: 2;
  }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-surface);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-left: 1px solid var(--glass-border);
    transition: right var(--transition-normal);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-wrapper {
    display: flex;
    justify-content: center;
  }

  .about-image {
    max-width: 350px;
  }

  .about-image-accent {
    display: none;
  }

  .about-social {
    justify-content: center;
  }

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

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

  .merch-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .hero-photo-wrapper {
    width: 160px;
    height: 160px;
  }

  .hero-photo {
    width: 160px;
    height: 160px;
  }

  .poem-modal {
    padding: var(--space-lg) var(--space-md);
  }

  .poem-modal-close {
    top: 16px;
    right: 16px;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .book-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }

  .book-banner-badge {
    position: static;
    display: inline-block;
    margin-bottom: var(--space-xs);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-submit {
    width: 100%;
  }

  .now-playing-bar {
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding: 8px var(--space-sm);
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  body.now-playing-active .back-to-top {
    bottom: 70px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
    --space-xl: 2.5rem;
  }

  .hero-name {
    font-size: 2.2rem;
  }

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

  .poem-modal-actions {
    flex-direction: column;
  }

  .poem-modal-actions .poem-action-btn {
    justify-content: center;
  }

  .cashapp-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  .daily-verse-card {
    padding: var(--space-md);
  }

  .audio-player {
    max-width: 100%;
    padding: 8px 14px 8px 10px;
    gap: 10px;
  }

  .audio-preview-badge {
    display: none;
  }

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

  .community-filters {
    gap: 6px;
  }

  .community-filter {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .book-banner {
    padding: var(--space-md);
  }
}

/* ============================================
   iPHONE OPTIMIZATION
   ============================================ */
@media (max-width: 428px) {
  .hero-content {
    padding-top: 100px;
  }

  .hero-brand-logo {
    max-width: 200px;
  }

  .hero-tagline {
    font-size: 0.85rem;
  }

  .hero-quote {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 12px 28px;
    font-size: 0.8rem;
  }

  .hero-location {
    font-size: 0.65rem;
  }

  .hero-scroll-line {
    height: 24px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .community-card-logo-wrap {
    width: 90px;
    height: 90px;
    padding: 10px;
  }

  .community-card {
    padding: var(--space-md);
  }

  .gallery-masonry {
    column-count: 1;
    gap: var(--space-sm);
  }

  .poem-modal {
    padding: var(--space-md);
    margin: 10px;
    max-height: 90vh;
  }

  .navbar {
    padding: 0 var(--space-sm);
  }

  .nav-brand-logo {
    max-width: 120px;
  }
}

/* ============================================
   LOCKED POEM CARD STYLES
   ============================================ */
.poem-card--locked {
  position: relative;
}

.poem-card-lock {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 0.9rem;
  opacity: 0.6;
}

.poem-card-read--locked {
  color: var(--gold) !important;
  font-style: italic;
}

/* ============================================
   LOCKED POEM MODAL — Blur + CTA
   ============================================ */
.poem-locked-fade {
  position: relative;
  max-height: 120px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
  margin-bottom: var(--space-md);
}

.poem-locked-cta {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--glass-border);
  margin-top: var(--space-md);
}

.poem-locked-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.poem-locked-message {
  font-family: var(--font-poem);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.poem-locked-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.poem-locked-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.poem-locked-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  letter-spacing: 0.04em;
}

/* ============================================
   GALLERY — Buy Print Button
   ============================================ */
.gallery-lightbox-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.gallery-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.gallery-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.gallery-item-buy {
  position: absolute;
  bottom: var(--space-sm);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition-normal);
  z-index: 3;
}

.gallery-item:hover .gallery-item-buy {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
