:root {
  --bg: #0b1020;
  --bg-soft: #121a31;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f4f7fb;
  --muted: #b7c1d6;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #87b2ff;
  --accent-2: #d2b279;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(135, 178, 255, 0.16), transparent 30%),
    radial-gradient(circle at top left, rgba(210, 178, 121, 0.10), transparent 20%),
    linear-gradient(180deg, #08101d 0%, #0d1326 100%);
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; }
h1, h2, h3, p { margin-top: 0; }
code {
  background: rgba(255,255,255,0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #000;
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 54px;
  width: auto;
  max-width: min(280px, 52vw);
}

.site-nav {
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a.active,
.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
}

.hero,
.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero.small {
  padding-bottom: 1rem;
}

.hero-grid,
.hero-stack,
.section-grid,
.contact-grid,
.cta-box {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.hero-stack {
  min-height: calc(100vh - 120px);
}

.hero-stack {
  gap: 1.5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  align-items: stretch;
}

.feature-row-reverse .copy-card {
  order: 1;
}

.feature-row-reverse .media-card {
  order: 2;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 11ch;
  margin-bottom: 1rem;
}

.page-hero.small h1 {
  max-width: none;
  white-space: nowrap;
  margin-bottom: 0;
}

body[data-page="jazzcool"] .page-hero.small h1 {
  white-space: normal;
}

body[data-page="bio"] .page-hero.small h1 {
  white-space: normal;
}

body[data-page="production"] .page-hero.small h1 {
  white-space: normal;
}

.hero-image-panel {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #09101d;
  box-shadow: var(--shadow);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.feature-card {
  height: 100%;
}

.media-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.copy-card {
  display: flex;
}

.bio-portrait,
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.bio-portrait {
  aspect-ratio: 1 / 1;
}

.bio-caption {
  color: #dce7fb;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.feature-copy-top {
  justify-content: flex-start;
}

.feature-copy h1,
.feature-copy h2,
.feature-copy p {
  margin-bottom: 0;
}

.feature-copy h1 {
  max-width: 10ch;
}

.feature-title {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.feature-copy .button-row {
  margin-top: 0.5rem;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bio-tags span {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce7fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  max-width: 52rem;
}

.lead.narrow {
  max-width: 42rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #d4def2;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-card,
.panel,
.event-card,
.event-item,
.cta-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong) 0%, var(--panel) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.panel,
.cta-box,
.event-item {
  padding: 1.6rem;
}

.card-label {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.meta {
  font-weight: 600;
  color: #d7e5ff;
}

.section {
  padding: 3rem 0;
}

.alt-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-grid,
.contact-grid,
.cta-box {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.bio-page-layout,
.bio-page-hero,
.bio-page-stack,
.bio-project-grid {
  display: grid;
  gap: 1.5rem;
}

.bio-page-stack {
  gap: 1.25rem;
}

.bio-page-hero {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.bio-page-portrait {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.bio-page-intro {
  display: grid;
  gap: 1rem;
}

.bio-copy-block {
  display: grid;
  gap: 0.65rem;
}

.bio-page-intro p,
.bio-project-card p {
  margin-bottom: 0;
}

.bio-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bio-project-card {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.production-layout,
.production-section-stack,
.production-spec-grid,
.production-detail-grid {
  display: grid;
  gap: 1.5rem;
}

.production-hero-panel,
.production-copy-panel,
.production-spec-card,
.production-detail-block,
.production-media-panel {
  display: grid;
  gap: 1rem;
}

.production-hero-panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.production-section-stack {
  gap: 2rem;
}

.production-feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.production-feature-row-reverse .production-media-panel {
  order: 2;
}

.production-feature-row-reverse .production-copy-panel {
  order: 1;
}

.production-media-panel {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #09101d;
  box-shadow: var(--shadow);
}

.production-media-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.production-hero-media .production-media-image {
  min-height: 100%;
}

.production-hero-copy,
.production-copy-panel,
.production-detail-block,
.production-spec-card {
  align-content: start;
}

.production-hero-copy p,
.production-copy-panel p {
  margin-bottom: 0;
}

.production-pill-list,
.production-brand-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.production-pill-list span,
.production-brand-wrap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
}

.production-pill-list span {
  border: 1px solid rgba(210, 178, 121, 0.22);
  background: rgba(210, 178, 121, 0.08);
  color: #ead5af;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.production-copy-panel {
  gap: 1.15rem;
}

.production-copy-panel h2,
.production-spec-card h3 {
  margin: 0;
}

.production-copy-panel h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.production-spec-grid,
.production-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.production-spec-card,
.production-detail-block {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.production-copy-panel-backline {
  background:
    radial-gradient(circle at top right, rgba(135, 178, 255, 0.12), transparent 35%),
    linear-gradient(180deg, var(--panel-strong) 0%, var(--panel) 100%);
}

.production-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
}

.production-brand-wrap span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #dce7fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.production-cta-box {
  align-items: center;
}

.production-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.jazzcool-layout,
.jazzcool-detail-grid {
  display: grid;
  gap: 1.5rem;
}

.jazzcool-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.jazzcool-feature-panel,
.jazzcool-info-stack,
.jazzcool-schedule {
  display: grid;
  gap: 1.25rem;
}

.jazzcool-logo-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.jazzcool-feature-copy {
  display: grid;
  gap: 1rem;
}

.jazzcool-feature-copy p,
.jazzcool-schedule-item p {
  margin-bottom: 0;
}

.jazzcool-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jazzcool-schedule-item {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.jazzcool-schedule-item h2 {
  margin-bottom: 0.4rem;
}

.events-feature,
.events-scroll-panel {
  height: calc(100vh - 170px);
  min-width: 0;
}

.events-feature {
  display: flex;
  flex-direction: column;
}

.events-feature-image-wrap {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.events-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

.events-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0;
}

.events-cta p {
  margin: 0;
  max-width: 26rem;
}

.events-cta .button {
  min-width: 180px;
  justify-content: center;
}

.events-scroll-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 901px) {
  .events-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  }
}

.scrollable-events {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  gap: 0.65rem;
}

.scrollable-events::-webkit-scrollbar {
  width: 10px;
}

.scrollable-events::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.section-heading,
.footer-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.event-grid,
.events-list {
  display: grid;
  gap: 1rem;
}

.events-list-header,
.events-list-section {
  display: grid;
  gap: 1rem;
}

.events-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.events-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.events-view-button {
  min-width: 110px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.events-view-button.is-active {
  background: rgba(245, 172, 120, 0.14);
  color: var(--accent-2);
  border-color: rgba(245, 172, 120, 0.45);
  box-shadow: inset 0 0 0 1px rgba(245, 172, 120, 0.22);
}

.events-list-group {
  display: grid;
  gap: 1rem;
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card {
  padding: 1.3rem;
}

.event-date {
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h3,
.event-item h2 {
  margin: 0.2rem 0 0.2rem;
}

.event-item {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
}

.event-topline {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.85rem;
}

.event-date-block {
  padding-right: 0.75rem;
  border-right: 1px solid var(--line);
}

.event-date-block strong,
.stat-number {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--text);
}

.event-location {
  color: #dfe8fa;
  font-weight: 600;
  margin: 0;
}

.event-privacy-tag {
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-summary h2 {
  margin: 0;
}

.event-ticket-cta {
  justify-self: end;
}

.event-ticket-cta .button {
  min-width: 140px;
}

.event-description {
  padding-top: 0;
}

.event-description p {
  margin: 0;
  max-width: none;
  line-height: 1.45;
  font-size: 0.98rem;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.event-actions .button {
  min-height: 42px;
  padding: 0.7rem 1.05rem;
}

.event-more-info {
  margin-top: 1rem;
}

.event-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.event-card-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.event-card-copy .event-more-info {
  margin-top: 0.75rem;
}

.event-summary .event-more-info {
  margin-top: 0.35rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #6d93db);
  color: #09101d;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.text-link {
  color: #d8e5ff;
  font-weight: 600;
}

.stat-list {
  display: grid;
  gap: 1rem;
}

.stat-label,
.form-note {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-image-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.contact-tags {
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #e3ecfb;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #93a0ba;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.75rem;
  margin: 0;
  color: #d8e5ff;
}

.form-status.success {
  color: #bfe7bf;
}

.form-status.error {
  color: #ffb4b4;
}

.cf-turnstile {
  min-height: 65px;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.site-community {
  padding: 1rem 0 2rem;
}

.community-wrap {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.community-copy {
  margin: 0;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.community-link {
  display: grid;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.community-link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.community-link-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.community-link-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.community-link strong {
  font-size: 1rem;
  line-height: 1.2;
}

.community-link-copy {
  display: grid;
  gap: 0.18rem;
}

.community-link-location {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong) 0%, var(--panel) 100%);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
  padding: 0;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
}

.gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.modal-open {
  overflow: hidden;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: calc(100vw - 3rem);
}

.gallery-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 16, 29, 0.84);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-image {
  display: block;
  width: auto;
  max-width: calc(100vw - 3rem);
  max-height: calc(100vh - 3rem);
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  background: #09101d;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  display: grid;
  gap: 0.9rem;
}

.video-card h3,
.video-card p {
  margin: 0;
}

.media-empty {
  display: grid;
  gap: 0.5rem;
}

.media-empty p {
  margin: 0;
  max-width: 44rem;
}

.footer-wrap {
  align-items: start;
  margin-bottom: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .hero-stack,
  .section-grid,
  .contact-grid,
  .cta-box,
  .bio-page-hero,
  .production-hero-panel,
  .production-feature-row,
  .bio-project-grid,
  .production-spec-grid,
  .production-detail-grid,
  .jazzcool-layout,
  .events-layout,
  .event-grid,
  .event-topline {
    grid-template-columns: 1fr;
  }

  .event-topline {
    align-items: start;
  }

  .event-ticket-cta {
    justify-self: start;
  }

  .event-date-block {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .section-heading,
  .footer-wrap {
    flex-direction: column;
    align-items: start;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .community-wrap,
  .community-links,
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .events-feature,
  .events-scroll-panel {
    height: auto;
  }

  .scrollable-events {
    overflow: visible;
    padding-right: 0;
  }

  .production-cta-actions {
    justify-content: flex-start;
  }

  .jazzcool-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #000;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 3.5rem;
  }

  .hero-grid,
  .hero-stack {
    min-height: auto;
  }

  .bio-portrait,
  .hero-image {
    min-height: 300px;
  }

  .events-feature-image {
    min-height: 300px;
  }
}
