@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../assets/fonts/source-serif-4-latin.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  color-scheme: dark;
  --bg: #092323;
  --bg-soft: #0e3130;
  --surface: rgba(91, 209, 193, 0.065);
  --surface-hover: rgba(91, 209, 193, 0.13);
  --panel: var(--surface);
  --media-surface: var(--surface);
  --text: #effcf8;
  --muted: #b5d3ce;
  --muted-soft: #7fa39d;
  --accent: #55c1b3;
  --accent-contrast: #061e1d;
  --border: rgba(104, 222, 205, 0.12);
  --border-accent: rgba(85, 193, 179, 0.45);
  --body-glow: rgba(24, 124, 116, 0.34);
  --hero-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --quote-mark: rgba(85, 193, 179, 0.2);
  --overlay: rgba(0, 0, 0, 0.45);
  --overlay-text: #ffffff;
  --embed-background: #000000;
  --document-background: #222222;
  --lightbox-backdrop: rgba(0, 0, 0, 0.92);
  --lightbox-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --serif-body-weight: 300;
  --nav-active: var(--surface);
  --page-width: 1180px;
  --content-width: 980px;
  --sidebar-width: 220px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 7px;
  --shadow: 0 24px 70px rgba(0, 18, 18, 0.38);
}

/*
 * The light palette keeps the teal atmosphere with softly saturated surfaces
 * instead of imitating the dark theme with inverted colors.
 */
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #cfe2de;
  --bg-soft: #bdd6d1;
  --surface: rgba(16, 122, 112, 0.07);
  --surface-hover: rgba(16, 122, 112, 0.14);
  --panel: var(--surface);
  --media-surface: var(--surface);
  --text: #103936;
  --muted: #456b67;
  --muted-soft: #708d89;
  --accent: #0e7c72;
  --accent-contrast: #ffffff;
  --border: rgba(14, 80, 74, 0.13);
  --border-accent: rgba(14, 124, 114, 0.36);
  --body-glow: rgba(85, 193, 179, 0.35);
  --hero-shadow: 0 30px 80px rgba(58, 86, 66, 0.18);
  --quote-mark: rgba(85, 193, 179, 0.2);
  --overlay: rgba(31, 41, 36, 0.48);
  --overlay-text: #ffffff;
  --embed-background: #ffffff;
  --document-background: #ffffff;
  --lightbox-backdrop: rgba(247, 249, 243, 0.96);
  --lightbox-shadow: 0 24px 80px rgba(31, 41, 36, 0.25);
  --serif-body-weight: 400;
  --nav-active: var(--surface-hover);
  --shadow: 0 24px 70px rgba(0, 18, 18, 0.38);
}

html,
body {
  min-height: 100%;
}

@view-transition {
  navigation: auto;
}

