
:root {
  --ink: #171511;
  --paper: #f6f0e4;
  --paper-deep: #eadfc9;
  --orange: #f45b2a;
  --orange-dark: #d94418;
  --lime: #d9ee66;
  --white: #fffdf7;
  --line: rgba(23, 21, 17, 0.16);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  transform: translateY(-150%); background: #fff; color: #111;
  padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 240, 228, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-family: Impact, "Arial Black", sans-serif; font-size: 25px; letter-spacing: .045em; }
.brand small { font-size: 9px; font-weight: 800; letter-spacing: .2em; margin-top: 5px; }
nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
nav a { font-size: 13px; font-weight: 800; letter-spacing: .04em; }
nav a:hover, nav a:focus-visible { color: var(--orange); }
.mobile-menu { display: none; border: 0; }
.mobile-menu summary { border: 0; padding: 9px 14px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; }
.mobile-menu summary::after { content: "＋"; margin-left: 8px; }
.mobile-menu[open] summary::after { content: "−"; }
.mobile-menu > div {
  position: absolute; top: 68px; left: 14px; right: 14px;
  display: grid; padding: 12px; border: 1px solid var(--line);
  border-radius: 16px; background: var(--white); box-shadow: 0 16px 35px rgba(23,21,17,.16);
}
.mobile-menu > div a { padding: 10px 12px; border-radius: 8px; font-weight: 800; font-size: 14px; }
.mobile-menu > div a:hover { background: var(--paper); color: var(--orange-dark); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 25px; border: 2px solid var(--orange);
  background: var(--orange); color: #fff; font-weight: 900;
  letter-spacing: .025em; border-radius: 999px;
  box-shadow: 0 8px 0 rgba(100, 30, 6, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 0 rgba(100,30,6,.28); background: var(--orange-dark); }
.button-small { min-height: 42px; padding-inline: 18px; box-shadow: none; font-size: 13px; }
.text-link { font-weight: 900; border-bottom: 2px solid currentColor; padding-bottom: 3px; }
.text-link:hover { color: var(--orange); }

.hero { min-height: 820px; position: relative; color: #fff; overflow: hidden; display: flex; align-items: center; }
.hero-photo, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo { object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(15,13,10,.94) 0%, rgba(15,13,10,.76) 42%, rgba(15,13,10,.14) 78%), linear-gradient(0deg, rgba(15,13,10,.48), transparent 40%); }
.hero-content { position: relative; z-index: 2; padding: 108px 0 178px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; font-size: 12px; line-height: 1; letter-spacing: .18em; font-weight: 900; }
.eyebrow span { background: var(--lime); color: var(--ink); border-radius: 99px; padding: 9px 12px; }
.hero h1 {
  max-width: 820px; margin: 0; font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(64px, 8.4vw, 126px); line-height: .83; letter-spacing: .012em;
  text-transform: uppercase; font-weight: 900;
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-lead { max-width: 600px; font-size: 19px; line-height: 1.7; color: rgba(255,255,255,.84); margin: 35px 0 0; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; }
.event-ribbon {
  position: absolute; z-index: 3; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px)); display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); color: var(--ink); border-radius: 18px 18px 0 0;
  box-shadow: 0 -20px 50px rgba(0,0,0,.15);
}
.event-ribbon div { padding: 24px 28px; border-right: 1px solid var(--line); }
.event-ribbon div:last-child { border-right: 0; }
.event-ribbon span { display: block; color: var(--orange-dark); font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.event-ribbon strong { display: block; margin-top: 5px; font-size: 14px; }

.section-kicker { color: var(--orange-dark); }
.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; }
h2 {
  margin: 0; font-family: Impact, "Arial Black", sans-serif; font-weight: 900;
  font-size: clamp(46px, 5.5vw, 76px); line-height: .98; letter-spacing: .015em;
  text-transform: uppercase;
}
.intro-copy { font-size: 18px; color: #5c554b; }
.intro-copy p:first-child { margin-top: 0; }
.stat-row { margin-top: 78px; display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stat-row div { padding: 28px 24px; border-right: 1px solid var(--line); }
.stat-row div:first-child { padding-left: 0; }
.stat-row div:last-child { border-right: 0; }
.stat-row strong { display: block; font-family: Impact, "Arial Black", sans-serif; color: var(--orange); font-size: 46px; line-height: 1; }
.stat-row span { display: block; margin-top: 7px; color: #6b6256; font-size: 13px; font-weight: 800; }

.experience { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: end; margin-bottom: 52px; }
.section-heading > p { margin: 0 0 7px; color: #6b6256; font-size: 16px; }
.feature-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; }
.feature { position: relative; min-height: 360px; border-radius: 24px; overflow: hidden; background: var(--ink); color: #fff; }
.feature-large { grid-row: span 2; min-height: 744px; }
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .76; }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,14,10,.9), transparent 65%); }
.feature-copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 34px; }
.feature-copy span { color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .17em; }
.feature-copy h3 { font-size: 30px; line-height: 1.08; margin: 9px 0 10px; }
.feature-copy p { color: rgba(255,255,255,.76); margin: 0; }
.feature-color { background: var(--orange); color: #fff; }
.feature-color::after { display: none; }
.feature-color .feature-copy { top: 0; display: flex; flex-direction: column; justify-content: flex-end; }
.feature-color .feature-copy span { color: var(--ink); }
.feature-color .feature-copy p { color: rgba(255,255,255,.87); }
.feature-color a { margin-top: 20px; font-weight: 900; }

.schedule-section { background: var(--ink); color: #fff; }
.section-heading.light > p { color: rgba(255,255,255,.6); }
.schedule-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.schedule-tabs span { padding: 12px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.schedule-tabs .active { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.timeline { border-top: 1px solid rgba(255,255,255,.18); }
.timeline article { display: grid; grid-template-columns: 160px 1fr; gap: 34px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.timeline time { font-family: Impact, "Arial Black", sans-serif; font-size: 38px; color: var(--lime); }
.timeline article div { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 25px; align-items: center; }
.timeline span { color: var(--orange); font-size: 10px; letter-spacing: .16em; font-weight: 900; }
.timeline h3 { margin: 0; font-size: 20px; }
.timeline p { margin: 0; color: rgba(255,255,255,.58); }

.vendors-section { background: var(--paper); }
.vendor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vendor-card { position: relative; min-height: 245px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); display: flex; flex-direction: column; }
.vendor-number { color: #a99f91; font-family: Impact, sans-serif; font-size: 28px; }
.vendor-tag { position: absolute; top: 26px; right: 24px; background: var(--paper-deep); padding: 5px 9px; border-radius: 99px; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.vendor-card h3 { margin: auto 0 5px; font-size: 22px; line-height: 1.1; }
.vendor-card p { margin: 0; color: #6b6256; font-size: 14px; }
.vendor-card:nth-child(3n+1) { border-top: 5px solid var(--orange); }
.vendor-card:nth-child(3n+2) { border-top: 5px solid var(--lime); }
.vendor-card:nth-child(3n) { border-top: 5px solid var(--ink); }
.vendor-note { margin: 24px 0 0; color: #6b6256; font-size: 13px; }

.visit-section { background: var(--orange); }
.visit-grid { display: grid; grid-template-columns: 1fr 390px; gap: 80px; align-items: center; }
.visit-card .section-kicker { color: var(--ink); }
.visit-list { margin-top: 42px; border-top: 1px solid rgba(23,21,17,.22); }
.visit-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(23,21,17,.22); }
.visit-list span { font-weight: 900; }
.visit-list p { margin: 0; }
.visit-list b { display: block; margin-bottom: 3px; }
.ticket-card { position: relative; background: var(--paper); border: 2px solid var(--ink); border-radius: 24px; padding: 30px; box-shadow: 13px 13px 0 var(--ink); overflow: hidden; }
.ticket-card::before, .ticket-card::after { content: ""; position: absolute; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); top: 67%; }
.ticket-card::before { left: -13px; }
.ticket-card::after { right: -13px; }
.ticket-top { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px dashed #a79d8f; padding-bottom: 20px; }
.ticket-top img { width: 68px; height: 68px; object-fit: contain; }
.ticket-top span { font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.ticket-card > strong { display: block; margin-top: 18px; font-family: Impact, sans-serif; font-size: 84px; line-height: 1; color: var(--orange); }
.ticket-card h3 { margin: 0 0 22px; font-size: 26px; line-height: 1; letter-spacing: .08em; }
.ticket-detail { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--line); font-size: 13px; }
.ticket-detail span { font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.ticket-card > p { margin: 28px 0 0; padding-top: 20px; border-top: 1px dashed #a79d8f; font-size: 12px; font-weight: 800; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-intro { color: #6b6256; max-width: 400px; margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-weight: 900; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 24px; color: var(--orange); }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -8px 0 24px; color: #6b6256; max-width: 700px; }

.closing { padding: 118px 0; text-align: center; background: var(--lime); }
.closing-inner { max-width: 900px; }
.closing .section-kicker { justify-content: center; color: var(--ink); }
.closing p:not(.section-kicker) { max-width: 650px; margin: 25px auto 0; font-size: 18px; }
.closing-actions { margin-top: 35px; display: flex; justify-content: center; align-items: center; gap: 28px; }
.button-dark { background: var(--ink); border-color: var(--ink); box-shadow: 0 8px 0 rgba(23,21,17,.22); }
.text-link.dark:hover { color: var(--orange-dark); }

footer { background: var(--ink); color: #fff; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: center; }
.footer-brand img { width: 52px; height: 52px; }
.footer-grid > p { color: rgba(255,255,255,.55); font-size: 13px; max-width: 310px; }
.footer-links { display: flex; gap: 20px; font-size: 12px; font-weight: 800; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: 11px; }

@media (max-width: 980px) {
  nav { display: none; }
  .mobile-menu { display: block; margin-left: auto; }
  .header-inner .button-small { margin-left: auto; }
  .hero { min-height: 780px; }
  .event-ribbon { grid-template-columns: repeat(2, 1fr); }
  .event-ribbon div:nth-child(2) { border-right: 0; }
  .event-ribbon div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid, .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-large { min-height: 600px; grid-row: auto; }
  .feature { min-height: 440px; }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .ticket-card { max-width: 500px; }
  .timeline article div { grid-template-columns: 120px 1fr; }
  .timeline article div p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .site-header { position: relative; }
  .header-inner { min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand b { font-size: 21px; }
  .brand small { font-size: 7px; }
  .header-inner .button-small { display: none; }
  .hero { min-height: 880px; align-items: flex-start; }
  .hero-shade { background: linear-gradient(90deg, rgba(15,13,10,.9), rgba(15,13,10,.55)), linear-gradient(0deg, rgba(15,13,10,.72), transparent); }
  .hero-content { padding-top: 86px; }
  .hero h1 { font-size: clamp(56px, 18vw, 82px); }
  .hero-lead { font-size: 16px; max-width: 92%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .event-ribbon { width: 100%; border-radius: 0; }
  .event-ribbon div { padding: 16px 14px; }
  .event-ribbon strong { font-size: 12px; }
  .intro-grid { gap: 26px; }
  h2 { font-size: 46px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .stat-row div { padding: 22px 14px; }
  .stat-row div:nth-child(2) { border-right: 0; }
  .stat-row div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat-row strong { font-size: 38px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
  .feature-large { min-height: 520px; }
  .feature { min-height: 390px; }
  .feature-copy { padding: 25px; }
  .schedule-tabs { overflow-x: auto; }
  .schedule-tabs span { white-space: nowrap; }
  .timeline article { grid-template-columns: 84px 1fr; gap: 14px; }
  .timeline time { font-size: 30px; }
  .timeline article div { display: block; }
  .timeline h3 { margin: 5px 0; }
  .vendor-grid { grid-template-columns: 1fr; }
  .vendor-card { min-height: 200px; }
  .visit-grid { gap: 48px; }
  .ticket-card { box-shadow: 8px 8px 0 var(--ink); }
  .ticket-card > strong { font-size: 68px; }
  .faq-grid { gap: 30px; }
  .closing-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .footer-bottom { gap: 14px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
