:root {
  --event: #ff7700;
  --ink: #172420;
  --muted: #5d6b67;
  --paper: #fffaf4;
}
.eventsWrap {
  max-width: 1180px;
  margin: auto;
  padding: 32px 22px 90px;
  color: var(--ink);
}
.eventGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.eventCard {
  overflow: hidden;
  border: 1px solid #eadfd4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px #3a210e12;
}
.eventCard img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.eventCardBody {
  padding: 20px;
}
.eventCard h3 {
  font-size: 24px;
  margin: 0 0 8px;
}
.eventButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--event);
  color: #18100a !important;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.eventEmpty {
  padding: 42px;
  border: 2px dashed #e6cdb7;
  border-radius: 22px;
  text-align: center;
  background: var(--paper);
}
.eventLoading {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.eventLoading h3,
.eventLoading p {
  margin: 0;
}
.eventSpinner {
  width: 34px;
  height: 34px;
  border: 4px solid #ead6c4;
  border-top-color: var(--event);
  border-radius: 50%;
  animation: eventSpin 0.8s linear infinite;
}
@keyframes eventSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .eventSpinner { animation: none; }
}
.eventDetailHero {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: #272727;
}
.eventDetailHero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eventHeroOverlay {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 6vw, 70px);
  color: #fff;
  background: linear-gradient(0deg, #111e 0, #1118 45%, transparent 78%);
}
.eventHeroOverlay h1 {
  font-size: clamp(38px, 7vw, 76px);
  margin: 8px 0;
}
.eventLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 36px;
  margin-top: 34px;
}
.eventPanel {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 24px;
  border: 1px solid #eadfd4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 45px #3a210e18;
}
.eventPanel label {
  display: block;
  font-weight: 800;
  margin: 14px 0 6px;
}
.eventPanel input,
.eventPanel select {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 10px;
  border: 1px solid #aab3b0;
  border-radius: 10px;
  font: inherit;
}
.eventNotice {
  padding: 13px;
  border-radius: 12px;
  background: #fff0df;
  color: #633000;
  margin: 12px 0;
}
.eventMeta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}
.eventMeta .service-fact {
  background: #fff;
  border: 1px solid #bdcdc3;
  border-top: 4px solid #007e42;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px #153b2020;
  min-width: 0;
}
.eventMeta .service-fact strong {
  display: block;
  font-size: 23px;
  margin-bottom: 8px;
  color: #007e42;
}
.eventMeta .service-fact span { line-height: 1.5; overflow-wrap: anywhere; }
.eventMeta .service-fact a { color: #007e42; text-underline-offset: 3px; }
#effectiveLocation { white-space: pre-line; }
@media (min-width: 761px) and (max-width: 1000px) {
  .eventMeta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .eventMeta { gap: 10px; margin-bottom: 30px; }
  .eventMeta .service-fact { padding: 20px; }
}
.eventContent {
  white-space: pre-wrap;
  line-height: 1.75;
}
.mobileCta {
  display: none;
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 18px;
  background: #fffd;
  border-top: 1px solid #ddd;
  backdrop-filter: blur(12px);
}
.hubDialog {
  border: 0;
  border-radius: 22px;
  max-width: 520px;
  padding: 28px;
  box-shadow: 0 24px 80px #0005;
}
.hubDialog::backdrop {
  background: #13221dbb;
}
.dialogClose {
  float: right;
  border: 0;
  background: transparent;
  font-size: 28px;
}
.eventsFaq details {
  padding: 17px 0;
  border-bottom: 1px solid #ddd;
}
.eventsFaq summary {
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 760px) {
  .eventsWrap {
    padding: 18px 14px 100px;
  }
  .eventLayout {
    display: block;
  }
  .eventPanel {
    position: static;
    margin-top: 22px;
  }
  .mobileCta {
    display: block;
  }
  .eventDetailHero,
  .eventHeroOverlay {
    min-height: 430px;
  }
  .eventMeta {
    grid-template-columns: 1fr;
  }
}
.previewBanner{position:sticky;top:0;z-index:20;padding:14px 20px;border-radius:12px;background:#172420;color:#fff;text-align:center}.eventStory{min-width:0}.eventCapacity{font-weight:800;color:#713500}.eventCardImage{display:block}.priceLine{font-size:1.03rem;line-height:1.5}.eventPanel fieldset{margin:16px 0;padding:14px;border:1px solid #d9dfdc;border-radius:14px}.eventPanel legend{font-weight:900;padding:0 6px}.eventPanel .checkRow,.hubDialog .checkRow{display:flex;gap:10px;align-items:flex-start;font-weight:650}.eventPanel .checkRow input,.hubDialog .checkRow input,.dogOption input{width:20px;min-height:20px;flex:0 0 20px;margin-top:2px}.eventButton.full{width:100%;margin-top:10px}.eventButton.secondary{background:#fff;border:2px solid var(--event)}.eventButton:disabled{opacity:.55;cursor:not-allowed}.eventNotice{white-space:pre-line}.eventNotice.is-success{background:#e8f7ed;color:#155c2e}.eventNotice.is-error{background:#fff0ef;color:#8c1d18}.eventNotice.is-warning{background:#fff5d6;color:#6b4800}.dogList{display:grid;gap:8px}.dogOption{display:flex!important;gap:10px;align-items:center;padding:10px;border:1px solid #dce2df;border-radius:10px;margin:6px 0!important}.dogOption small{display:block;color:#7b3128}.newDog{position:relative;background:#faf8f5}.removeDog{position:absolute;right:10px;top:8px;border:0;background:transparent;color:#8c1d18;font-weight:800;cursor:pointer}.twoCol{display:grid;grid-template-columns:1fr 1fr;gap:12px}.hubDialog{max-height:calc(100vh - 36px);overflow:auto}.hubDialog label{display:block;font-weight:800;margin:12px 0 5px}.hubDialog input,.hubDialog select,.hubDialog textarea{box-sizing:border-box;width:100%;min-height:44px;padding:9px;border:1px solid #aab3b0;border-radius:9px;font:inherit}.management{max-width:1080px;margin:auto}.managementHero{padding:34px;border-radius:24px;background:linear-gradient(135deg,#fff0df,#fff);margin-bottom:22px}.managementGrid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.eventPanel.static{position:static;margin:20px 0}.statusPill{display:inline-flex;padding:7px 12px;border-radius:999px;background:#172420;color:#fff;font-weight:900}.totals div{display:flex;justify-content:space-between;gap:20px;padding:8px 0;border-bottom:1px solid #e3e7e5}.totals dd{font-weight:900}.mobileCta button:focus-visible,.eventButton:focus-visible,input:focus-visible,select:focus-visible,summary:focus-visible{outline:3px solid #125dd8;outline-offset:3px}
@media(max-width:760px){.twoCol,.managementGrid,.managementPlacards{grid-template-columns:1fr}.eventDetailHero,.eventHeroOverlay{min-height:360px}.eventHeroOverlay{padding:26px}.eventHeroOverlay h1{font-size:38px}.eventPanel{padding:18px}.managementHero{padding:24px}.eventManagementPlacard{padding:20px}.mobileCta{padding-bottom:max(12px,env(safe-area-inset-bottom))}}
.sessionAlternatives {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid #eadfd4;
  border-radius: 14px;
  background: #fffaf4;
}
.sessionAlternatives h3,
.sessionAlternatives p {
  margin: 0 0 9px;
}
.sessionAlternative {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 11px;
  border: 1px solid #cfb79f;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.sessionAlternative strong,
.sessionAlternative span {
  display: block;
}
.sessionAlternative span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}
.sessionAlternative:hover {
  border-color: var(--event);
}
.sessionAlternative:focus-visible {
  outline: 3px solid #125dd8;
  outline-offset: 2px;
}

.eventMemberLookup .hub-member-lookup{max-width:none;margin:14px 0 0;padding:0}.eventMemberLookup .hub-member-lookup-title{font-size:inherit;font-weight:800;margin:0 0 6px}.eventPanel .checkRow>span,.hubDialog .checkRow>span{min-width:0;line-height:1.45}.eventPanel .checkRow a{overflow-wrap:anywhere}
.eventMemberLookup .hub-member-lookup-title { display: none; }
.eventPanel hr { border: 0; border-top: 1px solid #dce2df; margin: 25px 0; }
.eventStory > h2 { border-top: 2px solid #cbd4cf; margin: 30px 0 14px; padding-top: 24px; text-align: center; }
.eventPanel section > h2 { margin: 0 0 16px; font-size: 1.2rem; text-align: center; }
.ticketPrices { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.ticketPrice { display: flex; flex: 1 1 130px; flex-direction: column; gap: 5px; padding: 12px 16px; border: 1px solid #d8bc3f; border-radius: 20px; background: #ffe066; color: #172420; }
.ticketPrice span { font-size: .8rem; line-height: 1.4; }
.ticketPrice strong { font-size: 1.5rem; line-height: 1.2; }
.membershipPrice { background: #e8f7ed; border-color: #00964e; color: #155c2e; }
.ticketHint { font-size: .9rem; line-height: 1.5; color: var(--muted); }
#memberResult:not(.is-error), #creditBalance:not(.is-error), #estimate:not(.is-error):not(.is-warning), #dogLimitMessage:not(.is-error):not(.is-warning), #refundDeadline {
  background: none; color: var(--ink); padding: 0; border-radius: 0; line-height: 1.5;
}
#memberResult, #creditBalance { font-size: .9rem; }
#estimate { font-weight: 700; margin-top: 20px; }
#refundDeadline { font-size: .85rem; color: var(--muted); margin: 14px 0 4px; }
#buyerPhone[aria-invalid="true"] { border-color: #a8271c; }
html[data-hub-surface="marketing"] .eventsWrap :is(input, select, textarea):focus-visible,
html[data-hub-surface="marketing"] .hubDialog :is(input, select, textarea):focus-visible {
  outline: 3px solid #00964e; outline-offset: 3px;
}
.eventMemberLookup .hub-member-lookup-control:focus-within {
  outline: 3px solid #00964e; outline-offset: 3px; border-color: #00964e; box-shadow: none;
}
html[data-hub-surface="marketing"] .eventMemberLookup input:focus-visible { outline: none; }

.eventHeroOverlay .eventHeroSummary { font-size:clamp(20px,2.2vw,26px); font-weight:600; line-height:1.5; max-width:850px; margin:16px 0 0; }
.eventSlideshow { touch-action: pan-y pinch-zoom; }
.eventSlideshow .eventSlide { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.eventSlideshow .eventSlide[hidden] { display:none; }
.eventSlideshow .eventHeroOverlay { box-sizing:border-box; min-height:calc(520px + clamp(26px, 6vw, 70px) + clamp(26px, 6vw, 70px)); pointer-events:none; padding-bottom:90px; }
.eventSlideControls { position:absolute; z-index:2; bottom:20px; left:26px; right:26px; display:flex; align-items:center; gap:6px; }
.eventSlideDots { display:flex; align-items:center; padding:0 5px; border-radius:999px; background:#1119; }
.eventSlideDots button { display:grid; place-items:center; width:30px; height:44px; padding:0; border:0; background:transparent; cursor:pointer; }
.eventSlideDots button::after { content:""; width:8px; height:8px; border:1px solid #fff; border-radius:50%; background:#fff4; }
.eventSlideDots button[aria-current="true"]::after { background:#fff; }
.eventSlideshow:focus-visible,.eventSlideControls button:focus-visible { outline:3px solid #ffe066; outline-offset:3px; }
@media(max-width:760px) { .eventSlideControls { left:16px; right:16px; bottom:14px; gap:6px; } .eventSlideshow .eventHeroOverlay { min-height:412px; padding-bottom:76px; } }
[data-hub-page="event-detail"] .service-breadcrumb { font-size:14px; margin:0 0 24px; }

.managementPhotoHero{margin-bottom:22px}.managementPhotoHero.noImage{background:linear-gradient(135deg,#315b4b,#172420)}.managementPhotoHero .service-eyebrow{margin:0;color:#fff;font-weight:850;letter-spacing:.08em;text-transform:uppercase}.managementPlacards{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:22px 0}.eventManagementPlacard{min-width:0;padding:28px;border:1px solid #bdcdc3;border-top:4px solid #007e42;border-radius:20px;background:#fff;box-shadow:0 12px 30px #153b2020}.eventManagementPlacard h2{margin:0 0 12px;color:#007e42;font-size:23px}.eventManagementPlacard p{line-height:1.5}.eventManagementPlacard #copyStatus{display:inline-block;margin-left:8px;font-weight:750;color:#155c2e}
@media(max-width:760px){.managementPlacards{grid-template-columns:1fr}.eventManagementPlacard{padding:20px}}
