/* ═══════════════════════════════════════════════
   MS. JEAN'S LEGACY BRAND — PAGE 3
   Authority / VSL / Community Page
   Version: 1.0 — Production Ready
════════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:    #07162C;
  --navy2:   #0D2040;
  --navy3:   #162B50;
  --gold:    #C89B3C;
  --gold2:   #E0B84A;
  --gold3:   #F0D580;
  --gold-pale: #F5EDD6;
  --ivory:   #F8F3E8;
  --ivory2:  #F0E9D6;
  --white:   #FFFFFF;
  --charcoal:#1F1F1F;
  --text:    #2A2A2A;
  --text2:   #4A4540;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Outfit', system-ui, sans-serif;
  --shadow:  0 4px 24px rgba(7,22,44,0.12);
  --shadow-lg: 0 12px 48px rgba(7,22,44,0.18);
  --radius:  12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  border-bottom: 2px solid rgba(200,155,60,0.35);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand-crest { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.brand-name em { color: var(--gold); font-style: normal; }
.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(200,155,60,0.7);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Video Tabs */
.video-tabs { display: flex; gap: 1rem; }
.vtab { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; cursor: pointer; }
.vtab-thumb {
  width: 80px; height: 48px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255,255,255,0.1);
  transition: border-color var(--transition), transform var(--transition);
}
.vtab.active .vtab-thumb { border-color: var(--gold); }
.vtab:hover .vtab-thumb { border-color: rgba(200,155,60,0.6); transform: translateY(-2px); }

.vtab-img-placeholder { width: 100%; height: 100%; }
.v1 { background: linear-gradient(135deg, #1a3560 0%, #0d2040 100%); }
.v2 { background: linear-gradient(135deg, #2d1a08 0%, #4a2d10 100%); }
.v3 { background: linear-gradient(135deg, #0d2a20 0%, #1a4535 100%); }

.vtab-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.vtab-play span {
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid rgba(255,255,255,0.85);
  margin-left: 3px;
}
.vtab-badge {
  position: absolute; top: 3px; left: 3px;
  font-size: 0.45rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 1px 4px; border-radius: 3px;
}
.vtab-badge.next { background: rgba(255,255,255,0.18); color: var(--white); }
.vtab-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  max-width: 80px;
  line-height: 1.2;
}
.vtab.active .vtab-label { color: var(--gold); }

/* ════════════════════════════════════════════
   CTA BAR
════════════════════════════════════════════ */
.cta-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(200,155,60,0.15);
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.cta-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}

/* CTA Buttons */
.btn-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-cta.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid rgba(200,155,60,0.5);
}
.btn-cta.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-bottom: 3px solid rgba(7,22,44,0.25);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-cta.btn-dark:hover { background: var(--navy2); box-shadow: 0 8px 32px rgba(7,22,44,0.35); }
.btn-cta.btn-gold:hover { background: var(--gold2); box-shadow: 0 8px 32px rgba(200,155,60,0.4); }
.btn-cta svg { flex-shrink: 0; opacity: 0.9; }
.btn-cta-text { display: flex; flex-direction: column; }
.btn-cta-text strong { font-size: 0.95rem; font-weight: 600; line-height: 1.2; }
.btn-cta-text span { font-size: 0.72rem; opacity: 0.75; margin-top: 1px; }
.btn-cta.lg { padding: 1.1rem 1.5rem; }
.btn-cta.lg .btn-cta-text strong { font-size: 1.05rem; }
.btn-cta.lg .btn-cta-text span { font-size: 0.78rem; }

/* ════════════════════════════════════════════
   MAIN LAYOUT
════════════════════════════════════════════ */
.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.content-col { min-width: 0; }

/* ── Video Label ── */
.video-label { margin-bottom: 0.5rem; }
.vid-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,155,60,0.1);
  border: 1px solid rgba(200,155,60,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

/* ── Main Headline ── */
.main-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.main-subhead {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 1.75rem;
  max-width: 640px;
}
.main-subhead em { color: var(--gold); font-style: italic; }

/* ════════════════════════════════════════════
   CINEMATIC VIDEO
════════════════════════════════════════════ */
.video-container { margin-bottom: 2.5rem; }
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(7,22,44,0.45);
  cursor: pointer;
  background: var(--navy);
}
/* When YouTube iframe is loaded */
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Background */
.video-bg { position: absolute; inset: 0; }
.video-bg-img {
  position: absolute; inset: 0;
  /* REPLACE with: background-image: url('assets/ms-jean.jpg'); */
  background: linear-gradient(160deg, #0d2a4a 0%, #07162c 40%, #1a1008 100%);
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: subtleZoom 12s ease-in-out infinite alternate;
}
@keyframes subtleZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,22,44,0.35) 0%,
    rgba(7,22,44,0.2)  40%,
    rgba(7,22,44,0.75) 100%
  );
}
.video-vignette {
  position: absolute; inset: 0;
  box-shadow: inset 0 0 80px rgba(7,22,44,0.7);
  border-radius: 16px;
}

