@font-face {
  font-family: "Cantarell Portfolio";
  src: url("assets/fonts/Cantarell-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Portfolio Serif";
  src: url("assets/fonts/C059-Roman.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #061019;
  --ink-light: #0e1d28;
  --gold: #d5c99f;
  --gold-bright: #e6d9ac;
  --blue: #738a9d;
  --blue-bright: #91a8b8;
  --content-right: clamp(10rem, 14vw, 15rem);
  --page-gutter: clamp(1.5rem, 4.45vw, 4.5rem);
  --serif: "Portfolio Serif", "Bodoni 72", Georgia, serif;
  --sans: "Cantarell Portfolio", "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #344957 var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--blue);
  background: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--gold-bright);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.page-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(30, 56, 72, 0.24), transparent 38%),
    linear-gradient(100deg, #0e1c27 0%, #07111a 54%, #010305 100%);
}

.section-shell {
  min-height: 100svh;
  padding: clamp(2.2rem, 5.2vh, 4.2rem) var(--content-right) clamp(2.5rem, 6vh, 5rem) var(--page-gutter);
}

.section-title {
  margin: 0 0 clamp(1rem, 2.6vh, 2rem);
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.group-title,
.training-list h3,
.education h3,
.film-copy h3,
.resource-group h3,
.contact-copy h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(1.2rem, 1.85vw, 2rem);
  font-weight: 300;
  line-height: 1.15;
}

.side-nav {
  position: fixed;
  z-index: 40;
  top: 50%;
  right: clamp(2rem, 4.5vw, 4.8rem);
  transform: translateY(-42%);
}

.nav-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.9rem, 2vh, 1.55rem);
}

.nav-links a {
  position: relative;
  color: #708798;
  font-size: clamp(0.88rem, 1.28vw, 1.25rem);
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.65rem);
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--gold);
  transform: translateX(0.22rem);
}

.nav-links a.is-active::before {
  width: 1.15rem;
}

.mobile-header {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-color: #08131b;
  background-image: url("assets/images/title.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 58%, rgba(0, 3, 5, 0.05) 100%);
}

.hero-brand {
  position: absolute;
  z-index: 1;
  top: clamp(2.6rem, 6.2vh, 4rem);
  left: 61.4%;
  width: min(35.5vw, 36rem);
  text-align: center;
}

.hero-brand img {
  width: 100%;
  height: auto;
}

.hero-brand p {
  margin: 0.5rem 8% 0;
  padding-top: 1.15rem;
  color: var(--gold);
  border-top: 1px solid rgba(209, 197, 157, 0.1);
  font-size: clamp(0.9rem, 1.35vw, 1.35rem);
  letter-spacing: 0.62em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 1.8rem;
  left: 50%;
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 2.2rem;
  background: currentColor;
}

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(18rem, 35.2%) minmax(24rem, 1fr);
  gap: clamp(2rem, 4.2vw, 4.2rem);
}

.portrait-button,
.media-thumb,
.stage-card,
.gallery-card,
.film-poster,
.tile {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.portrait-button {
  overflow: hidden;
  width: 100%;
  height: min(70vh, 43rem);
}

.portrait-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 500ms ease;
}

.portrait-button:hover img {
  transform: scale(1.018);
}

.about-copy {
  max-width: 43rem;
  padding-top: 0.2rem;
  color: #6f8290;
  font-size: clamp(1rem, 1.44vw, 1.35rem);
  line-height: 1.19;
}

.about-copy p {
  margin: 0;
}

.media-group + .media-group {
  margin-top: clamp(1.8rem, 4vh, 3.2rem);
}

.group-title {
  margin-bottom: clamp(0.8rem, 1.8vh, 1.3rem);
}

.video-grid,
.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1vw, 1rem);
}

.video-card {
  text-align: center;
}

.media-thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 450ms ease;
}

.media-thumb::after,
.film-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.08);
  transition: background 220ms ease;
}

.play-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(230, 217, 172, 0.82);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 220ms ease, transform 220ms ease;
}

.play-mark::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.65rem solid var(--gold-bright);
  transform: translate(-35%, -50%);
}

.media-thumb:hover img,
.film-poster:hover img {
  transform: scale(1.035);
}

.media-thumb:hover::after,
.film-poster:hover::after {
  background: rgba(0, 0, 0, 0.32);
}

