/* ============================================================
   CAPTAIN — site stylesheet
   ============================================================ */

@font-face {
  font-family: 'CareemSans';
  src: url('../fonts/CareemSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CareemSans';
  src: url('../fonts/CareemSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CareemSans';
  src: url('../fonts/CareemSans-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #08080a;
  --bg-2: #101013;
  --bg-3: #16161b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f6f6f4;
  --ink-2: #c8c8c4;
  --ink-3: #8a8a86;
  --gold: #c9a55c;
  --gold-2: #e3c47a;
  --accent: var(--gold);
  --max: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-1: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: #000;
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

.brandmark {
  display: inline-block;
  width: auto;
  user-select: none;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
}

/* ===== Typography ===== */
.h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
  font-weight: 500;
}
.eyebrow--gold { color: var(--gold); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn--primary:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
}
.btn--ghost .btn__icon { background: rgba(255,255,255,0.08); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
}
.nav.is-scrolled {
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: inline-flex; align-items: center; color: #fff; }
.nav__wordmark {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: #fff;
  transition: color .2s var(--ease);
}
.nav__logo:hover .nav__wordmark { color: var(--gold); }
.nav.is-scrolled .nav__wordmark { font-size: 20px; }
.nav__links {
  display: flex; gap: 28px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav__inner { padding: 0 20px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
  animation: kenburns 24s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.18) translate(-2%, -1%); }
}
.hero__vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 38%, transparent 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.85) 95%),
    linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.2) 35%, rgba(8,8,10,.95) 100%);
}
.hero__noise {
  position: absolute; inset: 0; z-index: -1;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  pointer-events: none;
}
.hero__logo {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  width: clamp(280px, 56vw, 760px);
  height: auto;
  color: #fff;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,0.55));
  opacity: 0;
  animation: heroLogoIn 1.4s var(--ease) .1s forwards;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translate(-50%, -10px) scale(0.96); }
  to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@media (max-width: 720px) {
  .hero__logo { top: 14%; width: clamp(240px, 78vw, 480px); }
}
.hero__content {
  position: relative;
  text-align: center;
  padding: 120px 24px 96px;
  max-width: 1100px;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .15s forwards;
}
.hero__title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(56px, 13vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  font-weight: 400;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.1s var(--ease) forwards;
}
.hero__line:nth-child(1) { animation-delay: .2s; }
.hero__line--accent {
  color: var(--gold);
  background: linear-gradient(180deg, #efd690 0%, #c9a55c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: .35s;
}
.hero__tagline {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) .55s forwards;
}
.hero__tagline strong { color: var(--ink); font-weight: 600; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 0 56px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) .75s forwards;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) .95s forwards;
}
.hero__meta-item { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-3);
  display: inline-block;
}
.dot--gold { background: var(--gold); box-shadow: 0 0 12px var(--gold); }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero__scroll span {
  width: 2px; height: 8px; background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(-4px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

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

@media (max-width: 720px) {
  .hero__content { padding: 110px 16px 110px; }
  .hero__meta { gap: 18px; }
}

/* ===== Sections ===== */
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section__head { margin-bottom: 56px; max-width: 720px; }

.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .container--split { grid-template-columns: 1fr; }
}

/* ===== About ===== */
.section--about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
}
.about__copy p { color: var(--ink-2); }
.meta-grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 32px 0 36px;
  border-top: 1px solid var(--line);
}
.meta-grid li {
  display: flex; flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.meta-grid li:nth-child(odd) { padding-right: 16px; }
.meta-grid li:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.meta-grid span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink-3); margin-bottom: 6px;
}
.meta-grid strong { font-weight: 500; color: var(--ink); }

.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-2);
  background: #000;
}
.frame--16x9 { aspect-ratio: 16 / 9; }
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
  filter: brightness(0.85) saturate(1.05);
}
.frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.frame:hover img { transform: scale(1.04); filter: brightness(1) saturate(1.1); }
.frame__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(201, 165, 92, .6);
  animation: pulse 2.4s ease-out infinite;
  transition: transform .3s var(--ease);
  z-index: 2;
}
.frame__play svg { margin-left: 4px; }
.frame:hover .frame__play { transform: translate(-50%, -50%) scale(1.08); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 165, 92, .55); }
  70%  { box-shadow: 0 0 0 22px rgba(201, 165, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 165, 92, 0); }
}
figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ===== Quote / Awards ===== */
.section--quote {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,165,92,.08) 0%, transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.quote { max-width: 1000px; margin: 0 auto; }
.quote__text {
  font-weight: 300;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 8px 0 28px;
}
.quote__mark {
  font-family: 'Bebas Neue', serif;
  color: var(--gold);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.18em;
  margin-right: 4px;
}
.quote__mark--end { margin-left: 4px; margin-right: 0; }
.quote__attr {
  color: var(--ink-3);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.quote__attr strong { color: var(--ink); font-weight: 600; }

/* ===== Team ===== */
.section--team { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 24px;
  justify-content: center;
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: minmax(0, 380px); }
}

