﻿:root {
  --red: #eb0028;
  --black: #0a0a0a;
  --cream: #f5f2ec;
  --line-dark: rgba(10, 10, 10, 0.14);
  --line-light: rgba(245, 242, 236, 0.14);
  --noise-tone: linear-gradient(180deg, rgba(255,255,255,.34), rgba(245,242,236,.9));
  --noise-texture: url("../images/bnrxc0a94zomzer5rlnd.webp");
  --header-pad: clamp(18px, 3vw, 64px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  font-family: "Outfit", sans-serif;
  background-color: var(--cream);
  background-image: var(--noise-tone), var(--noise-texture);
  background-size: auto, 1200px auto;
  background-position: center, 0 0;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1280px, calc(100% - var(--header-pad) * 2)); margin-inline: auto; }
.page-topbar { background: rgba(245,242,236,.92); }
.hero-topbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--line-dark); }
.brand { font-family: "Anton", sans-serif; color: var(--red); font-size: 30px; letter-spacing: -.3px; line-height: 1; white-space: nowrap; }
.brand sup { font-size: 18px; top: -.56em; position: relative; }
.brand em { font-style: normal; font-family: "Outfit", sans-serif; font-size: 18px; margin-left: 8px; color: rgba(10,10,10,.8); letter-spacing: -.45px; font-weight: 500; }
.footer .brand em, .hero-dark .brand em { color: var(--cream); }
.top-nav { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.top-nav a, .footer a { position: relative; text-transform: uppercase; letter-spacing: 2.75px; font-size: 11px; color: rgba(10,10,10,.7); transition: color .24s ease; }
.top-nav a::after, .footer a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--red); transition: width .24s ease; }
.top-nav a:hover, .footer a:hover { color: var(--red); }
.top-nav a:hover::after, .footer a:hover::after { width: 100%; }
.page-topbar .btn { border: 1px solid rgba(10,10,10,.6); text-transform: uppercase; letter-spacing: 2.75px; font-size: 11px; line-height: 1; padding: 15px 28px; min-width: 0; display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--black); cursor: pointer; transition: color .24s ease, background-color .24s ease, border-color .24s ease, transform .24s ease; }
.page-topbar .btn:hover { transform: translateY(-2px); background: var(--red); border-color: var(--red); color: var(--cream); }

