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

:root {
  --red-lt:  #ff3d50;
  --red:     #e01c2c;
  --red-dk:  #8c0d1a;
  --grad:    linear-gradient(135deg, #ff3d50 0%, #e01c2c 50%, #8c0d1a 100%);
  --grad-h:  linear-gradient(135deg, #e83040 0%, #c0101e 50%, #6e0814 100%);
  --grad-90: linear-gradient(90deg,  #ff3d50 0%, #e01c2c 50%, #8c0d1a 100%);
  --white:   #f5f5f5;
  --black:   #0a0a0a;
  --grey:    #181818;
  --grey2:   #252525;
  --grey3:   #333;
  --muted:   #888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
    KEYFRAMES
══════════════════════════════════════════ */

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0    rgba(255,61,80,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(255,61,80,0);   }
  100% { box-shadow: 0 0 0 0    rgba(255,61,80,0);   }
}

@keyframes grad-flow {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

@keyframes border-sweep {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes reveal-left {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0);     }
}

@keyframes reveal-scale {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1);  }
}

@keyframes divider-grow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ══════════════════════════════════════════
    SCROLL PROGRESS
══════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 64px;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--grad-90);
  box-shadow: 0 0 8px rgba(255,61,80,.6);
  z-index: 300;
  transition: width .1s linear;
}

/* ══════════════════════════════════════════
    NAVBAR
══════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  animation: slideDown .5s ease both;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad-90);
  background-size: 200% 200%;
  animation: grad-flow 4s linear infinite;
}

.nav-logo-link { display: flex; align-items: center; text-decoration: none; }

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--grad-90);
  transition: width .25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--grad);
  background-size: 200% 200%;
  animation: grad-flow 4s linear infinite;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 5px;
  font-weight: 700 !important;
  transition: opacity .2s, transform .2s !important;
}

.nav-cta:hover { opacity: .85; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ══════════════════════════════════════════
    MOBILE NAV
══════════════════════════════════════════ */

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(14px);
  padding: 24px 32px 32px;
  gap: 6px;
  z-index: 199;
  border-bottom: 1px solid var(--grey2);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 11px 0;
  border-bottom: 1px solid var(--grey2);
  transition: color .2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

.mob-cta {
  margin-top: 10px;
  background: var(--grad);
  background-size: 200% 200%;
  animation: grad-flow 4s linear infinite;
  color: var(--white) !important;
  padding: 13px 0 !important;
  border-radius: 6px;
  text-align: center;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ══════════════════════════════════════════
    SCROLL REVEAL
══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
    ABOUT HERO
══════════════════════════════════════════ */

.about-hero-logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 140px;
  height: auto;
}

.about-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(224,28,44,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(140,13,26,.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red-lt);
  margin-bottom: 14px;
  animation: fadeUp .6s .1s both;
}

.about-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff3d50 0%, #e01c2c 40%, #f5f5f5 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .65s .2s both, grad-flow 6s ease infinite;
  margin-bottom: 20px;
}

.about-hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  animation: fadeUp .65s .3s both;
  margin-bottom: 28px;
}

.about-hero-divider {
  width: 60px;
  height: 3px;
  background: var(--grad-90);
  border-radius: 2px;
  margin: 0 auto;
  animation: fadeUp .65s .4s both;
}

/* ══════════════════════════════════════════
    SECTION COMMONS
══════════════════════════════════════════ */

.about-section {
  padding: 96px 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.about-section-full {
  padding: 96px 40px;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-flow 4s linear infinite;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
}

.divider {
  width: 52px;
  height: 3px;
  background: var(--grad-90);
  border-radius: 2px;
  margin: 0 auto 20px;
  transform-origin: left;
}

.section-desc {
  font-size: .96rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
    GRAD TEXT UTILITY
══════════════════════════════════════════ */

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text-anim {
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-flow 4s linear infinite;
}

/* ══════════════════════════════════════════
    INTRO + STATS SECTION
══════════════════════════════════════════ */

.intro-section {
  padding: 80px 40px 96px;
  border-top: 1px solid var(--grey2);
}

.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Left: text ── */

.intro-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-lt);
  margin-bottom: 20px;
}

.intro-label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--grad-90);
  border-radius: 2px;
  flex-shrink: 0;
}

.intro-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
}

.intro-desc {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.intro-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 6px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .25s, background .25s, color .25s, transform .2s;
}

