/* ═══════════════════════════════════════════════════════════
   USKK V3 — styles.css
   Utpal Sampa Kala Kendra
═══════════════════════════════════════════════════════════ */

:root {
  --cream:      #f5f0e8;
  --ivory:      #faf7f2;
  --gold:       #c9a84c;
  --gold-lt:    #e8c97a;
  --maroon:     #6b1a2a;
  --maroon-dk:  #3a0d1a;
  --deep:       #1a0a0e;
  --charcoal:   #2e2420;
  --muted:      #7a6a5a;
  --border:     rgba(201,168,76,0.22);
  --border-lt:  rgba(201,168,76,0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-bengali: 'Noto Serif Bengali', serif;
  --max-w:      1160px;
  --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
  --transition: 0.4s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ivory); color: var(--charcoal);
  font-family: var(--font-body); line-height: 1.7; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* Grain texture */
body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem,5vw,2.5rem); }

.eyebrow {
  display: block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem;
}

.heading { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 400; line-height: 1.1; color: var(--deep); }
.heading em { font-style: italic; color: var(--maroon); }
.heading--light { color: var(--cream); }
.heading--light em { color: var(--gold-lt); }

.divider { width: 54px; height: 2px; background: linear-gradient(90deg,var(--gold),transparent); margin: 1.4rem 0 2.2rem; }
.divider--center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1.5px solid var(--gold); color: var(--gold); background: transparent;
  transition: var(--transition); cursor: pointer; white-space: nowrap; max-width: 100%;
}
.btn:hover { background: var(--gold); color: var(--deep); }
.btn--solid { background: var(--gold); color: var(--deep); }
.btn--solid:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn--dark { border-color: var(--charcoal); color: var(--charcoal); }
.btn--dark:hover { background: var(--charcoal); color: var(--cream); }
.btn--ghost-light { border-color: rgba(245,240,232,0.5); color: var(--cream); }
.btn--ghost-light:hover { background: var(--cream); color: var(--maroon); }

section { padding: clamp(4rem,10vw,7rem) 0; }

/* ── REVEALS ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease,transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay:.1s; } .reveal.d2 { transition-delay:.2s; }
.reveal.d3 { transition-delay:.3s; } .reveal.d4 { transition-delay:.4s; }
.reveal.d5 { transition-delay:.5s; } .reveal.d6 { transition-delay:.6s; }

/* ── MEMORIAL STRIP ─────────────────────────────────────── */
#memorial-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--deep); border-bottom: 1px solid rgba(201,168,76,.2);
  padding: .55rem 1rem; text-align: center;
  font-size: .7rem; font-weight: 400; letter-spacing: .09em; color: rgba(245,240,232,.55);
  transform: translateY(-100%); transition: transform .45s var(--ease);
}
#memorial-strip.visible { transform: translateY(0); }
#memorial-strip strong { color: var(--gold); font-weight: 500; }

/* ── NAVBAR ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), top .3s ease, box-shadow .4s ease;
}
#nav.scrolled {
  background: rgba(250,247,242,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: .7rem 0; border-bottom: 1px solid var(--border); box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
#nav.strip-visible { top: 28px; }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; position: relative; }

.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-logo__abbr { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; transition: color .3s; line-height: 1; }
#nav:not(.scrolled) .nav-logo__abbr { color: var(--cream); }
#nav.scrolled       .nav-logo__abbr { color: var(--deep); }
.nav-logo__full { font-size: .5rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { font-size: .68rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; transition: color .25s; }
#nav:not(.scrolled) .nav-links a { color: rgba(245,240,232,.72); }
#nav.scrolled       .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-links .nav-cta { border: 1px solid var(--gold) !important; padding: .45rem 1.2rem; color: var(--gold) !important; transition: background .3s,color .3s !important; }
.nav-links .nav-cta:hover { background: var(--gold); color: var(--deep) !important; }
.nav-logo img {height: clamp(42px, 6vw, 68px);width: auto; display: block; transition: opacity 0.3s;}
.nav-logo img:hover { opacity: 0.85; }

/* Slightly smaller when nav is scrolled + frosted */
#nav.scrolled .nav-logo img {
  height: clamp(34px, 4.5vw, 52px);
}

