/* ==========================================================================
   Home
   ========================================================================== */

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6.5rem) clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(90% 70% at 15% 0%, rgba(255,46,107,.20), transparent 60%),
    radial-gradient(80% 70% at 90% 20%, rgba(77,140,255,.18), transparent 62%),
    var(--ink);
}

/* Disco lights — the one moving element in this viewport. */
.hero__lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pulse {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: .5;
  animation: pulse 7s ease-in-out infinite;
}
.pulse--1 { width: 340px; height: 340px; background: var(--hot);      top: -6%;  left: 4%; }
.pulse--2 { width: 280px; height: 280px; background: var(--electric); top: 44%;  right: 6%;  animation-delay: -2.4s; }
.pulse--3 { width: 220px; height: 220px; background: var(--amber);    bottom: 4%; left: 38%; animation-delay: -4.8s; }

@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: .34; }
  50%      { transform: scale(1.22); opacity: .62; }
}

.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__copy .kicker { margin-bottom: 1rem; }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: normal;
  color: var(--acid);
  /* Underline that reads like a skate-mark across the floor */
  background: linear-gradient(var(--hot), var(--hot)) bottom left / 100% .1em no-repeat;
  padding-bottom: .06em;
}

.hero__lede {
  max-width: 46ch;
  color: var(--on-dark-mute);
  font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem);
  margin-bottom: 2rem;
}

/* Status card — hard facts, deliberately still. */
.status {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-left: 4px solid var(--acid);
  border-radius: var(--r);
  padding: 1.15rem 1.35rem;
  margin-bottom: 2rem;
  max-width: 30rem;
}
.status__row { display: flex; align-items: center; gap: .65rem; }
.status__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(232,255,61,.18);
  flex: 0 0 auto;
}
.status__now { font-size: 1.1rem; }
.status__now strong { font-family: var(--display); font-weight: 800; }
.status__detail {
  margin-top: .35rem;
  padding-left: 1.4rem;
  color: var(--on-dark-mute);
  font-size: .95rem;
}
.status__detail strong { color: var(--on-dark); }

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-line);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.9);
}

@media (max-width: 900px) {
  .hero__in { grid-template-columns: 1fr; }
  /* Photo leads on a phone, but stays capped so the headline and tonight's
     hours still land in the first screen. */
  .hero__media { aspect-ratio: 16 / 9; max-height: 230px; order: -1; }
}
@media (max-width: 620px) {
  .hero { padding-block: 1.5rem 2.5rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero__lede { font-size: 1rem; margin-bottom: 1.35rem; }
  .status { margin-bottom: 1.35rem; }
}

/* --- Quick links ---------------------------------------------------------- */
.quick__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1.1rem;
}
.ql {
  --ql-accent: var(--hot);
  display: grid;
  gap: .3rem;
  height: 100%;
  padding: 1.6rem 1.4rem 1.5rem;
  background: #fff;
  border: 1px solid var(--cream-line);
  border-bottom: 5px solid var(--ql-accent);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--on-light);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ql:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -20px rgba(21,15,30,.5);
}
.ql--hot    { --ql-accent: var(--hot); }
.ql--amber  { --ql-accent: var(--amber); }
.ql--elec   { --ql-accent: var(--electric); }
.ql--orchid { --ql-accent: var(--orchid); }

.ql__icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ql-accent);
  margin-bottom: .55rem;
}
.ql__label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.015em;
}
.ql__sub { color: var(--on-light-mute); font-size: .92rem; line-height: 1.45; }

/* --- This week ------------------------------------------------------------ */
.week { position: relative; }
.week__wave {
  position: absolute;
  top: -1px; left: 0;
  color: var(--ink);
  transform: rotate(180deg);
}

.week__more { margin-top: 2.5rem; text-align: center; }

/* --- Trust ---------------------------------------------------------------- */
.trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 840px) { .trust__grid { grid-template-columns: 1fr; } }

.trust h2 { margin: .9rem 0 1.5rem; }
.trust__list { display: grid; gap: .9rem; margin-bottom: 2rem; max-width: 52ch; }
.trust__list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--on-dark-mute);
}
.trust__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--acid);
}
.trust__list strong { color: var(--on-dark); font-weight: 700; }

.trust__awards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* The badge art is square with stars that break past the circle, so it gets a
   plain card rather than a round crop that would cut them off. */
.award {
  width: clamp(140px, 42%, 190px);
  background: #fff;
  border-radius: var(--r);
  padding: .9rem;
}

/* --- Handoff cards -------------------------------------------------------- */
.handoff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.25rem;
}
.handoff__card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: .85rem;
  padding: 1.75rem 1.6rem;
}
.handoff__card p { color: var(--on-dark-mute); font-size: .95rem; flex: 1; }


/* --- Social band ----------------------------------------------------------
   Full-bleed, three panels butted together with a hard rule between them.
   Each fill carries its own text colour, chosen for AA against that fill.
   -------------------------------------------------------------------------- */
.social { padding-block: clamp(3.5rem, 7vw, 6rem) 0; }

.social__intro { margin-bottom: clamp(2rem, 4vw, 3rem); }
.social__intro h2 { margin: .9rem 0 .9rem; max-width: 18ch; }
.social__intro p { max-width: 52ch; color: var(--on-dark-mute); }

.social__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.social__cell + .social__cell { border-left: 3px solid var(--ink); }

.social__cell a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  height: 100%;
  padding: clamp(1.75rem, 3.2vw, 2.75rem) clamp(1.25rem, 2.4vw, 2rem);
  text-decoration: none;
  transition: filter .2s var(--ease);
}
.social__cell a:hover { filter: brightness(1.07); }
.social__cell a:focus-visible { outline-offset: -6px; }

.social__cell--tiktok    { background: var(--acid);      color: var(--on-light); }
.social__cell--instagram { background: var(--hot-deep);  color: #fff; }
.social__cell--facebook  { background: #2D6BE0;          color: #fff; }

.social__icon svg { width: 34px; height: 34px; margin-bottom: .5rem; }

.social__net {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  letter-spacing: -.02em;
  line-height: 1;
}
.social__handle {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  opacity: .85;
}
.social__line {
  margin-top: .5rem;
  font-size: .95rem;
  line-height: 1.45;
  opacity: .92;
  max-width: 30ch;
}
.social__go {
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
}
.social__go em { font-style: normal; display: inline-block; transition: transform .2s var(--ease); }
.social__cell a:hover .social__go em { transform: translateX(5px); }

@media (max-width: 760px) {
  .social__row { grid-template-columns: minmax(0, 1fr); }
  .social__cell + .social__cell { border-left: 0; border-top: 3px solid var(--ink); }
  .social__go { padding-top: .9rem; }
}