.card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-1);
}

.team-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.team-card__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.6) 100%);
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
  filter: grayscale(0.18) brightness(.92);
}
.team-card:hover .team-card__photo img {
  transform: scale(1.05);
  filter: grayscale(0) brightness(1);
}
.team-card__body { padding: 24px 24px 28px; }
.team-card__role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 10px;
  font-weight: 500;
}
.team-card__name {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.team-card__bio {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* ===== Stack ===== */
.section--stack {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stack-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stack-grid { grid-template-columns: 1fr; } }

.stack-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s var(--ease);
}
.stack-item:nth-child(3n) { border-right: none; }
@media (max-width: 900px) {
  .stack-item { border-right: 1px solid var(--line) !important; }
  .stack-item:nth-child(2n) { border-right: none !important; }
}
@media (max-width: 540px) {
  .stack-item { border-right: none !important; }
}
.stack-item:hover { background: rgba(201, 165, 92, 0.04); }
.stack-item__link {
  display: block;
  padding: 32px 28px;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: color .25s var(--ease);
}
.stack-item__link:hover { color: var(--ink); }
.stack-item__link:hover h3 { color: var(--gold); }
.stack-item__arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  color: var(--gold);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.stack-item__link:hover .stack-item__arrow {
  opacity: 1;
  transform: translate(0, 0);
}
.stack-item__num {
  display: inline-block;
  font-family: 'Bebas Neue', serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 10px;
}
.stack-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.stack-item p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
}

/* ===== CTA ===== */
.section--cta {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,165,92,.1) 0%, transparent 60%),
    var(--bg);
  text-align: center;
}
.cta { max-width: 820px; margin: 0 auto; }
.cta__title { margin-bottom: 20px; }
.cta__sub {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.cta__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: #050507;
  border-top: 1px solid var(--line);
  padding: 36px 0;
  font-size: 13px;
  color: var(--ink-3);
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer__brand { display: flex; align-items: center; gap: 18px; color: #fff; }
.footer__brand .brandmark { height: 22px; width: auto; opacity: .92; }
.footer__brand p { margin: 0; }
.footer__meta { display: flex; gap: 24px; align-items: center; }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__brand { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0;
  background: rgba(4, 4, 6, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal__frame {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.modal__frame iframe {
  width: 100%; height: 100%; border: 0;
}
.modal__close {
  position: absolute;
  top: 24px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.modal__close:hover { background: var(--gold); color: #000; transform: rotate(90deg); }

/* ===== Hero meta link ===== */
.hero__meta-item--link {
  cursor: pointer;
  transition: color .2s var(--ease);
}
.hero__meta-item--link:hover { color: var(--gold); }

/* ===== Press strip ===== */
.section--press {
  padding: 56px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.press .eyebrow { margin-bottom: 18px; }
.press__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  transition: border-color .3s var(--ease), color .3s var(--ease),
              transform .3s var(--ease), background .3s var(--ease);
}
.press__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(201,165,92,0.06), rgba(201,165,92,0.02));
}
.press__source {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}
.press__divider {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
}
.press__headline {
  font-style: italic;
  color: var(--ink-2);
}
.press__link:hover .press__headline { color: var(--gold); }
.press__arrow { color: var(--gold); font-size: 18px; line-height: 1; }
@media (max-width: 720px) {
  .press__link {
    flex-direction: column;
    gap: 8px;
    padding: 18px 22px;
    border-radius: 14px;
  }
  .press__divider { display: none; }
}

/* ===== Team-card link ===== */
.team-card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .2s var(--ease);
}
.team-card__link:hover { color: var(--gold-2); border-bottom-color: var(--gold); }

/* ===== Cast / Inspirations ===== */
.section--cast {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.cast-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cast-item {
  padding: 32px 22px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.cast-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.cast-item__num {
  display: block;
  font-family: 'Bebas Neue', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  opacity: .8;
}
.cast-item__name {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 720px) {
  .cast-grid { grid-template-columns: repeat(2, 1fr); }
}

