/* ============================================================
   General Events - public site.

   Scoped under gev-/ge- prefixes so nothing here collides with the
   Crafto theme. Uses the theme's grid (.container/.row) but owns its
   own type scale and colour, keyed to the NIStructE maroon already
   defined as --base-color in style.css.
   ============================================================ */

:root {
  --gev-maroon: #892559;
  --gev-maroon-deep: #6e1c47;
  --gev-wash: #f8eaf1;
  --gev-ink: #1f171b;
  --gev-ink-2: #5c4e55;
  /* 5.5:1 on white. The old #8a8190 measured 3.73:1 and failed WCAG AA for
     the 12-13px meta text and status pills it was used on. */
  --gev-muted: #6e6675;
  /* Kept for large/decorative text only, never for body copy. */
  --gev-muted-soft: #8a8190;
  --gev-line: #e7e1e5;
  --gev-paper: #faf8f9;
  --gev-good: #2f6b4f;
  --gev-warn: #8a5a12;
  --gev-bad: #a32a2a;
  --gev-radius: 12px;
  /* The theme's navbar is taken out of flow and overlays the page, so every
     top-of-page block has to clear it itself. */
  --gev-navclear: 104px;
  --gev-shadow: 0 1px 2px rgba(31,23,27,.04), 0 10px 30px -16px rgba(31,23,27,.22);
}

.gev { color: var(--gev-ink); }
.gev *, .gev *::before, .gev *::after { box-sizing: border-box; }

/* ── Shared bits ─────────────────────────────────────────── */
.gev-section { padding: 56px 0; }
.gev-section--closed { padding: calc(var(--gev-navclear) + 40px) 0 56px; }
.gev-section--tight { padding: 34px 0; }
/* The head already carries the breathing room above the content. */
.gev-section--afterhead { padding-top: 8px; }

.gev-pagehead {
  padding: calc(var(--gev-navclear) + 30px) 0 28px;
  border-bottom: 1px solid var(--gev-line);
  background: linear-gradient(180deg, var(--gev-paper) 0%, #fff 100%);
  margin-bottom: 34px;
}
.gev-pagehead .gev-h1 { margin-bottom: 12px; }
@media (max-width: 767px) { .gev-pagehead { padding-bottom: 20px; margin-bottom: 22px; } }

.gev-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gev-maroon);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.gev-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gev-maroon); display: inline-block; }

.gev-h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.gev-h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); line-height: 1.2; font-weight: 700; letter-spacing: -.01em; margin: 0 0 16px; }
.gev-h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.gev-lede { font-size: 1.06rem; line-height: 1.65; color: var(--gev-ink-2); max-width: 62ch; }
/* Underlined, not just recoloured: a link inside running text that differs
   only by hue fails WCAG 1.4.1 for anyone who cannot see the hue shift. */
.gev-lede a, .gev-prose p a, .gev-card-sum a {
  color: var(--gev-maroon);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gev-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gev-maroon); color: #fff;
  border: 1px solid var(--gev-maroon);
  padding: 13px 26px; border-radius: 8px;
  font-size: 15px; font-weight: 600; line-height: 1.2; text-decoration: none;
  /* No transform on hover: a button that lifts under the cursor is fiddly to
     hit, and the in-flight transition also makes automated clicks wait for the
     element to settle. Colour alone reads just as clearly. */
  cursor: pointer; transition: background-color .18s, box-shadow .18s;
  /* A button is only ever as wide as its label. Without these it shrank inside
     the filter row and broke "Search" across two lines mid-word. */
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
}
.gev-btn:hover { background: var(--gev-maroon-deep); color: #fff;
                 box-shadow: 0 3px 10px -2px rgba(137,37,89,.45); }
.gev-btn:disabled, .gev-btn[aria-disabled="true"] {
  background: var(--gev-line); border-color: var(--gev-line);
  color: var(--gev-muted); cursor: not-allowed; box-shadow: none;
}
.gev-btn--ghost { background: transparent; color: var(--gev-maroon); }
.gev-btn--ghost:hover { background: var(--gev-wash); color: var(--gev-maroon-deep); }
.gev-btn--block { width: 100%; }

