/* =============================================================
   EventTickets theme — runtime styles (main.css)
   Adapted from the approved landing page. Tokens live on :root so the
   header/footer share them; landing sections stay under .et-lp.
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
:where(a):focus-visible,
:where(button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--et-gold-bright);
  outline-offset: 3px;
}

/* =============================================================
   Eventtickets.ie — Early-Access Landing Page
   Scoped stylesheet. Everything descends from .et-lp so nothing
   leaks into the surrounding WordPress theme.
   Mobile-first. Modern CSS: Grid, Flexbox, logical properties,
   custom properties, clamp(). WCAG 2.2 AA.
   ============================================================= */

/* =============================================================
   Noto Serif — self-hosted (assets/fonts/). No external requests.
   Heading face only; the body stack stays system fonts.
   ============================================================= */
@font-face {
  font-family: "Noto Serif";
  src: url("../fonts/notoserif-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif";
  src: url("../fonts/notoserif-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif";
  src: url("../fonts/notoserif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif";
  src: url("../fonts/notoserif-bolditalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Design tokens (scoped to the component root) ---------- */
:root {
  /* Brand palette — golds sampled from the logo, validated on #0A0A0A */
  --et-bg: #0a0a0a;              /* page base            18.16:1 with ink */
  --et-bg-alt: #0f0e0c;          /* alternating band                     */
  --et-surface: #16130d;         /* warm dark card                       */
  --et-surface-2: #1d1a13;       /* raised surface / inputs-on-dark      */
  --et-line: #2a2620;            /* hairline borders                     */

  --et-gold: #b5a05e;            /* brand gold        7.69:1 (AA text)    */
  --et-gold-bright: #d5c07e;     /* hover / focus     11:1                */
  --et-gold-deep: #867546;       /* large text / borders only  4.38:1    */
  --et-gold-metal: linear-gradient(135deg, #d5c07e 0%, #b5a05e 46%, #8f7c4b 100%);

  --et-ink: #f5f5f5;             /* body text         18.16:1            */
  --et-ink-muted: #bcb6a7;       /* secondary text    ~9:1               */

  /* Light form fields for maximum completion legibility */
  --et-field-bg: #f6f4ef;
  --et-field-ink: #1a1813;
  --et-field-muted: #6b6559;
  --et-field-line: #b9b2a4;

  /* Type */
  --et-font-head: "Noto Serif", Georgia, "Times New Roman", serif;
  --et-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  Helvetica, Arial, "Helvetica Neue", sans-serif;

  /* Scale */
  --et-container: 72rem;
  --et-section-y: clamp(3.5rem, 8vw, 7rem);
  --et-radius: 14px;
  --et-radius-sm: 9px;

  /* Base */
  color: var(--et-ink);
  background: var(--et-bg);
  font-family: var(--et-font-body);
  font-size: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Minimal scoped reset --------------------------------- */
.et-lp *,
.et-lp *::before,
.et-lp *::after { box-sizing: border-box; }

.et-lp :where(h1, h2, h3, p, ul, ol, figure, blockquote) { margin: 0; }
.et-lp :where(img, picture, svg) { display: block; max-inline-size: 100%; }
.et-lp :where(ul[class]) { list-style: none; padding: 0; }

.et-lp :where(h1, h2, h3) {
  font-family: var(--et-font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.et-lp :where(:focus-visible) {
  outline: 3px solid var(--et-gold-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

.et-lp :where(a) { color: var(--et-gold-bright); text-underline-offset: 0.2em; }

/* Respect users who limit motion */
@media (prefers-reduced-motion: reduce) {
  .et-lp *,
  .et-lp *::before,
  .et-lp *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---- Layout helpers --------------------------------------- */
.et-container {
  inline-size: min(100% - 2.5rem, var(--et-container));
  margin-inline: auto;
}

.et-section { padding-block: var(--et-section-y); }
.et-section--alt { background: var(--et-bg-alt); }

.et-eyebrow {
  font-family: var(--et-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--et-gold);
}

.et-section__head { max-inline-size: 46rem; margin-block-end: clamp(2rem, 4vw, 3rem); }
.et-section__title { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.et-section__intro {
  margin-block-start: 1rem;
  font-size: 1.075rem;
  color: var(--et-ink-muted);
}

/* Metallic gold text for hero name + accents (all stops pass AA large).
   Solid-gold fallback first; clip to text only where supported. */
.et-metal { color: var(--et-gold-bright); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .et-metal {
    background: var(--et-gold-metal);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* ---- Buttons ---------------------------------------------- */
.et-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-block-size: 52px;
  padding-inline: 1.6rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.et-btn--primary {
  background: var(--et-gold);
  color: #0a0a0a;                 /* ~8:1 on the gold fill */
  inline-size: 100%;
  box-shadow: 0 6px 22px -8px rgba(181, 160, 94, 0.6);
}
.et-btn--primary:hover { background: var(--et-gold-bright); transform: translateY(-1px); }
.et-btn--primary:active { transform: translateY(0); }

.et-btn--ghost {
  background: transparent;
  color: var(--et-gold-bright);
  border-color: var(--et-gold-deep);
}
.et-btn--ghost:hover { border-color: var(--et-gold-bright); background: rgba(213, 192, 126, 0.08); }

/* =============================================================
   HERO — split layout: copy + tear-off ticket form
   ============================================================= */
.et-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.5rem, 7vw, 5rem);
  scroll-margin-block-start: 1.5rem;
}

/* Full-bleed background photograph */
.et-hero__bg {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  z-index: -2;
}
/* Dark, faintly gold-tinted scrim keeps text and form legible */
.et-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 78% 15%, rgba(181, 160, 94, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.82) 60%, rgba(10, 10, 10, 0.95) 100%);
}

.et-hero__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.et-hero__copy { max-inline-size: 34rem; }
.et-hero__title {
  margin-block: 1rem 1.1rem;
  font-size: clamp(2.4rem, 7vw, 4.1rem);
}
.et-hero__title small {
  display: block;
  margin-block-start: 0.3rem;
  font-size: 0.52em;
  font-weight: 400;
  color: var(--et-ink);
  letter-spacing: 0;
}
.et-hero__sub {
  font-size: 1.14rem;
  color: var(--et-ink-muted);
  max-inline-size: 32rem;
}
.et-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-block-start: 1.5rem;
  font-size: 0.9rem;
  color: var(--et-ink-muted);
}
.et-hero__meta li { display: flex; align-items: center; gap: 0.45rem; }
.et-hero__meta svg { color: var(--et-gold); flex: none; }

/* animate copy in on load (motion-safe only) */
@media (prefers-reduced-motion: no-preference) {
  .et-hero__copy > * { animation: et-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) backwards; }
  .et-hero__copy > :nth-child(2) { animation-delay: 0.06s; }
  .et-hero__copy > :nth-child(3) { animation-delay: 0.12s; }
  .et-hero__copy > :nth-child(4) { animation-delay: 0.18s; }
  @keyframes et-rise { from { opacity: 0; transform: translateY(14px); } }
}

/* =============================================================
   FORM — the "early-access ticket"
   ============================================================= */
.et-ticket {
  position: relative;
  border-radius: var(--et-radius);
  /* Shadow lives on the parent so it follows the masked children's
     notched silhouette instead of being clipped by the mask. */
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
}
.et-ticket__head {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem) 1.4rem;
  background: var(--et-surface);
  border: 1px solid var(--et-line);
  border-block-end: 1px dashed rgba(181, 160, 94, 0.45); /* perforation */
  border-radius: var(--et-radius) var(--et-radius) 0 0;
}
/* Genuine cut-out notches: transparent holes punched at the perforation line,
   so whatever sits behind the ticket (gradient, colour band) shows through.
   head cuts its bottom corners, body cuts its top corners; they meet as full
   circles straddling the perforation. Works on any background, any width. */
@supports ((mask-composite: intersect) or (-webkit-mask-composite: source-in)) {
  .et-ticket:not(.et-ticket--notice) .et-ticket__head {
    -webkit-mask:
      radial-gradient(circle 11px at 0 100%, #0000 96%, #000 100%),
      radial-gradient(circle 11px at 100% 100%, #0000 96%, #000 100%);
    -webkit-mask-composite: source-in;
    mask:
      radial-gradient(circle 11px at 0 100%, #0000 96%, #000 100%),
      radial-gradient(circle 11px at 100% 100%, #0000 96%, #000 100%);
    mask-composite: intersect;
  }
  .et-ticket:not(.et-ticket--notice) .et-ticket__body {
    -webkit-mask:
      radial-gradient(circle 11px at 0 0, #0000 96%, #000 100%),
      radial-gradient(circle 11px at 100% 0, #0000 96%, #000 100%);
    -webkit-mask-composite: source-in;
    mask:
      radial-gradient(circle 11px at 0 0, #0000 96%, #000 100%),
      radial-gradient(circle 11px at 100% 0, #0000 96%, #000 100%);
    mask-composite: intersect;
  }
}

.et-ticket__eyebrow { color: var(--et-gold); }
.et-ticket__title { font-size: clamp(1.4rem, 3.5vw, 1.7rem); margin-block: 0.35rem 0.4rem; }
.et-ticket__sub { font-size: 0.95rem; color: var(--et-ink-muted); }

.et-ticket__body {
  padding: clamp(1.4rem, 4vw, 1.9rem);
  background: var(--et-surface);
  border: 1px solid var(--et-line);
  border-block-start: 0;
  border-radius: 0 0 var(--et-radius) var(--et-radius);
}
/* Closed-state notice: a single body, so give it a full card outline. */
.et-ticket--notice .et-ticket__body {
  border-block-start: 1px solid var(--et-line);
  border-radius: var(--et-radius);
}

.et-field { margin-block-end: 1rem; }
.et-field > label {
  display: block;
  margin-block-end: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--et-ink);
}
.et-req { color: var(--et-gold-bright); }

.et-input {
  inline-size: 100%;
  min-block-size: 50px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--et-field-ink);
  background: var(--et-field-bg);
  border: 1.5px solid var(--et-field-line);
  border-radius: var(--et-radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.et-input::placeholder { color: var(--et-field-muted); }
.et-input:focus-visible {
  outline: none;
  border-color: #1a1813;                     /* dark border = 3:1 vs field */
  box-shadow: 0 0 0 3px rgba(181, 160, 94, 0.55);
}
.et-input[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.22);
}

/* inline validation message */
.et-error {
  display: none;
  margin-block-start: 0.4rem;
  font-size: 0.83rem;
  color: #ffb4ab;
}
.et-field[data-invalid] .et-error { display: block; }

/* consent row */
.et-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  margin-block: 0.5rem 1.2rem;
}
.et-consent input {
  inline-size: 24px;                          /* ≥24px target (SC 2.5.8) */
  block-size: 24px;
  margin-block-start: 0.1rem;
  accent-color: var(--et-gold-deep);
  flex: none;
}
.et-consent label { font-size: 0.86rem; color: var(--et-ink-muted); line-height: 1.5; }
.et-consent a { color: var(--et-gold-bright); }

.et-ticket__fine {
  margin-block-start: 0.9rem;
  font-size: 0.78rem;
  color: var(--et-ink-muted);
  text-align: center;
}

/* visually-hidden honeypot + a11y utility */
.et-hp {
  position: absolute !important;
  inline-size: 1px; block-size: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.et-visually-hidden {
  position: absolute !important;
  inline-size: 1px; block-size: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* success state swapped in by JS */
.et-success {
  padding: 1.5rem 1rem;
  text-align: center;
}
.et-success svg { margin-inline: auto; margin-block-end: 0.8rem; color: var(--et-gold); }
.et-success h3 { font-size: 1.4rem; margin-block-end: 0.5rem; }
.et-success p { color: var(--et-ink-muted); }

/* =============================================================
   TRUST BAR
   ============================================================= */
.et-trust {
  border-block: 1px solid var(--et-line);
  background: var(--et-bg-alt);
}
.et-trust__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: clamp(1.25rem, 3vw, 1.75rem);
}
.et-trust__lead {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-family: var(--et-font-head);
  font-size: 1rem;
  color: var(--et-gold);
}
.et-trust__lead::before {
  content: "";
  inline-size: 1.75rem;
  block-size: 1px;
  background: currentColor;
  flex: none;
}
.et-trust__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.et-trust__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.7rem;
  border-block-start: 1px solid var(--et-line);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--et-ink-muted);
}
.et-trust__item:first-child { border-block-start: 0; }
.et-trust__item svg { inline-size: 16px; block-size: 16px; color: var(--et-gold); flex: none; }

@media (min-width: 60rem) {
  .et-trust__inner { flex-direction: row; align-items: center; gap: 2rem; }
  .et-trust__lead { white-space: nowrap; }
  .et-trust__list { flex-direction: row; flex-wrap: wrap; justify-content: flex-end; flex: 1; }
  .et-trust__item {
    padding-block: 0;
    padding-inline: 1.1rem;
    border-block-start: 0;
    border-inline-start: 1px solid var(--et-line);
  }
  .et-trust__item:first-child { border-inline-start: 0; padding-inline-start: 0; }
}

/* =============================================================
   FEATURE GRIDS (highlights, benefits)
   ============================================================= */
/* Highlights — editorial numbered feature list with one oversized lead item. */
.et-feature { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.et-feature__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.4rem;
  align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2rem);
  border-block-start: 1px solid var(--et-line);
}
.et-feature__item:first-child { border-block-start: 0; }
.et-feature__num {
  font-family: var(--et-font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--et-gold-deep);
  font-variant-numeric: tabular-nums;
}
.et-feature__icon { display: block; margin-block-end: 0.6rem; color: var(--et-gold); }
.et-feature__title { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin: 0 0 0.4rem; }
.et-feature__item p { color: var(--et-ink-muted); margin: 0; max-inline-size: 54ch; }
.et-feature__item:first-child .et-feature__num { color: var(--et-gold); }
.et-feature__item:first-child .et-feature__title { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }

/* Benefits — editorial term/description rows (distinct from highlights). */
.et-benefits__list { margin: 0; }
.et-benefit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-block: clamp(1.4rem, 3vw, 1.9rem);
  border-block-start: 1px solid var(--et-line);
}
.et-benefit:first-child { border-block-start: 0; }
.et-benefit__term {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-family: var(--et-font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  color: var(--et-ink);
}
.et-benefit__term svg { inline-size: 22px; block-size: 22px; color: var(--et-gold); flex: none; }
.et-benefit__desc { margin: 0; color: var(--et-ink-muted); max-inline-size: 62ch; }

/* =============================================================
   WHY REGISTER EARLY — statement band
   ============================================================= */
.et-why { background: var(--et-bg-alt); }
.et-why__inner { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.et-why__copy { max-inline-size: 42rem; }
.et-why__copy p { margin-block-start: 1.1rem; font-size: 1.1rem; color: var(--et-ink-muted); }
.et-why .et-btn { margin-block-start: 2rem; inline-size: auto; }
/* Distinct from Venue: portrait, gold keyline, offset accent, full colour. */
.et-why__media { position: relative; }
.et-why__media::before {
  content: "";
  position: absolute;
  inset: -0.75rem auto auto -0.75rem;
  inline-size: 45%;
  block-size: 45%;
  border: 1px solid var(--et-gold-deep);
  border-radius: var(--et-radius);
  opacity: 0.55;
}
.et-why__frame {
  position: relative;
  border: 1px solid var(--et-gold-deep);
  border-radius: var(--et-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.et-why__frame img { inline-size: 100%; block-size: 100%; object-fit: cover; }

/* =============================================================
   HOW IT WORKS — numbered (a true sequence)
   ============================================================= */
.et-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: et-step;
}
.et-step {
  position: relative;
  padding-inline-start: 4rem;
  min-block-size: 3rem;
}
.et-step::before {
  counter-increment: et-step;
  content: counter(et-step, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: -0.15rem;
  font-family: var(--et-font-head);
  font-size: 1.7rem;
  color: var(--et-gold);
  line-height: 1;
}
.et-step h3 { font-size: 1.15rem; margin-block-end: 0.35rem; }
.et-step p { color: var(--et-ink-muted); font-size: 0.97rem; }

/* =============================================================
   VENUE
   ============================================================= */
.et-venue__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.et-venue__media {
  border-radius: var(--et-radius);
  overflow: hidden;
  border: 1px solid var(--et-line);
  aspect-ratio: 4 / 3;
}
.et-venue__media img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.et-venue p { color: var(--et-ink-muted); margin-block-start: 1rem; font-size: 1.03rem; }
.et-venue__travel {
  margin-block-start: 1.25rem;
  padding-block-start: 1.25rem;
  border-block-start: 1px solid var(--et-line);
  font-size: 0.92rem;
  color: var(--et-ink-muted);
}
.et-venue__travel strong { color: var(--et-ink); }

/* =============================================================
   FAQ — native <details>, zero JS
   ============================================================= */
.et-faq { max-inline-size: 48rem; }
.et-faq__item {
  border-block-end: 1px solid var(--et-line);
}
.et-faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.25rem;                     /* generous target */
  font-family: var(--et-font-head);
  font-size: 1.08rem;
  color: var(--et-ink);
  cursor: pointer;
  list-style: none;
}
.et-faq__item summary::-webkit-details-marker { display: none; }
.et-faq__item summary::after {
  content: "";
  inline-size: 12px;
  block-size: 12px;
  border-inline-end: 2px solid var(--et-gold);
  border-block-end: 2px solid var(--et-gold);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: none;
}
.et-faq__item[open] summary::after { transform: rotate(-135deg); }
.et-faq__answer { padding-block-end: 1.35rem; color: var(--et-ink-muted); max-inline-size: 44rem; }

/* =============================================================
   FINAL CTA
   ============================================================= */
.et-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-block-start: 1.5rem;
}
.et-final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(181, 160, 94, 0.14), transparent 60%),
    var(--et-bg-alt);
}
.et-final__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.et-final__copy { max-inline-size: 32rem; }
.et-final__title { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.et-final__copy p { margin-block-start: 1rem; font-size: 1.1rem; color: var(--et-ink-muted); }

/* =============================================================
   RESPONSIVE — enhance upward from the mobile base
   ============================================================= */
@media (min-width: 40rem) {
  .et-steps { grid-template-columns: repeat(3, 1fr); }
  .et-btn--primary { inline-size: 100%; }
  .et-benefit { grid-template-columns: minmax(11rem, 16rem) 1fr; align-items: baseline; gap: 2rem; }
}

@media (min-width: 60rem) {
  .et-hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .et-hero { padding-block: clamp(4rem, 8vw, 7rem); }
  .et-feature { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
  .et-feature__item:first-child { grid-column: 1 / -1; }
  .et-venue__inner { grid-template-columns: 1fr 1fr; }
  .et-why__inner { grid-template-columns: 1fr 0.82fr; align-items: center; }
  .et-final__inner { grid-template-columns: 1.1fr 0.9fr; }
  .et-ticket { position: sticky; inset-block-start: 1.5rem; }
}


/* =============================================================
   THEME CHROME — header, footer, misc
   ============================================================= */
.et-skip {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--et-gold);
  color: #0a0a0a;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: inset-block-start 0.15s ease;
}
.et-skip:focus { inset-block-start: 0; }

.et-header {
  border-block-end: 1px solid var(--et-line);
  background: var(--et-bg);
}
.et-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.et-header__brand img,
.et-header .custom-logo { block-size: auto; max-block-size: 48px; inline-size: auto; }
.et-header__name {
  font-family: var(--et-font-head);
  font-size: 1.25rem;
  color: var(--et-gold);
  text-decoration: none;
}
.et-header__cta {
  inline-size: auto;
  min-block-size: 44px;
  padding-inline: 1.25rem;
  box-shadow: none;
}

.et-main { display: block; }
.et-empty { padding-block: 5rem; text-align: center; color: var(--et-ink-muted); }
.et-simple-list { padding-inline-start: 1.2rem; }

.et-footer {
  border-block-start: 1px solid var(--et-line);
  background: var(--et-bg-alt);
  padding-block: clamp(2rem, 5vw, 3rem);
}
.et-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.et-footer__brand img, .et-footer .custom-logo { max-block-size: 40px; inline-size: auto; }
.et-footer__name { font-family: var(--et-font-head); color: var(--et-gold); }
.et-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.et-footer__menu a { color: var(--et-ink-muted); text-decoration: none; }
.et-footer__menu a:hover { color: var(--et-gold-bright); }
.et-footer__legal { margin: 0; margin-inline-start: auto; font-size: 0.85rem; color: var(--et-ink-muted); }

/* the_content() intro under a section heading */
.et-prose > * + * { margin-block-start: 0.8rem; }
.et-prose p { color: var(--et-ink-muted); }

/* closed-state notice inside the ticket */
.et-ticket--notice { text-align: center; }
.et-notice { color: var(--et-ink-muted); font-size: 1.05rem; padding-block: 1rem; }

@media (min-width: 60rem) {
  .et-footer__inner { flex-wrap: nowrap; }
}

/* =============================================================
   FLUENT FORMS — inherit the ticket styling when a shortcode is used.
   Class names follow Fluent Forms output; adjust if a future version renames.
   ============================================================= */
.et-ticket .fluentform .ff-el-group { margin-block-end: 1rem; }
.et-ticket .fluentform .ff-el-input--label label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--et-ink);
  margin-block-end: 0.4rem;
}
.et-ticket .fluentform input:not([type="checkbox"]):not([type="radio"]),
.et-ticket .fluentform select,
.et-ticket .fluentform textarea {
  inline-size: 100%;
  min-block-size: 50px;
  padding: 0.7rem 0.9rem;
  color: var(--et-field-ink);
  background: var(--et-field-bg);
  border: 1.5px solid var(--et-field-line);
  border-radius: var(--et-radius-sm);
}
.et-ticket .fluentform input:focus-visible,
.et-ticket .fluentform textarea:focus-visible {
  outline: none;
  border-color: #1a1813;
  box-shadow: 0 0 0 3px rgba(181, 160, 94, 0.55);
}
.et-ticket .fluentform .ff-el-group.ff_t_c label,
.et-ticket .fluentform .ff-el-form-check label { color: var(--et-ink-muted); font-size: 0.86rem; }
.et-ticket .fluentform .ff-btn-submit {
  inline-size: 100%;
  min-block-size: 52px;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--et-gold);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}
.et-ticket .fluentform .ff-btn-submit:hover { background: var(--et-gold-bright); }

/* =============================================================
   MOTION — reveal on enter (opt-in, no-JS safe, reduced-motion safe)
   Baseline hidden state applies ONLY when JS has added html.js-motion
   AND the user has no reduced-motion preference, so content is always
   visible if JS is off, JS fails, or motion is reduced. Transform +
   opacity only — no layout shift.
   ============================================================= */
@media (prefers-reduced-motion: no-preference) {
  html.js-motion [data-reveal] { opacity: 0; transform: translateY(16px); }
  html.js-motion [data-reveal="fade"] { transform: none; }
  html.js-motion [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  html.js-motion [data-reveal-stagger] > * { opacity: 0; transform: translateY(16px); }
  html.js-motion [data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  html.js-motion [data-reveal-stagger].is-visible > :nth-child(2) { transition-delay: 0.07s; }
  html.js-motion [data-reveal-stagger].is-visible > :nth-child(3) { transition-delay: 0.14s; }
  html.js-motion [data-reveal-stagger].is-visible > :nth-child(4) { transition-delay: 0.21s; }
  html.js-motion [data-reveal-stagger].is-visible > :nth-child(n + 5) { transition-delay: 0.24s; }
}
