/* ================================
   SET LIFE ENTERTAINMENT — brand styles
   Black / crimson / gold editorial magazine look
================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root{
  --black: #0a0a0a;
  --black-2: #131313;
  --black-3: #1c1c1c;
  --off-white: #f4f1ea;
  --white: #ffffff;
  --red: #d81f27;
  --red-dark: #9c1017;
  --gold: #d9a441;
  --gray: #8a8a86;
  --line: #2a2a2a;
  --max-w: 1240px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

/* Kill the browser-default blue focus ring everywhere — gold instead, on brand */
a, button, input, select, textarea{ outline-color: var(--gold); }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: none;
}

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.headline, .display{
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}

.eyebrow{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
}

.accent-red{ color: var(--red); }
.accent-gold{ color: var(--gold); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: 15px;
  text-transform: uppercase;
  border: 2px solid var(--off-white);
  color: var(--off-white);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover{ background: var(--off-white); color: var(--black); }

.btn-primary{
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-primary:hover{ background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-gold{
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold:hover{ background: var(--gold); color: var(--black); }

/* ---------- Top bar / marquee ---------- */
.marquee{
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--black);
}
.marquee-track{
  display: inline-block;
  padding: 7px 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  font-size: 13px;
  animation: scroll-left 32s linear infinite;
}
.marquee-track span{ margin: 0 28px; }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Top nav (no bar chrome, no logo) ---------- */
.top-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 26px 24px;
  position: relative;
  z-index: 5;
}
.top-nav a{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  transition: color 0.25s ease, transform 0.15s ease;
}
/* Animated underline that sweeps in on hover/focus, not just a color swap */
.top-nav a::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, background 0.2s ease;
}
.top-nav a:hover, .top-nav a:focus-visible{ color: var(--gold); }
.top-nav a:hover::after, .top-nav a:focus-visible::after{ transform: scaleX(1); }
.top-nav a.active{ color: var(--red); }
.top-nav a.active::after{ background: var(--red); transform: scaleX(1); }
/* Click "press" animation — a quick pop, separate from the color change */
.top-nav a:active{
  transform: scale(0.9);
  color: var(--red);
}
.top-nav a.nav-pulse{ animation: nav-pulse 0.35s ease; }
@keyframes nav-pulse{
  0%{ transform: scale(1); }
  40%{ transform: scale(0.88); }
  100%{ transform: scale(1); }
}
/* Overlaid directly on the hero video's black space instead of a bar.
   pointer-events:none on the (full-width) flex container keeps its empty
   gap area from swallowing clicks meant for the video controls; the
   links themselves opt back in so they stay clickable. */
.top-nav--overlay{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  pointer-events: none;
}
.top-nav--overlay a{
  text-shadow: 0 2px 10px rgba(0,0,0,0.85);
  pointer-events: auto;
}

/* ---------- Hero (full-bleed video) ---------- */
.hero-video{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-video video,
.hero-video .hero-poster-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Light gradient at the bottom only — no darkening at the top or sides */
.hero-video::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 62%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}
/* Intro copy now sits in normal flow directly under the video, not overlaid on it */
.hero-intro{
  padding: 76px 24px 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-intro .eyebrow{ font-size: 14px; margin-bottom: 10px; }
.hero-intro .display{
  font-size: clamp(40px, 8vw, 108px);
  color: var(--off-white);
}
.hero-sub{
  max-width: 560px;
  color: var(--gray);
  font-size: 18px;
  margin: 22px auto 34px;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll{
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: rgba(244,241,234,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .bar{
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(244,241,234,0.8), transparent);
  animation: scroll-hint 1.8s ease-in-out infinite;
}

.hero-controls{
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 6;
  display: flex;
  gap: 8px;
}
.hero-ctrl-btn{
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,234,0.45);
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(3px);
  color: var(--off-white);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  padding: 0;
}
.hero-ctrl-btn:hover{ border-color: var(--red); background: rgba(10,10,10,0.75); }

/* Mute button toggles between two icons; restart/pause are single-icon action buttons */
.hero-ctrl-btn .icon-unmuted{ display: none; }
#heroMuteToggle[aria-pressed="true"] .icon-muted{ display: none; }
#heroMuteToggle[aria-pressed="true"] .icon-unmuted{ display: inline; }
@keyframes scroll-hint{
  0%{ opacity: 0.2; }
  50%{ opacity: 1; }
  100%{ opacity: 0.2; }
}

/* ---------- Section headers ---------- */
.section{ padding: 72px 0; border-bottom: 1px solid var(--line); }
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-head h2{
  font-size: clamp(30px, 4vw, 46px);
}
.section-head p{ color: var(--gray); max-width: 420px; margin: 10px 0 0; }

/* ---------- Cover grid ---------- */
.cover-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cover-card{
  background: var(--black-2);
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.cover-card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(216,31,39,0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cover-card:hover{ transform: translateY(-6px); border-color: var(--red); }
.cover-card:hover::before{ opacity: 1; }
.cover-card .issue-no{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.cover-card .card-title{
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--gray);
  text-transform: uppercase;
}
.cover-card .card-name{
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--off-white);
}
.cover-card .card-name em{
  font-style: normal;
  color: var(--red);
  display: block;
}
.cover-card .card-role{
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

/* ---------- Cover card with real cover image ---------- */
.cover-card.has-img{
  padding: 0;
  justify-content: flex-end;
}
.cover-card.has-img img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.cover-card.has-img:hover img{ transform: scale(1.05); }
.cover-card.has-img::before{
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.15) 45%, rgba(10,10,10,0.96) 100%);
  opacity: 1;
  z-index: 1;
}
.cover-card.has-img .card-body{
  position: relative;
  z-index: 2;
  padding: 16px;
  width: 100%;
}
.cover-card.has-img .issue-no{
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(10,10,10,0.55);
  padding: 4px 9px;
  backdrop-filter: blur(2px);
}

/* ---------- Feature strip / stats ---------- */
.stat-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat{
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child{ border-right: none; }
.stat .num{
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--red);
}
.stat .label{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
}

/* ---------- Two column content ---------- */
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col .panel{
  aspect-ratio: 4/5;
  background: var(--black-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.two-col .panel .clap-big{
  font-family: 'Anton', sans-serif;
  font-size: 120px;
  color: var(--line);
}
.two-col .panel img{
  width: 60%;
  max-width: 320px;
}
.two-col .panel.panel-cover{ padding: 0; overflow: hidden; }
.two-col .panel.panel-cover img{
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}
.two-col h3{ font-size: clamp(28px,3.4vw,40px); margin-bottom: 18px; }
.two-col p{ color: var(--gray); margin-bottom: 16px; }

/* ---------- Categories pills ---------- */
.pill-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.pill{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--gray);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}
.pill:hover, .pill.active{ border-color: var(--red); color: var(--white); background: rgba(216,31,39,0.12); }

/* ---------- Testimonial / quote ---------- */
.quote-block{
  text-align: center;
  padding: 90px 0;
}
.quote-block blockquote{
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 20px;
}
.quote-block cite{
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-size: 14px;
}

/* ---------- Forms ---------- */
.form-wrap{ max-width: 640px; }
.field{ margin-bottom: 22px; }
.field label{
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width: 100%;
  background: var(--black-2);
  border: 1px solid var(--line);
  color: var(--off-white);
  padding: 14px 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--red);
}
.field textarea{ resize: vertical; min-height: 130px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- Contact grid ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info .info-item{
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-item .eyebrow{ display:block; margin-bottom: 6px; }
.contact-info .info-item a, .contact-info .info-item span{ font-size: 16px; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--black-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-grid h4{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.footer-grid ul{ list-style: none; padding: 0; margin: 0; }
.footer-grid li{ margin-bottom: 10px; }
.footer-grid a{ color: var(--gray); font-size: 14px; }
.footer-grid a:hover{ color: var(--off-white); }
.footer-brand .logo{ display: flex; align-items: center; gap: 10px; }
.footer-brand .logo img{ height: 26px; width: auto; display: block; }
.footer-brand p{ color: var(--gray); font-size: 14px; max-width: 280px; margin-top: 14px; }
.social-row{ display: flex; gap: 12px; margin-top: 18px; }
.social-row a{
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.social-row a:hover{ border-color: var(--red); color: var(--red); }
.footer-bottom{
  border-top: 1px solid rgba(217,164,65,0.3);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .powered-by{ color: var(--gold); }

/* ---------- Page header (interior pages) ---------- */
.page-header{
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-header .display{ font-size: clamp(40px,6vw,72px); }
.page-header p{ color: var(--gray); max-width: 560px; margin-top: 14px; }

/* ---------- Filter bar (issues page) ---------- */
.filter-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.search-box{
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--black-2);
  padding: 10px 14px;
  min-width: 260px;
}
.search-box input{
  background: transparent;
  border: none;
  color: var(--off-white);
  width: 100%;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
}
.search-box input:focus{ outline: none; }

/* ---------- Values grid (about) ---------- */
.value-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card{
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--black-2);
}
.value-card .num{
  font-family: 'Anton', sans-serif;
  color: var(--line);
  font-size: 36px;
  margin-bottom: 14px;
}
.value-card h4{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 10px;
}
.value-card p{ color: var(--gray); font-size: 14px; margin: 0; }

/* ---------- Timeline (about) ---------- */
.timeline{ border-left: 2px solid var(--line); padding-left: 32px; }
.tl-item{ margin-bottom: 36px; position: relative; }
.tl-item::before{
  content: '';
  position: absolute;
  left: -38px; top: 4px;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
}
.tl-item .eyebrow{ display: block; margin-bottom: 6px; }
.tl-item h4{ font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 22px; margin: 0 0 8px; }
.tl-item p{ color: var(--gray); margin: 0; max-width: 520px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  padding: 64px 0;
  text-align: center;
}
.cta-band h2{
  font-size: clamp(30px, 5vw, 56px);
  color: var(--white);
}
.cta-band p{ color: rgba(255,255,255,0.85); max-width: 520px; margin: 14px auto 30px; }
.cta-band .btn{ border-color: var(--white); color: var(--white); }
.cta-band .btn:hover{ background: var(--white); color: var(--red); }

/* ---------- Utility ---------- */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .two-col, .contact-grid{ grid-template-columns: 1fr; }
  .hero-video{ height: 92vh; }
  .cover-grid{ grid-template-columns: repeat(2, 1fr); }
  .stat-strip{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .value-grid{ grid-template-columns: 1fr; }
  .top-nav{ gap: 18px; padding: 18px 16px; }
  .top-nav a{ font-size: 12px; }
  .hero-controls{ bottom: 16px; right: 16px; }
}
@media (max-width: 600px){
  .cover-grid{ grid-template-columns: 1fr 1fr; }
  .field-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