.gev-pill {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; white-space: nowrap;
}
.gev-pill--open  { background: #e7f2ec; color: var(--gev-good); }
.gev-pill--warn  { background: #fdf2e2; color: var(--gev-warn); }
.gev-pill--full  { background: #fbe9e9; color: var(--gev-bad); }
.gev-pill--muted { background: #f0edf1; color: #655d6b; }   /* 5.4:1 on its own ground */

/* ── Landing: filter bar ─────────────────────────────────── */
.gev-filters {
  background: #fff; border: 1px solid var(--gev-line);
  border-radius: var(--gev-radius); padding: 16px 18px;
  box-shadow: var(--gev-shadow); margin-bottom: 30px;
}
.gev-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.gev-tab {
  padding: 7px 15px; border-radius: 20px; font-size: 13.5px; font-weight: 600;
  color: var(--gev-ink-2); text-decoration: none; border: 1px solid var(--gev-line);
  background: #fff; transition: background-color .15s, color .15s, border-color .15s;
}
.gev-tab:hover { border-color: var(--gev-maroon); color: var(--gev-maroon); }
.gev-tab.on { background: var(--gev-maroon); border-color: var(--gev-maroon); color: #fff; }

.gev-filter-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.gev-search { flex: 1 1 260px; display: flex; gap: 8px; min-width: 0; }
/* min-width:0 lets the input shrink instead of forcing the row to overflow;
   the button beside it keeps its natural width via .gev-btn. */
.gev-search .gev-input { flex: 1 1 auto; min-width: 0; }
.gev-input, .gev-select, .gev-textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--gev-line); border-radius: 8px;
  font-size: 14.5px; font-family: inherit; color: var(--gev-ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.gev-input:focus, .gev-select:focus, .gev-textarea:focus {
  outline: none; border-color: var(--gev-maroon);
  box-shadow: 0 0 0 3px rgba(137,37,89,.12);
}
.gev-select { flex: 0 0 auto; width: auto; min-width: 160px; white-space: nowrap; }
.gev-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.gev-chip {
  font-size: 12.5px; padding: 5px 12px; border-radius: 16px;
  border: 1px solid var(--gev-line); color: var(--gev-ink-2);
  text-decoration: none; background: #fff;
}
.gev-chip:hover { border-color: var(--gev-maroon); color: var(--gev-maroon); }
.gev-chip.on { background: var(--gev-wash); border-color: var(--gev-maroon); color: var(--gev-maroon-deep); font-weight: 600; }

/* ── Landing: cards ──────────────────────────────────────── */
.gev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }

.gev-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--gev-line);
  border-radius: var(--gev-radius); overflow: hidden;
  box-shadow: var(--gev-shadow);
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s;
}
.gev-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px -14px rgba(31,23,27,.3); }
.gev-card-media { position: relative; aspect-ratio: 4/3; background: var(--gev-paper); overflow: hidden; }
.gev-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gev-card-media--empty { display: grid; place-items: center; color: #d3cad8; font-size: 34px; }
.gev-card-date {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.96); border-radius: 8px;
  padding: 6px 10px; text-align: center; line-height: 1.1;
  box-shadow: 0 2px 10px rgba(31,23,27,.16);
}
.gev-card-date .d { font-size: 19px; font-weight: 800; color: var(--gev-maroon); }
.gev-card-date .m { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gev-ink-2); }
.gev-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gev-card-cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gev-muted); font-weight: 700; }
.gev-card-title { font-size: 1.06rem; font-weight: 700; line-height: 1.3; margin: 0; }
.gev-card-title a { color: var(--gev-ink); text-decoration: none; }
.gev-card-title a:hover { color: var(--gev-maroon); }
.gev-card-sum { font-size: 13.8px; line-height: 1.55; color: var(--gev-ink-2); margin: 0; }
.gev-card-meta { font-size: 12.8px; color: var(--gev-muted); display: flex; flex-direction: column; gap: 3px; }
.gev-card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center;
                 justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.gev-card-fee { font-size: 13px; font-weight: 700; color: var(--gev-ink); }

