/* ═══════════════ KS GROUP v2 — Cinematic Gold ═══════════════ */
:root {
  --ink: #0c0a09;
  --ink-2: #171412;
  --ink-3: #211d1a;
  --cream: #faf7f0;
  --cream-2: #f1ebdd;
  --gold: #c9a227;
  --gold-bright: #e3c355;
  --gold-soft: rgba(201, 162, 39, 0.35);
  --text-dark: #1c1917;
  --text-dark-muted: #57534e;
  --text-light: #f5f1e8;
  --text-light-muted: #b8b0a4;
  --border-light: #e2dccb;
  --border-dark: rgba(227, 195, 85, 0.18);
  --font-display: "Cormorant", "Noto Serif Bengali", georgia, serif;
  --font-body: "Montserrat", "Noto Serif Bengali", -apple-system, sans-serif;
  --container: 1200px;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════ Progress bar & cursor ═══════════════ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
}

.cursor {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(227, 195, 85, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.3s;
  opacity: 0;
}

.cursor::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.cursor.on {
  opacity: 1;
}

.cursor.grow {
  width: 58px;
  height: 58px;
  background: rgba(201, 162, 39, 0.08);
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* ═══════════════ Type ═══════════════ */
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.dark .h2 em {
  color: var(--gold-bright);
}

.h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.gold-text {
  color: var(--gold);
}

.dark .gold-text {
  color: var(--gold-bright);
}

.lede {
  font-size: 1.08rem;
  line-height: 1.7;
}

.body-copy {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark-muted);
}

.dark .body-copy {
  color: var(--text-light-muted);
}

/* ═══════════════ Buttons ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-lux), box-shadow 0.25s var(--ease-lux), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #201a06;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 8px 34px rgba(201, 162, 39, 0.5);
}

.btn-ghost {
  background: rgba(12, 10, 9, 0.25);
  color: var(--text-light);
  border-color: rgba(245, 241, 232, 0.4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--ink-3);
  box-shadow: 0 8px 28px rgba(12, 10, 9, 0.35);
}

.btn-sm {
  min-height: 44px;
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
}

/* ═══════════════ Nav ═══════════════ */
.nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}

.nav.scrolled {
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-light);
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav-name em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-light-muted);
  font-size: 0.9em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links a:not(.btn) {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 0;
  transition: color 0.2s;
}

.nav-links a:not(.btn) i {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85em;
  margin-right: 0.25em;
}

.nav-links a:not(.btn):hover {
  color: var(--gold-bright);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: rgba(12, 10, 9, 0.4);
  border: 1px solid rgba(245, 241, 232, 0.3);
  border-radius: 2px;
  cursor: pointer;
  padding: 12px 11px;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════ Hero ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 6rem;
  overflow: hidden;
  color: var(--text-light);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(0.9) brightness(0.95);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(12, 10, 9, 0.96) 0%, rgba(12, 10, 9, 0.88) 34%, rgba(12, 10, 9, 0.55) 60%, rgba(12, 10, 9, 0.35) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.92) 0%, transparent 36%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  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.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.7 0 0 0 0 0.4 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-watermark {
  position: absolute;
  right: -1.5rem;
  bottom: 4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(227, 195, 85, 0.28);
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
}

.kicker-line {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.5vw, 7.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 1.3rem;
}

.hero-title .line {
  display: block;
}

.hero-title .word {
  display: inline-block;
}

.line-italic {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-bright);
}

.line-stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 241, 232, 0.85);
}

.line-solid {
  color: var(--text-light);
}

