:root {
  --bg: #10130b;
  --panel: rgba(255, 249, 231, 0.96);
  --panel-dark: rgba(24, 30, 17, 0.88);
  --text: #fff8e8;
  --ink: #20180d;
  --muted: #f2dfb8;
  --gold: #e7b84b;
  --green: #44692f;
  --deep-green: #1d3218;
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(16,19,11,.96), rgba(16,19,11,.68), rgba(16,19,11,.96)),
    linear-gradient(rgba(16,19,11,.72), rgba(16,19,11,.94)),
    url('../images/hero/mwe-2026-final-flyer.jpg?v=20260616-final') center top / cover fixed;
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(231,184,75,.18), transparent 42%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 19, 11, 0.91);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.site-header__inner,
.site-footer__inner,
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
}
.site-nav {
  display: flex;
  gap: 18px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .92rem;
}
.site-nav a,
.site-footer a { color: var(--text); text-decoration: none; }
.site-nav a:hover,
.site-footer a:hover { color: var(--gold); }

.page-shell { position: relative; padding: 38px 0 52px; }
.hero {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 520px);
  gap: 28px;
  align-items: center;
}
.hero__content,
.content-band,
.sponsor-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--panel-dark);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: clamp(.78rem, 1.5vw, .94rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: .94;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,.55);
  overflow-wrap: normal;
}

.tagline {
  margin: 24px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 900;
  line-height: 1.38;
  text-transform: uppercase;
}
.event-card {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.event-card > div,
.info-grid article {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.event-card > div {
  padding: 18px;
  border-left: 6px solid var(--green);
  border-radius: 18px;
}
.label {
  display: block;
  margin-bottom: 7px;
  color: #6b5130;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-card strong { font-size: clamp(1.04rem, 2vw, 1.42rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #171207; box-shadow: 0 14px 28px rgba(231,184,75,.22); }
.btn-secondary { color: var(--text); border: 1px solid var(--border); }
.hero__poster img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border: 8px solid rgba(255,249,231,.82);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #000;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.visit-details {
  margin-top: 30px;
  padding: clamp(24px, 3.8vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 249, 231, 0.98), rgba(246, 229, 185, 0.98));
  color: var(--ink);
  border: 1px solid rgba(32, 24, 13, .16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.visit-details__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.visit-details__heading h2 {
  margin: 0;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
}

.visit-details__heading p:last-child {
  margin: 0;
  color: #4d3d27;
  font-weight: 800;
}

.visit-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.visit-panel {
  padding: clamp(22px, 3vw, 34px);
  background: #fffdf4;
  border: 2px solid rgba(68, 105, 47, .16);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(32, 24, 13, .16);
}

.visit-panel h3 {
  margin: 0 0 18px;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.hours-list,
.admission-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours-list div,
.admission-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(68, 105, 47, .08);
  border-left: 6px solid var(--green);
  border-radius: 16px;
}

.hours-list dt,
.admission-list span {
  color: #5a4427;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hours-list dd,
.admission-list strong {
  margin: 0;
  color: var(--deep-green);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 900;
  text-align: right;
}

.kids-day {
  margin: 16px 0 0;
  padding: 16px 18px;
  background: var(--gold);
  color: #171207;
  border-radius: 18px;
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.info-grid article { padding: 25px; border-radius: 22px; }
.info-grid h2,
.content-band h2,
.sponsor-card h2 { margin: 0 0 10px; text-transform: uppercase; }
.info-grid h2 { color: #365322; font-size: 1.2rem; }
p { line-height: 1.55; }
.info-grid p,
.content-band p,
.sponsor-card p { margin: 0; }
.content-band,
.sponsor-card { margin-top: 30px; }
.content-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.content-band h2,
.sponsor-card h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
  line-height: 1;
}

.sponsor-card {
  display: grid;
  gap: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 30, 17, .94), rgba(47, 70, 31, .9)),
    var(--panel-dark);
}

.sponsor-card__heading {
  max-width: 860px;
}

.sponsor-card__heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
}

.title-sponsor {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 249, 231, .98), rgba(231, 184, 75, .9));
  color: var(--ink);
  border: 2px solid rgba(231, 184, 75, .48);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.title-sponsor::after {
  content: '';
  position: absolute;
  right: -36px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  background: rgba(68, 105, 47, .18);
  border-radius: 50%;
}

.title-sponsor:hover,
.sponsor-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0,0,0,.34);
}

