/* ============================================
   VANTARA-STYLE PREMIUM UPGRADES
   ============================================ */

/* Playfair Display for all headings */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── HERO: video background ── */
.hero {
  background: #0a0a0a;
  position: relative;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.70) 100%
  );
  z-index: 1;
}

.hero::before { display: none; }

.hero-content { z-index: 2; }

/* ── PARALLAX BANDS ── */
.photo-band {
  height: 380px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.photo-band-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.photo-band-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.photo-band-text p {
  font-size: 1.1rem;
  opacity: 0.88;
  font-style: italic;
}

.band-1 { background-image: url('../images/band1.jpeg'); }
.band-2 { background-image: url('../images/band2.jpeg'); }
.band-3 { background-image: url('../images/teamrabies.jpeg'); }

/* ── IMPACT COUNTER BAND ── */
.impact-band {
  background: linear-gradient(135deg, #1A2D08 0%, #2C1A08 100%);
  padding: 5rem 0;
  color: #fff;
  text-align: center;
}

.impact-band .section-label {
  color: #F4B942;
}

.impact-band h2 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  margin-bottom: 3rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
}

.impact-card {
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  transition: all var(--transition-base);
}

.impact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.impact-card .impact-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F4B942;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-card .impact-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── ALTERNATING ABOUT ── */
.about-alt {
  background: #FFFDF4;
  padding: var(--section-padding);
}

.about-alt-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  min-height: 480px;
}

@media (min-width: 768px) {
  .about-alt-block {
    grid-template-columns: 1fr 1fr;
  }
  .about-alt-block.reverse .about-alt-img { order: 2; }
  .about-alt-block.reverse .about-alt-text { order: 1; }
}

.about-alt-img {
  overflow: hidden;
  min-height: 320px;
}

.about-alt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.about-alt-img:hover img {
  transform: scale(1.04);
}

.about-alt-text {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFDF4;
}

.about-alt-text .section-label { margin-bottom: 0.75rem; }

.about-alt-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #3D5210, #C0392B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-alt-text p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ── STORY CAROUSEL ── */
.carousel-section {
  background: #1A2D08;
  padding: 5rem 0;
  overflow: hidden;
}

.carousel-section .section-label { color: #F4B942; }
.carousel-section h2 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}
.carousel-section .section-subtitle { color: rgba(255,255,255,0.65); }
.carousel-section .section-line { background: #F4B942; }

.carousel-track-wrap {
  overflow: hidden;
  margin-top: 2rem;
  cursor: grab;
  user-select: none;
}

.carousel-track-wrap:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--transition-base);
}

.carousel-card:hover { transform: translateY(-6px); }

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Richa Didi — face visible, tribute styling */
.img-richa {
  object-position: center 20%;
}

.carousel-card-tribute {
  border-top: 3px solid #C0392B;
  position: relative;
}

.carousel-card-tribute .carousel-card-body h4 {
  color: #C0392B;
}

.carousel-card-body {
  padding: 1.25rem;
}