.hero-bn {
  font-family: "Noto Serif Bengali", serif;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.hero-sub {
  max-width: 520px;
  color: var(--text-light-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.hero-chips {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.hero-chips li {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  border-left: 1px solid var(--gold-soft);
  padding-left: 0.9rem;
}

.hero-chips strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.1;
  letter-spacing: 0;
}

/* ═══════════════ Marquee (tilted) ═══════════════ */
.marquee-wrap {
  background: var(--cream);
  position: relative;
  z-index: 5;
}

.marquee {
  background: var(--ink);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.35rem 0;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-1.6deg) scale(1.02);
  margin: -1.2rem 0;
  box-shadow: 0 14px 40px -18px rgba(12, 10, 9, 0.6);
}

.marquee-track {
  display: inline-flex;
  animation: marquee 38s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(227, 195, 85, 0.6);
  padding-right: 0.6rem;
}

.marquee-track i {
  font-style: normal;
  -webkit-text-stroke: 0;
  color: var(--gold);
  font-size: 1.1rem;
  vertical-align: 0.35em;
  padding: 0 0.9rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════ Sections ═══════════════ */
.section {
  position: relative;
  padding: clamp(5rem, 10vw, 8.5rem) 1.5rem;
  overflow: hidden;
}

.section.light {
  background: var(--cream);
  color: var(--text-dark);
}

.section.dark {
  background: var(--ink);
  color: var(--text-light);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.8rem, 6vw, 4.5rem);
}

.center-lede {
  margin-top: 1.2rem;
  color: var(--text-dark-muted);
}

.sec-watermark {
  position: absolute;
  top: 0.5rem;
  left: -1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(8rem, 18vw, 15rem);
  line-height: 1;
  color: transparent;
  pointer-events: none;
  user-select: none;
}

.light .sec-watermark {
  -webkit-text-stroke: 1.3px rgba(28, 25, 23, 0.09);
}

.dark .sec-watermark {
  -webkit-text-stroke: 1.3px rgba(227, 195, 85, 0.13);
}

/* ═══════════════ Heritage split ═══════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split-text .lede {
  margin: 1.4rem 0 1rem;
}

.split-text .body-copy {
  margin-bottom: 2rem;
}

.timeline {
  list-style: none;
  border-left: 1px solid var(--gold-soft);
  padding-left: 1.6rem;
  display: grid;
  gap: 1.15rem;
}

.timeline li {
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.6rem - 4.5px);
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.tl-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.tl-text {
  font-size: 0.92rem;
  color: var(--text-dark-muted);
}

.frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(28, 25, 23, 0.45);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 6px;
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: -1;
}

.frame-caption {
  margin-top: 1.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-dark-muted);
  text-align: center;
}

/* ═══════════════ Tilt cards + sheen ═══════════════ */
.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 244, 200, 0.16) 48%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}

.tilt-card:hover .sheen {
  transition: transform 0.9s var(--ease-lux);
  transform: translateX(120%);
}

/* ═══════════════ Group cards ═══════════════ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.co-card {
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 2.4rem 2rem 2.2rem;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.co-card:hover {
  border-color: rgba(227, 195, 85, 0.5);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6), 0 0 46px -16px var(--gold-soft);
}

.co-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(227, 195, 85, 0.55);
  line-height: 1;
  display: block;
  margin-bottom: 1.3rem;
}

.co-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0.5rem 0 1rem;
}

.co-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

/* ═══════════════ Brand rows (editorial) ═══════════════ */
.brand-rows {
  border-top: 1px solid var(--border-light);
}

.brand-row {
  display: grid;
  grid-template-columns: 3.2rem 1fr 1.6fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.7rem 1rem;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.35s var(--ease-lux);
}

.brand-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-lux);
  pointer-events: none;
}

.brand-row:hover::before {
  transform: scaleX(1);
}

.brand-row:hover {
  padding-left: 1.7rem;
}

.brand-index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}

.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.05;
  color: var(--text-dark);
  transition: color 0.3s;
}

.brand-row:hover .brand-name {
  color: var(--gold);
  filter: brightness(0.85);
}

.brand-cat {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-dark-muted);
}

.brand-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-dark-muted);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease-lux);
}

.brand-row:hover .brand-arrow {
  background: var(--ink);
  color: var(--gold-bright);
  border-color: var(--ink);
  transform: rotate(45deg);
}

.brand-foot {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  text-align: center;
}

/* ═══════════════ People ═══════════════ */
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.person-card {
  position: relative;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink-2);
}

.person-photo {
  position: relative;
  overflow: hidden;
}