.site-menu-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(10,10,10,.24);
  background: rgba(245,242,236,.88);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2.75px;
  font: 600 11px/1 "Outfit", sans-serif;
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease;
}
.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,.94);
  border-color: rgba(10,10,10,.38);
}
.site-menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.site-menu-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .24s ease;
}
.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(1),
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(2),
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(2) {
  opacity: 0;
}
.page-topbar .hero-topbar.is-menu-open .site-menu-icon span:nth-child(3),
.hero-topbar.is-menu-open .site-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.site-menu-panel { display: contents; }
.site-menu-panel .top-nav { align-items: center; }
.hero-dark { min-height: 390px; background: var(--black); color: var(--cream); display: flex; align-items: center; }
.hero-wrap { padding: 78px 0; }
.back-link { display: inline-block; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 3.2px; font-size: 10px; color: rgba(245,242,236,.72); }
.hero-tag { display: inline-block; margin: 0 0 22px; padding: 12px 22px; background: var(--red); color: var(--cream); text-transform: uppercase; letter-spacing: 3.4px; font-size: 10px; font-weight: 600; }
h1 { margin: 0; font-family: "Anton", sans-serif; text-transform: uppercase; line-height: .98; letter-spacing: -1px; }
h1 span, h1 strong { display: block; font-size: clamp(54px, 6vw, 86px); font-weight: 400; }
h1 span { color: var(--red); }
h1 strong { color: var(--cream); }
.hero-sub { margin: 36px 0 0; max-width: 980px; border-bottom: 3px solid var(--red); padding-bottom: 10px; font-family: "Cormorant Garamond", serif; font-size: clamp(20px, 1.7vw, 30px); line-height: 1.15; }
.legal-shell { padding: 72px 0 112px; }
.legal-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 72px; align-items: start; }
.legal-nav { position: sticky; top: 82px; display: grid; gap: 8px; padding-top: 92px; }
.legal-nav a { font-family: "Cormorant Garamond", serif; font-size: 20px; letter-spacing: 0.18em; color: rgba(10,10,10,.58); }
.legal-nav a:hover { color: var(--red); }
.legal-nav a.active {
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.legal-main { max-width: 960px; }
.legal-section { margin-bottom: 66px; }
.legal-section h2 { margin: 0; display: flex; gap: 12px; align-items: baseline; font-family: "Anton", sans-serif; text-transform: uppercase; font-size: clamp(38px, 4.6vw, 58px); line-height: 1; letter-spacing: 0.08em; }
.legal-section h2 span { color: var(--red); }
.rule { height: 3px; background: var(--red); margin: 14px 0 28px; width: 100%; }
.legal-section p, .event-list, .dot-list { color: rgba(10,10,10,.68); font-size: clamp(16px, 1.08vw, 20px); line-height: 1.45; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.card-row article { border: 1px solid rgba(10,10,10,.35); padding: 38px; min-height: 176px; }
.card-row h3 { margin: 0 0 30px; color: var(--red); text-transform: uppercase; font-size: 24px; font-family: "Cormorant Garamond", serif; font-weight: 400; }
.card-row p { margin: 0; }
.event-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.event-list li { display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: start; }
.event-list b { color: var(--red); font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 400; }
.icon svg { width: 28px; height: 28px; fill: none; stroke: var(--black); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.caps { text-transform: none; letter-spacing: 0; }
.dot-list { padding-left: 20px; }
.footer { position: relative; overflow: hidden; padding: clamp(74px, 9vw, 112px) 0 0; background: #0a0a0a; color: var(--cream); }
.footer-top { border-bottom: 1px solid var(--line-light); display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 42px; padding-bottom: 34px; }
.footer h5 { margin: 0 0 14px; color: rgba(245,242,236,.4); text-transform: uppercase; letter-spacing: 3.226px; font-size: 11.5px; font-weight: 600; }
.footer a { position: static; display: block; margin-bottom: 12px; color: rgba(245,242,236,.8); font-size: 14px; line-height: 20px; text-transform: none; letter-spacing: 0; }
.footer a::after { display: none; }
.footer-brand-block .brand { display: inline-flex; align-items: baseline; gap: 8px; }
.footer-brand-block .brand span { font-size: 50px; line-height: .92; }
.footer-brand-block .brand sup { font-size: 26px; top: -.42em; }
.footer-brand-block .brand em { color: rgba(245,242,236,.9); font-size: 28px; letter-spacing: -.45px; margin-left: 0; }
.footer-brand-block .brand,
.footer-brand-block .brand:hover,
.footer-brand-block .brand:visited {
  color: var(--red);
}
.footer-brand-block .brand span,
.footer-brand-block .brand sup {
  color: var(--red);
}
.footer-brand-block .brand:hover span,
.footer-brand-block .brand:hover sup,
.footer-brand-block .brand:hover em {
  color: var(--red);
}
.footer-brand-block .brand:hover em {
  color: rgba(245,242,236,.9);
}
.footer-brand-block .eyebrow { position: relative; margin: 12px 0 0; padding-top: 12px; color: rgba(245,242,236,.45); font-size: 12px; letter-spacing: 4px; }
.footer-brand-block .eyebrow::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; max-width: 460px; height: 1px; background: rgba(245,242,236,.28); }
.footer-quote { margin: 14px 0 0; max-width: 620px; color: rgba(245,242,236,.9); font-family: "Cormorant Garamond", serif; font-size: clamp(42px, 3.5vw, 54px); line-height: 1.06; font-style: normal; }
.newsletter { display: flex; justify-content: space-between; align-items: center; gap: 8px; border-bottom: 1px solid rgba(245,242,236,.3); }
.newsletter input { width: 100%; min-width: 0; background: transparent; border: 0; color: var(--cream); outline: 0; padding: 10px 0; }
.newsletter button { border: 0; background: transparent; color: var(--red); text-transform: uppercase; letter-spacing: 2.75px; font-size: 11px; cursor: pointer; }
.socials { margin-top: 18px; display: flex; gap: 14px; }
.socials a { width: 28px; height: 28px; display: grid; place-items: center; margin: 0; color: rgba(245,242,236,.85); border: 1px solid rgba(245,242,236,.45); border-radius: 6px; }
.socials a:hover { color: var(--red); border-color: var(--red); }
.socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 22px; padding-top: 28px; }
.footer-bottom p { margin: 0; color: rgba(245,242,236,.4); font-size: 12px; line-height: normal; text-transform: none; letter-spacing: 0; }
.footer-bottom p:nth-child(2) { margin-left: auto; }
.footer-bottom .powered-by { flex-basis: 100%; text-align: left; margin-left: 0; order: 3; margin-top: 2px; }
.footer-bottom .powered-by a { color: var(--red); text-transform: uppercase; letter-spacing: 2px; font-size: 11px; }
.footer-mark { margin: 18px 0 -20px; display: flex; width: 100%; overflow: hidden; white-space: nowrap; pointer-events: auto; opacity: 1; }
.footer-mark span { flex: 0 0 auto; font-family: "Anton", sans-serif; font-size: clamp(96px, 18vw, 300px); line-height: .85; letter-spacing: -2px; color: rgba(245,242,236,.04); white-space: nowrap; animation: footerBanner 56s linear infinite; }
.footer-mark:hover span { animation-play-state: paused; }
@keyframes footerBanner { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (max-width: 980px) {
  .hero-topbar, .legal-grid, .footer-top { grid-template-columns: 1fr; }
  .hero-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    gap: 12px 16px;
  }
  .site-menu-toggle { display: inline-flex; }
  .site-menu-panel {
    display: none;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(10,10,10,.16);
    border-radius: 24px;
    background: rgba(245,242,236,.96);
    box-shadow: 0 18px 40px rgba(10,10,10,.12);
  }
  .hero-topbar.is-menu-open .site-menu-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .site-menu-panel .top-nav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .site-menu-panel .btn { width: 100%; }
  .legal-nav { position: static; padding-top: 0; }
  .card-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 640px) { .container { width: min(100% - 32px, 1280px); } .hero-wrap, .legal-shell { padding-block: 56px; } .legal-section h2 { font-size: 34px; } }

@media (max-width: 640px) {
  .hero-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    gap: 12px 16px;
  }

  .page-topbar .hero-topbar {
    width: min(100%, calc(100vw - 24px));
  }

  .site-menu-toggle { justify-self: end; }

  .hero-dark {
    min-height: auto;
  }

  .hero-wrap {
    padding: 56px 0;
  }

  h1 span,
  h1 strong {
    font-size: clamp(40px, 13vw, 58px);
    overflow-wrap: anywhere;
  }

  .hero-sub {
    margin-top: 28px;
    font-size: 18px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-top: 0;
  }

  .legal-nav a {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .card-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-row article {
    padding: 24px;
    min-height: 0;
  }

  .event-list li {
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-block .brand em {
    font-size: 20px;
  }

  .footer-quote {
    font-size: clamp(30px, 9vw, 42px);
  }

  .footer-bottom {
    padding-top: 22px;
  }

  .footer-bottom p {
    white-space: normal;
  }
}
