/* =========================================================
   Tales of Nazir — styles.css
   Palette: pink + white + green + charcoal + sand
   Solid colors (no glass, no gradients), editorial typography,
   wavy decorations and section numbers for non-AI feel.
   ========================================================= */

:root {
  /* Sophisticated, muted green — closer to West African forest than neon */
  --green-900: #0a2e1c;
  --green-800: #133e28;
  --green-700: #1a5036;   /* primary — deeper, less bright */
  --green-500: #2d7a52;
  --green-100: #dde8e0;

  /* Sophisticated coral-pink — less hot-pink, more editorial */
  --pink-700: #b8345f;
  --pink-500: #e5476f;    /* primary — less neon */
  --pink-300: #f0a3b8;
  --pink-100: #fbe2e9;

  /* Warm neutrals (gives sophistication) */
  --sand-300: #ddc9a5;
  --sand-200: #ebd9b5;
  --sand-100: #f2e9d4;

  --white:     #ffffff;
  --cream:     #faf6ed;   /* warmer cream */
  --paper:     #f5efe2;   /* alt warm bg */
  --ink:       #1a1a1a;
  --ink-soft:  #2d2d2d;
  --ink-mute:  #707070;
  --line:      #dcd3c0;

  --shadow-md: 0 4px 14px rgba(15,15,15,0.07);
  --shadow-lg: 0 14px 40px rgba(15,15,15,0.12);

  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1200px;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif:   Georgia, "Times New Roman", serif;

  /* Subtle SVG noise — gives every flat surface a film-grain texture */
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

/* Site-wide subtle grain — breaks flat-AI feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

img, svg, video, iframe { display: block; max-width: 100%; }

a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pink-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.05;
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: .96rem;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--pink-500); color: var(--white); }
.btn-primary:hover { background: var(--pink-700); color: var(--white); }

.btn-green { background: var(--green-700); color: var(--white); }
.btn-green:hover { background: var(--green-900); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--green-900); }

.btn-outline { background: var(--white); color: var(--green-900); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: relative; z-index: 50;
}

/* Utility bar (skinny top strip — not sticky) */
.utility-bar {
  background: var(--ink);
  color: #c8c8c8;
  font-size: .76rem;
}
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0;
  gap: 1rem;
}
.utility-left, .utility-right {
  display: flex; align-items: center; gap: 1rem;
}
.util-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .7rem;
}
.util-pill .dot {
  width: 7px; height: 7px;
  background: var(--pink-500); border-radius: 50%;
}
.util-pill .dot.live {
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,61,127,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(255,61,127,0); }
}
.util-sep { color: #555; }
.util-link {
  color: #c8c8c8;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .15s ease;
}
.util-link:hover { color: var(--pink-300); }

/* Main nav row (sticks on scroll) */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow .25s ease;
}
.site-header.scrolled .main-nav {
  box-shadow: 0 4px 18px rgba(20,20,20,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .85rem;
  color: var(--ink);
  position: relative;
  padding-right: 1.5rem;
}
.brand::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 40px;
  background: var(--line);
  transform: translateY(-50%);
}
.brand-mark {
  width: 52px; height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--ink);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: .72rem;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav-links {
  display: flex; gap: 2rem; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: inline-flex; align-items: baseline; gap: .35rem;
  color: var(--ink); font-weight: 600; font-size: .92rem;
  padding: .5rem 0;
  position: relative;
  transition: color .2s ease;
}
.nav-links a .nav-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: .68rem;
  color: var(--ink-mute);
  margin-right: .15rem;
  transition: color .2s ease;
}
.nav-links a .nav-label::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--pink-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover { color: var(--pink-700); }
.nav-links a:hover .nav-num { color: var(--pink-500); }
.nav-links a:hover .nav-label::after,
.nav-links a.is-active .nav-label::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--green-700); }
.nav-links a.is-active .nav-num { color: var(--green-500); }
.nav-links a.is-active .nav-label::after { background: var(--green-700); }

