/* ============================================================
   MALKANT INDIA — Global Stylesheet
   Theme: cinematic dark / gold-led (red reserved for errors)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Warm near-blacks so the gold reads as metal, not neon */
  --ink: #0A0805;
  --panel: #14110B;
  --panel-2: #1D1810;
  --line: #322A1B;

  /* Gold scale — the lead colour */
  --gold: #E7B531;
  --gold-soft: #F7D57A;
  --gold-deep: #B8860B;
  --gold-ink: #1A1200;

  /* Red is now functional only: errors and required markers */
  --alert: #D6202F;
  --alert-dark: #9E1420;

  --text: #F4EFE3;
  --muted: #A6987C;

  --radius: 10px;
  --radius-lg: 16px;
  --shell: 1240px;
  --header-h: 74px;

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --shadow: 0 18px 50px rgba(0, 0, 0, .6);
  --glow: 0 6px 20px rgba(231, 181, 49, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

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

/* ---------- Layout helpers ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: .01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.section-title span { color: var(--gold-deep); }

.link-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.link-more:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(150deg, var(--gold-soft), var(--gold));
  color: var(--gold-ink);
  box-shadow: var(--glow);
}
.btn--primary:hover { background: linear-gradient(150deg, var(--gold), var(--gold-deep)); }

/* Kept as an alias so existing markup still works */
.btn--gold { background: var(--gold); color: var(--gold-ink); }
.btn--gold:hover { background: var(--gold-deep); }

.btn--ghost {
  border-color: var(--gold-deep);
  background: rgba(231, 181, 49, .06);
  color: var(--gold-soft);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(231, 181, 49, .14); color: var(--gold-soft); }

.btn--block { width: 100%; }
.btn--lg { padding: 15px 32px; font-size: 15px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  height: var(--header-h);
  z-index: 90;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 8, 12, .92), rgba(8, 8, 12, 0));
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(10, 10, 15, .96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand { display: flex; align-items: center; gap: 11px; }

/* Real logo file. Height is fixed; width scales with the artwork. */
.brand-logo {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

/* Shown only if the logo file fails to load. */
.brand-fallback { display: none; align-items: center; gap: 11px; }
.brand-logo.is-missing { display: none; }
.brand-logo.is-missing + .brand-fallback { display: flex; }

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--gold-soft), var(--gold-deep));
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-ink);
  box-shadow: var(--glow);
}

.brand-text { line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: .3em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }

.nav-list a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #D3D3DE;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-list a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav-list a.is-active { color: var(--gold); }
.nav-account-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 10px 18px; font-size: 13px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { content: ""; position: absolute; top: -6px; }
.nav-toggle span::after { content: ""; position: absolute; top: 6px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO — cinematic banner (single fixed message over a
   crossfading, slow-zooming background, à la IIFFCA)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }

.slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.slide.is-active { opacity: 1; }

.slide::before {
  content: "";
  position: absolute;
  top: -2%; right: -2%; bottom: -2%; left: -2%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 9s linear;
}
.slide.is-active::before { transform: scale(1); }

.slide-1::before { background-image: url("../images/banner-01.jpg"); }
.slide-2::before { background-image: url("../images/banner-02.jpg"); }
.slide-3::before { background-image: url("../images/banner-03.jpg"); }

.hero-veil {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  background:
    radial-gradient(720px 540px at 50% 40%, rgba(10, 8, 5, .5) 0%, rgba(10, 8, 5, .15) 62%, transparent 100%),
    linear-gradient(180deg,
      rgba(10, 8, 5, .82) 0%,
      rgba(10, 8, 5, .28) 22%,
      rgba(10, 8, 5, .3) 58%,
      rgba(10, 8, 5, .6) 84%,
      var(--ink) 100%);
}

