/* ============================================================
   CampDream.store — Global Styles
   Premium uplifting nature & inspiration site
   ============================================================ */

:root {
  --gold: #f0b429;
  --gold-light: #ffd966;
  --dark: #0a0a0f;
  --dark-card: rgba(10,10,20,0.72);
  --dark-card-hover: rgba(10,10,20,0.85);
  --text: #f0ede8;
  --text-muted: #b0a898;
  --accent: #4ecdc4;
  --accent2: #ff6b6b;
  --green: #56ab2f;
  --overlay: rgba(5,10,20,0.55);
  --radius: 14px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* ── Fullscreen Video Hero ── */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-bg-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.video-bg-container video.active {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,10,25,0.62) 0%,
    rgba(5,10,25,0.45) 50%,
    rgba(5,10,25,0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(240,180,41,0.15);
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

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

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(240,237,232,0.88);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Rotating Quote ── */
.quote-rotator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 700px;
}

.quote-text {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
  transition: opacity 0.8s ease;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,20,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(240,180,41,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-logo .logo-dot { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(240,237,232,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(240,180,41,0.12);
}

.nav-sale-badge {
  background: linear-gradient(135deg, var(--gold), #e8960a);
  color: #0a0a0f;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,180,41,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(240,180,41,0); }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e8960a);
  color: #0a0a0f;
}
.btn-primary:hover {
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,180,41,0.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* ── For Sale Banner ── */
.sale-banner {
  background: linear-gradient(135deg, rgba(240,180,41,0.15), rgba(232,150,10,0.1));
  border: 1px solid rgba(240,180,41,0.3);
  backdrop-filter: blur(12px);
  padding: 1.1rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.sale-banner p {
  font-size: 0.95rem;
  color: var(--text);
}

.sale-banner strong { color: var(--gold); }

.sale-banner a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

/* ── Disclaimer Banner ── */
.disclaimer-banner {
  background: rgba(78,205,196,0.08);
  border-bottom: 1px solid rgba(78,205,196,0.2);
  padding: 0.65rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.disclaimer-banner a { color: var(--accent); }

/* ── Section Layout ── */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 5rem 1.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.section-header { margin-bottom: 3rem; }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
}

.card:hover {
  background: var(--dark-card-hover);
  border-color: rgba(240,180,41,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.card-thumb video,
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-thumb video,
.card:hover .card-thumb img {
  transform: scale(1.05);
}

.card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.7) 0%, transparent 60%);
}

.card-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(240,180,41,0.9);
  color: #0a0a0f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Quote Blocks ── */
.quote-section {
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18rem;
  color: rgba(240,180,41,0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.big-quote {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.45;
}

.big-quote-author {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Inline Video Section ── */
.video-section-bg {
  position: relative;
  padding: 7rem 1.5rem;
  overflow: hidden;
}

.video-section-bg .video-bg-container {
  z-index: 0;
}

.video-section-bg .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Stats Strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: rgba(10,10,20,0.6);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Music Player ── */
.music-player {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10,10,20,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 999px;
  padding: 0.6rem 1.2rem 0.6rem 0.7rem;
  transition: all var(--transition);
  min-width: 52px;
  overflow: hidden;
  max-width: 320px;
}

.music-player.collapsed {
  max-width: 52px;
  padding: 0.6rem;
}

.music-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8960a);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.music-btn:hover { transform: scale(1.1); }

.music-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  opacity: 1;
  transition: opacity var(--transition);
}

.music-player.collapsed .music-info { opacity: 0; pointer-events: none; }

.music-track {
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-artist {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-controls {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-shrink: 0;
}

.music-ctrl-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.music-ctrl-btn:hover {
  background: rgba(240,180,41,0.25);
  color: var(--gold);
}

.music-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}

.music-eq span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq-bar 0.6s ease-in-out infinite alternate;
}

.music-eq span:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-eq span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.music-eq span:nth-child(3) { height: 10px; animation-delay: 0.3s; }

@keyframes eq-bar {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1); }
}

.music-eq.paused span { animation-play-state: paused; }

/* ── Video Nav Dots ── */
.video-dots {
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.video-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.video-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── AdSense Slots ── */
.adsense-slot {
  display: block;
  margin: 2rem auto;
  text-align: center;
  min-height: 90px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.adsense-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem;
  text-align: center;
}

/* ── Blog Layout ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 860px;
}

@media (min-width: 900px) {
  .blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
  }
}

.blog-post-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-post-card:hover {
  border-color: rgba(240,180,41,0.25);
  transform: translateX(4px);
}

.blog-sidebar {
  position: sticky;
  top: 5rem;
  height: fit-content;
}

.sidebar-widget {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Article Content ── */
.article-hero { height: 55vh; min-height: 400px; }

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 2rem 0 0.75rem;
}

.article-body p {
  font-size: 1.05rem;
  color: rgba(240,237,232,0.87);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.article-body li {
  font-size: 1.05rem;
  color: rgba(240,237,232,0.87);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.article-quote {
  border-left: 4px solid var(--gold);
  background: rgba(240,180,41,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}

/* ── Footer ── */
.footer {
  background: rgba(5,5,12,0.95);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.75rem;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Page Hero (non-fullscreen) ── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

/* ── Uplifting Stories Section ── */
.story-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.story-card:hover {
  border-color: rgba(240,180,41,0.3);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}

.story-card-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.story-card-header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-body {
  padding: 1.5rem;
}

.story-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240,180,41,0.15);
  line-height: 1;
  margin-bottom: -0.5rem;
}

/* ── Testimonial ── */
.testimonial {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--gold);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ── Loading Screen ── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 999px;
  animation: loading-fill 1.8s ease-out forwards;
}

@keyframes loading-fill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5,5,15,0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.3rem; }
  .nav-hamburger { display: flex; z-index: 1000; }
  .blog-post-card { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .music-player { bottom: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Animations ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Prose / Legal ── */
.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 0.75rem;
}

.prose p {
  color: rgba(240,237,232,0.82);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.prose ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose li {
  color: rgba(240,237,232,0.82);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

/* ── Video Category Switcher ── */
.category-switcher {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cat-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.cat-btn.active,
.cat-btn:hover {
  background: rgba(240,180,41,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Contact CTA ── */
.cta-section {
  background: linear-gradient(135deg, rgba(240,180,41,0.12), rgba(78,205,196,0.08));
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(240,180,41,0.1);
  color: var(--gold);
  border: 1px solid rgba(240,180,41,0.2);
  margin: 0.2rem;
}
