/* ============================================================
   Inspiration & Insight — Stylesheet
   Color Palette:
     Warm Sunset:   #E8A87C (peach/amber)
     Rose Bloom:    #D4789C (dusty rose)
     Deep Violet:   #7C5CBF (royal purple)
     Sky Blue:      #5B8DEF (clarity blue)
     Night Canvas:  #0F0F1A (deep background)
     Soft Night:    #1A1A2E (card background)
     Cream:         #FAF7F2 (light text/bg)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-peach: #E8A87C;
  --color-rose: #D4789C;
  --color-violet: #7C5CBF;
  --color-blue: #5B8DEF;
  --color-night: #0F0F1A;
  --color-night-soft: #1A1A2E;
  --color-night-card: #1E1E32;
  --color-cream: #FAF7F2;
  --color-gray-100: #F5F3EE;
  --color-gray-200: #E8E4DD;
  --color-gray-400: #9B9AAD;
  --color-gray-500: #6E6D7A;
  --color-gray-700: #3A3A4E;
  --color-white: #FFFFFF;

  --gradient-brand: linear-gradient(135deg, var(--color-peach) 0%, var(--color-rose) 50%, var(--color-violet) 100%);
  --gradient-brand-reverse: linear-gradient(135deg, var(--color-violet) 0%, var(--color-rose) 50%, var(--color-peach) 100%);
  --gradient-hero: linear-gradient(160deg, #0F0F1A 0%, #1A1A2E 40%, #1E1E3F 100%);
  --gradient-dark-section: linear-gradient(180deg, var(--color-night) 0%, #13132B 100%);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 30px rgba(124, 92, 191, 0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1200px;
  --section-padding: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Disable tap flash on mobile */
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cream);
  background-color: var(--color-night);
  overflow-x: hidden;
  /* Prevent rubber-band bleed on iOS */
  overscroll-behavior-y: none;
}

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

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

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography Utilities ---------- */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  min-height: 44px; /* WCAG touch target */
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(212, 120, 156, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 120, 156, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--color-rose);
  color: var(--color-rose);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.875rem;
  background: var(--gradient-brand);
  color: var(--color-white);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 120, 156, 0.35);
}

/* ---------- Section Common ---------- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--color-peach);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  /* Respect notch / dynamic island */
  padding-top: max(18px, env(safe-area-inset-top));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-cream);
}

.logo-ampersand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-400);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--color-cream);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: var(--transition);
}

.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
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* Uses dynamic viewport height on mobile browsers */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  padding-top: max(120px, calc(80px + env(safe-area-inset-top)));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(124, 92, 191, 0.12) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(232, 168, 124, 0.08) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-peach);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-gray-400);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  background: var(--color-night);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--color-night-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}

.blog-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card__placeholder {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.blog-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-cream);
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.blog-card--featured .blog-card__title {
  font-size: 1.6rem;
}

.blog-card__excerpt {
  font-size: 0.92rem;
  color: var(--color-gray-400);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-rose);
  align-self: flex-start;
}

.blog-card__link:hover {
  color: var(--color-peach);
}

/* ============================================================
   VIDEOS SECTION
   ============================================================ */
.videos-section {
  background: var(--gradient-dark-section);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  background: var(--color-night-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}

.video-card__thumbnail {
  position: relative;
  cursor: pointer;
}

.video-card__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
}

.video-card:hover .video-card__placeholder {
  transform: scale(1.05);
}

.video-card__play {
  opacity: 0.7;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: var(--transition);
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: scale(1.1);
}

.video-card__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
}

.video-card__body {
  padding: 20px;
}

.video-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-cream);
  margin-bottom: 8px;
  overflow-wrap: break-word;
}

.video-card__meta {
  font-size: 0.82rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin-bottom: 4px;
}

/* Anchor wrapping the thumbnail — displayed as block so it fills the space */
a.video-card__thumbnail {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

/* Title link */
.video-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.video-card__title a:hover { color: var(--color-peach); }

/* Category chip inside video card body */
.video-card__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(232, 168, 124, 0.12);
  color: var(--color-peach);
  margin-bottom: 10px;
}

/* Publish date line below description */
.video-card__date {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  margin-top: 8px;
}

/* Loading state inside the video grid */
.video-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 3rem 1rem;
  color: var(--color-gray-400);
  font-size: 0.9rem;
}
.video-loading__spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(232, 168, 124, 0.25);
  border-top-color: var(--color-peach);
  border-radius: 50%;
  animation: vi-spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes vi-spin { to { transform: rotate(360deg); } }

/* ============================================================
   DAILY INSPIRATION
   ============================================================ */