/* ── HAMBURGER ──────────────────────────────────────────── */
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 10; }
.burger span {
  display: block; width: 24px; height: 1.5px;
  transition: transform .38s var(--ease), opacity .25s ease, background .3s;
}
#nav:not(.scrolled) .burger span { background: var(--cream); }
#nav.scrolled       .burger span { background: var(--charcoal); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU — smooth max-height transition ──────────── */
.mobile-menu {
  display: flex; flex-direction: column;
  background: var(--ivory); border-top: 1px solid var(--border);
  position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  max-height: 0; overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: max-height .42s var(--ease), opacity .32s ease;
}
.mobile-menu.open { max-height: 480px; opacity: 1; pointer-events: auto; }
.mobile-menu a {
  padding: .95rem clamp(1.25rem,5vw,2.5rem); font-size: .76rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; color: var(--charcoal);
  border-bottom: 1px solid var(--border); transition: color .2s, background .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); background: rgba(201,168,76,.04); }

/* ── HERO — fills full viewport ─────────────────────────── */
#hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 18% 38%, rgba(107,26,42,.62) 0%, transparent 68%),
    radial-gradient(ellipse 55% 75% at 82% 78%, rgba(26,10,14,.78) 0%, transparent 58%),
    linear-gradient(155deg,#1a0a0e 0%,#2e1418 40%,#1a0a0e 100%);
}
#hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
}
.hero__mandala {
  position: absolute; top: 50%; right: -4%; transform: translateY(-50%);
  width: clamp(240px,40vw,580px); aspect-ratio: 1; opacity: .065;
  animation: mandala-spin 70s linear infinite; pointer-events: none;
}
@keyframes mandala-spin { to { transform: translateY(-50%) rotate(360deg); } }

.hero__content {
  position: relative; z-index: 2; max-width: 780px;
  padding-top: clamp(5rem,12vh,9rem); padding-bottom: clamp(4rem,10vh,7rem);
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .75rem;
  border: 1px solid rgba(201,168,76,.3); background: rgba(201,168,76,.08);
  padding: .4rem 1rem; margin-bottom: 1.75rem;
}
.hero__tag-text { font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.3;transform:scale(.6);} }

.hero__bengali { font-family: var(--font-bengali); font-size: clamp(.9rem,2vw,1.2rem); color: rgba(201,168,76,.62); margin-bottom: .85rem; letter-spacing: .04em; }

/* Hero title: 2 lines, contained within one viewport */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,5vw,4.8rem);
  font-weight: 300; line-height: 1.05; color: var(--cream);
}
.hero__title .line1 { display: block; font-weight: 600; color: #fff; }
.hero__title .line2 { display: block; font-style: italic; color: var(--gold-lt); font-weight: 300; }

.hero__sub { font-size: clamp(.83rem,1.3vw,.96rem); color: rgba(245,240,232,.58); font-weight: 300; letter-spacing: .05em; line-height: 1.85; margin: 1.6rem 0 2.25rem; max-width: 500px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__scroll { position: absolute; bottom: 2.5rem; right: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(245,240,232,.3); font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom,var(--gold),transparent); animation: scroll-drop 1.9s ease-in-out infinite; }
@keyframes scroll-drop { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top;} 50%{opacity:1;transform:scaleY(1);} }

/* ── MEMORIAL ───────────────────────────────────────────── */
#memorial { background: linear-gradient(140deg,var(--maroon) 0%,var(--maroon-dk) 100%); padding: clamp(3rem,8vw,5.5rem) 0; position: relative; overflow: hidden; }
#memorial::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40 0 38.59zm0-5.66l2.83-2.83 1.41 1.41L1.41 34.35 0 32.93z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }

.memorial__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; position: relative; }
.memorial__portrait { width: clamp(110px,16vw,180px); aspect-ratio: 3/4; border: 1.5px solid rgba(201,168,76,.4); position: relative; flex-shrink: 0; overflow: hidden; }
.memorial__portrait::after { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(201,168,76,.18); pointer-events: none; }
.memorial__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.photo-slot { width: 100%; height: 100%; background: linear-gradient(145deg,rgba(201,168,76,.12),rgba(107,26,42,.25)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 1rem; }
.photo-slot__icon { font-size: 2rem; opacity: .4; }
.photo-slot__label { font-size: .58rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(201,168,76,.5); line-height: 1.4; }

.memorial__body { color: var(--cream); }
.memorial__kicker { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.memorial__name { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 500; line-height: 1.08; color: #fff; margin-bottom: .6rem; }
.memorial__awards { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.award-badge { display: inline-block; border: 1px solid var(--gold); background: rgba(201,168,76,.1); color: var(--gold); font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .28rem .85rem; }
.memorial__dates { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: rgba(245,240,232,.5); margin-bottom: 1.4rem; }
.memorial__quote { font-family: var(--font-display); font-size: clamp(1rem,1.8vw,1.25rem); font-style: italic; line-height: 1.65; color: rgba(245,240,232,.78); border-left: 2px solid var(--gold); padding-left: 1.25rem; max-width: 580px; }

/* ── SAMPA ──────────────────────────────────────────────── */
#sampa { background: var(--deep); padding: 2.5rem 0; border-bottom: 1px solid var(--border-lt); }
.sampa__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.sampa__lotus { font-size: 1.75rem; opacity: .6; flex-shrink: 0; }
.sampa__text { flex: 1; min-width: 260px; font-size: .87rem; color: rgba(245,240,232,.5); line-height: 1.75; font-weight: 300; }
.sampa__text strong { color: var(--gold); font-weight: 500; }
.sampa__text em { color: rgba(245,240,232,.65); font-style: italic; }

/* ── ABOUT ──────────────────────────────────────────────── */
#about { background: var(--ivory); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,7vw,6rem); align-items: start; margin-bottom: 3rem; }
.about__text p { font-size: .96rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem; font-weight: 300; }
.about__text p strong { color: var(--charcoal); font-weight: 500; }

/* PILLARS — full width 1×4 row */
.about__pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2.5rem; }
.pillar { border: 1px solid var(--border); padding: 1.5rem 1.25rem; background: rgba(201,168,76,.03); transition: background var(--transition); }
.pillar:hover { background: rgba(201,168,76,.06); }
.pillar__icon { width: 32px; height: 32px; margin-bottom: .75rem; color: var(--gold); }
.pillar__icon svg { width: 100%; height: 100%; display: block; }
.pillar h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--deep); margin-bottom: .3rem; }
.pillar p { font-size: .78rem; color: var(--muted); line-height: 1.6; margin: 0; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.mv-card { padding: 2rem 1.75rem; border: 1px solid var(--border); background: var(--cream); }
.mv-card__icon { font-size: 1.6rem; margin-bottom: .85rem; }
.mv-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--deep); margin-bottom: .65rem; }
.mv-card p { font-size: .83rem; color: var(--muted); line-height: 1.75; }

.bio-box { border: 1px solid var(--border); padding: 1.75rem; background: var(--cream); }
.bio-box__list { display: flex; flex-direction: column; gap: .75rem; margin-top: .75rem; }
.bio-box__item { display: flex; gap: .85rem; font-size: .84rem; color: var(--muted); align-items: flex-start; line-height: 1.6; }
.bio-box__item-dot { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }

/* ── METRICS ────────────────────────────────────────────── */
#metrics { background: var(--deep); padding: clamp(3rem,7vw,5rem) 0; }
.metrics__grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(201,168,76,.2); }
.metric { padding: clamp(1.75rem,4vw,2.75rem) 1.5rem; text-align: center; border-right: 1px solid rgba(201,168,76,.12); transition: background var(--transition); }
.metric:last-child { border-right: none; }
.metric:hover { background: rgba(245,240,232,.03); }
.metric__num { display: block; font-family: var(--font-display); font-size: clamp(2.5rem,5vw,3.8rem); font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: .6rem; }
.metric__label { font-size: .73rem; color: rgba(245,240,232,.4); line-height: 1.55; font-weight: 300; }