.intro-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Right: stat cards ── */

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--grey);
  border: 1px solid var(--grey2);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
  z-index: 0;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--grey3);
  box-shadow: 0 8px 32px rgba(224,28,44,.12);
}

.stat-card:hover::before { opacity: .04; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
  z-index: 1;
}

/* ── Responsive ── */

@media (max-width: 860px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1 1 140px;
  }
}

@media (max-width: 768px) {
  .intro-section { padding: 60px 20px 72px; }
}

@media (max-width: 480px) {
  .intro-stats { flex-direction: column; }
}

/* ══════════════════════════════════════════
    PROJECTS SECTION
══════════════════════════════════════════ */

.projects-section {
  padding: 96px 40px;
  border-top: 1px solid var(--grey2);
  background: linear-gradient(180deg, var(--black) 0%, rgba(20,6,8,.6) 100%);
}

.projects-inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Section header ── */

.projects-header {
  margin-bottom: 56px;
}

.projects-suplabel {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-lt);
  margin-bottom: 14px;
}

.projects-big-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
}

.projects-big-desc {
  font-size: .96rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ── 3-col grid ── */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Project card ── */

.project-card {
  background: var(--grey);
  border: 1px solid var(--grey2);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s, border-color .28s, box-shadow .28s;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--grey3);
  box-shadow: 0 16px 48px rgba(224,28,44,.1);
}

.project-card:hover::before { opacity: 1; }

/* ── Slideshow ── */

.project-slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}

.ss-track {
  position: relative;
  height: 100%;
}

.ss-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

.ss-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.ss-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--grey2);
}

/* Placeholder slide */
.ss-placeholder {
  background:
    linear-gradient(135deg, rgba(255,61,80,.06) 0%, rgba(140,13,26,.12) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,.02) 20px,
      rgba(255,255,255,.02) 40px
    );
}

.ss-ph-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey3);
}

.ss-ph-inner svg { opacity: .5; }

.ss-ph-inner span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Prev / Next buttons */
.ss-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,.65);
  border: 1px solid var(--grey2);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, opacity .2s;
  opacity: 0;
  z-index: 2;
}

.project-slideshow:hover .ss-btn { opacity: 1; }

.ss-prev { left: 10px; }
.ss-next { right: 10px; }

.ss-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Dots */
.ss-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.ss-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,245,245,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}

.ss-dot.active {
  background: var(--red-lt);
  transform: scale(1.35);
}

/* ── Card body ── */

.project-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-icon {
  width: 44px;
  height: 44px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.project-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.project-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .projects-section { padding: 64px 20px; }
  .projects-grid { max-width: 100%; }
}

/* ══════════════════════════════════════════
    MAGAZINE SECTION
══════════════════════════════════════════ */

.magazine-section {
  padding: 96px 40px;
  border-top: 1px solid var(--grey2);
}

.magazine-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

/* ── Left: text ── */

.magazine-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.magazine-title-rule {
  width: 52px;
  height: 3px;
  background: var(--grad-90);
  border-radius: 2px;
  margin-bottom: 24px;
}

.magazine-desc {
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 32px;
}

.magazine-desc em {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
}

.magazine-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.magazine-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--muted);
  font-weight: 500;
}

.meta-icon {
  width: 30px;
  height: 30px;
  background: var(--grey2);
  border: 1px solid var(--grey3);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-lt);
  flex-shrink: 0;
}

/* ── Right: cover ── */

.magazine-cover-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}

.magazine-cover-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(224,28,44,.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.magazine-cover {
  width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--grey2);
  background: var(--grey);
  position: relative;
  z-index: 1;
  box-shadow:
    -8px 8px 40px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,61,80,.08);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}

.magazine-cover img {
  position: relative;
  z-index: 1;
}

.magazine-cover:hover {
  transform: perspective(800px) rotateY(-6deg) translateY(-4px);
  box-shadow:
    -16px 12px 56px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,61,80,.18);
}

.magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/* Placeholder state */
.cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(160deg, rgba(255,61,80,.07) 0%, rgba(140,13,26,.14) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 16px,
      rgba(255,255,255,.015) 16px,
      rgba(255,255,255,.015) 32px
    );
  color: var(--grey3);
  padding: 24px;
  text-align: center;
  z-index: 0;
}

.cover-placeholder svg { opacity: .45; color: var(--red-lt); }

.cover-ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: rgba(245,245,245,.25);
}

.cover-ph-sub {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey3);
}