.hero-grain {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 2;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding: calc(var(--header-h) + 20px) 22px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(20, 17, 11, .55);
  border: 1px solid rgba(231, 181, 49, .35);
  box-shadow: 0 0 0 1px rgba(231, 181, 49, .08), 0 14px 40px rgba(0, 0, 0, .5), 0 0 46px rgba(231, 181, 49, .18);
  backdrop-filter: blur(6px);
}
.hero-logo-img { height: 44px; max-width: 60px; }
.hero-logo-img.is-missing { display: none; }
.hero-logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold-soft);
}
.hero-logo-img.is-missing + .hero-logo-fallback { display: block; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(231, 181, 49, .4);
  border-radius: 999px;
  background: rgba(231, 181, 49, .1);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 92px);
  line-height: .96;
  letter-spacing: .01em;
  color: var(--text);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
  margin-bottom: 10px;
}
.hero-title span { color: var(--gold-soft); }

.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: .06em;
  color: #D8CBAE;
  margin-bottom: 14px;
}

.hero-desc {
  max-width: 480px;
  color: #C9BBA0;
  margin-bottom: 26px;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 34px;
}
.hero-chip {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
  font-weight: 600;
  color: #C9BBA0;
}

/* ---- Reel strip ---- */
.hero-reels { width: 100%; margin-bottom: 30px; }
.hero-reels-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.reel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 12px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
}
.reel-track::-webkit-scrollbar { height: 5px; }
.reel-track::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 999px; }

.reel-pill {
  flex: none;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 17, 11, .6);
  backdrop-filter: blur(6px);
  font-size: 12.5px;
  font-weight: 600;
  color: #E9DFC7;
  white-space: nowrap;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.reel-pill i {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 8px;
  font-style: normal;
}
.reel-pill:hover {
  border-color: var(--gold);
  background: rgba(231, 181, 49, .14);
  transform: translateY(-2px);
}

.hero-reels-hint {
  font-size: 11.5px;
  color: #8A7C60;
  margin-top: 2px;
}

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---- Scroll cue ---- */
.hero-scroll {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C9BBA0;
  opacity: .8;
  transition: opacity .2s var(--ease);
}
.hero-scroll:hover { opacity: 1; color: var(--gold-soft); }
.hero-scroll i {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, currentColor, transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll i::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* ---------- Ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 46px;
  padding: 13px 0;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ticker-track b { color: var(--gold); }
.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORY STRIP
   ============================================================ */
.cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.cat {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.cat:hover { transform: translateY(-4px); border-color: rgba(231, 181, 49, .55); }
.cat-icon { font-size: 24px; margin-bottom: 10px; }
.cat h3 { font-size: 15px; font-weight: 700; letter-spacing: .02em; }
.cat p { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   VIDEO GRID
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { color: var(--gold-soft); border-color: var(--gold-deep); }
.chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--gold-ink); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 20px;
}

.vcard {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.vcard:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 181, 49, .55);
  box-shadow: var(--shadow);
}
.vcard.is-hidden { display: none; }

