/*
 * Social Club campaign layer.
 * This intentionally has its own filename so returning mobile visitors receive
 * the latest campaign layout even when the main site stylesheet is cached.
 */

/* Homepage announcement */
.club-announcement {
  position: relative;
  z-index: 8;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

.club-announcement::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: 10%;
  top: -76px;
  border: 20px solid rgba(33, 27, 46, .1);
  border-radius: 50%;
  pointer-events: none;
}

.club-announcement__inner {
  position: relative;
  z-index: 1;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.club-announcement__badge {
  padding: 7px 10px 6px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--brand);
  font: 800 11px/1 var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-3deg);
}

.club-announcement__message {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.club-announcement__message strong {
  font: 800 17px/1.2 var(--font-display);
}

.club-announcement__message span {
  font-size: 12px;
  font-weight: 700;
}

.club-announcement__link {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .club-announcement__inner:hover .club-announcement__link span {
    display: inline-block;
    transform: translateX(3px);
  }
}

/* Homepage feature */
.social-club-preview {
  position: relative;
  overflow: hidden;
  background: #314fbe;
  color: var(--cream);
}

.social-club-preview::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -210px;
  border: 70px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.social-club-preview__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.social-club-preview__copy { position: relative; z-index: 1; }
.social-club-preview__eyebrow { color: var(--cream); }
.social-club-preview__copy .section__title { max-width: 13ch; }
.social-club-preview__lead { max-width: 52ch; margin: 22px 0 0; color: #e2e6ff; font-size: 18px; line-height: 1.65; }
.social-club-preview__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.social-club-preview__note { max-width: 26ch; color: #fff6e6; font-size: 13px; font-weight: 700; line-height: 1.45; }
.social-club-preview__details { position: relative; display: grid; gap: 15px; }

.social-night {
  display: grid;
  gap: 5px;
  padding: 24px 26px;
  border: 3px solid var(--ink);
  border-radius: 24px;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1.2deg);
}

.social-night--friday { background: var(--yellow); }
.social-night--saturday { margin-left: 24px; background: var(--teal); transform: rotate(1deg); }
.social-night__day { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.social-night strong { font-family: var(--font-display); font-size: 30px; line-height: 1; }
.social-night span:last-child { font-size: 14px; font-weight: 650; }
.social-club-preview__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.social-club-preview__facts span { padding: 10px 8px; color: #fff; font-size: 12px; text-align: center; }
.social-club-preview__facts strong { display: block; color: var(--white); font-size: 13px; }

/* Carry the Social Club blue into the next section's curved divider. The
   original cream fill read as an accidental blank strip on small screens. */
.social-club-preview + #who .arch-crown path { fill: var(--blue); }

/* Social Club hero poster */
.social-club-page .club-hero {
  overflow: hidden;
  padding: clamp(44px, 6vw, 82px) 0 clamp(60px, 8vw, 106px);
}

.social-club-page .club-hero__grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.social-club-page .club-hero__title {
  max-width: 10ch;
  margin-top: 25px;
  font: 800 clamp(52px, 7vw, 88px)/.94 var(--font-display);
  letter-spacing: -.045em;
}

.social-club-page .club-hero__title mark {
  display: inline-block;
  padding: 0 .1em .05em;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-1deg);
}

.social-club-page .club-hero .lead { max-width: 48ch; margin-top: 25px; }
.social-club-page .club-hero__micro { margin: 16px 0 0; color: var(--muted); font-size: 13px; font-weight: 700; }

.club-showcase {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: 13px 13px 0 var(--brand);
  transform: rotate(.6deg);
  isolation: isolate;
}

.club-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  top: -160px;
  right: -95px;
  border-radius: 50%;
  background: var(--brand);
}

.club-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  bottom: -92px;
  left: -74px;
  border: 28px solid var(--teal);
  border-radius: 50%;
}

.club-showcase__ticker {
  position: absolute;
  z-index: 4;
  top: 19px;
  left: -3%;
  width: 106%;
  overflow: hidden;
  padding: 11px 0 10px;
  border-block: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font: 800 13px/1 var(--font-display);
  letter-spacing: .065em;
  white-space: nowrap;
  transform: rotate(-2.4deg);
  box-shadow: 0 5px 0 rgba(0, 0, 0, .18);
}

.club-showcase__ticker span { display: block; width: max-content; padding-left: clamp(28px, 5vw, 54px); }
.club-showcase__inside { position: relative; min-height: 540px; display: flex; flex-direction: column; padding: 82px clamp(24px, 4vw, 40px) 30px; }

.club-showcase__stamp {
  position: absolute;
  z-index: 3;
  top: 67px;
  right: 25px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--blue);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--cream);
  font: 800 12px/1.02 var(--font-display);
  text-align: center;
  transform: rotate(10deg);
}