.media-thumb:hover .play-mark,
.media-thumb:focus-visible .play-mark,
.film-poster:hover .play-mark,
.film-poster:focus-visible .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-card h4 {
  min-height: 2.65em;
  margin: 0.45rem 0 0.5rem;
  color: #778c9d;
  font-size: clamp(0.85rem, 1.25vw, 1.18rem);
  font-weight: 300;
  line-height: 1.22;
}

.text-link {
  position: relative;
  padding: 0 0 0.25rem;
  color: #7890a1;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: clamp(0.75rem, 1.12vw, 1.05rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.stage-card {
  color: #748898;
  font-size: clamp(0.82rem, 1.15vw, 1.05rem);
  line-height: 1.2;
  text-align: center;
}

.stage-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 0.55rem;
  background: #05090d;
}

.stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: brightness(0.82) saturate(0.86);
  transition: filter 240ms ease, transform 450ms ease;
}

.stage-card:hover .stage-image img,
.stage-card:focus-visible .stage-image img {
  filter: brightness(1) saturate(1);
  transform: scale(1.035);
}

.gallery-section .section-shell {
  display: flex;
  flex-direction: column;
}

.gallery-grid {
  display: grid;
  align-items: start;
  flex: 1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.25vw, 1.25rem);
}

.gallery-card {
  color: #748b9b;
  font-size: clamp(0.8rem, 1.05vw, 1rem);
  line-height: 1.2;
  text-align: center;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 0.77;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) saturate(0.9);
  transition: filter 240ms ease, transform 450ms ease;
}

.gallery-card span {
  display: block;
  margin-top: 0.65rem;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: brightness(1.04) saturate(1.02);
  transform: translateY(-0.25rem);
}

.training-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.8rem, 6.5vh, 5rem);
}

.training-list article {
  max-width: 42rem;
}

.training-list p,
.education p,
.film-copy p,
.contact-copy p {
  margin: 0.75rem 0 0;
  color: #748b9e;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.22;
}

.education {
  margin-bottom: clamp(3rem, 8vh, 5.2rem);
}

.education p span {
  font-size: 0.9em;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.25rem, 4vw, 5rem);
}

.film-card {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) minmax(12rem, 1fr);
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
}

.film-poster {
  position: relative;
  align-self: start;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.67;
  background: #020406;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.film-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.film-copy p {
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
}

.film-copy .text-link {
  margin-top: auto;
}

.model-section .section-shell {
  padding-top: clamp(1.7rem, 4vh, 3.4rem);
}

.model-gallery {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: clamp(1.5rem, 3vw, 3.2rem);
}

.mosaic {
  display: grid;
  height: min(73vh, 41rem);
  gap: clamp(0.45rem, 0.85vw, 0.8rem);
}

.mosaic-editorial {
  grid-template-columns: 1.45fr 0.95fr 0.95fr;
  grid-template-rows: 1fr 0.83fr;
}

.mosaic-classic {
  grid-template-columns: 1.45fr 0.88fr 0.88fr;
  grid-template-rows: 1.05fr 0.95fr 0.72fr;
}

.tile {
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  background: #0a0d10;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: filter 240ms ease, transform 480ms ease;
}

.tile:hover img,
.tile:focus-visible img {
  filter: brightness(1.04);
  transform: scale(1.025);
}

.mosaic-editorial .tile-a,
.mosaic-classic .tile-a {
  grid-row: 1 / 3;
}

.mosaic-editorial .tile-d {
  grid-column: 2 / 4;
}

.mosaic-editorial .tile-d img {
  object-position: center 55%;
}

.mosaic-classic .tile-a img {
  object-position: center 30%;
}

.mosaic-classic .tile-d {
  grid-column: 2;
}

.mosaic-classic .tile-e {
  grid-column: 3;
}

.mosaic-classic .tile-f {
  grid-column: 1;
}

.mosaic-classic .tile-g {
  grid-column: 2 / 4;
}

.singing-shell {
  display: flex;
  flex-direction: column;
}

.singing-note {
  margin: auto 0;
  color: rgba(112, 137, 155, 0.42);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  letter-spacing: 0.12em;
}

.contact-resources {
  display: flex;
  gap: clamp(5rem, 12vw, 12rem);
}

