/* ── TOKENS ── */
:root {
  --teal:       #2ABFBF;
  --teal-light: #D4F5EF;
  --teal-pale:  #EEF9F9;
  --sun:        #F5A623;
  --sun-light:  #FFF3D6;
  --navy:       #1A2E4A;
  --rose:       #F76E6E;
  --rose-light: #FFE8E8;
  --cream:      #FFFCF5;
  --soft-grey:  #F4F7F9;
  --body:       #4d6478;
}
#banner img {
display: none;
}
#content .section {
    padding-top: 0;
    max-width: 100%;
}
html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SHARED ── */
.nl { max-width: 100%; overflow: hidden; }
section { padding: 88px 72px; position: relative; overflow: hidden; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 18px;
}
.badge--teal  { background: var(--teal-light); color: var(--teal); }
.badge--sun   { background: var(--sun-light);  color: #b07000; }
.badge--rose  { background: var(--rose-light); color: var(--rose); }
.badge--navy  { background: rgba(26,46,74,0.1); color: var(--navy); }
.badge--white { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.24); color: #fff; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; }
.badge-dot--sun  { background: var(--sun); }

.section-title {
  font-family: 'Baloo Bhaijaan 2', sans-serif;
  font-size: clamp(28px, 3.8vw, 48px); font-weight: 800;
  line-height: 1.12; margin-bottom: 18px; color: var(--navy);
}
.section-title .at { color: var(--teal); }
.section-title .as { color: var(--sun); }
.section-title .ar { color: var(--rose); }

.x-row { display: flex; gap: 14px; align-items: center; margin: 8px 0; }
.xm { font-size: 15px; font-weight: 800; opacity: 0.28; }
.xm.t { color: var(--teal); }
.xm.s { color: var(--sun); }
.xm.r { color: var(--rose); }

.inner { max-width: 1358px; margin: 0 auto; position: relative; z-index: 1; }

/* ══════════════════════════════════════════ HERO ══════════════════════════════════════════ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 0; background: #EEF9F9;
}
.hero-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-ring.r1 { width: 700px; height: 700px; border: 88px solid rgba(42,191,191,0.06); top: -220px; right: -180px; animation: nlSpin 40s linear infinite; }
.hero-ring.r2 { width: 380px; height: 380px; background: rgba(245,166,35,0.07); bottom: -140px; left: -40px; animation: nlMorph 12s ease-in-out infinite; }
.hero-ring.r3 { width: 160px; height: 160px; background: rgba(42,191,191,0.07); top: 70px; left: 42%; animation: nlMorph 9s 1s ease-in-out infinite; }
.hero-ring.r4 { width: 90px;  height: 90px;  border: 2px dashed rgba(42,191,191,0.22); bottom: 14%; left: 36%; animation: nlSpin 18s linear infinite reverse; }

/* subtle graph-paper nod to the printed newsletter */
.hero::before {
  content: ''; position: absolute; inset: 0;

  background-size: 34px 34px; pointer-events: none; z-index: 0;
}

.hero-left { padding: 80px 52px 80px 72px; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,191,191,0.16); border: 1.5px solid rgba(42,191,191,0.32);
  color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 28px;
  animation: nlPopIn 0.6s ease both;
}
.hero-tag-star { font-size: 13px; }
.hero-headline {
  font-family: 'Baloo Bhaijaan 2', sans-serif;
  font-size: clamp(44px, 5.8vw, 76px); line-height: 1.05;
  font-weight: 800; color: var(--navy); margin-bottom: 6px;
  animation: nlSlideUp 0.7s 0.1s ease both;
}
.hero-headline .h-mar { color: var(--sun); }
.hero-headline .h-apr { color: var(--teal); }
.hero-issue {
  font-family: 'Baloo Bhaijaan 2', sans-serif;
  font-size: clamp(13px, 1.5vw, 17px); font-weight: 700;
  color: var(--navy); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 28px; opacity: 0.7;
  animation: nlSlideUp 0.7s 0.16s ease both;
}
.hero-sub {
  font-size: 17px; color: var(--body);
  line-height: 1.82; max-width: 440px; margin-bottom: 40px;
  animation: nlSlideUp 0.7s 0.22s ease both;
}
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; animation: nlSlideUp 0.7s 0.3s ease both; }
.hero-chip {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(26,46,74,0.08);
  box-shadow: 0 4px 14px rgba(26,46,74,0.05);
  border-radius: 100px; padding: 9px 16px;
}
.hero-chip-icon { font-size: 17px; }
.hero-chip-label { font-size: 13px; font-weight: 700; color: var(--navy); }