.club-showcase__headline {
  position: relative;
  z-index: 1;
  display: grid;
  width: max-content;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.05em;
  transform: rotate(-1deg);
}

.club-showcase__headline small { font-size: clamp(27px, 3.4vw, 40px); letter-spacing: .02em; }
.club-showcase__headline strong { font-size: clamp(48px, 6vw, 72px); }
.club-passes { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 29px; }

.club-pass {
  position: relative;
  min-width: 0;
  padding: 19px 18px 16px;
  border: 3px solid var(--ink);
  border-radius: 17px;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--cream);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease;
}

.club-pass::before,
.club-pass::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 30px;
  background: var(--ink);
  transform: translateY(-50%);
}

.club-pass::before { left: -3px; border-radius: 0 20px 20px 0; }
.club-pass::after { right: -3px; border-radius: 20px 0 0 20px; }
.club-pass--friday { background: var(--yellow); transform: rotate(-2.4deg); }
.club-pass--saturday { background: var(--teal); transform: rotate(2.1deg) translateY(5px); }
.club-pass__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; padding-bottom: 13px; border-bottom: 2px dashed rgba(33, 27, 46, .45); }
.club-pass__top span { font: 800 clamp(30px, 4vw, 43px)/.8 var(--font-display); letter-spacing: -.045em; }
.club-pass__top b { padding: 6px 8px; border: 2px solid var(--ink); border-radius: 9px; background: var(--cream); font: 800 14px/1 var(--font-display); white-space: nowrap; }
.club-pass p { margin: 12px 0 0; overflow: hidden; font-size: 10px; font-weight: 800; letter-spacing: .035em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }

.club-showcase__tape {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 30px;
  padding: 10px 13px;
  border: 2px solid var(--cream);
  background: var(--brand);
  color: var(--ink);
  font: 800 10px/1 var(--font-display);
  letter-spacing: .08em;
  transform: rotate(-1.3deg);
}

.club-showcase__tape span::before { content: "✦"; margin-right: 7px; }
.club-showcase__footer { position: relative; z-index: 2; align-self: flex-start; margin: 21px 0 0; padding: 8px 12px; border: 2px solid var(--ink); border-radius: 999px; background: var(--cream); color: var(--ink); box-shadow: 3px 3px 0 var(--brand); font-size: 12px; font-weight: 800; }
.club-showcase__spark { position: absolute; z-index: 0; color: var(--yellow); font-style: normal; line-height: 1; }
.club-showcase__spark--one { right: 22px; bottom: 21px; font-size: 39px; transform: rotate(12deg); }
.club-showcase__spark--two { left: 18px; top: 145px; color: var(--teal); font-size: 21px; }