.resource-group h3 {
  margin: 0 0 1.5rem 1.6rem;
}

.resource-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.resource-card {
  display: block;
  width: clamp(7.8rem, 12vw, 12rem);
  color: #768c9d;
  font-size: clamp(0.9rem, 1.25vw, 1.15rem);
  text-align: center;
}

.resource-card img {
  width: 100%;
  height: clamp(12rem, 28vh, 15rem);
  object-fit: cover;
  object-position: top;
  transition: filter 220ms ease, transform 320ms ease;
}

.resource-card span {
  display: block;
  margin-top: 0.55rem;
}

.resource-card:hover img,
.resource-card:focus-visible img {
  filter: brightness(1.08);
  transform: translateY(-0.2rem);
}

.resource-card:hover span,
.resource-card:focus-visible span {
  color: var(--gold);
}

.contact-copy {
  margin-top: clamp(2.2rem, 6vh, 4.5rem);
}

.contact-copy p {
  margin-top: 0.35rem;
}

.contact-copy a {
  transition: color 180ms ease;
}

.contact-copy a:hover,
.contact-copy a:focus-visible {
  color: var(--gold);
}

.email-placeholder {
  display: inline-block;
  min-width: 12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid rgba(116, 139, 158, 0.75);
}

.copyright {
  position: absolute;
  bottom: 1.5rem;
  left: var(--page-gutter);
  margin: 0;
  color: rgba(112, 137, 155, 0.38);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  opacity: 0;
  transition: visibility 220ms ease, opacity 220ms ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 4, 8, 0.9);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(90vw, 75rem);
  max-height: 90svh;
  padding: clamp(1rem, 2.4vw, 2rem);
  overflow: auto;
  border: 1px solid rgba(213, 201, 159, 0.17);
  background: #08131c;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 0.45rem;
  right: 0.75rem;
  padding: 0;
  color: var(--gold);
  border: 0;
  cursor: pointer;
  background: none;
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1;
}