/* Featured strip */
.gev-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
.gev-feat {
  position: relative; min-height: 260px; border-radius: var(--gev-radius);
  overflow: hidden; display: flex; align-items: flex-end;
  background: var(--gev-maroon-deep); box-shadow: var(--gev-shadow);
}
.gev-feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gev-feat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,12,21,.92) 0%, rgba(30,12,21,.55) 45%, rgba(30,12,21,.15) 100%);
}
.gev-feat-body { position: relative; z-index: 1; padding: 22px; color: #fff; }
.gev-feat-body h3 { font-size: 1.22rem; font-weight: 700; margin: 6px 0 6px; line-height: 1.25; }
.gev-feat-body h3 a { color: #fff; text-decoration: none; }
.gev-feat-body h3 a:hover { text-decoration: underline; }
.gev-feat-body .when { font-size: 12.5px; opacity: .9; }
.gev-feat-tag {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; background: rgba(255,255,255,.18); padding: 3px 9px; border-radius: 12px;
}

/* Empty state */
.gev-empty { text-align: center; padding: 70px 20px; color: var(--gev-muted); }
.gev-empty h3 { color: var(--gev-ink); font-size: 1.2rem; margin: 0 0 8px; }

/* Pagination */
.gev-pager { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.gev-pager a, .gev-pager span {
  min-width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--gev-line); border-radius: 8px;
  font-size: 14px; text-decoration: none; color: var(--gev-ink-2); background: #fff;
}
.gev-pager a:hover { border-color: var(--gev-maroon); color: var(--gev-maroon); }
.gev-pager .on { background: var(--gev-maroon); border-color: var(--gev-maroon); color: #fff; font-weight: 700; }

/* ── Detail: hero ────────────────────────────────────────── */
.gev-hero { position: relative; background: var(--gev-maroon-deep); min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; }
.gev-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gev-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,10,19,.94) 0%, rgba(28,10,19,.62) 46%, rgba(28,10,19,.2) 100%);
}
.gev-hero-inner { position: relative; z-index: 1; width: 100%;
                  padding: calc(var(--gev-navclear) + 30px) 0 38px; color: #fff; }
.gev-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.75rem); line-height: 1.1; font-weight: 700; margin: 10px 0 10px; letter-spacing: -.02em; text-wrap: balance; }
.gev-hero .sub { font-size: 1.02rem; opacity: .92; max-width: 60ch; }
.gev-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.gev-hero-chip { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.24); color: #fff; border-radius: 20px; padding: 6px 14px; font-size: 13px; }
.gev-hero--nobanner { min-height: 280px; }

.gev-cancelled-banner {
  background: var(--gev-bad); color: #fff; text-align: center;
  padding: 12px 16px; font-weight: 600; font-size: 14.5px;
}

/* ── Detail: layout ──────────────────────────────────────── */
.gev-detail { display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; padding: 44px 0 60px; }
@media (min-width: 992px) { .gev-detail { grid-template-columns: minmax(0, 1fr) 340px; gap: 46px; } }

.gev-prose { font-size: 15.6px; line-height: 1.75; color: var(--gev-ink-2); max-width: 68ch; }
.gev-prose h2, .gev-prose h3, .gev-prose h4 { color: var(--gev-ink); margin: 30px 0 10px; line-height: 1.25; }
.gev-prose h2 { font-size: 1.35rem; }
.gev-prose h3 { font-size: 1.12rem; }
.gev-prose p { margin: 0 0 14px; }
.gev-prose ul, .gev-prose ol { margin: 0 0 14px; padding-left: 1.3em; }
.gev-prose li { margin-bottom: 6px; }
.gev-prose li::marker { color: var(--gev-maroon); }
.gev-prose a { color: var(--gev-maroon); }
.gev-prose img { max-width: 100%; height: auto; border-radius: 8px; }
.gev-prose table { width: 100%; border-collapse: collapse; margin: 0 0 16px; font-size: 14px; }
.gev-prose th, .gev-prose td { border: 1px solid var(--gev-line); padding: 8px 10px; text-align: left; }
.gev-prose blockquote { border-left: 3px solid var(--gev-maroon); margin: 0 0 16px; padding: 4px 0 4px 16px; color: var(--gev-ink); }