/* ── PUBLICATIONS ───────────────────────────────────────── */
#publications { background: var(--cream); position: relative; overflow: hidden; }
#publications::before { content: ''; position: absolute; top: -180px; right: -180px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle,rgba(201,168,76,.07),transparent 70%); pointer-events: none; }
.pub-intro { max-width: 600px; margin-bottom: 3.5rem; }
.pub-intro p { font-size: .96rem; color: var(--muted); line-height: 1.85; font-weight: 300; }
.books-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.book-card { background: var(--ivory); border: 1px solid var(--border); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: var(--transition); }
.book-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--maroon)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.book-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
.book-card:hover::before { transform: scaleX(1); }
.book-card__cover { width: 100%; aspect-ratio: 3/4; background: linear-gradient(145deg,var(--cream),#e4ddd0); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.book-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.book-card__cover-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; padding: 2rem; text-align: center; width: 100%; height: 100%; }
.book-card__cover-placeholder span { font-size: 2.5rem; opacity: .3; }
.book-card__cover-placeholder p { font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); opacity: .6; }
.book-card__body { padding: 1.75rem 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.book-card__status { display: inline-block; border: 1px solid; font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: .22rem .7rem; margin-bottom: .85rem; }
.book-card__status--pub    { border-color: rgba(201,168,76,.5); color: var(--gold); background: rgba(201,168,76,.07); }
.book-card__status--coming { border-color: rgba(107,26,42,.5); color: var(--maroon); background: rgba(107,26,42,.06); }
.book-card__year { font-size: .7rem; font-weight: 600; color: var(--gold); letter-spacing: .1em; margin-bottom: .6rem; }
.book-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--deep); line-height: 1.3; margin-bottom: .75rem; }
.book-card__desc { font-size: .83rem; color: var(--muted); line-height: 1.72; margin-bottom: 1.25rem; flex: 1; }
.book-card__publisher { font-size: .72rem; color: var(--muted); font-style: italic; margin-bottom: 1.25rem; }
.book-card__publisher strong { color: var(--gold); font-style: normal; font-weight: 500; }
.book-card__footer { display: flex; flex-direction: column; gap: .75rem; border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: auto; }
.qr-note { display: flex; align-items: center; gap: .6rem; font-size: .71rem; color: var(--muted); }

/* ── LAUNCHES ───────────────────────────────────────────── */
#launches { background: var(--deep); padding: clamp(3rem,8vw,6rem) 0; }
.launches__header { text-align: center; margin-bottom: 3.5rem; }
.launches__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.15); }
.launch-photo { aspect-ratio: 4/3; position: relative; overflow: hidden; cursor: pointer; background: rgba(245,240,232,.04); }
.launch-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.launch-photo:hover img { transform: scale(1.05); }
.launch-photo__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; padding: 2rem; text-align: center; }
.launch-photo__placeholder span { font-size: 2rem; opacity: .3; }
.launch-photo__label { font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,240,232,.3); line-height: 1.5; }
.launch-photo__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem .85rem; background: linear-gradient(to top,rgba(26,10,14,.9),transparent); font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); transform: translateY(100%); transition: transform .35s var(--ease); }
.launch-photo:hover .launch-photo__caption { transform: translateY(0); }

/* ── UPCOMING ───────────────────────────────────────────── */
#upcoming { background: linear-gradient(140deg,#1a0a0e 0%,#2e1418 100%); position: relative; overflow: hidden; }
#upcoming::after { content: ''; position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle,rgba(201,168,76,.07),transparent 70%); pointer-events: none; }
.upcoming__grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(2rem,6vw,5rem); align-items: center; position: relative; z-index: 1; }
.upcoming__text p { color: rgba(245,240,232,.55); font-size: .95rem; line-height: 1.85; margin: 1.5rem 0 2.5rem; font-weight: 300; }
.upcoming__note { font-size: .7rem; font-style: italic; color: rgba(245,240,232,.35); margin-top: 1rem; }
.countdown { display: flex; border: 1px solid rgba(201,168,76,.22); flex-shrink: 0; }
.countdown__item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid rgba(201,168,76,.12); min-width: 88px; }
.countdown__item:last-child { border-right: none; }
.countdown__num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--gold); line-height: 1; }
.countdown__label { display: block; font-size: .56rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,240,232,.32); margin-top: .45rem; }