.nav-cta-btn { padding: .65rem 1.2rem !important; font-size: .85rem; margin-left: .5rem; }

.burger {
  display: none;
  background: none; border: 0; padding: .4rem;
  cursor: pointer;
}
.burger span {
  display: block; width: 26px; height: 2px;
  background: var(--ink); margin: 6px 0;
  transition: transform .25s ease, opacity .2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .utility-left .util-link,
  .utility-left .util-sep { display: none; }
  .brand-sub { display: none; }
  .brand::after { display: none; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: .5rem 0;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 1rem 1.5rem; width: 100%; font-size: 1rem; }
  .nav-links a .nav-label::after { display: none; }
  .nav-cta-btn { margin: .5rem 1.5rem 1rem; width: calc(100% - 3rem); justify-content: center; }
  .burger { display: block; }
}

/* Scroll progress bar (under nav, stays with sticky main-nav) */
.scroll-progress {
  position: sticky; top: 84px; z-index: 49;
  height: 3px;
  background: var(--line);
  overflow: hidden;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: var(--pink-500);
  width: 0%;
  transition: width .12s linear;
}

/* ---------- Side rail ---------- */
.side-rail {
  position: fixed;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  pointer-events: none;
}
.side-rail > * { pointer-events: auto; }
.rail-brand {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 1rem 0;
  display: flex; align-items: center; gap: 1rem;
}
.rail-brand .thin {
  font-weight: 400;
  color: var(--ink-mute);
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: .05em;
}
.rail-dots {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .9rem;
  position: relative;
}
.rail-dots::before {
  content: "";
  position: absolute;
  left: 50%; top: 4px; bottom: 4px;
  width: 1px; background: var(--line);
  transform: translateX(-50%);
}
.rail-dots a {
  position: relative;
  display: flex; align-items: center; gap: .65rem;
  padding: 2px 0;
}
.rail-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--ink-mute);
  transition: all .25s ease;
  position: relative; z-index: 1;
}
.rail-dots .lbl {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .3rem .65rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.rail-dots li:hover .lbl,
.rail-dots li.is-active .lbl {
  opacity: 1; transform: translateX(0);
}
.rail-dots li.is-active .dot {
  background: var(--pink-500);
  border-color: var(--pink-500);
  transform: scale(1.4);
}
.rail-dots li:hover .dot {
  border-color: var(--pink-500);
  background: var(--pink-500);
}

.rail-socials {
  display: flex; flex-direction: column;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.rail-socials a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all .2s ease;
}
.rail-socials a:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .side-rail { display: none; }
}

/* ---------- Dev credit (fixed bottom-right, always on top) ---------- */
.dev-credit {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  border: 1px solid #2a2a2a;
  line-height: 1;
}
.dc-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .72rem;
  color: var(--pink-300);
  letter-spacing: .02em;
}
.dc-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .14em;
  color: var(--white);
  text-decoration: none;
  padding: .15rem .45rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.dc-name:hover {
  background: var(--pink-500);
  color: var(--white);
}

@media (max-width: 560px) {
  .dev-credit {
    right: .6rem;
    bottom: .6rem;
    padding: .4rem .7rem;
    gap: .35rem;
  }
  .dc-label { font-size: .66rem; }
  .dc-name  { font-size: .78rem; }
}

/* ---------- Section base ---------- */
.section {
  padding: 7rem 0;
  position: relative;
}
.section-light  { background: var(--white); overflow: hidden; }
.section-pink   { background: var(--pink-100); }
.section-sand   { background: var(--sand-100); }
.section-light  { padding-bottom: 8rem; }
.section-num,
.hero-number {
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-mute);
  letter-spacing: .15em;
}
.hero-number { color: var(--pink-300); }
.section-num.light { color: var(--pink-300); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.section-head .kicker,
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  color: var(--pink-700);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 28px;
}
.kicker.green { color: var(--green-700); }
.kicker.pink  { color: var(--pink-300); }
.kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.section-head h2 { margin: 0; }
.section-head p { margin-top: 1rem; color: var(--ink-mute); font-size: 1.06rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--green-700);
  color: var(--white);
  padding: 6rem 0 8rem;
  overflow: hidden;
}
.hero-number { font-size: 1.1rem; color: var(--pink-300); top: 1.5rem; right: 2.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: 0 0 0 .9rem;
  color: var(--pink-300);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  border-left: 3px solid var(--pink-500);
}
.hero h1 { color: var(--white); margin: 0; }
.hero h1 .accent {
  color: var(--pink-300);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}