/* Meta grid */
.gev-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--gev-line);
  border: 1px solid var(--gev-line); border-radius: var(--gev-radius);
  overflow: hidden; margin-bottom: 34px;
}
.gev-meta-item { background: #fff; padding: 15px 17px; }
.gev-meta-item dt { font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--gev-muted); font-weight: 700; margin-bottom: 5px; }
.gev-meta-item dd { margin: 0; font-size: 14.2px; color: var(--gev-ink); line-height: 1.45; }
.gev-meta-item dd a { color: var(--gev-maroon); }

/* Sticky booking rail */
.gev-rail { position: relative; }
@media (min-width: 992px) { .gev-rail { position: sticky; top: 24px; align-self: start; } }
.gev-book {
  background: #fff; border: 1px solid var(--gev-line);
  border-radius: var(--gev-radius); padding: 22px; box-shadow: var(--gev-shadow);
}
.gev-book-fee { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.gev-book-fee .amt { font-size: 1.7rem; font-weight: 800; color: var(--gev-ink); letter-spacing: -.02em; }
.gev-book-fee .lbl { font-size: 13px; color: var(--gev-muted); }
.gev-book-rates { font-size: 13.2px; color: var(--gev-ink-2); margin: 0 0 16px; }
.gev-book-rates strong { color: var(--gev-ink); }

.gev-seats { margin: 16px 0; }
.gev-seats-bar { height: 7px; border-radius: 4px; background: var(--gev-line); overflow: hidden; }
.gev-seats-bar span { display: block; height: 100%; background: var(--gev-maroon); border-radius: 4px; transition: width .4s ease; }
.gev-seats-bar.hot span { background: var(--gev-warn); }
.gev-seats-bar.full span { background: var(--gev-bad); }
.gev-seats-txt { font-size: 12.5px; color: var(--gev-muted); margin-top: 7px; }

.gev-book-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--gev-line); font-size: 13.2px; }
.gev-book-links a { color: var(--gev-maroon); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.gev-book-links a:hover { text-decoration: underline; }

/* ── Gallery ─────────────────────────────────────────────── */
.gev-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.gev-gallery a { display: block; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: var(--gev-paper); }
.gev-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.gev-gallery a:hover img { transform: scale(1.06); }

/* ── Sponsors honeycomb ──────────────────────────────────── */
.gev-sponsors { padding: 46px 0 10px; border-top: 1px solid var(--gev-line); margin-top: 44px; }
.gev-sponsors-h { font-size: 1.15rem; font-weight: 700; text-align: center; margin: 0 0 6px; letter-spacing: -.01em; }
.gev-tier { margin-top: 26px; }
.gev-tier-label {
  text-align: center; font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gev-muted); font-weight: 700; margin-bottom: 16px;
}