/* ── PROJECTS ───────────────────────────────────────────── */
#projects { background: var(--ivory); }
.projects__intro { max-width: 640px; margin-bottom: 3.5rem; }
.projects__intro p { font-size: .96rem; color: var(--muted); line-height: 1.85; font-weight: 300; }
.phase-label { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.phase-label__text { font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.phase-label__line { flex: 1; height: 1px; background: var(--border); }
.completed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.project-book-card { border: 1px solid var(--border); padding: 2rem; background: var(--ivory); display: flex; gap: 1.5rem; align-items: flex-start; transition: var(--transition); }
.project-book-card:hover { background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.06); }
.project-book-card__num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: rgba(201,168,76,.2); line-height: 1; flex-shrink: 0; }
.project-book-card__body { flex: 1; }
.project-book-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--deep); margin-bottom: .5rem; line-height: 1.3; }
.project-book-card p { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
.project-book-card__publisher { font-size: .7rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.project-book-card__publisher strong { color: var(--charcoal); font-style: normal; }
.upcoming-book-card { border: 1px solid rgba(201,168,76,.35); background: linear-gradient(135deg,rgba(201,168,76,.06),rgba(107,26,42,.04)); padding: 2rem 2.25rem; margin-bottom: 3rem; display: flex; align-items: center; gap: 2.5rem; }
.upcoming-book-card__badge { flex-shrink: 0; width: 80px; height: 80px; border: 1.5px solid var(--gold); background: rgba(201,168,76,.1); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem; }
.upcoming-book-card__badge-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--gold); line-height: 1; }
.upcoming-book-card__badge-label { font-size: .52rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); opacity: .7; }
.upcoming-book-card__body { flex: 1; }
.upcoming-book-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--deep); margin-bottom: .5rem; }
.upcoming-book-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; max-width: 560px; }
.upcoming-book-card__note { font-size: .7rem; font-style: italic; color: var(--muted); opacity: .7; margin-top: .5rem; }
.pipeline-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pipeline-item { background: var(--ivory); padding: 1.75rem; transition: background var(--transition); }
.pipeline-item:hover { background: #fff; }
.pipeline-item__num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: rgba(201,168,76,.18); line-height: 1; margin-bottom: .65rem; }
.pipeline-item h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--deep); margin-bottom: .5rem; line-height: 1.3; }
.pipeline-item p { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.pipeline-item__status { display: inline-block; margin-top: .85rem; font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); opacity: .7; }

/* ── TEAM ───────────────────────────────────────────────── */
#team { background: var(--deep); }
.team__header { text-align: center; margin-bottom: 3.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card { border: 1px solid rgba(201,168,76,.18); padding: 2.25rem 1.75rem; background: rgba(245,240,232,.025); text-align: center; position: relative; overflow: hidden; transition: var(--transition); }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--maroon)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.team-card:hover { background: rgba(245,240,232,.055); }
.team-card:hover::before { transform: scaleX(1); }
.team-card__photo { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.4rem; overflow: hidden; border: 1.5px solid rgba(201,168,76,.3); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card__photo .photo-slot { border-radius: 50%; }
.team-card__photo .photo-slot__icon { font-size: 1.5rem; }
.team-card__photo .photo-slot__label { font-size: .45rem; }
.team-card__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--cream); margin-bottom: .3rem; }
.team-card__role { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* ── NEWSLETTER ─────────────────────────────────────────── */
#newsletter { background: var(--cream); }
.newsletter__box { max-width: 740px; margin: 0 auto; border: 1px solid var(--border); background: var(--ivory); padding: clamp(2.5rem,6vw,4rem); text-align: center; position: relative; overflow: hidden; }
.newsletter__box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--maroon),var(--gold),var(--maroon)); }
.newsletter__icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.newsletter__box h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2rem); font-weight: 400; color: var(--deep); margin-bottom: .75rem; }
.newsletter__box > p { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
/* Constrained, wrappable download button */
.newsletter__download {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.75rem; font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  background: var(--gold); color: var(--deep); border: 1.5px solid var(--gold);
  transition: var(--transition); cursor: pointer;
  white-space: normal; word-break: break-word;
  max-width: 400px; width: 100%; text-align: center; line-height: 1.45;
}
.newsletter__download:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.newsletter__meta { font-size: .68rem; color: var(--muted); font-style: italic; margin-top: 1rem; opacity: .7; }

/* ── CLOSING CTA ────────────────────────────────────────── */
#closing { background: linear-gradient(135deg,var(--maroon) 0%,var(--maroon-dk) 100%); padding: clamp(4rem,10vw,7rem) 0; text-align: center; position: relative; overflow: hidden; }
#closing::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle,rgba(201,168,76,.06),transparent 70%); pointer-events: none; }
.closing__inner { position: relative; z-index: 1; }
#closing h2 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); font-weight: 300; color: #fff; margin-bottom: 1rem; }
.closing__p { font-size: 1rem; color: rgba(245,240,232,.62); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.85; }
.closing__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── CONTACT ────────────────────────────────────────────── */
#contact { background: var(--ivory); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact__info > p { font-size: .95rem; color: var(--muted); line-height: 1.85; margin-bottom: 2.25rem; font-weight: 300; }

.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.contact-detail:last-of-type { border-bottom: none; }

/* Minimal SVG icon — brand gold, no colour noise */
.contact-detail__icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; color: var(--gold); }
.contact-detail__icon svg { width: 100%; height: 100%; display: block; }