.modal-title {
  margin: 0 2.5rem 1rem 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.modal-content video {
  width: 100%;
  max-height: 76svh;
  background: #000;
}

.modal-content img {
  width: auto;
  max-width: 100%;
  max-height: 78svh;
  margin: 0 auto;
  object-fit: contain;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: min(25rem, calc(100vw - 3rem));
  padding: 0.9rem 1.15rem;
  color: var(--gold-bright);
  border: 1px solid rgba(213, 201, 159, 0.25);
  background: #10212d;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1250px) and (min-width: 901px) {
  :root {
    --content-right: 11rem;
  }

  .about-grid {
    grid-template-columns: 32% 1fr;
    gap: 2rem;
  }

  .about-copy {
    font-size: 1rem;
  }

  .film-card {
    grid-template-columns: 8rem 1fr;
  }

  .mosaic {
    height: min(68vh, 34rem);
  }
}

@media (max-width: 900px) {
  :root {
    --mobile-header-height: 4.75rem;
    --content-right: 1.35rem;
    --page-gutter: 1.35rem;
  }

  .side-nav {
    display: none;
  }

  .mobile-header {
    position: fixed;
    z-index: 70;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--mobile-header-height);
    padding: 0.45rem 1rem 0.35rem;
    border-bottom: 1px solid rgba(213, 201, 159, 0.09);
    background: rgba(5, 15, 22, 0.9);
    backdrop-filter: blur(14px);
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 11.2rem;
  }

  .mobile-brand img {
    width: 100%;
  }

  .mobile-brand span {
    margin-top: -0.12rem;
    color: var(--gold);
    font-size: 0.5rem;
    letter-spacing: 0.55em;
    line-height: 1;
    text-transform: uppercase;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.62rem 0.48rem;
    border: 0;
    cursor: pointer;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(0.48rem) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-0.48rem) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: var(--mobile-header-height);
    right: 0;
    width: min(18rem, 78vw);
    height: calc(100svh - var(--mobile-header-height));
    padding: 2rem;
    border-left: 1px solid rgba(213, 201, 159, 0.1);
    background: rgba(12, 30, 42, 0.97);
    box-shadow: -1rem 0 3rem rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 260ms ease;
  }

  .mobile-menu::before {
    position: fixed;
    z-index: -1;
    top: var(--mobile-header-height);
    right: 0;
    width: 100vw;
    height: calc(100svh - var(--mobile-header-height));
    content: "";
    background: rgba(0, 3, 6, 0.3);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu .nav-links {
    gap: 1.45rem;
  }

  .mobile-menu .nav-links a {
    font-size: 1rem;
  }

  .hero {
    min-height: min(77svh, 42rem);
    margin-top: var(--mobile-header-height);
    background-position: 33% center;
  }

  .hero-brand {
    display: none;
  }

  .hero-scroll {
    display: flex;
  }

  .page-section {
    min-height: auto;
    overflow: visible;
    scroll-margin-top: var(--mobile-header-height);
  }

  .section-shell {
    min-height: auto;
    padding: 4.2rem var(--page-gutter) 5rem;
  }

  .section-title {
    margin-bottom: 1.8rem;
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    letter-spacing: 0.2em;
    text-align: center;
  }

  .about-grid {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.8rem;
  }

  .portrait-button {
    width: min(76vw, 20rem);
    height: auto;
    aspect-ratio: 0.8;
  }

  .about-copy {
    max-width: 38rem;
    font-size: 1rem;
    line-height: 1.38;
    text-align: center;
  }

  .about-copy p + p {
    margin-top: 0.65rem;
  }

  .group-title {
    text-align: center;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

  .video-card h4 {
    font-size: 0.95rem;
  }

  .text-link {
    font-size: 0.78rem;
  }

  .stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 0.8rem;
  }

  .training-list {
    align-items: center;
    gap: 3.5rem;
    text-align: center;
  }

  .training-section .section-shell {
    min-height: 70svh;
  }

  .education {
    text-align: center;
  }

  .film-grid {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4.5rem;
  }

  .film-card {
    width: min(100%, 40rem);
    grid-template-columns: minmax(7.5rem, 12rem) 1fr;
  }

  .film-copy .text-link {
    margin-top: 1.4rem;
  }

  .model-gallery {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }

  .mosaic {
    width: min(100%, 38rem);
    height: min(85vw, 34rem);
  }

  .singing-section .section-shell {
    min-height: 45svh;
  }

  .singing-note {
    text-align: center;
  }

  .contact-resources {
    justify-content: center;
    gap: clamp(2rem, 10vw, 5rem);
  }

  .resource-group h3 {
    margin-left: 0;
    text-align: center;
  }

  .resource-card {
    width: clamp(6.5rem, 21vw, 9rem);
  }

  .resource-card img {
    height: clamp(10rem, 30vw, 13rem);
  }

  .contact-copy {
    text-align: center;
  }

  .copyright {
    position: static;
    margin-top: 4rem;
    text-align: center;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 1rem;
  }

  .mobile-brand {
    width: 9.5rem;
  }

  .hero {
    min-height: 67svh;
    background-position: 32% center;
  }

  .section-shell {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .portrait-button {
    width: min(72vw, 17rem);
  }

  .about-copy {
    padding: 0 0.35rem;
    font-size: 0.91rem;
  }

  .video-grid {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .video-card {
    width: min(83vw, 21rem);
  }

  .stage-grid {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .stage-card {
    width: min(83vw, 21rem);
  }

  .gallery-grid {
    gap: 1rem 0.55rem;
  }

  .gallery-card {
    font-size: 0.72rem;
  }

  .training-section .section-shell {
    min-height: 60svh;
  }

  .training-list h3,
  .education h3,
  .film-copy h3,
  .resource-group h3,
  .contact-copy h3 {
    font-size: 1.25rem;
  }

  .training-list p,
  .education p,
  .film-copy p,
  .contact-copy p {
    font-size: 0.96rem;
  }

  .education {
    margin-bottom: 3rem;
  }

  .film-card {
    grid-template-columns: minmax(6.8rem, 35vw) 1fr;
    gap: 1rem;
  }

  .film-copy p {
    font-size: 0.86rem;
  }

  .mosaic {
    height: 105vw;
  }

  .contact-resources {
    align-items: center;
    flex-direction: column;
  }

  .resource-card {
    width: min(31vw, 8rem);
  }

  .resource-card img {
    height: min(41vw, 10.5rem);
  }

  .modal-panel {
    width: 96vw;
    padding: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