.vcard-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vcard-frame iframe {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vcard-thumb {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.play-btn {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(8, 8, 12, .3);
  cursor: pointer;
  transition: background .25s var(--ease);
}
.play-btn:hover { background: rgba(8, 8, 12, .12); }
.play-btn i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 26px rgba(231, 181, 49, .45);
  transition: transform .25s var(--ease);
}
.play-btn:hover i { transform: scale(1.1); }
.play-btn svg { width: 20px; height: 20px; fill: var(--gold-ink); margin-left: 3px; }

.vcard-body { padding: 15px 16px 17px; }
.vcard-body h3 { font-size: 15px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.vcard-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
}
.vcard-meta .tag {
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(231, 181, 49, .14);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 10.5px;
}

.grid-footer { display: grid; place-items: center; margin-top: 34px; }

/* ============================================================
   AUDITION CALLOUT BAND
   ============================================================ */
.callout {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(231, 181, 49, .14), transparent 60%),
    var(--panel);
  overflow: hidden;
}
.callout-inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 34px;
  align-items: center;
  padding: 56px 0;
}
.callout h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.callout h2 span { color: var(--gold); }
.callout h2 { color: var(--gold-soft); }
.callout p { color: #C0C0CE; max-width: 560px; margin-bottom: 24px; }
.callout-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.stat-stack { display: grid; gap: 12px; }
.stat {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  padding: 14px 18px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
}
.stat span { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   PLANS
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 26px 22px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.plan:hover { transform: translateY(-5px); }
.plan.is-featured {
  border-color: var(--gold);
  background: linear-gradient(170deg, rgba(231, 181, 49, .13), var(--panel) 55%);
  box-shadow: var(--glow);
}
.plan-flag {
  position: absolute;
  top: -11px;
  left: 22px;
  padding: 4px 11px;
  border-radius: 999px;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold));
  color: var(--gold-ink);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plan h3 { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--gold-soft);
}
.plan-price small { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--muted); }
.plan ul { margin: 18px 0 22px; display: grid; gap: 9px; }
.plan li { font-size: 13.5px; color: #C6C6D4; display: flex; gap: 9px; }
.plan li::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.gateway {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  text-align: center;
}
.gateway h4 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.gateway-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.g-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 8px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.g-chip--brand {
  padding: 0 18px;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}
.g-chip--brand svg { display: block; height: 16px; width: auto; }
.g-chip--brand:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .35); }
.g-chip--text {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #C6C6D4;
}
.g-chip--text:hover { border-color: var(--gold-deep); color: var(--gold-soft); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #0C0A06;
  padding-top: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p, .footer-col li { font-size: 13.5px; color: var(--muted); margin-bottom: 9px; }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-col strong { color: var(--text); display: block; margin-bottom: 6px; }
.footer-brand { margin-bottom: 14px; }
.footer-brand .brand-logo { height: 46px; max-width: 200px; }

.socials { display: flex; gap: 9px; margin-top: 14px; }
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  transition: all .2s var(--ease);
}
.socials a svg { width: 16px; height: 16px; display: block; }
.socials a:hover {
  color: var(--brand, var(--gold));
  border-color: var(--brand, var(--gold));
  background: rgba(255, 255, 255, .07);
  transform: translateY(-2px);
}

.footer-bar {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold));
  color: var(--gold-ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all .3s var(--ease);
  z-index: 80;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* ============================================================
   AUTH / FORM PAGES
   ============================================================ */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 46px) 20px 60px;
  position: relative;
}
.auth-page::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(700px 420px at 15% 12%, rgba(231, 181, 49, .2), transparent 65%),
    radial-gradient(620px 400px at 88% 80%, rgba(184, 134, 11, .18), transparent 65%),
    url("../images/banner-03.jpg") center/cover;
  opacity: .5;
}
.auth-page::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, .88), rgba(10, 8, 5, .97));
}

.auth-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(20, 17, 11, .93);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 34px 32px 30px;
}
.auth-card--wide { max-width: 720px; }
.auth-card--form { max-width: 880px; }

.auth-head { text-align: center; margin-bottom: 24px; }
.auth-head .brand { justify-content: center; margin-bottom: 18px; }
.auth-head .brand-logo { height: 54px; max-width: 230px; }
.auth-head h1 {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 6px;
}
.auth-head p { font-size: 13.5px; color: var(--muted); }

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 22px 0;
}