.hero p.lead {
  color: var(--pink-100);
  font-size: 1.12rem; max-width: 520px;
  margin: 1.3rem 0 2rem;
}
.hero p.lead strong { color: var(--white); }
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 2.5rem; justify-content: start;
  border-top: 1px solid var(--green-500);
  padding-top: 1.5rem;
}
.hero-meta .stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 800; color: var(--white);
}
.hero-meta .stat span {
  font-size: .72rem; color: var(--pink-300);
  text-transform: uppercase; letter-spacing: .14em;
  margin-top: 4px; display: block;
}

/* Hero wavy art */
.hero-art {
  position: relative;
}
.hero-slider {
  position: relative;
}
.wavy-frame {
  position: relative;
  background: var(--pink-500);
  padding: 14px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M20,10 Q40,0 60,10 T100,10 T140,10 T180,10 Q200,20 190,40 T190,80 T190,120 T190,160 Q200,180 180,190 T140,190 T100,190 T60,190 T20,190 Q0,180 10,160 T10,120 T10,80 T10,40 Q0,20 20,10 Z' fill='black'/></svg>") center/100% 100% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M20,10 Q40,0 60,10 T100,10 T140,10 T180,10 Q200,20 190,40 T190,80 T190,120 T190,160 Q200,180 180,190 T140,190 T100,190 T60,190 T20,190 Q0,180 10,160 T10,120 T10,80 T10,40 Q0,20 20,10 Z' fill='black'/></svg>") center/100% 100% no-repeat;
  will-change: transform;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.wavy-frame .inner {
  aspect-ratio: 4 / 3;
  background: var(--green-100) center/cover;
  -webkit-mask: inherit;
          mask: inherit;
}

/* Slider slides — cross-fade + slight Ken-Burns zoom for cinematic feel */
.slide-img {
  position: absolute;
  inset: 14px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s linear;
  -webkit-mask: inherit;
          mask: inherit;
}
.slide-img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Caption pill (bottom-left of slider) */
.slide-caption {
  position: absolute;
  bottom: -10px; left: 22px;
  background: var(--white);
  color: var(--ink);
  padding: .6rem .95rem;
  border-radius: 12px;
  display: flex; flex-direction: column;
  line-height: 1.15;
  box-shadow: var(--shadow-md);
  max-width: 78%;
  z-index: 3;
}
.slide-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pink-700);
}
.slide-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
  margin-top: 2px;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  display: flex; gap: .4rem;
  z-index: 3;
}
.slide-dots button {
  width: 28px; height: 4px;
  background: rgba(255,255,255,0.45);
  border: 0; padding: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.slide-dots button:hover { background: rgba(255,255,255,0.75); }
.slide-dots button.is-active {
  background: var(--white);
  width: 38px;
}
.hero-badge {
  position: absolute; top: -18px; right: -10px;
  background: var(--white); color: var(--green-900);
  padding: .55rem .9rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  box-shadow: var(--shadow-md);
  transform: rotate(6deg);
  display: inline-flex; align-items: center; gap: .35rem;
  z-index: 2;
}
.hero-badge svg { color: var(--pink-500); }
.hero-floaty {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white); color: var(--ink);
  padding: 1rem 1.1rem; border-radius: 14px;
  display: flex; gap: .75rem; align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  z-index: 2;
}
.hero-floaty .play {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--pink-500); color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-floaty .meta { line-height: 1.2; font-size: .82rem; color: var(--ink-mute); }
.hero-floaty .meta strong { display: block; font-size: .94rem; color: var(--ink); margin-bottom: 2px; }

