:root {
  --red: #6f4327;
  --red-dark: #4f2f1c;
  --black: #182217;
  --green: #355b2a;
  --cream: #f3eee3;
  --white: #ffffff;
  --text: #25251f;
  --muted: #6d685e;
  --border: rgba(67,79,49,.16);
  --shadow: 0 20px 60px rgba(58, 49, 34, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; }
.brand span { letter-spacing: -.02em; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { text-decoration: none; font-size: .95rem; font-weight: 700; }
.site-nav a:hover { color: var(--red); }
.nav-cta { background: var(--green); color: white !important; padding: 11px 17px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.6rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 80% 15%, rgba(111,67,39,.16), transparent 28%),
    linear-gradient(135deg, #f8f5ef 0%, #fff 55%, #f3efe7 100%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -240px;
  border: 72px solid rgba(53,91,42,.10);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.eyebrow { color: var(--red); font-size: .82rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.05; margin-top: 0; }
h1 { font-family: "Archivo Black", sans-serif; font-size: clamp(3.3rem, 7vw, 6.8rem); letter-spacing: -.06em; margin-bottom: 26px; text-transform: uppercase; }
h1 span { color: var(--red); }
h2 { font-family: "Archivo Black", sans-serif; font-size: clamp(2.35rem, 5vw, 4rem); letter-spacing: -.045em; margin-bottom: 28px; text-transform: uppercase; }
h3 { font-size: 1.35rem; }
.hero-lead { font-size: 1.18rem; max-width: 690px; color: #494741; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 42px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 28px rgba(111,67,39,.24); }
.btn-primary:hover { background: #25451e; }
.btn-secondary { border: 1px solid rgba(17,17,15,.22); background: rgba(255,255,255,.66); }
.large { min-height: 58px; padding: 0 30px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); max-width: 720px; }
.hero-stats div { padding: 22px 24px 0 0; }
.hero-stats strong { display: block; font-size: 1.3rem; }
.hero-stats span { font-size: .86rem; color: var(--muted); }
.hero-art { display: flex; justify-content: center; }
.logo-card { position: relative; width: min(480px, 100%); background: white; padding: 24px; border: 1px solid var(--border); border-radius: 30px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.logo-card:before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(111,67,39,.20); border-radius: 22px; pointer-events: none; }
.logo-card img { width: 100%; border-radius: 18px; }

.qualifier-strip { background: var(--green); color: white; }
.qualifier-inner { min-height: 94px; display: flex; align-items: center; gap: 20px; }
.qualifier-inner p { margin: 0; color: #dedbd4; }
.badge { flex: 0 0 auto; background: var(--red); padding: 8px 13px; border-radius: 999px; font-size: .78rem; text-transform: uppercase; font-weight: 800; letter-spacing: .1em; }

.section { padding: 100px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--black); color: white; }
.section-heading { margin-bottom: 44px; max-width: 760px; }
.section-heading.compact { margin-bottom: 28px; }
.section-heading.light .eyebrow { color: #b8c99c; }
.card-grid { display: grid; gap: 18px; }
.details-grid { grid-template-columns: repeat(4, 1fr); }
.info-card, .price-card, .ticket-card, .side-card { border: 1px solid var(--border); border-radius: 22px; padding: 28px; background: white; box-shadow: 0 10px 30px rgba(0,0,0,.035); }
.info-card p, .price-card p { margin: 8px 0 0; }
.info-card a { word-break: break-word; }
.featured-card { background: var(--black); color: white; }
.featured-card .muted { color: #c9c5bc; }
.card-kicker { display: block; color: var(--red); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; font-size: .75rem; margin-bottom: 18px; }
.muted { color: var(--muted); }

.levels-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.level-panel { min-height: 220px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); }
.level-panel span { display: block; color: #a9c28d; font-weight: 800; margin-bottom: 36px; }
.level-panel h3 { font-size: 1.5rem; margin-bottom: 10px; }
.level-panel p { color: #c9c5bc; margin: 0; }
.format-note { margin-top: 22px; padding: 22px 24px; border-left: 4px solid var(--red); background: rgba(255,255,255,.06); color: #ddd8cf; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.primary-price { border-color: rgba(111,67,39,.36); background: #f8f3e9; }
.price { font-family: "Archivo Black", sans-serif; font-size: 2.3rem; line-height: 1; margin: 12px 0 14px; }
.deadline-box { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; }
.deadline-box > div { padding: 24px; background: var(--cream); }
.deadline-box > div + div { border-left: 1px solid rgba(17,17,15,.1); }
.deadline-label { display: block; color: var(--red); text-transform: uppercase; letter-spacing: .09em; font-size: .72rem; font-weight: 800; margin-bottom: 10px; }
.deadline-box strong { font-size: 1.12rem; }
.deadline-box p { margin: 7px 0 0; color: var(--muted); }
.notice { margin-top: 20px; padding: 18px 20px; border-radius: 14px; background: #f5eedc; border: 1px solid #d9c594; }

.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: start; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.feature-list li { position: relative; padding: 14px 16px 14px 46px; background: white; border-radius: 14px; border: 1px solid rgba(17,17,15,.08); }
.feature-list li:before { content: "★"; position: absolute; left: 16px; color: var(--red); }
.side-card { padding: 34px; }

.spectator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ticket-card span { display: block; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; font-size: .75rem; color: var(--muted); }
.ticket-card strong { display: block; font-family: "Archivo Black", sans-serif; font-size: 2.8rem; margin: 10px 0 5px; }
.ticket-card p { margin: 0; color: var(--muted); }
.accent-ticket { background: var(--green); color: white; }
.accent-ticket span, .accent-ticket p { color: #d8dfd2; }

.dunk-callout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 26px 28px;
  border: 2px solid #6f4327;
  border-radius: 20px;
  background: linear-gradient(135deg, #f1eadc 0%, #e4ead7 100%);
  box-shadow: 0 16px 36px rgba(58,49,34,.12);
}
.dunk-callout:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -75px;
  top: -90px;
  border-radius: 50%;
  border: 34px solid rgba(53,91,42,.10);
}
.dunk-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest, #1f3b25);
  font-size: 2rem;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.12);
}
.dunk-kicker {
  margin: 0 0 5px;
  color: #6f4327;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 900;
}
.dunk-callout h3 {
  margin: 0 0 8px;
  color: var(--forest, #1f3b25);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -.035em;
}
.dunk-callout p:last-child { margin: 0; max-width: 800px; color: #4e493f; }
.mini-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.mini-features div { padding: 20px 0; border-top: 1px solid var(--border); }
.mini-features strong, .mini-features span { display: block; }
.mini-features span { margin-top: 8px; color: var(--muted); font-size: .92rem; }

.payment-section { background: linear-gradient(135deg, #355b2a 0%, #243d20 58%, #5b3b25 100%); color: white; }
.payment-section .eyebrow { color: #e6dcc4; }
.payment-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.payment-intro { color: #efe4ce; max-width: 520px; }
.dark-outline { margin-top: 18px; color: white; border-color: rgba(255,255,255,.4); background: transparent; }
.bank-card { background: white; color: var(--text); border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(35, 54, 29, .28); }
.bank-row { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 20px 24px; }
.bank-row + .bank-row { border-top: 1px solid var(--border); }
.bank-row span { color: var(--muted); font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }

.music-section { padding-top: 70px; padding-bottom: 70px; }
.music-card { background: var(--black); color: white; border-radius: 28px; padding: 46px; }
.music-card p { color: #d7d2c8; }
.music-card a { color: #fff; font-weight: 700; }

.cta-section { padding: 80px 0; background: var(--cream); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { margin-bottom: 8px; }
.cta-inner p { margin-bottom: 0; }

.site-footer { background: #11170f; color: white; padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { width: 70px; height: 70px; object-fit: contain; border-radius: 12px; }
.footer-brand strong, .footer-brand span, .footer-grid > div > strong, .footer-grid > div > span, .footer-grid > div > a { display: block; }
.footer-grid > div > a, .footer-grid > div > span { margin-top: 6px; color: #bbb7ae; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #8f8b83; font-size: .86rem; }
.footer-bottom a { color: #d7d2c8; text-decoration: none; }

@media (max-width: 980px) {
  .site-nav { position: absolute; top: 78px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 18px 24px 24px; display: none; flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .two-col, .payment-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .logo-card { width: min(340px, 85vw); }
  .details-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand span { display: none; }
  .hero { padding: 46px 0 54px; }
  h1 { font-size: clamp(2.9rem, 17vw, 4.8rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .qualifier-inner { padding: 18px 0; align-items: flex-start; flex-direction: column; }
  .section { padding: 70px 0; }
  .details-grid, .pricing-grid, .spectator-grid, .levels-grid, .deadline-box, .mini-features, .footer-grid { grid-template-columns: 1fr; }
  .deadline-box > div + div { border-left: 0; border-top: 1px solid rgba(17,17,15,.1); }
  .bank-row { grid-template-columns: 1fr; gap: 5px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}


/* Tentative schedule */
.schedule-section { background: #eee7d8; }
.schedule-note { margin-top: -12px; color: var(--muted); max-width: 680px; }
.schedule-grid { display: grid; grid-template-columns: .8fr 1.1fr 1.1fr; gap: 20px; align-items: start; }
.schedule-day { background: #fffdf8; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: 0 12px 34px rgba(58,49,34,.08); }
.schedule-day-head { padding: 22px 24px; background: var(--green); color: white; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.schedule-day-head span { font-family: "Archivo Black", sans-serif; text-transform: uppercase; font-size: 1.35rem; letter-spacing: -.02em; }
.schedule-day-head strong { color: #dce7ce; font-size: .88rem; white-space: nowrap; }
.schedule-item { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 20px 24px; align-items: start; }
.schedule-item + .schedule-item { border-top: 1px solid var(--border); }
.schedule-item time { font-weight: 800; color: var(--red); font-size: .92rem; }
.schedule-item strong, .schedule-item span { display: block; font-size: 1.02rem; }
.schedule-item span { color: var(--green); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 800; margin-bottom: 4px; }
.schedule-item p { margin: 4px 0 0; color: var(--muted); }
.schedule-item.ceremony { min-height: 188px; }
.opening-day .schedule-day-head { background: var(--red); }
.opening-day .schedule-day-head strong { color: #efe1ce; }

@media (max-width: 980px) { .schedule-grid { grid-template-columns: 1fr 1fr; } .opening-day { grid-column: 1 / -1; } }
@media (max-width: 680px) { .schedule-grid { grid-template-columns: 1fr; } .opening-day { grid-column: auto; } .schedule-item { grid-template-columns: 80px 1fr; } }

/* Registration-site inspired South Claw theme refresh */
:root {
  --brown: #754827;
  --brown-dark: #4a2c18;
  --forest: #203b25;
  --forest-deep: #14281a;
  --olive: #5f743f;
  --sage: #9cab79;
  --sand: #d9c39f;
  --cream: #f5efe3;
  --paper: #fbf8f1;
  --red: var(--brown);
  --red-dark: var(--brown-dark);
  --black: var(--forest-deep);
  --green: var(--forest);
  --text: #253026;
  --muted: #6e705f;
  --border: rgba(72, 81, 55, .18);
  --shadow: 0 24px 70px rgba(43, 53, 35, .14);
}

body { background: var(--paper); }
.site-header {
  background: rgba(20,40,26,.96);
  border-bottom: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 8px 30px rgba(17,30,20,.08);
}
.brand { color: #f8f2e7; }
.brand img { background: #f7f1e5; padding: 3px; border-radius: 50%; }
.site-nav a { color: #e8e2d5; }
.site-nav a:hover { color: #d7c29e; }
.nav-cta { background: var(--brown); color: #fff !important; border: 1px solid rgba(255,255,255,.14); }
.menu-toggle { color: #f8f2e7; }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 83% 22%, rgba(132,154,94,.25), transparent 24%),
    radial-gradient(circle at 74% 76%, rgba(117,72,39,.20), transparent 27%),
    linear-gradient(120deg, #f4ead9 0%, #f8f3e9 52%, #dfe4cd 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(31,59,37,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(31,59,37,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.hero:after { border-color: rgba(31,59,37,.12); }
.hero-grid { grid-template-columns: 1.18fr .82fr; gap: 72px; }
.eyebrow { color: var(--brown); }
h1 { color: var(--forest-deep); font-size: clamp(4rem, 8vw, 7.7rem); line-height: .92; max-width: 850px; }
h1 span { color: var(--olive); }
.hero-lead { max-width: 650px; color: #46513f; font-size: 1.12rem; }
.hero-lead strong { color: var(--forest); font-size: 1.28rem; }
.btn { border-radius: 10px; text-transform: uppercase; letter-spacing: .035em; font-size: .9rem; }
.btn-primary { background: var(--brown); box-shadow: 0 14px 30px rgba(74,44,24,.22); }
.btn-primary:hover { background: var(--brown-dark); }
.btn-secondary { border-color: rgba(31,59,37,.34); color: var(--forest); background: rgba(250,247,239,.72); }
.glance-label { margin: 0 0 9px; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; color: var(--forest); }
.hero-stats { border-top: 2px solid var(--forest); }
.hero-stats div { position: relative; }
.hero-stats div + div:before { content: ""; position: absolute; left: -12px; top: 18px; bottom: 4px; width: 1px; background: rgba(31,59,37,.14); }
.hero-stats strong { color: var(--forest-deep); font-size: 1.42rem; }
.hero-stats span { color: #626958; }
.logo-card {
  background: #efe5d3;
  padding: 30px;
  border: 1px solid rgba(72,44,26,.24);
  border-radius: 18px;
  box-shadow: 16px 18px 0 rgba(31,59,37,.13), var(--shadow);
  transform: rotate(0deg);
}
.logo-card:before { border-color: rgba(31,59,37,.18); border-radius: 12px; }
.logo-card img { border-radius: 10px; mix-blend-mode: multiply; }

.qualifier-strip { background: var(--forest-deep); border-top: 1px solid rgba(255,255,255,.08); }
.qualifier-inner { min-height: 104px; }
.qualifier-inner p { color: #e7e2d6; }
.badge { background: var(--brown); border-radius: 7px; }

.section { background: var(--paper); }
.section-alt { background: #e9dfca; }
.section-dark { background: var(--forest-deep); }
.section-heading h2 { color: var(--forest-deep); }
.section-dark .section-heading h2 { color: #fbf6ec; }
.section-heading.light .eyebrow { color: #c9d3ad; }
.info-card, .price-card, .ticket-card, .side-card {
  border-radius: 14px;
  background: #fffdf7;
  border-color: rgba(72,81,55,.18);
  box-shadow: 0 12px 28px rgba(46,55,38,.06);
}
.featured-card { background: var(--forest); border-color: var(--forest); }
.card-kicker, .deadline-label { color: var(--brown); }
.level-panel { border-radius: 12px; border-color: rgba(214,225,188,.17); background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(133,154,90,.06)); }
.level-panel span { color: #bdcb9b; }
.level-panel p { color: #d8ddcc; }
.format-note { border-left-color: var(--brown); }
.primary-price { background: #e6ecd5; border-color: rgba(95,116,63,.38); }
.deadline-box { border-radius: 14px; }
.deadline-box > div { background: #efe6d5; }
.notice { background: #e5dcc8; border-color: #cdb993; }
.feature-list li { border-radius: 10px; background: #fffdf7; }
.feature-list li:before { color: var(--olive); }

.schedule-section { background: #ded1b9; }
.schedule-day { border-radius: 14px; background: #fbf7ee; }
.schedule-day-head { background: var(--forest); }
.schedule-day-head strong { color: #dce4c5; }
.opening-day .schedule-day-head { background: var(--brown); }
.schedule-item time { color: var(--brown); }
.schedule-item span { color: var(--olive); }

.accent-ticket { background: var(--forest); }
.mini-features div { border-top: 2px solid rgba(31,59,37,.16); }

.payment-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(152,171,121,.16), transparent 25%),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 58%, #59371f 100%);
}
.bank-card { border-radius: 14px; background: #f7f0e3; box-shadow: 16px 18px 0 rgba(117,72,39,.22); }
.music-card { background: #452c1e; border-radius: 14px; border-left: 8px solid var(--olive); }
.cta-section { background: #d9c6a6; }
.cta-section h2 { color: var(--forest-deep); }
.site-footer { background: var(--forest-deep); border-top: 10px solid var(--brown); }

@media (max-width: 980px) {
  .site-nav { background: var(--forest-deep); border-bottom-color: rgba(255,255,255,.08); }
  .hero { min-height: auto; }
  .logo-card { box-shadow: 10px 12px 0 rgba(31,59,37,.13), var(--shadow); }
}


/* Venue map */
.venue-map-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(117,72,39,.10), transparent 26%),
    linear-gradient(135deg, #e8ddc9 0%, #f5efe3 48%, #dde5ca 100%);
}
.venue-map-heading p:last-child {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
}
.venue-map-card {
  overflow: hidden;
  border: 1px solid rgba(72,81,55,.22);
  border-radius: 16px;
  background: #fffaf0;
  box-shadow: 14px 16px 0 rgba(31,59,37,.10), 0 22px 50px rgba(43,53,35,.14);
}
.venue-map-frame {
  position: relative;
  min-height: 460px;
  background: #d8dec9;
  border-bottom: 8px solid var(--brown);
}
.venue-map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: saturate(.88) sepia(.06);
}
.venue-map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 30px 28px;
  border-top: 1px solid rgba(255,255,255,.55);
}
.venue-map-info h3 {
  margin: 4px 0 3px;
  color: var(--forest-deep);
}
.venue-map-info p { margin: 0; color: var(--muted); }
.btn-map {
  flex: 0 0 auto;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,59,37,.18);
}
.btn-map:hover { background: var(--forest-deep); }
.map-credit {
  margin: 16px 2px 0;
  font-size: .78rem;
  color: #737565;
}
@media (max-width: 680px) {
  .venue-map-frame, .venue-map-frame iframe { height: 360px; min-height: 360px; }
  .venue-map-info { align-items: flex-start; flex-direction: column; padding: 22px; }
  .btn-map { width: 100%; text-align: center; }
}

/* Hero typing flair */
.hero-typewriter { min-height: 2.15em; }
.hero-typewriter .typed-line { display: inline; }
.hero-typewriter .hero-mark { color: var(--brown, #6f4327); }
.type-caret {
  display: inline-block;
  width: .08em;
  height: .86em;
  margin-left: .08em;
  vertical-align: -.05em;
  background: var(--forest, #1f3b25);
  animation: type-caret-blink .8s steps(1, end) infinite;
}
@keyframes type-caret-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .type-caret { animation: none; opacity: 0; }
}

@media (max-width: 680px) {
  .dunk-callout { grid-template-columns: 1fr; padding: 22px; }
  .dunk-icon { width: 62px; height: 62px; }
}
