/* ==========================================================================
   Reset, document defaults, typography primitives, shared utilities
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Offset in-page anchors so the sticky header never covers a heading. */
  scroll-padding-top: 6rem;
}

body {
  background: var(--c-ink);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }

/* Avoid orphan-prone rag on headings */
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---- Links --------------------------------------------------------------- */
a {
  color: var(--c-gold);
  text-decoration-color: rgb(201 169 97 / 0.4);
  text-underline-offset: 0.2em;
  transition: color var(--d-fast) var(--e-soft);
}
a:hover { color: var(--c-gold-bright); }

/* ---- Focus --------------------------------------------------------------- */
/* Visible on every interactive element, gold so it reads on near-black. */
:focus-visible {
  outline: 2px solid var(--c-gold-bright);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
:focus:not(:focus-visible) { outline: none; }

/* ---- Skip link ----------------------------------------------------------- */
.skip-link {
  /* Fixed, not absolute: an absolutely-positioned skip link sits at the top
     of the DOCUMENT, so on a scrolled page it is focused far off-screen and
     the user sees nothing. Fixed keeps it in the viewport. */
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50% -120%;
  z-index: calc(var(--z-modal) + 1);
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-gold);
  color: var(--c-black);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: translate var(--d-base) var(--e-out);
}
.skip-link:focus-visible { translate: -50% 0; }

/* ---- Screen-reader only -------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

/* Full-bleed section that still keeps its inner content in the container */
.section--bleed { padding-inline: 0; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.eyebrow {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-gold);
}

.section-title {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-white);
}

.lede {
  font-size: var(--fs-md);
  color: var(--c-text-dim);
  max-width: 60ch;
}

/* Thin gold rule used between sections and above CTAs */
.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg,
    transparent,
    rgb(201 169 97 / 0.55) 18%,
    rgb(201 169 97 / 0.55) 82%,
    transparent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  --btn-pad-y: 0.85em;
  --btn-pad-x: 2em;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color var(--d-fast)  var(--e-soft),
    border-color     var(--d-fast)  var(--e-soft),
    color            var(--d-fast)  var(--e-soft),
    box-shadow       var(--d-fast)  var(--e-soft),
    transform        var(--d-press) var(--e-out);
}

/* Gold shimmer sweep — a highlight that crosses the button on hover. */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg,
    transparent 35%,
    rgb(255 255 255 / 0.38) 50%,
    transparent 65%);
  translate: -120% 0;
  transition: translate var(--d-slow) var(--e-out);
}
/* Touch devices fire a false :hover on tap, which would strand the sweep
   mid-sheen. Gate the hover trigger; keyboard focus is safe ungated. */
@media (hover: hover) and (pointer: fine) {
  .btn:hover::after { translate: 120% 0; }
}
.btn:focus-visible::after { translate: 120% 0; }

.btn:active { transform: translateY(1px); }

/* Filled gold — primary action (matches "BUY TICKETS" in the reference) */
.btn--gold {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--c-gold-bright);
  border-color: var(--c-gold-bright);
  color: var(--c-black);
  box-shadow: 0 0 26px -6px rgb(201 169 97 / 0.7);
}

/* Outlined gold — secondary action */
.btn--outline {
  background: rgb(0 0 0 / 0.45);
  color: var(--c-gold);
  border-color: var(--c-gold-dim);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--c-gold-bright);
  border-color: var(--c-gold);
  box-shadow: 0 0 22px -8px rgb(201 169 97 / 0.6);
}

/* Ghost/dark pill — the hero "SEE FOR YOURSELF" treatment */
.btn--ghost {
  background: rgb(18 18 22 / 0.9);
  color: var(--c-text);
  border-color: rgb(255 255 255 / 0.16);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--c-ink-3);
  border-color: rgb(255 255 255 / 0.32);
  color: var(--c-white);
}

.btn--sm { --btn-pad-y: 0.7em; --btn-pad-x: 1.5em; font-size: var(--fs-xs); }
.btn--block { display: flex; width: 100%; }