.wave-divider {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 90px; display: block;
  pointer-events: none;
}
.wave-divider.flip { transform: scaleY(-1); top: -1px; bottom: auto; }

/* Paper peel (torn paper edge between sections) */
.paper-peel {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 70px;
  display: block;
  pointer-events: none;
  z-index: 3;
}

/* Big organic wave above the footer */
.footer-wave {
  width: 100%; height: 110px; display: block;
  pointer-events: none;
}

/* Two-tone wave (between split-bg sections and the next section) */
.twotone-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 80px;
  display: block;
  pointer-events: none;
  z-index: 4;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 1.1rem 0;
  white-space: nowrap;
  border-top: 4px solid var(--pink-500);
  border-bottom: 4px solid var(--green-500);
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: scroll 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.4rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track .dot { width: 10px; height: 10px; background: var(--pink-500); border-radius: 50%; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Meet Nazir ---------- */
.meet-nazir {
  position: relative;
  background: var(--paper);
  padding: 7rem 0 8rem;
  overflow: hidden;
}
.meet-nazir::after {
  /* warm color block on right side */
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 38%;
  background: var(--green-700);
  z-index: 0;
}
.meet-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.meet-text h2 .serif-italic { color: var(--pink-700); }
.meet-text p { max-width: 460px; }

.meet-facts {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.meet-facts li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.meet-facts li span {
  font-size: .76rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-mute);
}
.meet-facts li strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

/* Character stage */
.meet-character {
  position: relative;
  display: grid; place-items: center;
  min-height: 460px;
}
.char-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.char-img {
  position: relative;
  width: 86%;
  height: 86%;
  object-fit: cover;
  object-position: 55% 35%;        /* focus on Nazir's face, hide UI corners */
  border-radius: 50%;
  border: 8px solid var(--white);
  box-shadow: 0 30px 50px rgba(0,0,0,0.35);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  background: var(--cream);
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

/* Orbital rings */
.char-ring {
  position: absolute;
  border: 1.5px dashed rgba(255,255,255,0.35);
  border-radius: 50%;
  z-index: 1;
}
.char-ring.r1 { inset: -8%; animation: spin 60s linear infinite; }
.char-ring.r2 { inset: 4%;  animation: spin 90s linear infinite reverse; border-color: rgba(255,255,255,0.18); }
.char-ring.r3 { inset: 14%; animation: spin 120s linear infinite; border-style: solid; border-color: rgba(255,255,255,0.12); }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Decorative dots that orbit */
.char-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--pink-500);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(229,71,111,0.18);
}
.char-dot.d1 { top: -2%;  left: 14%; animation: floatA 5s ease-in-out infinite; }
.char-dot.d2 { bottom: 6%; right: -3%; animation: floatB 6.5s ease-in-out infinite; background: var(--white); box-shadow: 0 0 0 4px rgba(255,255,255,0.2); }
.char-dot.d3 { bottom: 18%; left: -4%; animation: floatA 7s ease-in-out infinite reverse; background: var(--pink-300); }
@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(8px, -10px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-10px, -6px); }
}

/* Floating tags around the character */
.char-tag {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  padding: .5rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 4;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: .35rem;
}
.char-tag.tag-1 { top: 8%;  left: -8%; background: var(--pink-500); color: var(--white); transform: rotate(-6deg); animation: floatA 7s ease-in-out infinite; }
.char-tag.tag-2 { top: 38%; right: -10%; animation: floatB 6s ease-in-out infinite; }
.char-tag.tag-2 svg { color: var(--pink-500); }
.char-tag.tag-3 { bottom: 4%; left: -6%; background: var(--ink); color: var(--white); transform: rotate(4deg); animation: floatA 8s ease-in-out infinite reverse; }