.carousel-card-body h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.carousel-card-body p {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover { background: #F4B942; border-color: #F4B942; color: #1A1A1A; }

/* ── YOUTUBE VIDEO ── */
.video-section {
  background: #111;
  padding: 5rem 0;
  text-align: center;
}

.video-section .section-label { color: #F4B942; }
.video-section h2 { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.video-section .section-subtitle { color: rgba(255,255,255,0.6); }
.video-section .section-line { background: #F4B942; }

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 900px;
  margin: 2.5rem auto 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── ADOPTION CARDS ── */
.adoption-section {
  background: #EFF5E6;
  padding: var(--section-padding);
}

.adoption-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px)  { .adoption-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .adoption-grid { grid-template-columns: repeat(3, 1fr); } }

.adoption-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.adoption-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.adoption-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

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

.adoption-card:hover .adoption-card-img img {
  transform: scale(1.06);
}

.adoption-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: #5C7A1F;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.adoption-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1E1E1E;
  margin-bottom: 0.25rem;
}

.adoption-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.adoption-meta span {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #5C7A1F;
  background: rgba(92,122,31,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.adoption-card-body p {
  color: #555;
  font-size: var(--fs-sm);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ── STICKY DONATE BUTTON ── */
.sticky-donate {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 999;
  background: linear-gradient(135deg, #C0392B, #8B1A1A);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(192,57,43,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  animation: pulseBtn 2.5s ease-in-out infinite;
}

.sticky-donate:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(192,57,43,0.6);
  animation: none;
}

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 6px 24px rgba(192,57,43,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(192,57,43,0.8); }
}

/* ── IN ACTION VIDEO SECTION ── */
.inaction-section {
  background: linear-gradient(135deg, #1A2D08 0%, #2C1A08 100%);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Row 1 — Ujjawala, centred, compact */
.inaction-row-1 {
  display: flex;
  justify-content: center;
  width: 100%;
}

.ujj-video {
  width: min(220px, 65vw);
}

/* Row 2 — bath | text | rajat */
.inaction-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

@media (min-width: 768px) {
  .inaction-row-2 {
    grid-template-columns: 220px 1fr 220px;
    gap: 2.5rem;
  }
}

/* Shared video item styles */
.inaction-video-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.side-video {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .side-video {
    max-width: 100%;
    margin: 0;
  }
}

.inaction-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inaction-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 1.5rem 0.75rem 0.6rem;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Centre text */
.inaction-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
}

.inaction-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.inaction-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  max-width: 380px;
}

/* ── UJJAWALA FEATURE SECTION ── */
.ujj-feature-section {
  background: #0a0a0a;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 5rem 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .ujj-feature-section {
    grid-template-columns: auto 1fr;
    gap: 5rem;
    padding: 7rem 6rem;
  }
}

.ujj-feature-video {
  position: relative;
  aspect-ratio: 9/16;
  width: min(260px, 78vw);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(244,185,66,0.15),
    0 20px 60px rgba(0,0,0,0.8),
    0 0 80px rgba(244,185,66,0.08);
}

@media (min-width: 900px) {
  .ujj-feature-video {
    width: 280px;
    margin: 0;
  }
}

.ujj-feature-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ujj-feature-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 2rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.ujj-feature-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ujj-feature-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ujj-feature-text p {
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 0.97rem;
  margin-bottom: 1rem;
  max-width: 440px;
}

/* Bath section — video left, text right, darkest tone */
.bath-flip {
  background: #080808;
}

/* Rajat section — flipped layout, slightly different dark tone */
.rajat-flip {
  background: #0f0f0f;
}

@media (min-width: 900px) {
  .rajat-flip {
    grid-template-columns: 1fr auto;
  }
}

/* ── INACTION VANTARA: videos left, text right ── */
.inaction-vantara {
  background: linear-gradient(160deg, #1A2D08 0%, #2C1A08 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 5rem 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .inaction-vantara {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 5rem;
  }
}

/* Three portrait videos stacked in a row */
.iav-videos {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-end;
}

.iav-video-item {
  position: relative;
  aspect-ratio: 9/16;
  flex: 1;
  max-width: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.iav-video-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.7);
}

.iav-video-item:nth-child(2) {
  flex: 1.2; /* centre video slightly taller */
  max-width: 200px;
}

.iav-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iav-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  padding: 1.5rem 0.75rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

/* Text column */
.iav-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iav-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.iav-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #F4B942;
  margin-bottom: 1rem;
}

.iav-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-size: 0.97rem;
  margin-bottom: 1rem;
  max-width: 420px;
}

/* ── TRIPLE VIDEO SECTION ── */
.triple-video-section {
  background: linear-gradient(160deg, #1A2D08 0%, #2C1A08 100%);
  padding: 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.triple-video-header {
  text-align: center;
  color: #fff;
  max-width: 620px;
}

.triple-video-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.triple-video-header p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.8;
}

.triple-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  justify-items: center;
}

@media (min-width: 640px) {
  .triple-video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: end;
  }
}

.triple-video-item {
  position: relative;
  aspect-ratio: 9/16;
  width: min(220px, 80vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.triple-video-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* Centre video slightly taller for visual hierarchy */
.triple-video-center {
  width: min(240px, 80vw);
}

@media (min-width: 640px) {
  .triple-video-item { width: 100%; }
  .triple-video-center { width: 100%; }
}

.triple-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.triple-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  padding: 2rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.tvl-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F4B942;
  letter-spacing: 0.03em;
}

.tvl-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.triple-video-footer {
  text-align: center;
  color: #fff;
}

/* ── RAJAT RESCUE SECTION ── */
.rajat-section {
  background: linear-gradient(135deg, #1A2D08 0%, #2C1A08 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .rajat-section {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 5rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.rajat-video-col {
  display: flex;
  justify-content: center;
}

.rajat-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  width: min(260px, 72vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 60px rgba(0,0,0,0.6);
}

.rajat-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rajat-text-col {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rajat-text-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.rajat-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #F4B942;
  margin-bottom: 1rem;
}

.rajat-text-col p {
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.rajat-quote {
  border-left: 3px solid #F4B942;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0 0;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── DUO VIDEO SECTION (bath | text | rajat) ── */
.duo-video-section {
  background: linear-gradient(135deg, #0D1F06 0%, #1C0E04 100%);
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .duo-video-section {
    grid-template-columns: 220px 1fr 220px;
    gap: 2.5rem;
    padding: 4rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.duo-video-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 480px;
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .duo-video-item {
    max-width: 100%;
    margin: 0;
    max-height: none;
  }
}

.duo-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.duo-video-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
  order: -1; /* show text first on mobile */
}

@media (min-width: 768px) {
  .duo-video-text {
    order: 0;
    padding: 1rem 2rem;
  }
}

.duo-video-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.duo-video-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  max-width: 360px;
}

/* ── INSTAGRAM REEL EMBED ── */
.reel-embed-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #1A2D08 0%, #2C1A08 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .reel-embed-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.reel-label .section-label {
  color: #F4B942;
  margin-bottom: 0.75rem;
}

.reel-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.reel-label p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-size: 1rem;
}

.reel-embed {
  display: flex;
  justify-content: center;
  width: 100%;
}

.reel-embed iframe {
  width: 100%;
  min-height: 560px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ── STAGGERED REVEAL ── */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.5s; }