.person-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.8s var(--ease-lux);
}

.person-card:hover .person-photo img {
  transform: scale(1.045);
}

.person-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 10, 9, 0.75) 0%, transparent 38%);
}

.person-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.7rem;
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.15;
}

.person-role {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-top: 0.35rem;
  max-width: 46ch;
}

.person-card-wide {
  grid-column: 1 / -1;
}

.person-card-wide .person-photo img {
  aspect-ratio: 16 / 8.5;
  object-position: center 15%;
}

/* ═══════════════ Daraz ═══════════════ */
.daraz-section {
  padding-top: 0;
}

.daraz-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: clamp(2rem, 5vw, 3.8rem);
  box-shadow: 0 30px 60px -30px rgba(28, 25, 23, 0.25);
}

.daraz-text .h2 {
  margin-bottom: 1.1rem;
}

.daraz-text .body-copy {
  margin-bottom: 1.9rem;
}

.daraz-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px rgba(28, 25, 23, 0.35);
}

/* ═══════════════ Stats ═══════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  overflow: hidden;
}

.stat {
  background: var(--ink);
  text-align: center;
  padding: 2.8rem 1rem;
  display: grid;
  gap: 0.4rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

/* ═══════════════ Contact ═══════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.contact-card {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.4rem 1.6rem 2.2rem;
  transition: transform 0.3s var(--ease-lux), box-shadow 0.3s, border-color 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -20px rgba(28, 25, 23, 0.28);
  border-color: var(--gold-soft);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  word-break: break-word;
}

.contact-note {
  margin-top: 2.4rem;
  text-align: center;
  font-family: "Noto Serif Bengali", serif;
  color: var(--gold);
  filter: brightness(0.85);
  font-size: 1.05rem;
}

/* ═══════════════ Footer ═══════════════ */
.footer {
  background: #080706;
  color: var(--text-light-muted);
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 1.5rem 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-logo {
  width: 74px;
  height: 74px;
  mix-blend-mode: screen;
  margin-bottom: 0.8rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.footer-tag {
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.footer-links a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-meta {
  font-size: 0.78rem;
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ═══════════════ Reveal states (JS adds .js to body) ═══════════════ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

.js [data-entrance] {
  opacity: 0;
  transform: translateY(18px);
}

.js .hero-title .word {
  opacity: 0;
  transform: translateY(0.35em) rotate(1.5deg);
}

.js.reduced-motion [data-reveal],
.js.reduced-motion [data-entrance],
.js.reduced-motion .hero-title .word {
  opacity: 1;
  transform: none;
}

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 1024px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.9rem;
    background: rgba(12, 10, 9, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s var(--ease-lux), opacity 0.3s;
    z-index: 90;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a:not(.btn) {
    font-size: 1.05rem;
  }

  .nav-burger {
    display: flex;
    position: relative;
    z-index: 95;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-media {
    order: -1;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .daraz-card {
    grid-template-columns: 1fr;
  }

  .daraz-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-row {
    grid-template-columns: 2.2rem 1fr auto;
  }

  .brand-cat {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .brand-index {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 0.5rem;
  }

  .hero-photo {
    object-position: 62% 72%;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 6.2rem 1.25rem 4.5rem;
  }

  .hero-cta .btn {
    flex: 1 1 100%;
  }

  .hero-chips {
    gap: 1.4rem;
  }

  .hero-chips strong {
    font-size: 1.5rem;
  }

  .hero-watermark {
    bottom: 1.5rem;
  }

  .marquee-track span {
    font-size: 1.4rem;
  }

  .brand-arrow {
    width: 44px;
    height: 44px;
  }

  .person-card figcaption {
    padding: 1.1rem 1.2rem;
  }

  .person-name {
    font-size: 1.35rem;
  }
}

/* ═══════════════ Reduced motion ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none !important;
  }

  .btn,
  .co-card,
  .brand-row,
  .contact-card,
  .person-photo img {
    transition: none;
  }

  .tilt-card:hover .sheen {
    transition: none;
    transform: translateX(-120%);
  }

  .cursor {
    display: none;
  }
}