@media (max-width: 980px) {
  .meet-nazir::after { display: none; }
  .meet-nazir { background: var(--green-700); color: var(--white); }
  .meet-text h2, .meet-text strong, .meet-facts strong { color: var(--white); }
  .meet-text p, .meet-facts span { color: rgba(255,255,255,0.85); }
  .meet-facts { border-color: rgba(255,255,255,0.2); }
  .meet-facts li { border-color: rgba(255,255,255,0.2); }
  .meet-grid { grid-template-columns: 1fr; gap: 3rem; }
  /* Make the two-tone wave fully green on mobile (whole section is green here) */
  .meet-nazir .twotone-wave g path { fill: #1a5036 !important; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem; align-items: center;
}
.about-art {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--green-700);
  padding: 18px;
  border-radius: 36% 64% 38% 62% / 48% 42% 58% 52%;
}
.about-art .inner {
  width: 100%; height: 100%;
  background: var(--pink-100) center/cover;
  border-radius: inherit;
}
.about-art .tag {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--pink-500); color: var(--white);
  padding: .8rem 1.2rem; border-radius: 999px;
  font-weight: 700; font-size: .88rem;
  box-shadow: var(--shadow-md);
}
.about-art-corner {
  position: absolute; top: -18px; left: -18px;
  width: 52px; height: 52px;
  background: var(--ink); color: var(--pink-500);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem;
  z-index: 2;
}

/* Creator card — floats on the About image */
.creator-card {
  position: absolute;
  bottom: -28px; right: -10px;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  min-width: 200px;
  z-index: 3;
  border-left: 4px solid var(--pink-500);
}
.creator-card .creator-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .76rem;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.creator-card .creator-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 2px;
  letter-spacing: -0.01em;
}
.creator-card .creator-role {
  font-size: .76rem;
  color: var(--green-700);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.about-list { list-style: none; padding: 0; margin: 1.8rem 0 0; }
.about-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.about-list li:first-child { border-top: 0; }
.about-list .check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--ink); color: var(--pink-300);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700; font-size: .92rem;
}
.about-list strong { color: var(--ink); display: block; font-size: 1.02rem; }
.about-list span   { color: var(--ink-mute); font-size: .9rem; }

/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 1.4rem;
}
.video-card {
  position: relative; overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-card.featured { grid-row: span 2; min-height: 400px; }
.video-card .thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.video-card:hover .thumb { transform: scale(1.06); }
.video-card .overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.2rem;
  color: var(--white);
}
.video-card .bot-strip {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  padding: .95rem 1.2rem 1.1rem;
  color: var(--white);
}
.video-card .play-btn {
  width: 58px; height: 58px;
  background: var(--pink-500); color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  align-self: flex-start;
  box-shadow: 0 6px 18px rgba(255,61,127,0.45);
}
.video-card .title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  line-height: 1.25;
  color: var(--white);
  margin-top: .3rem;
}
.video-card.featured .title { font-size: 1.35rem; max-width: 90%; }
.video-card .duration {
  display: inline-block;
  background: var(--pink-500);
  color: var(--white);
  font-size: .68rem; font-weight: 800;
  padding: .25rem .55rem; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .1em;
}

