:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --card: #0d0d0d;
  --text: #ffffff;
  --muted: #b9c3d6;
  --accent: #4396ef;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 0px;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  display: block;
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 2.6rem clamp(1rem, 3vw, 2rem);
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
  text-align: center;
}

#top-nav-only .brand-lockup,
#top-nav-only .site-tagline,
#top-nav-only h1,
#top-nav-only p {
  display: none !important;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% - 0.25rem);
  left: 50%;
  display: none;
  min-width: 9rem;
  padding: 0.35rem;
  transform: translateX(-50%);
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.header-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.page-share {
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Amaranth", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.page-share-desktop {
  display: inline-flex;
  align-self: center;
  background: #000000;
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.page-share:hover,
.page-share:focus-visible {
  background: rgba(67, 150, 239, 0.2);
  color: #ffffff;
}

.location-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1rem;
  background: #0d0d0d;
}

.location-section-inner {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.location-section h2 {
  margin: 0;
  font-family: "Amaranth", "Helvetica Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  scroll-margin-top: 1rem;
}

.location-section p {
  margin: 0.8rem 0 1.4rem;
  font-family: "Crimson Text", "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.location-section iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 45vw, 420px);
  border: 0;
  scroll-margin-block: 1.5rem;
}

.directions-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #ffffff;
  font-family: "Amaranth", "Helvetica Neue", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.directions-link:hover,
.directions-link:focus-visible {
  background: #4396ef;
  border-color: #4396ef;
}

.site-nav a {
  position: relative;
  padding: 0.72rem 0.95rem;
  font-family: "Amaranth", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color 180ms ease;
}

.site-nav > a::after,
.site-nav > .nav-dropdown > a::after {
  position: absolute;
  right: 0.95rem;
  bottom: 0.42rem;
  left: 0.95rem;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: #ffffff;
  transition: transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-active,
.site-nav > .nav-dropdown > a:hover,
.site-nav > .nav-dropdown > a:focus-visible,
.site-nav > .nav-dropdown > a.is-active {
  color: #fff;
  background: transparent;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after,
.site-nav > .nav-dropdown > a:hover::after,
.site-nav > .nav-dropdown > a:focus-visible::after,
.site-nav > .nav-dropdown > a.is-active::after {
  transform: scaleX(1);
}

.site-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 3rem;
}

.page-home,
.page-posters {
  width: 100%;
}

.page-sections {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.hero-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 1rem;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-small {
  min-height: 340px;
}

.hero-medium {
  min-height: 560px;
}

.hero-tall {
  min-height: 720px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: inherit;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  text-align: center;
}

.hero-inner h1 {
  margin: 0;
  font-family: "Crimson Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  /* Keeps the title readable over both bright and dark hero photos. */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.82), 0 0 18px rgba(0, 0, 0, 0.5);
}

.hero-inner p {
  margin: 0.8rem 0 0;
  max-width: 38rem;
  font-family: "Josefin Sans", "Helvetica Neue", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 0, 0, 0.55);
}

.text-section {
  border: 1px solid transparent;
}

.heading-section {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 6vw, 4rem) 0.5rem;
}

.heading-section h1,
.heading-section h2 {
  margin: 0;
  font-family: "Amaranth", "Helvetica Neue", sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.heading-section h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.heading-section h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }

.text-section-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(1.1rem, 3vw, 2rem) clamp(1.5rem, 6vw, 6rem);
  line-height: 1.75;
  white-space: pre-wrap;
}

/* Keep the About introduction compact while retaining its paragraph breaks. */
#about-introduction .text-section-inner {
  line-height: 1.45;
}

.text-section-heading {
  margin: 0;
  font: inherit;
  line-height: inherit;
}

.text-section-full {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  align-self: stretch;
}

.text-section-full + .text-section-full {
  margin-top: -1rem;
}

.text-section-full .text-section-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.75rem, 7vw, 6rem);
  line-height: 2.1;
  letter-spacing: 0.06em;
}

/* The first line is used as the blue home-panel title. */
.text-section-title-first-line .text-section-inner::first-line {
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .text-section-full:has(+ .text-section-full) .text-section-inner {
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  padding-bottom: 0.4rem;
}

.page-home .text-section-full + .text-section-full .text-section-inner {
  padding-top: 0.15rem;
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.4;
  font-weight: 600;
}

.image-section {
  overflow: hidden;
  background: transparent;
  width: min(100%, 640px);
  margin: 0 auto;
}

.image-row {
  width: min(100%, 640px);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.page-posters .image-section,
.page-standard .image-section {
  width: min(100%, 640px);
}

.page-posters .image-row,
.page-standard .image-row {
  width: min(100%, 640px);
}

.image-row-two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-row .image-section {
  width: 100%;
}

.image-section img {
  width: 100%;
  height: auto;
}

/* Keep event posters fully visible while avoiding very tall page sections. */
.page-posters .image-section img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 740px;
  margin: 0 auto;
  object-fit: contain;
}

.image-caption {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-family: "Josefin Sans", "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.simple-message {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

.site-footer {
  padding: 2.5rem 1rem 1rem;
  background: #000;
}

.site-footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.footer-photo {
  flex: 0 0 auto;
  overflow: hidden;
}

.footer-photo-left {
  width: 180px;
}

.footer-photo-middle {
  width: 300px;
}

.footer-photo-right {
  width: 300px;
}

.footer-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-copy {
  flex: 0 0 310px;
  max-width: 310px;
  color: #ffffff;
  font-family: "Crimson Text", "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  line-height: 1.6;
  text-align: left;
}

.footer-copy p {
  margin: 0 0 0.4rem;
}

.site-nav-footer {
  justify-content: center;
  padding: 0.75rem 1rem 2.5rem;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 350px;
    margin-bottom: 0.75rem;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .site-header {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    font-family: "Amaranth", "Helvetica Neue", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .header-controls {
    display: flex;
  }

  .page-share-desktop {
    display: none;
  }

  .page-share {
    padding: 0.8rem 1.1rem;
    font-size: 1.1rem;
  }

  .menu-toggle-icon {
    font-size: 1.45rem;
    line-height: 1;
  }

  .site-header .site-nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .site-header .site-nav.is-open {
    display: flex;
  }

  .site-header .site-nav a {
    padding: 1rem 1.25rem;
    font-size: 1.4rem;
    text-align: center;
  }

  .site-header .site-nav > a {
    align-self: center;
    width: fit-content;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown > a {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 0 0 0.35rem;
    padding: 0;
    transform: none;
    background: transparent;
    border: 0;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem !important;
    text-align: center !important;
  }

  .image-row-two-up {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-photo {
    width: min(100%, 280px);
  }

  .footer-copy {
    max-width: none;
    flex-basis: auto;
    text-align: center;
  }
}