.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.hrc { position: relative; width: 400px; height: 440px; }
.hrc-main {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #1da0a0);
  top: 70px; left: 50px; box-shadow: 0 28px 72px rgba(42,191,191,0.4);
  display: flex; align-items: center; justify-content: center; font-size: 96px;
  animation: nlFloat 5s ease-in-out infinite;
}
.hrc-sun { position: absolute; width: 90px; height: 90px; border-radius: 50%; background: var(--sun); top: 10px; right: 30px; box-shadow: 0 10px 28px rgba(245,166,35,0.44); animation: nlFloat 4s 0.5s ease-in-out infinite; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.hrc-rose { position: absolute; width: 60px; height: 60px; border-radius: 50%; background: var(--rose); bottom: 68px; left: 10px; box-shadow: 0 8px 22px rgba(247,110,110,0.38); animation: nlFloat 6s 1s ease-in-out infinite; }
.hrc-ring-sm { position: absolute; width: 130px; height: 130px; border: 3px dashed rgba(255,255,255,0.5); border-radius: 50%; bottom: 20px; right: 20px; animation: nlSpin 14s linear infinite; }
.hrc-card { position: absolute; background: #fff; border-radius: 22px; padding: 16px 20px; box-shadow: 0 16px 44px rgba(0,0,0,0.14); }
.hrc-card.top { top: 0; left: 0; width: 168px; animation: nlFloat 4.5s 0.3s ease-in-out infinite; }
.hrc-card.btm { bottom: 0; right: 0; width: 172px; animation: nlFloat 4.8s 0.8s ease-in-out infinite; }
.hrc-card-icon { font-size: 24px; margin-bottom: 5px; }
.hrc-card-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); }
.hrc-card-val { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.hrc-card-sub { font-size: 11px; color: #aaa; margin-top: 2px; }
.hrc-x { position: absolute; font-size: 16px; font-weight: 800; opacity: 0.45; line-height: 1; }
.hrc-x.x1 { color: var(--sun); bottom: 120px; right: 14px; }
.hrc-x.x2 { color: #fff; top: 36px; right: 118px; font-size: 12px; }
.hrc-x.x3 { color: var(--rose); bottom: 30px; left: 134px; }

/* ══════════════════════════════════════════ LEADERSHIP MESSAGE ══════════════════════════════════════════ */
.director-sec { background: var(--navy); }
.dir-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.dir-deco.d1 { width: 380px; height: 380px; border: 48px solid rgba(42,191,191,0.07); top: -110px; left: -100px; }
.dir-deco.d2 { width: 200px; height: 200px; background: rgba(245,166,35,0.05); bottom: -60px; right: 8%; }
.dir-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 68px; align-items: center; }
.dir-quote-mark { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: 110px; line-height: 0.75; color: var(--teal); opacity: 0.22; display: block; margin-bottom: -14px; }
blockquote.dir-quote { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: clamp(16px, 1.9vw, 24px); color: #fff; line-height: 1.65; font-weight: 600; border-left: 4px solid var(--teal); padding-left: 22px; margin-bottom: 28px; }

/* team signature — five voices */
.dir-signoff { padding-left: 22px; }
.dir-signoff-lbl { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.sig-team { display: flex; flex-wrap: wrap; gap: 10px; }
.sig-person { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 6px 14px 6px 6px; }
.sig-av { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; color: #fff; font-family: 'Baloo Bhaijaan 2', sans-serif; font-weight: 800; }
.sig-av.a1 { background: var(--teal); }
.sig-av.a2 { background: var(--sun); }
.sig-av.a3 { background: var(--rose); }
.sig-av.a4 { background: #5dd5d5; color: var(--navy); }
.sig-av.a5 { background: #2d4d7a; }
.sig-name { font-size: 12.5px; font-weight: 800; color: #fff; line-height: 1.1; }
.sig-role { font-size: 10.5px; color: rgba(255,255,255,0.5); }
.dir-email { display: inline-block; margin-top: 20px; margin-left: 22px; background: rgba(42,191,191,0.14); color: var(--teal); font-size: 12px; font-weight: 700; padding: 8px 18px; border-radius: 100px; border: 1px solid rgba(42,191,191,0.28); }

.dir-body { color: rgba(255,255,255,0.68); font-size: 15.5px; line-height: 1.9; }
.dir-body p + p { margin-top: 16px; }
.dir-body .lead { color: #fff; font-weight: 700; }

/* ══════════════════════════════════════════ HIGHLIGHTS ══════════════════════════════════════════ */
.wins-sec { background: var(--soft-grey); }
.wins-blob { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: var(--teal-light); top: -220px; left: 50%; transform: translateX(-50%); opacity: 0.4; pointer-events: none; }
.wins-header { text-align: center; margin-bottom: 52px; }
.wins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.win-card {
  background: #fff; border-radius: 28px; padding: 34px 30px 30px;
  box-shadow: 0 4px 22px rgba(26,46,74,0.07); position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.win-card:hover { transform: translateY(-8px); box-shadow: 0 22px 52px rgba(26,46,74,0.13); }
.win-wm { position: absolute; font-size: 96px; top: -12px; right: -6px; opacity: 0.08; line-height: 1; pointer-events: none; }
.win-icon { width: 58px; height: 58px; border-radius: 17px; display: flex; align-items: center; justify-content: center; font-size: 27px; margin-bottom: 18px; transition: transform 0.3s cubic-bezier(.22,.68,0,1.5); }
.win-card:hover .win-icon { transform: scale(1.12) rotate(-5deg); }
.win-card.w1 .win-icon { background: var(--teal-light); }
.win-card.w2 .win-icon { background: var(--sun-light); }
.win-card.w3 .win-icon { background: var(--rose-light); }
.win-kicker { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 4px; }
.win-card.w1 .win-kicker { color: var(--teal); }
.win-card.w2 .win-kicker { color: #b07000; }
.win-card.w3 .win-kicker { color: var(--rose); }
.win-stat { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.win-title { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.win-body { font-size: 14px; line-height: 1.8; color: var(--body); position: relative; z-index: 1; }

/* ══════════════════════════════════════════ FRIDAY NIGHT FREEDOM (signature) ══════════════════════════════════════════ */
.pno-sec { background: var(--cream); }
.pno-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.pno-ring.p1 { width: 420px; height: 420px; background: radial-gradient(ellipse, rgba(245,166,35,0.08) 0%, transparent 68%); top: -120px; left: -90px; }
.pno-ring.p2 { width: 300px; height: 300px; background: radial-gradient(ellipse, rgba(42,191,191,0.07) 0%, transparent 68%); bottom: -80px; right: -60px; }

.pno-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.pno-intro p { font-size: 16px; color: var(--body); line-height: 1.9; margin-top: 8px; }

/* the dark cinema poster */
.poster { max-width: 860px; margin: 0 auto; background: linear-gradient(160deg, #16273e 0%, var(--navy) 55%, #12233b 100%); border-radius: 30px; overflow: hidden; box-shadow: 0 34px 80px rgba(26,46,74,0.32); position: relative; }
.poster-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,0.16) 0%, transparent 70%); top: -120px; right: -80px; pointer-events: none; }

/* film-strip perforation borders */
.filmstrip { height: 26px; background: #10192b; position: relative; }
.filmstrip::before, .filmstrip::after {
  content: ''; position: absolute; left: 0; right: 0; height: 8px;
  background-image: repeating-linear-gradient(to right, #f4f4f0 0 10px, transparent 10px 22px);
  background-size: 22px 8px;
}
.filmstrip::before { top: 5px; }
.filmstrip::after { bottom: 5px; }

.poster-body { padding: 44px 46px 46px; position: relative; z-index: 1; }
.poster-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sun); background: rgba(245,166,35,0.14); border: 1px solid rgba(245,166,35,0.3); padding: 7px 16px; border-radius: 100px; margin-bottom: 22px; }
.poster-title { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: clamp(34px, 5.5vw, 58px); font-weight: 800; line-height: 0.98; text-align: center; margin-bottom: 12px; }
.poster-title .l1 { color: var(--sun); display: block; letter-spacing: 1px; }
.poster-title .l2 { color: #fff; display: block; }
.poster-tag { text-align: center; color: rgba(255,255,255,0.6); font-size: 16px; font-style: italic; line-height: 1.6; margin-bottom: 34px; }
.poster-head { text-align: center; }

.pno-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
.pno-detail { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 22px 18px; text-align: center; }
.pno-detail-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.pno-detail-main { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: 17px; font-weight: 800; color: #fff; line-height: 1.25; }
.pno-detail-sub { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 6px; line-height: 1.5; }
.pno-detail.cost .pno-detail-main { color: var(--sun); font-size: 28px; }

.pno-two { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.pno-list-title { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pno-two .inc .pno-list-title { color: var(--teal); }
.pno-two .tnc .pno-list-title { color: var(--rose); }
.pno-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pno-list li { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.55; display: flex; align-items: flex-start; gap: 10px; }
.pno-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.pno-two .inc li::before { background: var(--teal); }
.pno-two .tnc li::before { background: var(--rose); }

.pno-cta { text-align: center; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.09); }
.pno-cta-lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin: 22px 0 14px; }
.pno-btn { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--sun), #ffbb45); color: var(--navy); font-family: 'Baloo Bhaijaan 2', sans-serif; font-weight: 800; font-size: 16px; padding: 15px 34px; border-radius: 100px; box-shadow: 0 12px 30px rgba(245,166,35,0.38); transition: transform 0.2s, box-shadow 0.2s; }
.pno-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(245,166,35,0.5); }
.pno-cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; font-style: italic; }

/* ══════════════════════════════════════════ EXCURSION + SNAPS ══════════════════════════════════════════ */
.exc-sec { background: var(--teal); }
.exc-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.exc-ring.e1 { width: 560px; height: 560px; border: 65px solid rgba(255,255,255,0.07); top: -200px; left: -170px; animation: nlSpin 36s linear infinite; }
.exc-ring.e2 { width: 280px; height: 280px; border: 32px solid rgba(255,255,255,0.06); bottom: -100px; right: -60px; }
.exc-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }

.snaps-head { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.snaps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* first tile spans full width, taller */
.snap { min-height: 132px; border-radius: 18px; overflow: hidden; background: rgba(255,255,255,0.16); border: 1px dashed rgba(255,255,255,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); text-align: center; padding: 10px; }
.snap.wide { grid-column: 1 / -1; min-height: 190px; }
.snap-emoji { font-size: 30px; margin-bottom: 6px; }
.snap-cap { font-size: 16px; font-weight: 700; line-height: 1.3; }
.snap img { width: 100%; height: 100%; object-fit: cover; }

.exc-story-card { background: #fff; border-radius: 28px; padding: 36px 34px; box-shadow: 0 20px 52px rgba(26,46,74,0.16); }
.exc-story-card .badge { margin-bottom: 14px; }
.exc-story-card .section-title { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 18px; }
.exc-body { font-size: 14.5px; color: var(--body); line-height: 1.9; }
.exc-body p + p { margin-top: 14px; }
.exc-thanks { margin-top: 20px; background: var(--teal-pale); border-left: 4px solid var(--teal); border-radius: 12px; padding: 16px 18px; font-size: 14px; color: var(--navy); line-height: 1.7; font-weight: 600; }

/* ══════════════════════════════════════════ CLOSING ══════════════════════════════════════════ */
.closing-sec { background: var(--navy); text-align: center; padding: 116px 60px; }
.close-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.close-ring.cr1 { width: 600px; height: 600px; border: 78px solid rgba(42,191,191,0.06); top: -210px; left: -160px; animation: nlSpin 44s linear infinite; }
.close-ring.cr2 { width: 380px; height: 380px; border: 48px solid rgba(245,166,35,0.07); bottom: -150px; right: -90px; }
.close-ring.cr3 { width: 200px; height: 200px; background: rgba(42,191,191,0.05); top: 30%; right: 4%; animation: nlMorph 11s ease-in-out infinite; }
.close-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 26px 26px; pointer-events: none; z-index: 0; }
.close-inner { position: relative; z-index: 2; }
.close-emoji { font-size: 54px; display: block; margin-bottom: 18px; }
.close-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.16); border: 1px solid rgba(245,166,35,0.28); color: var(--sun); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 8px 20px; border-radius: 100px; margin-bottom: 24px; }
.close-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); animation: nlBlink 1.5s ease-in-out infinite; }
.close-title { font-family: 'Baloo Bhaijaan 2', sans-serif; font-size: clamp(32px, 5vw, 60px); font-weight: 800; color: #fff; line-height: 1.1; max-width: 760px; margin: 0 auto 18px; }
.close-title .act { color: var(--sun); }
.close-title .act2 { color: var(--teal); }
.close-sub { font-size: 17px; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 48px; line-height: 1.8; }
.contact-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.contact-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 13px 24px; color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; transition: background 0.2s, color 0.2s; }
.contact-pill:hover { background: rgba(255,255,255,0.15); color: #fff; }
.pill-icon { font-size: 16px; }

/* ══════════════════════════════════════════ KEYFRAMES ══════════════════════════════════════════ */
@keyframes nlPopIn    { from { opacity:0; transform:scale(0.8); }     to { opacity:1; transform:scale(1); } }
@keyframes nlSlideUp  { from { opacity:0; transform:translateY(26px);} to { opacity:1; transform:translateY(0); } }
@keyframes nlFloat    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes nlSpin     { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes nlMorph    { 0%,100% { border-radius:60% 40% 55% 45%/50% 60% 40% 50%; } 50% { border-radius:40% 60% 45% 55%/60% 40% 60% 40%; } }
@keyframes nlBlink    { 0%,100%{ opacity:1; } 50%{ opacity:0.3; } }

.reveal { animation: nlSlideUp 0.7s ease both; }
.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* ══════════════════════════════════════════ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 70px 40px; }
  .dir-grid, .exc-grid { grid-template-columns: 1fr; gap: 40px; }
  .wins-grid { grid-template-columns: 1fr; }
  .pno-two { gap: 22px; }
}
@media (max-width: 768px) {
  section { padding: 58px 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 68px 28px 58px; }
  .pno-details { grid-template-columns: 1fr; }
  .pno-two { grid-template-columns: 1fr; }
  .poster-body { padding: 34px 24px 36px; }
  .closing-sec { padding: 80px 28px; }
}
@media (max-width: 520px) {
  section { padding: 48px 18px; }
  .hero-left { padding: 52px 18px 44px; }
  .hero-chips { gap: 8px; }
  .snaps-grid { grid-template-columns: 1fr; grid-auto-rows: 150px; }
  .contact-pills { flex-direction: column; align-items: center; }
  .exc-story-card { padding: 28px 22px; }
  .section-title { font-size: 26px; }
}