/* Below-cover label */
.magazine-cover-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.magazine-cover-label .grad-text-anim {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .1em;
}

.cover-edition {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Responsive ── */

@media (max-width: 860px) {
  .magazine-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    justify-items: center;
    text-align: center;
  }

  .magazine-title-rule { margin: 10px auto 24px; }
  .magazine-desc { max-width: 100%; }
  .magazine-meta { align-items: center; }
  .section-label { text-align: center; display: block; }
}

@media (max-width: 768px) {
  .magazine-section { padding: 64px 20px; }
  .magazine-cover { width: 200px; }
}

/* ══════════════════════════════════════════
    LEADERSHIP SECTION
══════════════════════════════════════════ */

.leadership-section {
  padding: 96px 40px;
  border-top: 1px solid var(--grey2);
  background: linear-gradient(180deg, rgba(20,6,8,.5) 0%, var(--black) 100%);
}

.leadership-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.leadership-header {
  margin-bottom: 56px;
}

.leadership-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1.1;
  margin-top: 12px;
}

/* ── 3-col grid ── */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Individual card ── */

.leader-card {
  background: var(--grey);
  border: 1px solid var(--grey2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .28s, border-color .28s, box-shadow .28s;
  position: relative;
}

.leader-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 1;
}

.leader-card:hover {
  transform: translateY(-6px);
  border-color: var(--grey3);
  box-shadow: 0 16px 48px rgba(224,28,44,.1);
}

.leader-card:hover::before { opacity: 1; }

/* Faculty variant — slightly accented top border */
.leader-card--faculty {
  border-color: rgba(255,61,80,.2);
}

/* ── Photo area ── */

.leader-photo-wrap {
  position: relative;
}

.leader-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--grey2);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform .4s ease;
}

.leader-card:hover .leader-photo img {
  transform: scale(1.04);
}

/* Placeholder */
.leader-photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(255,61,80,.06) 0%, rgba(140,13,26,.12) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 16px,
      rgba(255,255,255,.015) 16px,
      rgba(255,255,255,.015) 32px
    );
  color: var(--grey3);
}

/* Faculty badge */
.leader-faculty-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad);
  background-size: 200% 200%;
  animation: grad-flow 4s linear infinite;
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* ── Info area ── */

.leader-info {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--grey2);
}

.leader-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.leader-role {
  font-size: .78rem;
  font-weight: 600;
  color: var(--red-lt);
  margin-bottom: 4px;
  letter-spacing: .02em;
}

.leader-dept {
  font-size: .76rem;
  color: var(--muted);
}

/* ── Responsive ── */

@media (max-width: 860px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Moderator spans both cols on tablet */
  .leader-card--faculty {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .leader-card--faculty { max-width: 100%; }
}

@media (max-width: 768px) {
  .leadership-section { padding: 64px 20px; }
}

/* ══════════════════════════════════════════
    QUICK LINKS
══════════════════════════════════════════ */

.quicklinks-wrap {
  padding: 0 40px 72px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--grey2);
  padding-top: 72px;
}

.quicklinks-card {
  background: var(--grey);
  border: 1px solid var(--grey2);
  border-radius: 14px;
  padding: 36px 44px 40px;
  width: 100%;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

.quicklinks-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-90);
  background-size: 200% 200%;
  animation: grad-flow 4s linear infinite;
}

.quicklinks-heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.quicklinks-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.quicklinks-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quicklinks-col-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey3);
  margin-bottom: 10px;
}

.quicklinks-col a {
  font-size: .86rem;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
  width: fit-content;
}

.quicklinks-col a:hover {
  color: var(--red-lt);
  border-bottom-color: rgba(255,61,80,.3);
}

@media (max-width: 768px) {
  .quicklinks-wrap { padding: 56px 20px 56px; }
  .quicklinks-card { padding: 28px 24px 32px; }
}

@media (max-width: 400px) {
  .quicklinks-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */

.about-footer {
  border-top: 1px solid var(--grey2);
  padding: 36px 40px;
  text-align: center;
}

.about-footer p {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .05em;
}

.about-footer a {
  color: var(--red-lt);
  text-decoration: none;
  transition: color .2s;
}

.about-footer a:hover { color: var(--white); }

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .nav-links { display: none; }

  .nav-burger { display: flex; }

  .about-hero { padding: 100px 20px 60px; }

  .about-section { padding: 64px 20px; }

  .about-section-full { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .about-hero-title { letter-spacing: .02em; }
}