.title-sponsor h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  line-height: .96;
  text-transform: uppercase;
}

.sponsor-tier {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  background: var(--deep-green);
  color: var(--gold);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sponsor-visit {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 18px;
  color: #4c3513;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.sponsor-tile {
  min-height: 132px;
  display: grid;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  background:
    linear-gradient(180deg, rgba(255, 253, 244, .98), rgba(244, 229, 190, .96));
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.42);
  border-bottom: 5px solid var(--green);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  text-decoration: none;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sponsor-tile span {
  color: var(--deep-green);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.sponsor-tile em,
.sponsor-links a {
  color: #6b5130;
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sponsor-tile:hover {
  border-color: var(--gold);
}

.sponsor-tile:hover em,
.sponsor-links a:hover {
  color: var(--deep-green);
}

.sponsor-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sponsor-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  background: rgba(68, 105, 47, .1);
  border: 1px solid rgba(68, 105, 47, .22);
  border-radius: 999px;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(16,19,11,.94);
}
.site-footer__inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer p { margin: 6px 0 0; color: var(--muted); }

.site-footer .powered-by {
  margin-top: 8px;
  font-weight: 700;
  color: var(--text);
}

.site-footer .powered-by a {
  color: var(--gold);
  text-decoration: none;
}


/* Contact form */
.contact-page {
  padding-top: 42px;
}

.contact-hero {
  max-width: 980px;
  margin: 0 auto 30px;
  padding: clamp(30px, 4vw, 54px);
  background: linear-gradient(135deg, rgba(24, 30, 17, 0.94), rgba(58, 86, 38, 0.88));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  text-align: center;
}

.contact-hero h1 {
  margin: 0 auto;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.contact-hero .tagline {
  margin: 18px auto 0;
  max-width: 780px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  text-transform: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.contact-info-card,
.contact-panel {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-info-card {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(24, 30, 17, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}


.contact-event-title {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  letter-spacing: 0.01em;
}

.contact-info-card h2 {
  margin: 0 0 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-detail {
  margin-top: 16px;
  padding: 16px;
  background: var(--panel);
  color: var(--ink);
  border-left: 6px solid var(--gold);
  border-radius: 18px;
}

.contact-detail strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.35;
}

.contact-email-value {
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(0.82rem, 1.7vw, 0.96rem);
}

.contact-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-panel {
  padding: clamp(24px, 3.4vw, 42px);
  background: var(--panel);
  color: var(--ink);
  border: 1px solid rgba(32, 24, 13, .12);
}

.contact-panel h2 {
  margin: 0;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1;
  text-transform: uppercase;
}

.form-intro {
  margin: 10px 0 24px;
  color: #59462b;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--deep-green);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .84rem;
}

.form-group label span {
  color: #9b2b16;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid rgba(68, 105, 47, .24);
  border-radius: 16px;
  padding: 15px 16px;
  background: #fffdf4;
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(68, 105, 47, .16);
}

.form-group textarea {
  resize: vertical;
  min-height: 170px;
}

.form-submit {
  width: fit-content;
  min-width: 180px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 900;
}

.form-alert--error {
  background: #fff0f0;
  color: #7a1515;
  border: 1px solid rgba(122,21,21,.25);
}

.website-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.checkbox-stack {
  display: grid;
  gap: 12px;
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  background: #fffdf4;
  border: 2px solid rgba(68, 105, 47, .2);
  border-radius: 16px;
  color: var(--deep-green);
  font-weight: 900;
  line-height: 1.35;
}

.checkbox-option input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--green);
}

.checkbox-option strong {
  color: #9b2b16;
}

@media (max-width: 860px) {
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Interior event pages */
.interior-page {
  padding-top: 42px;
}

.page-hero {
  max-width: 1060px;
  margin: 0 auto 30px;
  padding: clamp(30px, 4vw, 54px);
  background: linear-gradient(135deg, rgba(24, 30, 17, 0.94), rgba(58, 86, 38, 0.88));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  text-align: center;
}

.page-hero h1 {
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
}

.page-hero .tagline {
  margin: 18px auto 0;
  max-width: 820px;
  text-transform: none;
}

.centered-actions {
  justify-content: center;
  margin-top: 26px;
}

.document-card,
.media-card {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid rgba(32, 24, 13, .12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.document-card {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(22px, 3.4vw, 42px);
}

.vendor-letter {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.62;
}


.download-panel {
  max-width: 1060px;
  margin: 0 auto 30px;
  padding: clamp(24px, 3.4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid rgba(32, 24, 13, .12);
  border-left: 8px solid var(--gold);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.download-panel h2 {
  margin: 0 0 12px;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.download-panel p {
  margin: 0;
  color: #4d3d27;
  font-weight: 700;
}

.application-contact {
  max-width: 1060px;
  margin: 0 auto 30px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--panel);
  color: var(--ink);
  border: 1px solid rgba(32, 24, 13, .12);
  border-left: 8px solid var(--gold);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.application-contact--inline {
  max-width: none;
  margin: 20px 0 0;
  padding: 18px 20px;
  box-shadow: none;
}

.application-contact h2,
.application-contact h3 {
  margin: 0 0 10px;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  text-transform: uppercase;
}

.application-contact h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.application-contact h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.application-contact p {
  margin: 8px 0 0;
  color: #4d3d27;
  font-weight: 800;
}

.application-contact a {
  color: var(--deep-green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contract-highlights {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.65;
}

.contract-highlights strong {
  color: var(--deep-green);
}

@media (max-width: 760px) {
  .download-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

.media-card {
  padding: clamp(18px, 2.8vw, 30px);
}

.media-card h2 {
  margin: 0 0 18px;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 6px solid rgba(68, 105, 47, .18);
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
  background: #fff;
}

.wide-media-card {
  max-width: 1120px;
  margin: 0 auto;
}

.card-action {
  margin-top: 14px !important;
}

.card-action a {
  color: var(--deep-green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.featured-attractions,
.feature-list {
  margin-top: 30px;
  padding: clamp(24px, 3.6vw, 42px);
  background: rgba(24, 30, 17, 0.92);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section-heading--light p:last-child {
  color: #5a4427;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.giveaway-feature {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  margin-bottom: 26px;
  background: var(--panel);
  color: var(--ink);
  border: 3px solid var(--gold);
  border-radius: 26px;
  box-shadow: 0 20px 52px rgba(0,0,0,.34);
  overflow: hidden;
}

.giveaway-feature__media {
  display: block;
  background: #000;
}

.giveaway-feature__media img {
  display: block;
  width: 100%;
  height: auto;
}

.giveaway-feature--kids {
  display: block;
}

.giveaway-feature__media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: #111;
}

.giveaway-feature__media-pair .giveaway-feature__media,
.giveaway-feature__media-pair .giveaway-feature__video {
  min-height: 100%;
}

.giveaway-feature__content {
  padding: clamp(24px, 4vw, 46px);
}

.giveaway-feature__content h3 {
  margin: 0 0 16px;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: .95;
  text-transform: uppercase;
}

.giveaway-feature__lead {
  margin: 0;
  color: #4d3d27;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
}

.giveaway-feature__details {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.giveaway-feature__details li {
  padding: 12px 14px;
  background: rgba(68, 105, 47, .1);
  border-left: 5px solid var(--green);
  border-radius: 10px;
  color: var(--deep-green);
  font-weight: 900;
  text-transform: uppercase;
}

.giveaway-feature__video {
  margin-top: 22px;
  padding: 10px;
  background: #111;
  border: 3px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
}

.giveaway-feature__media-pair .giveaway-feature__video {
  display: flex;
  align-items: center;
  margin-top: 0;
}

.giveaway-feature__video video {
  display: block;
  width: 100%;
  max-height: 440px;
  background: #000;
  border-radius: 10px;
}

.attraction-card,
.feature-row {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid rgba(32, 24, 13, .12);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
  overflow: hidden;
}

.attraction-card__image,
.feature-row__media {
  display: block;
  background: #000;
}

.attraction-card__image img,
.feature-row__media img {
  display: block;
  width: 100%;
  height: auto;
}

.attraction-card__image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.attraction-card__image--contain img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.attraction-card__body,
.feature-row__content {
  padding: clamp(20px, 2.8vw, 30px);
}

.attraction-card h3,
.feature-row h3 {
  margin: 0 0 12px;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.attraction-card p,
.feature-row p {
  margin: 0;
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--deep-green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.featured-attractions__action {
  margin: 24px 0 0;
  text-align: center;
}

.feature-list {
  background: var(--panel);
  color: var(--ink);
}

.personality-roster {
  margin-top: 30px;
  padding: clamp(24px, 3.6vw, 42px);
  background: linear-gradient(135deg, rgba(24, 30, 17, .96), rgba(50, 75, 33, .94));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.personality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.personality-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fffdf4, #f4e5be);
  color: var(--ink);
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.personality-card strong {
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.personality-card span {
  margin-top: 8px;
  color: #6b5130;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.personality-roster--sponsors {
  border-color: rgba(224, 185, 91, .7);
  box-shadow: 0 18px 45px rgba(0,0,0,.28), 0 0 0 2px rgba(224, 185, 91, .14) inset;
}

.personality-card--sponsor {
  border-left-color: #b8860b;
  background: linear-gradient(180deg, #fffdf4, #efd99e);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1fr);
  align-items: center;
}

.feature-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .85fr);
}

.feature-row--reverse .feature-row__media {
  order: 2;
}

@media (max-width: 980px) {
  .media-grid,
  .attraction-grid,
  .personality-grid,
  .giveaway-feature,
  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-row__media {
    order: 0;
  }
}


.site-footer{
  text-align:center;
}
.site-footer__inner{
  display:flex;
  justify-content:center;
  text-align:center;
}
.footer-social{
  margin:12px 0;
}


/* Social media bar */
.social-bar {
  position: relative;
  z-index: 9;
  background: rgba(255, 249, 231, 0.96);
  color: var(--ink);
  border-bottom: 1px solid rgba(32, 24, 13, .16);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.social-bar__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px 0;
}

.social-bar__label {
  color: var(--deep-green);
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .9rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #4267B2;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(66,103,178,.25);
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(66,103,178,.32);
}

.social-link img {
  display: block;
  width: 58px;
  height: 20px;
  object-fit: contain;
}

/* 2027 Vendor Portal */
.vendor-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.vendor-hero,
.vendor-card {
  margin-bottom: 24px;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 249, 231, .97);
  color: var(--ink);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.vendor-card--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.vendor-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vendor-hero .eyebrow,
.vendor-hero h1,
.vendor-hero > p,
.vendor-hero .vendor-actions {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vendor-hero .eyebrow {
  margin-top: 0;
  margin-bottom: 14px;
  color: #8a6817;
}

.vendor-hero h1,
.vendor-card h1 {
  color: var(--deep-green);
}

.vendor-hero h1 {
  max-width: 960px;
  margin-top: .25rem;
  margin-bottom: 18px;
}

.vendor-card h1 {
  margin-top: .25rem;
}

.vendor-hero > p {
  max-width: 960px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink);
  line-height: 1.55;
}

.vendor-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.vendor-actions .btn,
.vendor-actions a {
  text-align: center;
}

.vendor-hero .btn-primary {
  background: var(--gold);
  color: #171207 !important;
}

.vendor-hero .btn-secondary,
.vendor-hero .btn--secondary {
  background: #fffdf4 !important;
  color: var(--deep-green) !important;
  border: 2px solid var(--deep-green);
}

.vendor-feature-grid,
.vendor-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.vendor-feature-grid article,
.vendor-status-grid article {
  padding: 24px;
  background: rgba(255, 249, 231, .97);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.vendor-feature-grid h2,
.vendor-feature-grid h3,
.vendor-feature-grid h4,
.vendor-status-grid h2,
.vendor-status-grid h3,
.vendor-status-grid h4 {
  margin-top: 0;
  color: var(--deep-green);
}

.vendor-feature-grid p,
.vendor-status-grid p,
.vendor-feature-grid small,
.vendor-status-grid small,
.vendor-status-grid span {
  color: #4d3d27;
}

.vendor-feature-grid p,
.vendor-status-grid p {
  margin-bottom: 0;
}

.vendor-status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vendor-status-grid span,
.vendor-status-grid strong,
.vendor-status-grid small {
  display: block;
}

.vendor-status-grid strong {
  margin: .35rem 0;
  color: var(--deep-green);
  font-size: 1.25rem;
}

.vendor-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vendor-form {
  display: grid;
  gap: 18px;
}

.vendor-form label {
  display: grid;
  gap: 7px;
  color: var(--deep-green);
  font-weight: 800;
}

.vendor-form input,
.vendor-form textarea,
.vendor-form select {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(20, 36, 25, .28);
  border-radius: 10px;
  font: inherit;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vendor-grid--three {
  grid-template-columns: 2fr 1fr 1fr;
}

.vendor-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vendor-check-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-green);
  font-weight: 700;
}

.vendor-check-grid input {
  width: auto;
}

.vendor-alert {
  margin: 14px 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 800;
}

.vendor-alert--error {
  background: #f9dddd;
  color: #7a1818;
}

.vendor-alert--success {
  background: #dff3e4;
  color: #165a2d;
}

.vendor-alert--warning {
  background: #fff0c2;
  color: #6f4d00;
}

.vendor-link-row {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.vendor-form-link {
  margin-top: 18px;
  text-align: center;
}

.vendor-card a:not(.btn),
.vendor-form-link a,
.vendor-link-row a {
  color: var(--deep-green);
  font-weight: 800;
}

@media (max-width: 850px) {
  .vendor-status-grid,
  .vendor-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-grid,
  .vendor-grid--three,
  .vendor-check-grid {
    grid-template-columns: 1fr;
  }

  .vendor-dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .vendor-status-grid,
  .vendor-feature-grid {
    grid-template-columns: 1fr;
  }

  .vendor-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 24px;
  }

  .vendor-card,
  .vendor-hero {
    padding: 22px;
  }

  .vendor-actions .btn,
  .vendor-actions a {
    width: 100%;
  }
}

/* 2026 Exhibitor Directory */
.exhibitor-directory {
  display: grid;
  gap: 28px;
}

.exhibitor-directory__hero {
  text-align: center;
}

.exhibitor-directory__hero .tagline {
  max-width: 850px;
  margin-inline: auto;
}

.exhibitor-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 30px auto 0;
}

.exhibitor-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
}

.exhibitor-stats strong,
.exhibitor-stats span {
  display: block;
}

.exhibitor-stats strong {
  color: var(--gold);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
}

.exhibitor-stats span {
  margin-top: 7px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.directory-tools,
.exhibitor-category,
.directory-note {
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 249, 231, .98);
  color: var(--ink);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.directory-search {
  max-width: 720px;
  margin: 0 auto;
}

.directory-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-green);
  font-weight: 900;
}

.directory-search input {
  width: 100%;
  padding: 15px 17px;
  background: #fff;
  color: var(--ink);
  border: 2px solid rgba(20, 36, 25, .24);
  border-radius: 12px;
  font: inherit;
}

.directory-search input:focus {
  outline: 3px solid rgba(205, 157, 55, .32);
  border-color: var(--gold);
}

.directory-jump {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.directory-jump a {
  padding: 9px 13px;
  background: var(--deep-green);
  color: #fffdf4;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.directory-jump a:hover,
.directory-jump a:focus {
  background: var(--gold);
  color: #171207;
}

.directory-result {
  margin: 18px 0 0;
  color: #5b4a31;
  text-align: center;
  font-weight: 800;
}

#exhibitor-sections {
  display: grid;
  gap: 28px;
}

.exhibitor-category {
  scroll-margin-top: 130px;
}

.exhibitor-category__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(20, 36, 25, .12);
}

.exhibitor-category__heading h2 {
  margin: 0 0 8px;
  color: var(--deep-green);
}

.exhibitor-category__heading p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #55452e;
}

.category-count {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: #efe4bd;
  color: var(--deep-green);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  white-space: nowrap;
}

.exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.exhibitor-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid rgba(20, 36, 25, .13);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
}

.exhibitor-item[hidden],
.exhibitor-category[hidden] {
  display: none !important;
}

.exhibitor-name {
  color: var(--deep-green);
  font-weight: 800;
  line-height: 1.25;
}

.exhibitor-badge {
  flex: 0 0 auto;
  padding: 5px 8px;
  background: var(--deep-green);
  color: #fff;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.directory-note {
  text-align: center;
}

.directory-note h2 {
  margin-top: 0;
  color: var(--deep-green);
}

.directory-note p {
  max-width: 850px;
  margin-inline: auto;
  color: #55452e;
}

.content-band--exhibitors {
  background: linear-gradient(135deg, rgba(205, 157, 55, .97), rgba(236, 197, 93, .95));
  color: #171207;
}

.content-band--exhibitors .eyebrow,
.content-band--exhibitors h2,
.content-band--exhibitors p {
  color: #171207;
}

.content-band--exhibitors .btn-primary {
  background: var(--deep-green);
  color: #fffdf4;
}


/* 2026 schedule page */
.content-band--schedule {
  margin-top: 30px;
  background: linear-gradient(135deg, rgba(246, 229, 185, .98), rgba(255, 249, 231, .98));
  color: var(--ink);
  border-color: rgba(32, 24, 13, .16);
}

.content-band--schedule h2,
.content-band--schedule .eyebrow {
  color: var(--deep-green);
}

.schedule-page {
  padding: clamp(24px, 4vw, 46px);
  background: rgba(255, 253, 244, .97);
  color: var(--ink);
  border: 1px solid rgba(32, 24, 13, .16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.schedule-page__heading {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.schedule-page__heading h1 {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .95;
  text-transform: uppercase;
}

.schedule-page__heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 760px;
  color: #4d3d27;
  font-weight: 700;
}

.schedule-page__actions {
  justify-content: center;
  margin-top: 22px;
}

.schedule-page__image {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 6px solid #fff;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(32, 24, 13, .24);
}

.schedule-page__image img {
  display: block;
  width: 100%;
  height: auto;
}


/* Volunteer registration */
.content-band--volunteers{background:linear-gradient(135deg,rgba(20,68,43,.98),rgba(38,92,58,.96));color:#fffdf4}.content-band--volunteers h2,.content-band--volunteers p,.content-band--volunteers .eyebrow{color:#fffdf4}.content-band--volunteers .btn-primary{background:var(--gold);color:#171207}.volunteer-page{padding:clamp(24px,4vw,48px);background:rgba(255,253,244,.98);color:var(--ink);border:1px solid rgba(32,24,13,.16);border-radius:30px;box-shadow:var(--shadow)}.volunteer-page__heading{max-width:850px;margin:0 auto 28px;text-align:center}.volunteer-page__heading h1{margin:0 0 14px;color:var(--deep-green);font-family:Georgia,'Times New Roman',serif;font-size:clamp(2.3rem,6vw,4.7rem);line-height:.98;text-transform:uppercase}.volunteer-page__heading p:not(.eyebrow){max-width:760px;margin:0 auto;color:#4d3d27;font-weight:700}.volunteer-form{max-width:1000px;margin:0 auto}.volunteer-form fieldset{margin:0 0 24px;padding:clamp(18px,3vw,28px);border:1px solid rgba(32,24,13,.2);border-radius:18px;background:#fff}.volunteer-form legend{padding:0 10px;color:var(--deep-green);font-family:Georgia,'Times New Roman',serif;font-size:1.45rem;font-weight:800}.volunteer-form__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.volunteer-form label{display:block;color:#2f281f;font-weight:800}.volunteer-form input[type=text],.volunteer-form input[type=tel],.volunteer-form input[type=email]{width:100%;margin-top:7px;padding:13px 14px;border:1px solid #9b9284;border-radius:9px;background:#fff;color:#171207;font:inherit}.volunteer-form input:focus{outline:3px solid rgba(205,157,55,.3);border-color:#9b6f0e}.optional,.field-help,.required-note{color:#6a5c47;font-size:.9rem;font-weight:700}.field-help{margin-top:0}.shift-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}.shift-day{padding:18px;border:1px solid #d5c9b7;border-radius:14px;background:#faf7ef}.shift-day h2{margin:0 0 12px;color:var(--deep-green);font-size:1.25rem}.shift-option{display:flex!important;align-items:center;gap:11px;margin:9px 0;padding:11px;border-radius:9px;background:#fff;border:1px solid #ded7ca;cursor:pointer}.shift-option input{width:20px;height:20px;margin:0;flex:0 0 auto;accent-color:var(--deep-green)}.form-message{max-width:1000px;margin:0 auto 24px;padding:18px 22px;border-radius:14px}.form-message h2{margin-bottom:6px}.form-message p,.form-message ul{margin-bottom:0}.form-message--success{background:#dff3e4;border:1px solid #88bd95}.form-message--error{background:#f8dede;border:1px solid #d98f8f;color:#761b1b}.form-message--error h2{color:#761b1b}.volunteer-submit{width:100%;max-width:420px;display:block;margin:0 auto;font-size:1.05rem}.form-trap{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}@media(max-width:720px){.volunteer-form__grid,.shift-grid{grid-template-columns:1fr}.volunteer-page{padding:22px 16px;border-radius:20px}}

.volunteer-duties{max-width:1000px;margin:0 auto 28px;padding:clamp(20px,3vw,30px);border:1px solid rgba(32,24,13,.18);border-radius:20px;background:linear-gradient(145deg,#f7f1e3,#fffdf7);box-shadow:0 12px 28px rgba(39,30,17,.08)}.volunteer-duties__intro{text-align:center;max-width:800px;margin:0 auto 22px}.volunteer-duties__intro h2{margin:0 0 10px;color:var(--deep-green);font-family:Georgia,'Times New Roman',serif;font-size:clamp(1.65rem,3vw,2.35rem)}.volunteer-duties__intro p:not(.eyebrow){margin:0;color:#4d3d27;font-weight:700}.volunteer-duties__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}.volunteer-duty{padding:18px;border:1px solid #d8cbb6;border-radius:14px;background:#fff}.volunteer-duty h3{margin:0 0 8px;color:var(--deep-green);font-size:1.15rem}.volunteer-duty p{margin:0;color:#4f4435;line-height:1.6}.volunteer-duties__note{margin:18px 0 0;padding:14px 16px;border-left:5px solid var(--gold);border-radius:8px;background:#fff;color:#403522;line-height:1.55}.volunteer-duties__note strong{color:var(--deep-green)}@media(max-width:720px){.volunteer-duties__grid{grid-template-columns:1fr}.volunteer-duties{padding:20px 15px}}