/* Video modal */
.modal-back {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,15,15,0.88);
  display: grid; place-items: center;
  padding: 1.5rem;
  animation: fade .2s ease;
}
.modal {
  width: min(100%, 1000px);
  aspect-ratio: 16/9;
  background: black;
  border-radius: 14px; overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal iframe { width: 100%; height: 100%; border: 0; }
.modal-close {
  position: absolute; top: -44px; right: 0;
  background: var(--white); color: var(--ink);
  border: 0; width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Channel section ---------- */
.channel-section {
  background: var(--ink);
  color: var(--white);
  padding: 7rem 0;
  position: relative;
}
.channel-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.channel-side h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}
.channel-side h2 .serif-italic { color: var(--pink-300); }
.channel-side p { color: #cfcfcf; max-width: 480px; }
.channel-side .kicker.pink { color: var(--pink-300); }
.channel-stats {
  display: flex; gap: 2.5rem;
  margin: 2rem 0 2.4rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
}
.channel-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 800;
  color: var(--white);
}
.channel-stats span {
  font-size: .72rem;
  color: var(--pink-300);
  text-transform: uppercase; letter-spacing: .14em;
  margin-top: 4px; display: block;
}
.channel-media {
  display: flex; flex-direction: column;
  gap: 1.2rem;
}
.channel-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--ink-soft);
}
.channel-banner img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}
.channel-banner-tag {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--white);
  color: var(--ink);
  padding: .65rem .9rem .65rem .65rem;
  border-radius: 999px;
  display: flex; align-items: center; gap: .65rem;
  box-shadow: var(--shadow-md);
}
.channel-banner-tag img {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  object-fit: cover;
}
.channel-banner-tag strong { display: block; font-size: .9rem; color: var(--ink); }
.channel-banner-tag span   { display: block; font-size: .76rem; color: var(--ink-mute); }
.channel-player {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ink-soft);
  background: #000;
}
.channel-player-frame {
  position: relative;
  aspect-ratio: 16/9;
}
.channel-player-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Stats band ---------- */
.stats {
  background: var(--pink-500);
  color: var(--white);
  padding: 4rem 0 5rem;
  position: relative;
  border-top: 4px solid var(--ink);
  /* bottom border removed — replaced by paper-peel SVG */
  overflow: hidden;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stats .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--white);
  line-height: 1;
}
.stats .lbl {
  margin-top: .6rem;
  font-size: .82rem; color: var(--white);
  text-transform: uppercase; letter-spacing: .14em;
}

/* ---------- Gallery (masonry) ---------- */
.gallery-section {
  background: var(--cream);
  position: relative;
}
.masonry {
  column-count: 4;
  column-gap: 1.2rem;
}
.masonry-item {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.masonry-item img {
  width: 100%; height: auto; display: block;
  transition: transform .5s ease, opacity .3s ease;
}
.masonry-item:hover img { transform: scale(1.04); opacity: 0.92; }
.masonry-item.tall img { min-height: 280px; object-fit: cover; aspect-ratio: 3/4; }
.masonry-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .9rem 1rem;
  color: var(--white);
  background: var(--ink);
  display: flex; align-items: baseline; gap: .55rem;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.masonry-item:hover figcaption { transform: translateY(0); }
.masonry-item figcaption .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .8rem;
  color: var(--pink-300);
}
.masonry-item figcaption .cap {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}

/* Lightbox */
.lightbox-content {
  position: relative;
  max-width: min(94vw, 1100px);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 1rem 0 0;
  text-align: center;
}

@media (max-width: 1020px) { .masonry { column-count: 3; } }
@media (max-width: 720px)  { .masonry { column-count: 2; } .masonry-item figcaption { transform: translateY(0); } }
@media (max-width: 420px)  { .masonry { column-count: 1; } }

/* ---------- Cast editorial ---------- */
.cast-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.cast-figure {
  margin: 0;
  position: relative;
}
.cast-figure:nth-child(2) { margin-top: 2.5rem; }
.cast-figure:nth-child(4) { margin-top: 2.5rem; }
.cast-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
}
.cast-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .5s ease;
}
.cast-figure:hover .cast-photo img { transform: scale(1.05); }
.cast-frame-num {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .9rem;
  padding: .25rem .55rem;
  border-radius: 6px;
}
.cast-figure figcaption {
  padding: 1rem 0 0;
}
.cast-figure h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink);
}
.cast-figure p {
  margin: .25rem 0 0;
  color: var(--ink-mute);
  font-size: .86rem;
}
.cast-also {
  text-align: center;
  margin-top: 3.5rem;
  font-size: .94rem;
  color: var(--ink-mute);
}
.cast-also span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--green-700);
  font-weight: 600;
  margin-right: .4rem;
}