/* ---------- Form controls ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.form-grid--single { grid-template-columns: 1fr; }
.field--full { grid-column: 1 / -1; }

.field { display: grid; gap: 7px; }

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #B4B4C4;
}
.field label .req { color: var(--alert); }

.control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.control::placeholder { color: #6C6C80; }
.control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(231, 181, 49, .07);
  box-shadow: 0 0 0 3px rgba(231, 181, 49, .13);
}
select.control { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, #8A8A9C 50%), linear-gradient(135deg, #8A8A9C 50%, transparent 50%); background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
select.control option { background: var(--panel-2); }
textarea.control { resize: vertical; min-height: 110px; }

.field.has-error .control { border-color: var(--alert); background: rgba(214, 32, 47, .08); box-shadow: none; }

.error-msg {
  font-size: 12px;
  color: #FF6B75;
  min-height: 0;
  display: block;
}
.field.has-error .error-msg { display: block; }

.hint { font-size: 11.5px; color: #7C7C90; }

.pass-wrap { position: relative; }
.pass-wrap .control { padding-right: 60px; }
.pass-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
}
.pass-toggle:hover { color: var(--gold); }

.meter { height: 4px; border-radius: 999px; background: var(--line); overflow: hidden; }
.meter i { display: block; height: 100%; width: 0; background: var(--gold); transition: width .3s var(--ease), background .3s var(--ease); }

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #C0C0CE;
  cursor: pointer;
}
.check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.check a { color: var(--gold); text-decoration: underline; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.form-row a { font-size: 13px; color: var(--gold); }
.form-row a:hover { text-decoration: underline; }

/* ---------- Captcha ---------- */
.captcha { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.captcha-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.captcha-code {
  min-width: 118px;
  padding: 11px 14px;
  border: 1px dashed #3E3E52;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #17130C, #17130C 6px, #1F1911 6px, #1F1911 12px);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .3em;
  color: var(--gold);
  text-align: center;
  user-select: none;
  text-decoration: line-through;
  text-decoration-color: rgba(184, 134, 11, .6);
}
.captcha-reload {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  font-size: 16px;
  transition: all .2s var(--ease);
}
.captcha-reload:hover { border-color: var(--gold); color: var(--gold); }
.captcha .field { flex: 1; min-width: 150px; }

/* ---------- Steps (audition) ---------- */
.steps {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}
.step {
  flex: 1;
  padding-top: 11px;
  border-top: 3px solid var(--line);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6C6C80;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.step.is-active { border-top-color: var(--gold); color: var(--gold-soft); }
.step.is-done { border-top-color: var(--gold-deep); color: var(--gold-deep); }
.step b { display: block; font-size: 10px; color: inherit; opacity: .7; }

.fieldset-block { border: 0; }
.fieldset-block + .fieldset-block { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.fieldset-block legend {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 0;
}

/* ---------- File drop ---------- */
.drop {
  border: 1.5px dashed #3A3A4C;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .025);
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.drop:hover, .drop.is-over { border-color: var(--gold); background: rgba(231, 181, 49, .07); }
.drop-icon { font-size: 26px; margin-bottom: 8px; }
.drop b { display: block; font-size: 14px; margin-bottom: 4px; }
.drop span { font-size: 12px; color: var(--muted); }
.drop input { display: none; }

.file-list { display: grid; gap: 8px; margin-top: 12px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .03);
  font-size: 13px;
}
.file-item span:first-child { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item small { color: var(--muted); }
.file-item button { border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 16px; }
.file-item button:hover { color: var(--alert); }

/* ---------- Audition form ---------- */
/* (.field--full is already defined with the form grid above) */

/* CheckBoxList renders input and label as siblings, so the pair is kept
   together with nowrap rather than made into flex items that wrap apart */
.audition-types { display: block; margin-top: 2px; }
.audition-types input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0 8px 0 0;
  accent-color: var(--gold);
  vertical-align: middle;
  cursor: pointer;
}
.audition-types label {
  display: inline-block;
  margin: 0 26px 10px 0;
  font-size: 14.5px;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
}
.audition-types input[type="checkbox"]:checked + label { color: var(--gold); font-weight: 600; }

/* the field label is uppercase and letterspaced - the total should not be */
.audition-total {
  margin-left: 6px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
}
.audition-total strong { color: var(--gold); font-size: 14.5px; }

/* file pickers sit in .control, so give the browser's button the house look */
input[type="file"].control { padding: 9px 12px; font-size: 13px; color: var(--muted); cursor: pointer; }
input[type="file"].control::-webkit-file-upload-button,
input[type="file"].control::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1A1A22;
  background: var(--gold);
  cursor: pointer;
}

.pay-box {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(214, 176, 96, .45);
  background: rgba(214, 176, 96, .07);
  font-size: 13.5px;
}
.pay-box strong { color: var(--gold); }

/* the native calendar button is dark on a dark control without this */
input[type="date"].control::-webkit-calendar-picker-indicator { filter: invert(0.75); cursor: pointer; }
input[type="date"].control { min-height: 46px; }

/* ---------- Notice ---------- */
.notice {
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  border-radius: var(--radius);
  border: 1px solid;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.notice.is-shown { display: flex; }
.notice--ok { border-color: rgba(45, 190, 120, .45); background: rgba(45, 190, 120, .1); color: #86E3B4; }
.notice--bad { border-color: rgba(214, 32, 47, .5); background: rgba(214, 32, 47, .1); color: #FF8F98; }

.auth-foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 22px;
}
.auth-foot a { color: var(--gold); font-weight: 700; }
.auth-foot a:hover { text-decoration: underline; }

.back-home {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.back-home:hover { color: var(--gold); }

.is-busy { opacity: .65; pointer-events: none; }

/* ============================================================
   WELCOME LETTER (post-signup)
   ============================================================ */
.letter-page {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 34px) 20px 60px;
}
.letter-page::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(640px 420px at 12% 8%, rgba(231, 181, 49, .14), transparent 65%),
    radial-gradient(560px 380px at 90% 85%, rgba(184, 134, 11, .1), transparent 65%);
  pointer-events: none;
}

.letter-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.letter-intro { text-align: center; margin-bottom: 26px; }
.letter-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(45, 190, 120, .4);
  border-radius: 999px;
  background: rgba(45, 190, 120, .1);
  color: #86E3B4;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.letter-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 34px);
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.letter-intro p { color: var(--muted); max-width: 480px; margin-inline: auto; }

/* ---- the letter itself: printable, light paper on a dark page ---- */
.letter-card {
  background: linear-gradient(180deg, #FBF7EC, #F3ECDA);
  color: #2B2419;
  border-radius: 16px;
  border: 1px solid rgba(231, 181, 49, .4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .5), 0 0 0 6px rgba(231, 181, 49, .06);
  overflow: hidden;
  margin-bottom: 28px;
}

.letter-head {
  background: linear-gradient(135deg, #17140C, #241B0A);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.letter-head-brand { display: flex; align-items: center; gap: 10px; }
.letter-head-brand img { height: 30px; width: auto; }
.letter-head-brand span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .03em;
  color: #F4EFE3;
}
.letter-head-brand em { font-style: normal; color: var(--gold-soft); }
.letter-head-ref {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 11.5px;
  color: #B9AE93;
}
.letter-head-ref b { color: var(--gold-soft); font-weight: 700; }

.letter-body { padding: 30px 34px 38px; }

.letter-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E3D9BC;
  margin-bottom: 28px;
  font-size: 13.5px;
}
.letter-table td {
  padding: 13px 16px;
  border: 1px solid #E9E0C8;
  vertical-align: middle;
}
.letter-table td.label {
  width: 22%;
  background: #F3ECD8;
  color: #7A5B23;
  font-weight: 700;
  white-space: nowrap;
}
.letter-table tr:nth-child(even) td.label { background: #EEE5CB; }
.letter-table td.value {
  width: 28%;
  background: #FFFFFF;
  color: #2B2419;
  font-weight: 600;
}

.letter-body p { color: #22364D; margin-bottom: 14px; font-size: 14.5px; }
.letter-body strong { color: #16233A; }
.letter-greet { font-weight: 700; color: #16233A !important; font-size: 15.5px !important; }
.letter-signoff { margin-top: 22px !important; margin-bottom: 4px !important; }
.letter-stamp {
  font-family: var(--font-display);
  font-size: 17px;
  color: #7A5B23 !important;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.letter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.letter-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}
.letter-note a { color: var(--gold-soft); }

@media (max-width: 620px) {
  .letter-body { padding: 22px 18px 28px; }
  .letter-table, .letter-table tbody, .letter-table tr, .letter-table td { display: block; width: 100%; }
  .letter-table td.label, .letter-table td.value { width: 100%; }
  .letter-table td.label { border-bottom: 0; padding-bottom: 6px; }
  .letter-table td.value { border-top: 0; padding-top: 6px; margin-bottom: 4px; }
  .letter-actions { flex-direction: column; }
  .letter-actions .btn { width: 100%; }
}

@media print {
  .site-header, .to-top, .letter-intro, .letter-actions, .letter-note, .letter-page::before { display: none !important; }
  .letter-page { padding: 0; background: #fff; min-height: 0; }
  .letter-card { box-shadow: none; border: 0; border-radius: 0; }
  body { background: #fff; }
}

/* ============================================================
   404 / ERROR PAGE
   ============================================================ */
.error-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 40px) 20px 60px;
  overflow: hidden;
}
.error-page::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(700px 460px at 50% 30%, rgba(231, 181, 49, .16), transparent 68%),
    url("../images/banner-02.jpg") center/cover;
  opacity: .4;
}
.error-page::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, .82), rgba(10, 8, 5, .95) 60%, var(--ink));
}

.error-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 150px);
  line-height: .9;
  letter-spacing: .02em;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px rgba(231, 181, 49, .2);
  margin-bottom: 6px;
}

.error-title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.6vw, 26px);
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

.error-text {
  color: var(--muted);
  max-width: 420px;
  margin-inline: auto;
  margin-bottom: 28px;
}

.error-search {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 26px;
}
.error-search .control { flex: 1; }
.error-search .btn { flex: none; }

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}
.error-links a { color: #C9BBA0; }
.error-links a:hover { color: var(--gold-soft); }
.error-links span { color: var(--line); }

@media (max-width: 620px) {
  .error-search { flex-direction: column; }
  .error-actions { flex-direction: column; width: 100%; }
  .error-actions .btn { width: 100%; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .callout-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h); right: 0; left: 0;
    background: rgba(10, 10, 15, .99);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { padding: 13px 12px; }
  .nav-account-mobile {
    display: block;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav-account-mobile a { color: var(--gold-soft); font-weight: 700; }
  .header-actions .btn--ghost { display: none; }
  .header-inner { gap: 12px; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 620px) {
  .section { padding: 46px 0; }
  .brand-logo { height: 34px; max-width: 140px; }
  .auth-head .brand-logo { height: 46px; }
  .hero-content { padding: calc(var(--header-h) + 26px) 18px 40px; }
  .hero-logo { width: 60px; height: 60px; margin-bottom: 16px; }
  .hero-logo-img { height: 32px; max-width: 44px; }
  .hero-desc { font-size: 13.5px; margin-bottom: 20px; }
  .hero-meta-row { margin-bottom: 26px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 340px; }
  .hero-actions .btn { flex: none; width: 100%; }
  .reel-track { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .auth-card { padding: 26px 20px 24px; }
  .steps { flex-wrap: wrap; }
  .step { flex: 1 1 40%; }
}

/* Short viewports (landscape phones, small laptops in a split window) —
   nothing here needs to force a height any more since the hero now sizes
   to its own content; this just trims some breathing room so the banner
   doesn't feel over-padded when there isn't much vertical space. */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content { padding-top: calc(var(--header-h) + 16px); padding-bottom: 28px; }
  .hero-logo { width: 46px; height: 46px; margin-bottom: 10px; }
  .hero-logo-img { height: 26px; max-width: 36px; }
  .hero-desc { display: none; }
  .hero-meta-row { display: none; }
  .hero-scroll { display: none; }
}

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