* {
  box-sizing: border-box;
}

:root {
  --site-screen-padding: 20px;
  --site-logo-height: clamp(88px, 20vw, 280px);
}

body {
  margin: 0;
  min-height: 100vh;
  padding: var(--site-screen-padding);
  color: #f2f2f2;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background: #101114;
}

.siteShell {
  display: block;
  min-height: calc(100vh - (var(--site-screen-padding) * 2));
  padding: 0 0 40px;
}

.siteChrome {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  grid-template-areas: "logo tagline locale";
  align-items: start;
  column-gap: 20px;
  row-gap: 12px;
  width: 100%;
  min-height: 110px;
  padding: 0;
  margin: 0 0 20px;
  background: #090a0c;
}

.chromeTagline {
  grid-area: tagline;
  display: block;
  min-width: 0;
  width: 100%;
  align-self: center;
  justify-self: stretch;
  margin: 0;
  padding: 0;
  color: #ffe84a;
  font-family: "Dancing Script", cursive;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 0.88;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.46);
  white-space: normal;
}

.multilineTitleLine {
  display: block;
}

.multilineTitleLine + .multilineTitleLine {
  margin-top: 0.2em;
}

.noScriptNote {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  font-weight: 300;
  line-height: 1.65;
}

.noScriptNote {
  padding: 0 12px;
  margin-bottom: 20px;
}

.noScriptNote a {
  color: #ffffff;
}

.brandLogoFrame {
  grid-area: logo;
  display: inline-flex;
  justify-self: start;
  align-self: start;
  width: max-content;
  max-width: calc(100vw - (var(--site-screen-padding) * 2));
  line-height: 0;
}

.brandLogo {
  display: block;
  margin: 0;
  width: auto;
  max-width: 100%;
  height: var(--site-logo-height);
}

.chromeActions {
  grid-area: locale;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: start;
  justify-self: end;
  gap: 10px;
  margin: 0;
}