/* Floating Particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.p {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(200,155,60,0.5);
  animation: float linear infinite;
}
.p1 { left:15%; bottom:-10px; animation-duration:8s; animation-delay:0s; }
.p2 { left:30%; bottom:-10px; animation-duration:12s; animation-delay:2s; width:3px; height:3px; }
.p3 { left:55%; bottom:-10px; animation-duration:9s; animation-delay:4s; width:2px; height:2px; opacity:0.4; }
.p4 { left:70%; bottom:-10px; animation-duration:11s; animation-delay:1s; }
.p5 { left:85%; bottom:-10px; animation-duration:7s; animation-delay:3s; width:3px; height:3px; }
.p6 { left:45%; bottom:-10px; animation-duration:14s; animation-delay:5s; width:2px; height:2px; opacity:0.3; }
@keyframes float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-400px) translateX(30px); opacity: 0; }
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform var(--transition);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(200,155,60,0.5);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s ease-out infinite;
}
.play-ring-outer { width: 110px; height: 110px; animation-delay: 0s; }
.play-ring-inner { width: 90px; height: 90px; border-color: rgba(200,155,60,0.4); animation-delay: 0.5s; }
@keyframes pulseRing {
  0%   { transform: translate(-50%,-50%) scale(0.9); opacity: 0.8; }
  70%  { transform: translate(-50%,-50%) scale(1.15); opacity: 0; }
  100% { transform: translate(-50%,-50%) scale(0.9); opacity: 0; }
}
.play-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(200,155,60,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(200,155,60,0.45);
  transition: background var(--transition), box-shadow var(--transition);
}
.play-btn:hover .play-icon {
  background: var(--gold2);
  box-shadow: 0 0 60px rgba(200,155,60,0.65);
}
.play-icon span {
  width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--navy);
  margin-left: 5px;
}

/* Video Title Overlay */
.video-title-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(7,22,44,0.9));
  text-align: center;
}
.video-book-label {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.video-click-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* Cinematic Lines */
.cinema-line {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: rgba(7,22,44,0.8);
}
.cinema-line.top { top: 0; }
.cinema-line.bottom { bottom: 0; }

/* ════════════════════════════════════════════
   STORY SECTION
════════════════════════════════════════════ */
.story-section {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,155,60,0.1);
}
.story-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Story Photo */
.story-photo-wrap { display: flex; justify-content: center; }
.story-photo {
  position: relative;
  width: 200px; height: 260px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.story-photo-img {
  width: 100%; height: 100%;
  /* REPLACE with: background-image: url('assets/ms-jean.jpg'); */
  background: linear-gradient(180deg, #1a3560 0%, #07162c 100%);
  background-size: cover;
  background-position: center top;
}
.story-photo-glow {
  position: absolute; inset: 0;
  box-shadow: inset 0 -60px 40px rgba(7,22,44,0.5);
  border-radius: 16px;
  pointer-events: none;
}
.story-photo::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(200,155,60,0.35);
  border-radius: 16px;
}

/* Story Text */
.story-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.story-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.gold-rule {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.gold-rule.centered { margin: 0 auto 2rem; }

.story-p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.story-p strong { color: var(--navy); font-weight: 600; }
.story-p em { color: var(--gold); font-style: italic; }

.story-quote {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: -0.5rem; left: 1rem;
}
blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  padding-top: 0.75rem;
}
cite {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  font-style: normal;
  margin-top: 0.75rem;
}

/* ════════════════════════════════════════════
   VALUE BOMBS
════════════════════════════════════════════ */
.value-section {
  background: var(--navy);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2.5rem;
}
.value-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.value-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.value-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);
}
.value-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.value-card:hover::before { opacity: 1; }
.vc-icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.value-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ════════════════════════════════════════════
   COMMENTS / SOCIAL PROOF
════════════════════════════════════════════ */
.comments-section {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
}
.comments-header { text-align: center; margin-bottom: 2rem; }
.quote-icon-large {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -1rem;
}
.comments-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.comments-header p { font-size: 0.9rem; color: var(--text2); }

/* Comment Card */
.comment-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.comment-card:last-of-type { border-bottom: none; }