/* ---------- Social ---------- */
.social-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.social-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .85rem;
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-700);
  background: var(--white);
  color: var(--ink);
}
.social-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.social-card .name { font-weight: 700; font-size: 1.05rem; }
.social-card .handle { color: var(--ink-mute); font-size: .85rem; }
.social-card .go {
  margin-top: auto;
  font-weight: 600; color: var(--green-700);
  font-size: .9rem;
  display: inline-flex; align-items: center; gap: .3rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem; align-items: center;
}
.contact-side h2 { color: var(--white); }
.contact-side h2 .serif-italic { color: var(--pink-300); }
.contact-side p  { color: var(--pink-100); }
.contact-side .meta-row {
  display: flex; gap: .8rem; align-items: center;
  padding: .85rem 0; border-top: 1px solid var(--green-700);
}
.contact-side .meta-row:first-of-type { border-top: 0; }
.contact-side .meta-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--pink-500);
  display: grid; place-items: center; color: var(--white);
  flex-shrink: 0;
}
.contact-side .meta-row span.lab { color: var(--pink-300); font-size: .72rem; display: block; text-transform: uppercase; letter-spacing: .12em; }
.contact-side .meta-row span.val { color: var(--white); font-weight: 600; font-size: .94rem; }

.contact-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  margin-left: auto;
}
.field { margin-bottom: .85rem; }
.field label {
  display: block; font-weight: 600; font-size: .72rem;
  color: var(--ink-mute); margin-bottom: .3rem;
  text-transform: uppercase; letter-spacing: .1em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  font-family: inherit; font-size: .9rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-700); background: var(--white);
}
.field textarea { min-height: 88px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.contact-form .btn {
  padding: .7rem 1.1rem; font-size: .88rem;
  width: 100%; justify-content: center;
}
.form-msg {
  padding: .7rem .9rem; border-radius: 8px;
  font-size: .85rem; margin-top: .7rem;
}
.form-msg.ok  { background: var(--green-100); color: var(--green-900); }
.form-msg.err { background: var(--pink-100); color: var(--pink-700); }
.contact-section.section {
  background: var(--green-900); color: var(--white);
  padding: 4.5rem 0 1.5rem;   /* trim the empty bottom space before the footer wave */
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #cfcfcf;
  padding: 0 0 1.6rem;
  position: relative;
}
.footer .container { padding-top: 3rem; }
.footer-wave { margin-top: -1px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.4rem;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: .35rem 0; }
.footer a { color: #cfcfcf; font-size: .92rem; }
.footer a:hover { color: var(--pink-300); }
.footer .brand-name { color: var(--white); }
.footer .brand-sub { color: var(--pink-300); }
.footer-bottom {
  border-top: 1px solid var(--ink-soft);
  margin-top: 2.8rem; padding-top: 1.3rem;
  display: flex; justify-content: space-between;
  font-size: .82rem;
  flex-wrap: wrap; gap: .5rem;
  color: var(--ink-mute);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .hero-meta       { grid-template-columns: repeat(2, auto); gap: 1.5rem 2.5rem; }
  .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .channel-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-grid      { grid-template-columns: 1fr 1fr; }
  .video-card.featured { grid-row: auto; min-height: 240px; }
  .cast-editorial  { grid-template-columns: repeat(2, 1fr); }
  .cast-figure:nth-child(2),
  .cast-figure:nth-child(4) { margin-top: 0; }
  .social-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .channel-stats   { gap: 1.5rem; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .video-grid    { grid-template-columns: 1fr; }
  .cast-editorial{ grid-template-columns: 1fr 1fr; gap: 1rem; }
  .social-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .hero          { padding: 4rem 0 6rem; }
  .section,
  .channel-section { padding: 4rem 0; }
  .section-num,
  .hero-number   { top: 1rem; right: 1.2rem; font-size: .85rem; }
}