.ge-hive { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 8px; padding-bottom: 44px; }
.ge-hex {
  width: 150px;
  aspect-ratio: 1/1.1547;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #fff;
  display: grid; place-items: center;
  padding: 22px;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background-color .35s ease;
}
.ge-hive .ge-hex:nth-child(even) { margin-top: 44px; }
.ge-hex img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(100%); opacity: .78;
  transition: filter .35s, opacity .35s;
}
.ge-hex:hover, .ge-hex:focus-within, .ge-hex:focus-visible {
  transform: translateY(-6px) scale(1.06);
  background: linear-gradient(160deg, #fff 0%, #fdf5f9 100%);
  outline: none;
}
.ge-hex:hover img, .ge-hex:focus-within img, .ge-hex:focus-visible img { filter: none; opacity: 1; }
.ge-hex:focus-visible { box-shadow: 0 0 0 3px rgba(137,37,89,.4); }
.ge-hex--headline { width: 190px; }
.ge-hex--gold { width: 170px; }

@media (max-width: 575px) {
  .ge-hive .ge-hex:nth-child(even) { margin-top: 0; }
  .ge-hive { padding-bottom: 10px; }
  .ge-hex, .ge-hex--headline, .ge-hex--gold { width: 118px; padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .ge-hex, .gev-card, .gev-gallery img { transition: none; }
  .ge-hex:hover, .gev-card:hover { transform: none; }
}

/* ── Apply form ──────────────────────────────────────────── */
.gev-apply { padding: calc(var(--gev-navclear) + 24px) 0 20px; }
.gev-form-wrap { max-width: 760px; margin: 0 auto; }

.gev-step {
  background: #fff; border: 1px solid var(--gev-line);
  border-radius: var(--gev-radius); padding: 24px 24px 26px;
  margin-bottom: 18px; box-shadow: var(--gev-shadow);
}
.gev-step-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.gev-step-n {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gev-maroon); color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  align-self: flex-start; margin-top: 2px;
}
.gev-step-head h2 { font-size: 1.08rem; font-weight: 700; margin: 0; }
.gev-step-hint { font-size: 13.4px; color: var(--gev-muted); margin: 0 0 18px 38px; }
.gev-step-body { margin-left: 38px; }
@media (max-width: 575px) { .gev-step-body, .gev-step-hint { margin-left: 0; } }
.gev-step--gate { border-color: var(--gev-maroon); border-width: 1.5px; }

.gev-field { margin-bottom: 16px; }
.gev-field label { display: block; font-size: 13.4px; font-weight: 600; margin-bottom: 6px;
                   color: var(--gev-ink); text-align: left; line-height: 1.4; }
.gev-field .req { color: var(--gev-bad); }
.gev-field .help { font-size: 12.4px; color: var(--gev-muted); margin-top: 5px; }
.gev-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.gev-field--error .gev-input, .gev-field--error .gev-select, .gev-field--error .gev-textarea { border-color: var(--gev-bad); }
.gev-err { font-size: 12.6px; color: var(--gev-bad); margin-top: 5px; font-weight: 600; }

.gev-radio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.gev-radio-card {
  border: 1.5px solid var(--gev-line); border-radius: 10px;
  padding: 16px 18px; cursor: pointer; background: #fff;
  display: flex; gap: 12px; align-items: flex-start;
  /* The theme styles bare <label>, which otherwise centres the text and
     inflates its line-height inside these cards. */
  text-align: left; line-height: 1.45; margin: 0;
  transition: border-color .18s, background-color .18s;
}
.gev-radio-card:hover { border-color: var(--gev-maroon); }
.gev-radio-card input {
  flex: 0 0 auto; width: 17px; height: 17px; margin: 2px 0 0;
  accent-color: var(--gev-maroon);
}
/* min-width:0 lets the copy use the full remaining width instead of wrapping
   after two or three words. */
.gev-radio-card > span { flex: 1 1 auto; min-width: 0; }
.gev-radio-card .t { font-weight: 700; font-size: 14.4px; display: block; line-height: 1.35; }
.gev-radio-card .d { font-size: 12.6px; color: var(--gev-muted); display: block;
                     margin-top: 3px; line-height: 1.45; }
.gev-radio-card:has(input:checked) { border-color: var(--gev-maroon); background: var(--gev-wash); }
.gev-radio-card input:focus-visible { outline: 2px solid var(--gev-maroon); outline-offset: 2px; }

.gev-verify-row { display: flex; gap: 10px; flex-wrap: wrap; }
.gev-verify-row .gev-input { flex: 1 1 220px; }

.gev-panel { border-radius: 10px; padding: 14px 16px; font-size: 13.8px; line-height: 1.55; margin-top: 12px; }
.gev-panel--ok   { background: #e9f4ee; border: 1px solid var(--gev-good); color: #1f4c38; }
.gev-panel--warn { background: #fdf3e4; border: 1px solid var(--gev-warn); color: #6d4711; }
.gev-panel--bad  { background: #fbeaea; border: 1px solid var(--gev-bad); color: #7d2020; }
.gev-panel--info { background: var(--gev-wash); border: 1px solid var(--gev-maroon); color: var(--gev-maroon-deep); }
.gev-panel strong { display: block; margin-bottom: 2px; }
.gev-panel a { color: inherit; font-weight: 700; }

/* Fee summary */
.gev-fee-box { background: var(--gev-paper); border: 1px solid var(--gev-line); border-radius: 10px; padding: 16px 18px; }
.gev-fee-line { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 14.4px; }
.gev-fee-line + .gev-fee-line { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--gev-line); }
.gev-fee-total { font-size: 1.32rem; font-weight: 800; color: var(--gev-maroon); }

/* Terms + consent */
.gev-terms-box {
  max-height: 260px; overflow-y: auto;
  border: 1px solid var(--gev-line); border-radius: 10px;
  padding: 16px 18px; background: var(--gev-paper);
  font-size: 13.8px; line-height: 1.65; color: var(--gev-ink-2);
  margin-bottom: 18px;
}
.gev-terms-box h2, .gev-terms-box h3 { font-size: 1rem; color: var(--gev-ink); margin: 14px 0 6px; }
.gev-terms-box p { margin: 0 0 10px; }
.gev-terms-box ul, .gev-terms-box ol { padding-left: 1.3em; margin: 0 0 10px; }

.gev-consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start;
               margin-bottom: 14px; cursor: pointer; text-align: left; line-height: 1.6; }
.gev-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gev-maroon); cursor: pointer; }
.gev-consent input:focus-visible { outline: 2px solid var(--gev-maroon); outline-offset: 2px; }
.gev-consent span { font-size: 13.8px; line-height: 1.6; color: var(--gev-ink-2); }
.gev-consent .required-tag { display: inline-block; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gev-maroon); font-weight: 700; margin-left: 6px; }
.gev-consent--unmet span { color: var(--gev-ink); }