.daily-section {
  background: var(--color-night);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.daily-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 168, 124, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(124, 92, 191, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.daily-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.daily-quote {
  margin: 40px 0;
}

.quote-icon {
  color: var(--color-violet);
  margin-bottom: 20px;
}

.daily-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-cream);
  border: none;
  margin-bottom: 20px;
}

.daily-quote__author {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
  color: var(--color-rose);
  letter-spacing: 0.03em;
}

.daily-reflection {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.daily-reflection h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-peach);
  margin-bottom: 12px;
}

.daily-reflection p {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

/* ============================================================
   MERCHANDISE
   ============================================================ */
.merch-section {
  background: var(--gradient-dark-section);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.merch-card {
  background: var(--color-night-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  text-align: center;
}

.merch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}

.merch-card__image {
  overflow: hidden;
}

.merch-card__placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
}

.merch-card:hover .merch-card__placeholder {
  transform: scale(1.05);
}

.merch-card__body {
  padding: 24px;
}

.merch-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 8px;
  overflow-wrap: break-word;
}

.merch-card__tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-gray-400);
  margin-bottom: 12px;
}

.merch-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   COMMUNITY / NEWSLETTER
   ============================================================ */
.community-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.community-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0.12;
  z-index: 0;
}

.community-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-night);
  opacity: 0.85;
}

.community-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.community-text {
  font-size: 1.05rem;
  color: var(--color-gray-400);
  margin-bottom: 36px;
  line-height: 1.7;
}

.newsletter-form {
  margin-bottom: 40px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 5px;
  transition: var(--transition);
}

.newsletter-input-group:focus-within {
  border-color: var(--color-rose);
  box-shadow: 0 0 20px rgba(212, 120, 156, 0.15);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: max(16px, 0.95rem); /* Prevents iOS auto-zoom on focus */
  color: var(--color-cream);
}

.newsletter-input::placeholder {
  color: var(--color-gray-500);
}

.newsletter-btn {
  flex-shrink: 0;
  padding: 12px 28px;
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--color-gray-500);
  margin-top: 12px;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gray-400);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-cream);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--color-night);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--color-night-card) 0%, var(--color-night-soft) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.about-image__placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(212, 120, 156, 0.06) 0%, transparent 70%);
}

.about-text .section-label {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1rem;
  color: var(--color-gray-400);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text .btn {
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-night-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--color-gray-500);
}

.footer-col a:hover {
  color: var(--color-cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--color-gray-500);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--color-gray-500);
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--color-cream);
}

/* ============================================================
   SCROLL ANIMATIONS (AOS-like via JS)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* ============================================================
   HERO PARTICLES (floating dots)
   ============================================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

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

  .blog-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .merch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 100vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    padding-top: max(40px, env(safe-area-inset-top));
    padding-bottom: max(40px, env(safe-area-inset-bottom));
    transition: right var(--transition);
  }

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

  .nav-links a {
    font-size: 1.1rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  /* Videos — 2 columns on tablet/large-phone */
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Merch — 2 columns on tablet/large-phone */
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image__placeholder {
    aspect-ratio: 4 / 3;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-text .section-label,
  .about-text .section-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .nav-logo {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Newsletter */
  .newsletter-input-group {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 6px;
  }

  .newsletter-btn {
    border-radius: var(--radius-full) !important;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  /* Videos and Merch stack to single column on small phones */
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }

  .merch-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }

  /* Full-width nav drawer on very small phones */
  .nav-links {
    width: 100vw;
    padding: 40px 28px;
  }

  /* Footer safe-area padding */
  .footer {
    padding-bottom: max(30px, env(safe-area-inset-bottom));
  }
}

/* ---------- Selection Color ---------- */
::selection {
  background: rgba(212, 120, 156, 0.3);
  color: var(--color-white);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-night);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gray-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-500);
}

/* ---------- Focus Styles ---------- */
*:focus-visible {
  outline: 2px solid var(--color-violet);
  outline-offset: 3px;
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-night-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: 0.9rem;
  color: var(--color-cream);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
   VIDEO MODAL (Embedded YouTube Player Lightbox)
   ============================================================ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-cream);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  padding: 4px;
  z-index: 1;
}

.video-modal__close:hover {
  opacity: 1;
  transform: scale(1.15);
}

.video-modal__player {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal__player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Ensure .video-card__thumbnail (now a div, not <a>) still renders correctly */
div.video-card__thumbnail {
  display: block;
  position: relative;
  overflow: hidden;
}

/* Title link style for span (replacing <a>) */
.video-card__title-link {
  color: inherit;
  transition: color 0.2s;
}
.video-card__title-link:hover { color: var(--color-peach); }