@keyframes page-content-enter {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navigation-dropdown-enter {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

main,
body > .home-hero {
  view-transition-name: page-content;
  animation: page-content-enter 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

::view-transition-old(page-content) {
  animation: 0.16s ease-in both fade-out;
}

::view-transition-new(page-content) {
  animation: page-content-enter 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
}

.utility-toggle {
  min-width: 40px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 11px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 1.45px;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.language-menu {
  position: relative;
}

.language-menu > summary {
  min-width: 58px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 9px 10px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.25px;
  list-style: none;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.language-menu > summary::-webkit-details-marker {
  display: none;
}

.language-menu > summary::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.language-menu[open] > summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-menu > summary:hover,
.language-menu[open] > summary {
  color: var(--accent);
  background-color: var(--nav-active);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 2;
  width: 154px;
  padding: 7px;
  display: grid;
  gap: 2px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transform-origin: top right;
  animation: navigation-dropdown-enter 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.language-dropdown button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-dropdown button:hover,
.language-dropdown button.active {
  color: var(--accent);
  background: var(--nav-active);
}

.language-code {
  color: var(--muted-soft);
  font-size: 10px;
  letter-spacing: 1px;
}

.language-dropdown button.active::after {
  content: "✓";
  margin-left: 8px;
  color: var(--accent);
}

.language-dropdown button.active .language-code {
  display: none;
}

.theme-toggle {
  padding: 0;
  border-radius: 50%;
}

.theme-icon {
  font-size: 17px;
  line-height: 1;
}

.utility-toggle:hover {
  color: var(--accent);
  background: var(--surface);
  border-color: var(--border-accent);
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20000;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--accent);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.modal-open {
  overflow: hidden;
}

body {
  background: linear-gradient(145deg, var(--bg), var(--bg-soft));
  color: var(--text);
  font-family: "Inter", "Source Sans Pro", Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
/* Top navigation */

site-header {
  display: contents;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 17px clamp(32px, 3.5vw, 64px);
  min-height: 76px;
  display: flex;
  align-items: center;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  view-transition-name: site-header;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
  color: var(--text);
}


.topnav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.topnav > a:first-child {
  margin-left: auto;
}

.topnav > a,
.more-menu > summary {
  padding: 9px 11px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.45px;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.more-menu > summary::-webkit-details-marker {
  display: none;
}

.more-menu > summary::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0 3px 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.more-menu[open] > summary::after {
  transform: rotate(225deg);
}

.topnav > a:hover,
.topnav > a.active,
.more-menu > summary:hover,
.more-menu.active > summary,
.more-menu[open] > summary {
  color: var(--accent);
  background: var(--nav-active);
}

.more-menu {
  position: relative;
}

.more-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  display: grid;
  gap: 2px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transform-origin: top right;
  animation: navigation-dropdown-enter 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.more-dropdown a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  border-radius: 7px;
}

.more-dropdown a:hover,
.more-dropdown a.active {
  color: var(--accent);
  background: var(--nav-active);
}

.nav-utilities {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.nav-utilities > .language-menu {
  margin-left: 8px;
  padding-left: clamp(12px, 1.5vw, 20px);
  border-left: 1px solid var(--border);
}

.calendar-utility {
  width: 40px;
  height: 38px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.calendar-utility:hover,
.calendar-utility.active {
  color: var(--accent);
  background: var(--nav-active);
  border-color: var(--border-accent);
}

.calendar-utility svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-utility-label {
  display: none;
}

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  margin-left: auto;
  padding: 9px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}

.nav-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* Shared interior-page slideshow */
.site-slideshow {
  position: relative;
  width: min(calc(100% - 88px), var(--content-width));
  height: clamp(190px, 24vw, 280px);
  margin: 0 auto 4px;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  background: var(--media-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--hero-shadow);
}

.site-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--overlay), transparent 22%, transparent 78%, var(--overlay));
  opacity: 0.22;
}

.site-slideshow-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1.25s ease, transform 6.5s ease;
}

.site-slideshow-image.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

/* Legal pages */
.legal-page {
  max-width: 900px;
}

.legal-language {
  display: none;
}

html[lang="en"] .legal-language[data-language="en"],
html[lang="de"] .legal-language[data-language="de"] {
  display: block;
}

.legal-header {
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border-accent);
}

.legal-kicker {
  margin-bottom: 11px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.legal-header h1 {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.legal-header p {
  max-width: 660px;
  margin-top: 16px;
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

.legal-placeholder {
  margin-bottom: 34px;
  padding: 16px 18px;
  color: var(--text);
  background: color-mix(in srgb, #b96c5d 14%, var(--surface));
  border: 1px solid color-mix(in srgb, #b96c5d 48%, var(--border));
  border-radius: var(--radius-sm);
}

.legal-placeholder strong {
  display: block;
  margin-bottom: 5px;
  color: #d79183;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

:root[data-theme="light"] .legal-placeholder strong {
  color: #8b4035;
}

.legal-placeholder p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.legal-language section {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.legal-language section:first-of-type {
  border-top: 0;
}

.legal-language h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

.legal-language p,
.legal-language address {
  max-width: 760px;
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}

/* Error page */
.error-page {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-code {
  color: var(--border-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(92px, 18vw, 180px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.05em;
}

.error-page h1 {
  margin-top: 28px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}

.error-page p {
  max-width: 520px;
  margin-top: 16px;
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
}

.error-home-link {
  margin-top: 27px;
  padding: 10px 15px;
  color: var(--accent-contrast);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* Shared footer */
.site-footer {
  margin-top: 44px;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-soft) 72%, transparent);
}

.site-footer-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 48px 44px 26px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(380px, 1fr);
  gap: 42px 72px;
}

.site-footer-brand {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1;
  text-align: center;
}

.site-footer-identity {
  width: min(270px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.identity-lockup {
  width: min(250px, 100%);
}

.site-footer-identity-lockup {
  width: 100%;
  margin-top: 14px;
}

.identity-roles {
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.6px;
  text-align: center;
}

.identity-artist {
  margin-top: 9px;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
}

.site-footer-navigation {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
}

.site-footer-heading {
  margin-bottom: 13px;
  color: var(--muted-soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.55px;
  text-transform: uppercase;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.site-footer-links a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.site-footer-links a:hover {
  color: var(--accent);
}

.site-footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  color: var(--muted-soft);
  border-top: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.site-footer-credit {
  color: color-mix(in srgb, var(--muted-soft) 78%, transparent);
  font-size: 9px;
  letter-spacing: 0.85px;
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 24px;
  }

  .site-footer-inner {
    padding: 38px 24px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer-navigation {
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
  }

  .site-footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .site-footer-navigation {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-slideshow-image {
    transition: none;
    transform: none;
  }
}
/* Main layout */
.site {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 34px 44px 84px;
}
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
}
/* Homepage hero */
.home-hero {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 34px 44px 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: stretch;
}
.home-hero img {
  width: 100%;
  height: clamp(480px, calc(100vh - 160px), 620px);
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--hero-shadow);
}
.home-portrait {
  position: relative;
  min-width: 0;
}
.home-portrait figcaption {
  margin-top: 11px;
  padding-right: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--muted-soft);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.home-hero-text {
  border-left: 1px solid var(--border-accent);
  padding-left: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 5vw, 62px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.home-identity-lockup {
  width: min(280px, 100%);
  margin-bottom: clamp(30px, 3vw, 40px);
}
.home-featured-story {
  max-width: 560px;
}

.home-featured-story::before {
  content: "";
  width: min(420px, 100%);
  height: 1px;
  margin-bottom: clamp(24px, 2.5vw, 31px);
  display: block;
  background: linear-gradient(90deg, var(--border-accent), var(--border) 72%, transparent);
}
.home-featured-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.home-featured-title {
  margin-bottom: 17px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.08;
}
.home-featured-text {
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 14px;
  font-weight: var(--serif-body-weight);
  line-height: 1.65;
  white-space: pre-line;
}
.home-featured-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 21px;
}
.home-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.home-featured-link--primary {
  padding: 9px 13px;
  color: var(--accent-contrast);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
}
.home-featured-link--secondary {
  padding-block: 9px;
}
.home-featured-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.home-featured-link--primary::after {
  content: "↗";
}
.home-featured-link:hover::after {
  transform: translateX(3px);
}

/* Shared two-column pages */
.page-layout {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 48px;
  align-items: start;
}
.media-layout {
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 34px;
}
.page-sidebar {
  border-right: 1px solid var(--border);
  padding-right: 26px;
}
.page-main {
  min-width: 0;
}
/* Sidebar buttons */
.sidebar-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--muted-soft);
  text-align: left;
  font-size: 13px;
  padding: 10px 0;
  cursor: pointer;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  line-height: 1.45;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.sidebar-option:hover,
.sidebar-option.active {
  color: var(--accent);
  padding-left: 6px;
}
.sidebar-option.active {
  font-weight: 600;
}
/* Biography */
.biography-page {
  max-width: 760px;
  margin: 0 auto;
}
.biography-expand {
  margin-top: 8px;
}

/* Coaching */
.coaching-page {
  max-width: var(--content-width);
}

.coaching-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.coaching-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.coaching-header h1 {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 7vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.coaching-header p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  font-weight: var(--serif-body-weight);
  line-height: 1.7;
}

.coaching-portrait img {
  width: 100%;
  display: block;
  object-fit: cover;
  background: var(--media-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.coaching-content {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.coaching-portrait img {
  aspect-ratio: 2 / 3;
}

.coaching-images {
  display: grid;
  gap: 22px;
}

.coaching-practical {
  margin-bottom: 24px;
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
}

.coaching-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.coaching-principle {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-top-color: var(--border-accent);
  border-radius: var(--radius-md);
}

.coaching-principle h2 {
  min-height: 3.2em;
  margin-bottom: 19px;
  color: var(--text);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.coaching-principle h2 strong {
  color: var(--accent);
  font-weight: 600;
}

.coaching-principle ul {
  display: grid;
  gap: 11px;
  list-style: none;
}

.coaching-principle li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.coaching-principle li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.coaching-additional {
  margin-top: 28px;
  padding-top: 24px;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--border-accent);
}

.coaching-additional p {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 15px;
  line-height: 1.65;
}

.coaching-additional p::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.coaching-slideshow {
  margin-top: 78px;
  padding-top: 44px;
  border-top: 1px solid var(--border-accent);
}

.coaching-slideshow-header {
  margin-bottom: 26px;
  text-align: center;
}

.coaching-slideshow-header h2 {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.coaching-slideshow-frame {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.coaching-slides {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--media-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.coaching-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.coaching-slide.active {
  z-index: 1;
  opacity: 1;
}

.coaching-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.coaching-slideshow-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease;
}

.coaching-slideshow-control:hover {
  color: var(--accent);
  background: var(--bg-soft);
}

.coaching-slideshow-prev {
  left: 14px;
}

.coaching-slideshow-next {
  right: 14px;
}

.coaching-slideshow-dots {
  min-height: 20px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.coaching-slideshow-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: var(--muted-soft);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.45;
  transition: width 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.coaching-slideshow-dots button:hover,
.coaching-slideshow-dots button[aria-current="true"] {
  width: 18px;
  background: var(--accent);
  border-radius: 999px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .coaching-slide,
  .coaching-slideshow-dots button {
    transition: none;
  }
}

/* Stage farewell */
.farewell-page {
  max-width: var(--content-width);
  margin: 0 auto;
}
.farewell-header {
  margin-bottom: 64px;
  padding: 40px 0 34px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.farewell-header h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 400;
}
.farewell-speech {
  margin-bottom: 68px;
}
.farewell-group + .farewell-group {
  margin-top: 76px;
}
.farewell-group h2 {
  margin-bottom: 24px;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.3;
  font-weight: 400;
}
.farewell-gallery {
  display: grid;
  gap: 18px;
}
.farewell-gallery--landscape {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.farewell-gallery--portrait {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.farewell-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--media-surface);
  box-shadow: var(--shadow);
}
.farewell-gallery--landscape img {
  aspect-ratio: 4 / 3;
}
.farewell-gallery--portrait img {
  aspect-ratio: 2 / 3;
}
.pill-button {
  background: var(--media-surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.pill-button.active,
.pill-button:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  background: var(--surface-hover);
}
.bio-text p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  line-height: 1.85;
  font-weight: var(--serif-body-weight);
  color: var(--muted);
  margin-bottom: 24px;
}
/* General text */
.content,
.content p,
.news-text,
.event-text,
.contact-detail,
.recording-detail-row,
.interview-detail-row {
  color: var(--muted);
}
.news-text{
  line-height: 1.6;
  white-space: pre-line;
}
.content p,
.news-text {
  font-size: 16px;
  margin-bottom: 50px;
}

/* Calendar */
.calendar {
  min-height: 60vh;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 34px;
}
.calendar .page-sidebar {
  padding-right: 28px;
}
.calendar-selector-label {
  margin-bottom: 10px;
  color: var(--muted-soft);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.calendar-year-menu {
  position: relative;
  width: 104px;
}
.calendar-year-menu > summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  list-style: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.calendar-year-menu > summary::-webkit-details-marker {
  display: none;
}
.calendar-year-menu > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.calendar-year-menu[open] > summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}
.calendar-year-menu > summary:hover,
.calendar-year-menu[open] > summary {
  color: var(--accent);
  background: var(--surface-hover);
  border-color: var(--border-accent);
}
.calendar-year-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 3;
  width: 100%;
  max-height: 280px;
  padding: 6px;
  display: grid;
  gap: 2px;
  overflow-y: auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.calendar-year-dropdown button {
  width: 100%;
  padding: 9px 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}
.calendar-year-dropdown button:hover,
.calendar-year-dropdown button.active {
  color: var(--accent);
  background: var(--nav-active);
}
.calendar-year-dropdown button.active::after {
  content: "✓";
  float: right;
}
.calendar .page-main > div,
.calendar #events > div {
  margin-bottom: 18px;
}
.month-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin: 34px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
}
.month-title:hover,
.month-title.active {
  color: var(--accent);
}
.calendar .month-title {
  cursor: default;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}
.calendar .month-title:hover {
  color: var(--text);
}
#events > div:first-child .month-title {
  margin-top: 0;
}
.production-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 400;
}
.role-name {
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.event {
  padding: 14px 18px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.event:hover {
  background: var(--surface-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.calendar-event {
  position: relative;
  padding: 18px 46px 18px 20px;
  display: grid;
  grid-template-columns: minmax(76px, 106px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.calendar-event[href] {
  cursor: pointer;
}
.calendar-event[href]::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--muted-soft);
  font-size: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.calendar-event[href]:hover::after {
  color: var(--accent);
  transform: translate(2px, -2px);
}
.event-days {
  padding-top: 5px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.9px;
}
.event-details {
  min-width: 0;
}
.calendar-event-type {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.calendar-event-title {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}
.calendar-event-role {
  margin-top: 4px;
  color: var(--accent);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}
.event-venue {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.event-text {
  font-size: 15px;
  line-height: 1.6;
}
/* Reviews */
.review-block {
  display: none;
}
.review-block.open {
  display: block;
  position: relative;
  padding: 38px 42px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.review-block.open::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 86px;
  line-height: 1;
  color: var(--quote-mark);
  pointer-events: none;
}
.review-meta {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
/* Contact */
.contact-group {
  margin-bottom: 36px;
}
.contact-group-title {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.contact-card,
.news-entry {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.contact-card {
  margin-bottom: 30px;
  padding: 30px;
}
.contact-name {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-detail {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 4px;
}
/* News */
.news-layout {
  max-width: var(--content-width);
  margin: 0 auto;
}
.news-column > .section-title {
  margin-bottom: 24px;
}
#news-container {
  display: grid;
  gap: 34px;
}
.news-entry {
  min-width: 0;
  padding: 30px;
  overflow: hidden;
}
.news-entry--featured {
  padding: clamp(32px, 5vw, 52px);
  border-color: var(--border-accent);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.news-entry-header {
  margin-bottom: 24px;
}
.news-featured-label {
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.news-date {
  display: block;
  color: var(--muted-soft);
  letter-spacing: 1.5px;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.news-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 4vw, 39px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--text);
}
.news-entry--compact .news-title {
  font-size: 25px;
  line-height: 1.12;
}
.news-entry .news-text {
  margin-bottom: 25px;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: var(--serif-body-weight);
  line-height: 1.75;
}
.news-entry--compact .news-text {
  font-size: 14px;
  line-height: 1.65;
}
.news-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.news-entry--compact .news-images {
  grid-template-columns: 1fr;
  margin-top: 18px;
}
.news-image-button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.news-image {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.news-entry--compact .news-image {
  max-height: 280px;
}
.news-image-button:hover .news-image {
  opacity: 0.86;
  transform: scale(1.012);
}
.news-entry .news-link {
  margin-top: 22px;
}
.news-entry .news-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
}
.news-entry .news-link a::after {
  content: "↗";
  font-size: 12px;
  transition: transform 0.2s ease;
}
.news-entry .news-link a:hover::after {
  transform: translate(2px, -2px);
}
.news-entry-body > :last-child {
  margin-bottom: 0;
}
.news-error {
  color: var(--muted);
}
/* Media */
.media-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 3px;
  padding: 4px;
  margin-bottom: 28px;
  overflow-x: auto;
  flex-wrap: nowrap;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  scrollbar-width: none;
}
.media-tabs::-webkit-scrollbar {
  display: none;
}
.media-tabs .pill-button {
  flex: 0 0 auto;
  padding: 9px 14px;
  background: transparent;
  border-color: transparent;
}
.media-tabs .pill-button.active,
.media-tabs .pill-button:hover {
  background: var(--surface-hover);
  border-color: transparent;
}
.media-video-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--embed-background);
}
.media-video-confirmation {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--media-surface);
}
.media-video-confirmation-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.media-privacy-link {
  color: var(--accent);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.audio-role {
  margin-top: 4px;
  color: var(--muted-soft);
  font-size: 0.9em;
}
.audio-player {
  width: 100%;
  margin-top: 12px;
}
/* Galleries */
.photo-grid,
.recording-grid,
.interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 26px;
}
.photo-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item,
.recording-card,
.interview-card {
  cursor: pointer;
}

button.media-card,
button.recording-card,
button.interview-card,
button.month-title,
button.sidebar-option {
  width: 100%;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
}
.gallery-item {
  width: 100%;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--media-surface);
}

.featured-photo {
  width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  cursor: pointer;
}
.gallery-item img,
.recording-thumb,
.interview-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery-item img {
  height: 100%;
}
.recording-thumb,
.interview-thumb {
  height: 220px;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--media-surface);
}
.gallery-item:hover img,
.recording-card:hover .recording-thumb,
.interview-card:hover .interview-thumb {
  transform: translateY(-3px);
  opacity: 0.86;
}
.recording-title,
.interview-title {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}
.recording-composer,
.recording-year,
.interview-meta {
  color: var(--muted-soft);
  font-size: 0.9em;
  margin-top: 4px;
}
.recording-detail,
.interview-detail {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}
.recording-covers {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
}
.recording-cover-large,
.interview-cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.interview-cover {
  width: 240px;
}
.recording-detail-info,
.interview-detail-info {
  flex: 1;
}
.recording-detail-title,
.interview-detail-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.recording-detail-composer {
  color: var(--muted);
  margin-bottom: 22px;
}
.recording-detail-row,
.interview-detail-row {
  margin-bottom: 9px;
  font-size: 15px;
}
.recording-detail-label,
.interview-detail-label {
  display: inline-block;
  min-width: 130px;
  color: var(--muted-soft);
}
.recording-detail-value,
.interview-detail-value {
  color: var(--text);
}
.interview-pdf {
  margin-top: 28px;
}
.interview-pdf iframe {
  width: 100%;
  height: 720px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--document-background);
}
/* Lightboxes */
#lightbox {
  position: fixed;
  inset: 0;
  background: var(--lightbox-backdrop);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#lightbox.open {
  display: flex;
}
#lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--lightbox-shadow);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}
.back-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  margin-bottom: 18px;
  cursor: pointer;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.back-button:hover {
  color: var(--text);
}
.news-text {
  white-space: pre-line;
}

.news-link {
  margin-top: 1rem;
}

.news-link a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 900px) {
  .site-slideshow {
    width: calc(100% - 48px);
    height: clamp(165px, 32vw, 230px);
  }
  .topbar {
    padding: 14px 24px;
    min-height: 68px;
    flex-wrap: wrap;
  }

  .nav-menu-toggle {
    display: block;
  }

  .topnav {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }

  .topnav > a:first-child {
    margin-left: 0;
  }

  .topnav.open {
    max-height: calc(100vh - 68px);
    padding-top: 16px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .topnav > a,
  .more-menu > summary {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .more-dropdown {
    position: static;
    margin: 2px 0 6px 14px;
    padding: 2px 0 2px 12px;
    box-shadow: none;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--border-accent);
  }

  .nav-utilities {
    margin: 8px 0 0;
    padding: 14px 0 2px;
    border-top: 1px solid var(--border);
  }

  .nav-utilities > .language-menu {
    margin-left: 4px;
    padding-left: 11px;
  }

  .calendar-utility {
    width: auto;
    flex-basis: auto;
    gap: 8px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .calendar-utility-label {
    display: inline;
    font-size: 11px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
  }

  .language-dropdown {
    top: auto;
    right: auto;
    bottom: calc(100% + 8px);
    left: 0;
  }
  .site {
    padding: 28px 24px 64px;
  }
  .home-hero,
  .page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-hero {
    padding: 28px 24px 48px;
  }
  .home-hero img {
    height: 340px;
  }
  .home-hero-text {
    border-left: none;
    padding-left: 0;
  }
  .home-title {
    font-size: 52px;
  }
  .page-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .recording-detail,
  .interview-detail {
    flex-direction: column;
  }
  .media-video-wrapper iframe {
    height: 320px;
  }
  .review-block.open,
  .news-entry {
    padding: 34px 30px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .coaching-content {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
  }
  .coaching-principles {
    grid-template-columns: 1fr;
  }
  .coaching-principle h2 {
    min-height: 0;
  }
  .farewell-gallery--portrait {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .site-slideshow {
    width: calc(100% - 36px);
    height: 150px;
    border-radius: var(--radius-sm);
  }
  .topbar {
    padding: 13px 18px;
    min-height: auto;
  }
  .brand-name {
    font-size: 28px;
  }
  .topnav {
    display: flex;
    gap: 3px;
  }
  .site {
    padding: 24px 18px 52px;
  }
  .section-title {
    font-size: 30px;
  }
  .home-hero {
    padding: 24px 18px 44px;
  }
  .home-hero img {
    height: 260px;
    border-radius: 16px;
  }
  .home-title {
    font-size: 42px;
  }
  .coaching-header {
    margin-bottom: 28px;
  }
  .coaching-header p {
    font-size: 16px;
  }
  .coaching-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .coaching-images {
    width: min(460px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calendar-event {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px 42px 16px 17px;
  }
  .event-days {
    padding-top: 0;
  }
  .calendar-event-title {
    font-size: 21px;
  }
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .review-block.open,
  .news-entry {
    padding: 28px 22px;
  }
  .media-video-wrapper iframe {
    height: 240px;
  }
  .interview-cover {
    width: 100%;
  }
  .farewell-header {
    margin-bottom: 44px;
    padding: 30px 0 26px;
  }
  .farewell-group + .farewell-group {
    margin-top: 54px;
  }
  .farewell-speech {
    margin-bottom: 52px;
  }
  .farewell-gallery--landscape,
  .farewell-gallery--portrait {
    grid-template-columns: 1fr;
  }
}
/* Modern Media Page Additions */

.media-content-header {
  margin-bottom: 26px;
}

.media-content-header h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.media-content-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.media-content-header .media-item-count {
  margin-top: 5px;
  color: var(--muted-soft);
  font-size: 12px;
}

.media-kicker {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.media-category {
  border-radius: var(--radius-sm);
}

.media-category small {
  display: block;
  margin-top: 3px;
  color: var(--muted-soft);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-media-category-menu {
  display: none;
}

.featured-photo {
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.featured-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.featured-photo:hover img {
  transform: scale(1.015);
  opacity: 0.92;
}

.media-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.media-card,
.audio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 20px 22px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.media-card:hover,
.audio-card:hover,
.audio-card.open {
  background: var(--surface-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.media-card-icon {
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 16px;
}

.media-card-title {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.media-card-meta {
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.audio-card-list {
  display: grid;
  gap: 14px;
}

.audio-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.audio-card-copy {
  min-width: 0;
}

.audio-meta-line {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 7px;
  line-height: 1.4;
}

.audio-title-line {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 400;
}

.audio-role-line {
  color: var(--muted-soft);
  font-size: 13px;
  margin-top: 7px;
  line-height: 1.4;
}

.audio-card-indicator {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  position: relative;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.audio-card-indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 11px solid var(--accent);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.audio-card:hover .audio-card-indicator,
.audio-card.open .audio-card-indicator {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.04);
}

.audio-card:hover .audio-card-indicator::before,
.audio-card.open .audio-card-indicator::before {
  border-left-color: var(--bg);
}

.audio-card.open .audio-card-indicator::before {
  left: 50%;
  width: 13px;
  height: 15px;
  border: none;
  background:
    linear-gradient(to right,
      var(--bg) 0 4px,
      transparent 4px 9px,
      var(--bg) 9px 13px
    );
}

.audio-player-wrap {
  display: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.audio-card.open .audio-player-wrap {
  display: block;
}

.audio-player {
  width: 100%;
  margin-top: 0;
}

.photo-grid-modern {
  margin-top: 22px;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--lightbox-backdrop);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
}

.photo-lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--lightbox-shadow);
}

.photo-lightbox-close,
.photo-lightbox-nav {
  position: absolute;
  border: none;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-nav:hover {
  background: var(--accent);
  color: var(--bg);
}

.photo-lightbox-close {
  top: 24px;
  right: 28px;
  width: 42px;
  height: 42px;
  font-size: 30px;
  line-height: 1;
}

.photo-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  font-size: 36px;
  line-height: 1;
}

.photo-lightbox-prev {
  left: 28px;
}

.photo-lightbox-next {
  right: 28px;
}

.photo-lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* Compact typography for Reviews and Media Library */
.reviews-page .sidebar-option,
.media-section .sidebar-option {
  font-size: 11px;
  letter-spacing: 1.05px;
}

.reviews-page .month-title {
  margin: 16px 0 7px;
  padding-bottom: 7px;
}

.reviews-page #content > div:first-child .month-title {
  margin-top: 0;
}

.reviews-page .production-name {
  font-size: 22px;
}

.reviews-page .role-name {
  font-size: 10px;
  letter-spacing: 0.85px;
}

.reviews-page .review-block.open {
  margin-bottom: 26px;
  padding: 30px 32px;
}

.reviews-page .review-block.open::before {
  top: 10px;
  left: 20px;
  font-size: 70px;
}

.reviews-page .event {
  padding: 12px 15px;
}

.reviews-page .event-text {
  font-size: 14px;
  line-height: 1.58;
}

.reviews-page .review-meta {
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 1.35px;
}

.media-section .media-tabs {
  margin-bottom: 24px;
}

.media-section .media-tabs .pill-button {
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 1.05px;
}

.media-section .media-content-header {
  margin-bottom: 22px;
}

.media-section .media-content-header h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.media-section .media-content-header p {
  font-size: 13px;
  line-height: 1.5;
}

.media-section .media-content-header .media-item-count,
.media-section .media-card-meta {
  font-size: 10px;
}

.media-section .media-kicker {
  margin-bottom: 8px;
  font-size: 9px;
  letter-spacing: 1.65px;
}

.media-section .media-category small {
  font-size: 10px;
}

.media-section .media-card,
.media-section .audio-card {
  padding: 17px 19px;
}

.media-section .media-card-icon {
  margin-bottom: 13px;
  font-size: 20px;
}

.media-section .media-card-title,
.media-section .recording-title,
.media-section .interview-title {
  font-size: 13px;
  line-height: 1.4;
}

.media-section .recording-composer,
.media-section .recording-year,
.media-section .interview-meta,
.media-section .audio-role-line {
  font-size: 11px;
}

.media-section .audio-meta-line {
  margin-bottom: 6px;
  font-size: 9px;
  letter-spacing: 1.4px;
}

.media-section .audio-title-line {
  font-size: 20px;
}

.media-section .recording-detail-title,
.media-section .interview-detail-title {
  font-size: 20px;
}

.media-section .recording-detail-composer {
  margin-bottom: 18px;
  font-size: 13px;
}

.media-section .recording-detail-row,
.media-section .interview-detail-row {
  margin-bottom: 7px;
  font-size: 13px;
}

.media-section .recording-detail-label,
.media-section .interview-detail-label {
  min-width: 116px;
}

.media-section .back-button {
  font-size: 11px;
}

@media (max-width: 560px) {
  .reviews-page .production-name {
    font-size: 20px;
  }

  .reviews-page .review-block.open {
    padding: 24px 20px;
  }

  .media-section .media-content-header h2 {
    font-size: 25px;
  }

  .media-section .audio-title-line {
    font-size: 18px;
  }
}

/* Shared card style */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card,
.audio-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
  #media-left > .media-category {
    display: none;
  }

  .mobile-media-category-menu {
    position: relative;
    width: min(260px, 100%);
    display: block;
  }

  .mobile-media-category-menu > summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 13px;
    color: var(--text);
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.6px;
    list-style: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .mobile-media-category-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-media-category-menu > summary::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .mobile-media-category-menu[open] > summary {
    color: var(--accent);
    background: var(--surface-hover);
    border-color: var(--border-accent);
  }

  .mobile-media-category-menu[open] > summary::after {
    margin-top: 3px;
    transform: rotate(225deg);
  }

  .mobile-media-category-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 5;
    width: 100%;
    max-height: 310px;
    padding: 6px;
    display: grid;
    gap: 2px;
    overflow-y: auto;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
  }

  .mobile-media-category-dropdown button {
    width: 100%;
    padding: 9px 10px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .mobile-media-category-dropdown button:hover,
  .mobile-media-category-dropdown button.active {
    color: var(--accent);
    background: var(--nav-active);
  }

  .mobile-media-category-dropdown button > span {
    display: block;
    font-size: 11px;
    line-height: 1.35;
  }

  .mobile-media-category-dropdown button small {
    display: block;
    margin-top: 3px;
    color: var(--muted-soft);
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  ::view-transition-old(page-content),
  ::view-transition-new(page-content) {
    animation: none !important;
  }
}