.gev-submit-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.gev-submit-hint { font-size: 12.8px; color: var(--gev-muted); }

/* Honeypot - off-screen rather than display:none, which some bots detect. */
.gev-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.gev-alert { border-radius: 10px; padding: 15px 18px; margin-bottom: 20px; font-size: 14.2px; line-height: 1.6; }
.gev-alert--bad  { background: #fbeaea; border: 1px solid var(--gev-bad); color: #7d2020; }
.gev-alert--ok   { background: #e9f4ee; border: 1px solid var(--gev-good); color: #1f4c38; }
.gev-alert--warn { background: #fdf3e4; border: 1px solid var(--gev-warn); color: #6d4711; }
.gev-alert ul { margin: 8px 0 0; padding-left: 1.2em; }

/* ── Booking confirmation ────────────────────────────────── */
.gev-confirm { padding: calc(var(--gev-navclear) + 32px) 0 60px; }
.gev-confirm-card {
  max-width: 640px; margin: 0 auto; background: #fff;
  border: 1px solid var(--gev-line); border-radius: var(--gev-radius);
  overflow: hidden; box-shadow: var(--gev-shadow);
}
.gev-confirm-top { background: var(--gev-maroon); color: #fff; padding: 30px 28px; text-align: center; }
.gev-confirm-top h1 { color: #fff; font-size: 1.55rem; font-weight: 700; margin: 8px 0 6px; }
.gev-confirm-top p { margin: 0; opacity: .92; font-size: 14.4px; }
.gev-tick { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; margin: 0 auto; font-size: 24px; }
.gev-ref-box { text-align: center; padding: 24px 28px; border-bottom: 1px solid var(--gev-line); }
.gev-ref-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gev-muted); font-weight: 700; }
.gev-ref { font-size: 1.9rem; font-weight: 800; letter-spacing: .06em; color: var(--gev-maroon); margin-top: 6px; font-family: ui-monospace, Menlo, Consolas, monospace; }
.gev-confirm-body { padding: 24px 28px 28px; }
.gev-dl { display: grid; grid-template-columns: 116px 1fr; gap: 9px 16px; font-size: 14px; margin: 0; }
.gev-dl dt { color: var(--gev-muted); }
.gev-dl dd { margin: 0; color: var(--gev-ink); }

/* Lookup form on the booking page */
.gev-lookup { max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid var(--gev-line); border-radius: var(--gev-radius); padding: 28px; box-shadow: var(--gev-shadow); }

/* 404 */
.gev-notfound { padding: calc(var(--gev-navclear) + 60px) 0 90px; text-align: center; }
.gev-notfound h1 { font-size: 1.8rem; font-weight: 700; margin: 0 0 10px; }
.gev-notfound p { color: var(--gev-muted); margin: 0 0 22px; }

/* ── Utility ─────────────────────────────────────────────── */
.gev-hidden { display: none !important; }
.gev-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