.contact-detail__label { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .22rem; }
.contact-detail__value { font-size: .87rem; color: var(--charcoal); line-height: 1.5; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--cream); border: 1px solid var(--border); padding: .87rem 1rem; font-size: .88rem; color: var(--charcoal); outline: none; transition: border-color .2s; border-radius: 0; -webkit-appearance: none; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn--form-submit { width: 100%; justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--deep); padding: clamp(3rem,8vw,5rem) 0 0; border-top: 1px solid var(--border-lt); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem,5vw,4rem); margin-bottom: 3rem; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--cream); margin-bottom: .2rem; }
.footer__brand-tag { display: block; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer__brand p { font-size: .82rem; color: rgba(245,240,232,.36); line-height: 1.75; max-width: 280px; }
.footer__col h5 { font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer__col li { margin-bottom: .6rem; }
.footer__col a { font-size: .82rem; color: rgba(245,240,232,.38); transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__col-plain { font-size: .82rem; color: rgba(245,240,232,.38); line-height: 1.6; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.75rem 0; border-top: 1px solid rgba(201,168,76,.1); flex-wrap: wrap; gap: .75rem; }
.footer__bottom p { font-size: .72rem; color: rgba(245,240,232,.22); }
.footer__reg { font-size: .65rem; font-style: italic; color: rgba(245,240,232,.2); }

/* Powered by strip */
.footer__powered {
  border-top: 1px solid rgba(201,168,76,.08);
  padding: .85rem clamp(1.25rem,5vw,2.5rem);
  text-align: center;
  font-size: .65rem; font-weight: 400; letter-spacing: .1em;
  color: rgba(245,240,232,.22);
}
.footer__powered a {
  color: var(--maroon); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: opacity .2s;
}
.footer__powered a:hover { opacity: .75; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .books-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid  { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__pillars { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .mv-grid     { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .upcoming__grid { grid-template-columns: 1fr; }
  .memorial__inner { grid-template-columns: 1fr; text-align: center; }
  .memorial__portrait { margin: 0 auto; }
  .memorial__awards { justify-content: center; }
  .memorial__quote  { margin: 0 auto; }
  .completed-grid { grid-template-columns: 1fr; }
  .upcoming-book-card { flex-direction: column; gap: 1.5rem; }
  .launches__grid { grid-template-columns: repeat(2,1fr); }
  .countdown { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
  .hero__scroll { display: none; }
  .metrics__grid { grid-template-columns: repeat(2,1fr); }
  .metric { border-bottom: 1px solid rgba(201,168,76,.1); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(3) { border-bottom: none; }
  .metric:nth-child(4) { border-right: none; border-bottom: none; }
  .books-grid  { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: repeat(2,1fr); }
  .pipeline-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .newsletter__download { font-size: .63rem; letter-spacing: .1em; padding: .85rem 1rem; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.9rem,8.5vw,2.8rem); }
  .team-grid   { grid-template-columns: 1fr; }
  .launches__grid { grid-template-columns: 1fr; }
  .countdown__item { min-width: 64px; padding: 1.25rem .9rem; }
  .countdown__num  { font-size: 1.9rem; }
  .metrics__grid   { grid-template-columns: 1fr; }
  .metric          { border-right: none !important; border-bottom: 1px solid rgba(201,168,76,.1) !important; }
  .metric:last-child { border-bottom: none !important; }
  .about__pillars  { grid-template-columns: 1fr; }
}