/* Numbered activity cards replace the old floating icon circles. */
.club-activity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: 0; margin: 0; list-style: none; }
.club-activity-list li { --activity: var(--brand); position: relative; min-height: 176px; overflow: hidden; display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; padding: 23px 21px 20px; border: 2px solid rgba(255, 255, 255, .2); border-radius: 18px; background: rgba(255, 255, 255, .065); box-shadow: inset 0 -6px 0 var(--activity); }
.club-activity-list li:nth-child(2) { --activity: var(--yellow); }
.club-activity-list li:nth-child(3) { --activity: var(--teal); }
.club-activity-list li:nth-child(4) { --activity: var(--cream); }
.club-activity-list li::after { content: ""; position: absolute; width: 88px; height: 88px; right: -42px; top: -45px; border: 13px solid var(--activity); border-radius: 50%; opacity: .14; }
.club-activity-list__num { min-width: 38px; padding: 7px 7px 6px; border: 2px solid var(--ink); border-radius: 8px; background: var(--activity); color: var(--ink); box-shadow: 2px 2px 0 var(--cream); font: 800 12px/1 var(--font-display); text-align: center; }
.club-activity-list li > div { min-width: 0; }
.club-activity-list small { display: block; color: var(--activity); font-size: 9px; font-weight: 800; letter-spacing: .08em; line-height: 1.25; text-transform: uppercase; }
.club-activity-list strong { display: block; margin-top: 5px; color: var(--cream); font: 800 21px/1.05 var(--font-display); letter-spacing: -.02em; }
.club-activity-list p { margin: 11px 0 0; color: #bdb5cb; font-size: 12px; line-height: 1.55; }

@media (max-width: 900px) {
  .social-club-preview__grid,
  .social-club-page .club-hero__grid { grid-template-columns: 1fr; }
  .social-club-preview__copy .section__title { max-width: 16ch; }
  .social-club-preview__details { max-width: 650px; }
  .club-showcase { max-width: 650px; width: 100%; margin: 0 auto; }
}

@media (max-width: 720px) {
  .club-announcement__inner { min-height: 70px; grid-template-columns: auto 1fr auto; gap: 11px; }
  .club-announcement__message { display: block; }
  .club-announcement__message strong { display: block; font-size: 15px; }
  .club-announcement__message span { display: none; }
  .club-announcement__link { font-size: 0; }
  .club-announcement__link span { display: grid; width: 34px; height: 34px; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font-size: 18px; }
}

@media (max-width: 620px) {
  .social-club-preview + #who .arch-crown { height: 46px; }
  .social-club-preview__copy .section__title { max-width: 10ch; font-size: clamp(40px, 12vw, 50px); line-height: .98; }
  .social-club-preview__lead { margin-top: 17px; font-size: 16px; line-height: 1.55; }
  .social-club-preview__actions { gap: 13px; margin-top: 23px; }
  .social-club-preview__note { max-width: none; }
  .social-club-page .club-hero { padding-top: 34px; }
  .social-club-page .club-hero .hero__cta { display: grid; grid-template-columns: 1fr; gap: 11px; width: 100%; margin-top: 28px; }
  .social-club-page .club-hero .hero__cta .btn { width: 100%; min-height: 58px; padding: 14px 20px; font-size: 16px; line-height: 1.25; white-space: normal; }
  .social-club-page .club-hero__micro { margin-top: 17px; line-height: 1.5; }
  .social-club-preview__facts { grid-template-columns: 1fr; }
  .social-club-preview__facts span { text-align: left; }
  .social-night--saturday { margin-left: 0; }
  .club-showcase { min-height: 490px; border-radius: 27px; box-shadow: 8px 8px 0 var(--brand); transform: none; }
  .club-showcase__inside { min-height: 490px; padding: 76px 19px 24px; }
  .club-showcase__stamp { top: 62px; right: 16px; width: 68px; height: 68px; font-size: 10px; }
  .club-showcase__headline strong { font-size: clamp(45px, 15vw, 64px); }
  .club-passes { gap: 9px; }
  .club-pass { padding: 16px 12px 14px; box-shadow: 4px 4px 0 var(--cream); }
  .club-pass__top { align-items: flex-start; flex-direction: column; }
  .club-pass p { font-size: 8px; }
  .club-showcase__tape { gap: 5px; padding-inline: 8px; font-size: 8px; }
  .club-showcase__tape span::before { margin-right: 3px; }
  .club-activity-list { grid-template-columns: 1fr; gap: 11px; }
  .club-activity-list li { min-height: 0; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px 19px 21px; border-radius: 16px; box-shadow: inset 5px 0 0 var(--activity); }
  .club-activity-list__num { min-width: 40px; padding-block: 8px; }
  .club-activity-list strong { font-size: 22px; }
  .club-activity-list p { margin-top: 8px; font-size: 13px; }
}

@media (max-width: 390px) {
  .club-announcement__inner { gap: 8px; }
  .club-announcement__badge { padding-inline: 8px; font-size: 9px; }
  .club-announcement__message strong { font-size: 14px; }
  .club-showcase__headline small { font-size: 24px; }
  .club-showcase__headline strong { font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  .club-announcement__inner:hover .club-announcement__link span { transform: none; }
}