/* Avatar circles */
.cc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(200,155,60,0.25);
}
.av1 { background: linear-gradient(135deg, #7B4F8E, #4A2D6B); }
.av2 { background: linear-gradient(135deg, #3D7A5A, #1D4A35); }
.av3 { background: linear-gradient(135deg, #8B4513, #5A2D0C); }
.av4 { background: linear-gradient(135deg, #2E5C8A, #1A3A5C); }
.av5 { background: linear-gradient(135deg, #7A3D3D, #4D1F1F); }
.av-mj {
  background: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  width: 34px; height: 34px;
}

.cc-body { flex: 1; min-width: 0; }
.cc-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.cc-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--navy);
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.cc-time { font-size: 0.75rem; color: #888; }
.cc-text { font-size: 0.88rem; color: var(--text2); line-height: 1.7; margin-bottom: 0.6rem; }
.cc-actions { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.cc-like, .cc-reply-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.78rem; color: #777;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  font-family: var(--sans);
  display: flex; align-items: center; gap: 0.3rem;
}
.cc-like:hover { background: rgba(200,155,60,0.1); color: var(--gold); }
.cc-reply-btn:hover { background: rgba(7,22,44,0.06); color: var(--navy); }
.cc-like.liked { color: var(--gold); }
.cc-sep { color: #ccc; font-size: 0.8rem; }
.cc-comments-count { font-size: 0.78rem; color: #777; }

/* Ms. Jean Reply box */
.cc-reply {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(200,155,60,0.06);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.load-more-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  margin-top: 1.5rem;
  background: none;
  border: 1.5px solid rgba(7,22,44,0.2);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.load-more-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ════════════════════════════════════════════
   BOTTOM CTA
════════════════════════════════════════════ */
.bottom-cta {
  background: var(--navy);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(200,155,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta-inner { position: relative; z-index: 1; }
.gold-ornament { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.5rem; margin-bottom: 1.25rem; opacity: 0.7; }
.bottom-cta-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.bottom-cta-sub { font-size: 0.98rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.bottom-cta-btns { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.bottom-trust { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 1.5rem; }

/* ════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Sidebar Videos */
.sidebar-vid { cursor: pointer; }
.sv-thumb {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.6rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sv-thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sv-img-placeholder { width: 100%; height: 100%; }
.sv1 .sv-img-placeholder { background: linear-gradient(160deg, #1a4a3a 0%, #0d2820 60%, #2d1a08 100%); }
.sv2 .sv-img-placeholder { background: linear-gradient(160deg, #07162c 0%, #1a2a4a 60%, #2a1a0a 100%); }
.sv3 .sv-img-placeholder { background: linear-gradient(160deg, #2a1a0a 0%, #4a2d10 60%, #1a1a2a 100%); }
.sv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,22,44,0.85) 100%);
}
.sv-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,155,60,0.85);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.sv-thumb:hover .sv-play { background: var(--gold2); transform: translate(-50%, -60%) scale(1.1); }
.sv-play span {
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--navy);
  margin-left: 3px;
}
.sv-title {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem; right: 0.75rem;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.sv-desc { font-size: 0.8rem; color: var(--text2); line-height: 1.5; }

/* Sidebar Quote */
.sidebar-quote {
  background: var(--navy);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(200,155,60,0.2);
  text-align: center;
}
.sq-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.sq-author { font-family: var(--serif); font-size: 0.9rem; color: var(--gold); }

/* Sidebar Trust */
.sidebar-trust {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(200,155,60,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.st-item { display: flex; align-items: center; gap: 0.75rem; }
.st-icon { font-size: 1.25rem; flex-shrink: 0; }
.st-item div { display: flex; flex-direction: column; }
.st-item strong { font-size: 0.82rem; color: var(--navy); font-weight: 600; line-height: 1.2; }
.st-item span { font-size: 0.72rem; color: var(--text2); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: #040e1c;
  padding: 2rem 1.5rem 1rem;
  border-top: 1px solid rgba(200,155,60,0.2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}
.footer-sig {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold2);
}
.footer-tag {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(200,155,60,0.5);
  text-transform: uppercase;
  display: block;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.6rem; }
.social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(200,155,60,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-wrapper { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .sidebar-title { grid-column: 1 / -1; }
  .sidebar-quote, .sidebar-trust { grid-column: 1 / -1; }
  .value-cards { grid-template-columns: repeat(2, 1fr); }
  .topbar-inner { flex-wrap: wrap; gap: 0.75rem; }
  .video-tabs { flex-wrap: wrap; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .video-tabs { width: 100%; justify-content: flex-start; overflow-x: auto; gap: 0.75rem; padding-bottom: 4px; }
  .cta-bar-inner { flex-direction: column; gap: 0.75rem; }
  .btn-cta { padding: 1rem; }
  .main-wrapper { padding: 1.25rem 1rem 3rem; }
  .story-inner { grid-template-columns: 1fr; }
  .story-photo-wrap { display: none; }
  .story-section { padding: 2rem 1.25rem; }
  .value-section { padding: 2rem 1.25rem; }
  .value-cards { grid-template-columns: 1fr; }
  .comments-section { padding: 2rem 1.25rem; }
  .bottom-cta { padding: 2.5rem 1.25rem; }
  .bottom-cta-btns { flex-direction: column; }
  .sidebar { display: flex; flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links, .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 0.85rem; }
  .vtab-thumb { width: 65px; height: 38px; }
  .play-ring-outer { width: 80px; height: 80px; }
  .play-ring-inner { width: 64px; height: 64px; }
  .play-icon { width: 52px; height: 52px; }
}