.chromeMenuButton {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 5px;
  min-width: 46px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.chromeMenuLine {
  display: block;
  width: 100%;
  min-width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.chromeMenuButton:focus-visible {
  outline: 2px solid #ffe84a;
  outline-offset: 2px;
}

.chromeMenuPanel {
  position: fixed;
  top: calc(var(--site-screen-padding) + 48px);
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100vw, 320px);
  z-index: 20;
}

.chromeMenuSurface {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  width: min(100vw, 320px);
  border: 1px solid rgba(73, 73, 73, 0.18);
  border-right: 0;
  border-radius: 0;
  background: rgba(247, 245, 240, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.chromeMenuPanel[hidden] {
  display: none;
}

.chromeMenuHeader {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 46px;
  padding: 0 0 0 14px;
}

.chromeMenuHeaderSpacer {
  width: 24px;
  height: 24px;
}

.chromeMenuTitle {
  justify-self: center;
  color: #4d4d4d;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.chromeMenuCloseButton {
  justify-self: end;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px 0 10px;
  border: 0;
  background: transparent;
  color: #4d4d4d;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.chromeMenuCloseButton:focus-visible {
  outline: 2px solid #ffe84a;
  outline-offset: -2px;
}

.chromeMenuDivider {
  width: 100%;
  height: 1px;
  background: rgba(77, 77, 77, 0.2);
}

.chromeMenuLink {
  display: block;
  width: 100%;
  padding: 12px 14px;
  color: #4d4d4d;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-decoration: none;
}

.chromeMenuLink:hover,
.chromeMenuLink:focus-visible {
  background: rgba(77, 77, 77, 0.08);
  color: #2f2f2f;
  outline: none;
}

.localeSelector {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 30px;
  margin: 0;
}

.localeDisplay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.localeInput {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.valueGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 20px;
  width: 100%;
  margin: 0;
  align-items: start;
}

.valueCard {
  min-width: 0;
  background: #15171b;
  color: #e2e2e2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 12px;
}

.valueTitle {
  display: block;
  margin: 0 0 12px;
  margin-top: -12px;
  margin-left: -12px;
  margin-right: -12px;
  padding: 8px 12px 4px;
  background: rgba(255, 224, 70, 0.3);
  border-radius: 14px 14px 0 0;
  color: #ffffff;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.pageCard .multilineTitleLine {
  width: 100%;
  text-align: center;
}

.valueHeadline {
  margin: 0 0 12px;
  color: #b8b8b8;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.valueHeadline b,
.valueHeadline strong {
  font-weight: 300;
}

.eventListingPromptLabel {
  margin: 6px 0 14px;
  color: #ffe257;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}

.eventListingSeparator {
  width: 100%;
  height: 1px;
  margin: 16px 0 10px;
  background: rgba(190, 190, 190, 0.55);
}

.eventListingPromptLabel .multilineTitleLine {
  width: 100%;
  text-align: center;
}

.valueBody {
  color: inherit;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.7;
}

.valueBody p {
  margin: 0 0 1em;
}

.valueBody p:last-child {
  margin-bottom: 0;
}

.valueBodyInlineImage {
  display: block;
  float: right;
  width: 50%;
  max-width: 50%;
  margin: 0 0 14px 16px;
  border-radius: 12px;
}

.valueBodyInlineImageActLeft {
  clear: right;
  float: left;
  margin: 0 16px 14px 0;
}

.valueBodyInlineImageUserLeft {
  clear: right;
  float: left;
  margin: 0 16px 14px 0;
}

.valueBodyInlineImageUserRight {
  clear: left;
}

.valueBodyInlineImagePlaceLeft {
  clear: right;
  float: left;
  margin: 0 16px 14px 0;
}

.valueBodyInlineImagePlaceRight {
  clear: left;
}

.valueBody b,
.valueBody strong {
  font-weight: 800;
}

.valueBody i,
.valueBody em {
  font-style: italic;
}

.pageContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.homeFeature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 8px;
  gap: 18px;
}

.homeFeatureFrame {
  position: relative;
  width: min(100%, 1120px);
}

.homeFeatureImage {
  display: block;
  width: 100%;
  height: auto;
}

.homeFeatureGrid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  pointer-events: none;
}

.homeFeatureLink {
  pointer-events: auto;
  display: block;
  cursor: pointer;
}

.homeFeatureLink:focus-visible {
  outline: 3px solid rgba(255, 232, 74, 0.9);
  outline-offset: -3px;
}

.homeFeatureLinkTopCenter {
  grid-column: 2;
  grid-row: 1;
}

.homeFeatureLinkMiddleLeft {
  grid-column: 1;
  grid-row: 2;
}

.homeFeatureLinkMiddleRight {
  grid-column: 3;
  grid-row: 2;
}

.homeFeatureLinkBottomCenter {
  grid-column: 2;
  grid-row: 3;
}

.homeFeatureLinkText {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.homeFeatureCopy {
  width: min(100%, 960px);
  color: #f5f1dc;
  font-size: 1.02rem;
  line-height: 1.72;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.homeFeatureCopy p {
  margin: 0;
}

.homeFeatureCopy p + p {
  margin-top: 16px;
}

.eventsPageSubtitle {
  width: min(100%, 820px);
  margin: -4px 0 4px;
  color: #d8d4b3;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  text-align: center;
}

.eventsPageBody {
  width: min(100%, 860px);
}

.eventsPageBody::after {
  content: "";
  display: block;
  clear: both;
}

.pageTitle {
  margin: 0;
  color: #ffe84a;
  font-family: "Dancing Script", cursive;
  font-size: clamp(2.5rem, 8vw, 4.7rem);
  font-weight: 700;
  line-height: 0.98;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.46);
}

.pageCard {
  width: min(100%, 820px);
}

.eventListingEmbedFrame {
  margin-top: 16px;
  width: 100%;
}

@media (max-width: 720px) {
  :root {
    --site-logo-height: clamp(72px, 24vw, 112px);
  }

  .siteChrome {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    grid-template-areas: "logo tagline locale";
    min-height: 0;
    gap: 10px;
  }

  .localeDisplay {
    padding: 0 10px;
    font-size: 0.68rem;
  }

}

@media (max-width: 1360px) {
  .chromeTagline {
    font-size: 3.9rem;
  }
}

@media (max-width: 1180px) {
  .chromeTagline {
    font-size: 3.5rem;
  }
}

@media (max-width: 980px) {
  .siteChrome {
    gap: 12px;
  }

  .chromeTagline {
    font-size: 3.1rem;
    padding-right: 6px;
  }
}

@media (max-width: 820px) {
  .siteChrome {
    gap: 8px;
  }

  .chromeTagline {
    font-size: 2.7rem;
  }
}

@media (max-width: 720px) {
  .chromeTagline {
    font-size: 2.3rem;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    line-height: 0.92;
  }

  .chromeMenuPanel {
    top: calc(var(--site-screen-padding) + 44px);
    width: min(100vw, 320px);
  }

  .chromeMenuSurface {
    width: min(100vw, 320px);
  }

  .valueBodyInlineImage {
    margin-left: 12px;
  }

  .valueBodyInlineImageActLeft {
    margin-right: 12px;
  }
}

@media (max-width: 560px) {
  :root {
    --site-logo-height: clamp(64px, 22vw, 92px);
  }

  .siteChrome {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    grid-template-areas: "logo tagline locale";
    min-height: 0;
    gap: 4px;
  }

  .chromeTagline {
    font-size: 1.55rem;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .pageTitle {
    font-size: 2.2rem;
  }
}

@media (max-width: 1100px) {
  .valueGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valueGrid > .valueCard:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .valueGrid {
    grid-template-columns: minmax(0, 1fr);
  }
}
