@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/cormorant-garamond-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #161b19;
  --forest: #1d2b27;
  --cream: #f3f0e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #666c68;
  --line: rgba(22, 27, 25, 0.17);
  --light-line: rgba(255, 255, 255, 0.24);
  --accent: #c9ae82;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1280px, calc(100vw - 80px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.92;
}

h1 {
  font-size: clamp(4.7rem, 10vw, 10.4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(3.1rem, 6.3vw, 6.8rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.025em;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: block;
  margin-bottom: 24px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.25;
  text-transform: uppercase;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button::after,
.text-link::after {
  content: "↗";
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.text-link {
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}

.button:hover::after,
.button:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(3px, -3px);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid var(--light-line);
}

.nav {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand span {
  opacity: 0.68;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-link {
  position: relative;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before {
  display: block;
  width: 18px;
  height: 1px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: rotate(-90deg);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero-media,
.hero-media::after,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video,
.hero-media img {
  object-fit: cover;
}

.hero-media::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 16, 14, 0.8) 0%, rgba(10, 16, 14, 0.4) 48%, rgba(10, 16, 14, 0.15) 100%),
    linear-gradient(0deg, rgba(10, 16, 14, 0.48), transparent 48%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding-top: 150px;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.hero-copy {
  max-width: 950px;
}

.hero-copy h1 {
  max-width: 900px;
}

.hero-logo {
  width: clamp(310px, 38vw, 520px);
  max-width: calc(100% + 40px);
  height: auto;
  margin: -44px 0 -42px -38px;
  filter: invert(1);
  mix-blend-mode: screen;
}

.home-page {
  background: var(--white);
}

.home-page .site-header,
.about-page .site-header {
  color: var(--ink);
  background: var(--white);
  border-bottom-color: var(--line);
}

.home-hero--split {
  min-height: auto;
  padding: calc(86px + 16px) 0 clamp(24px, 3vw, 42px);
  color: var(--ink);
  background: var(--white);
}

.home-hero-grid {
  position: relative;
  display: flex;
  width: min(1480px, calc(100vw - 48px));
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  min-height: auto;
  padding: clamp(26px, 3vw, 38px) clamp(24px, 4vw, 54px) clamp(28px, 3vw, 42px);
  background:
    linear-gradient(var(--ink), var(--ink)) center top / calc(100% - 72px) 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center bottom / calc(100% - 72px) 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) left center / 1px calc(100% - 72px) no-repeat,
    linear-gradient(var(--ink), var(--ink)) right center / 1px calc(100% - 72px) no-repeat;
}

.hero-brand-panel {
  position: absolute;
  top: clamp(12px, 1.4vw, 20px);
  right: clamp(24px, 3vw, 42px);
  z-index: 1;
  display: flex;
  width: clamp(170px, 13vw, 210px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(20px, 1.8vw, 28px);
  background: var(--white);
  border-radius: 50%;
  text-align: center;
}

.hero-brand-logo {
  width: 100%;
  height: auto;
  filter: none;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(20px, 2vw, 28px);
}

.hero-subtitle p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.hero-subtitle .button {
  justify-content: space-between;
  min-width: 360px;
  min-height: 74px;
  margin: 0;
  padding: 20px 30px;
  color: var(--white);
  font-size: 0.9rem;
  background: var(--ink);
  border-color: var(--ink);
}

.hero-subtitle .button:hover,
.hero-subtitle .button:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.hero-photo-panel {
  position: relative;
  width: min(100%, 1300px);
  height: clamp(420px, 37vw, 640px);
  min-height: 0;
  aspect-ratio: auto;
  margin-top: 0;
  overflow: hidden;
  background: var(--cream);
}

.hero-photo-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
}

.home-page .intro {
  background: var(--white);
}

.home-page .site-footer,
.about-page .site-footer {
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.home-page .footer-meta,
.about-page .footer-meta {
  color: var(--muted);
}

.bands-page {
  background: var(--white);
}

.bands-page .site-header {
  color: var(--ink);
  background: var(--white);
  border-bottom-color: var(--line);
}

.bands-main {
  padding-top: 86px;
}

.band-directory {
  padding: clamp(70px, 9vw, 120px) 0 clamp(100px, 13vw, 170px);
}

.directory-head {
  padding-bottom: clamp(52px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}

.directory-head h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.act-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}

.act-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}

.act-media img,
.act-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.act-placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: linear-gradient(135deg, var(--white), var(--cream));
  text-align: center;
}

.act-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.act-placeholder strong {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
}

.act-carousel {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide[hidden] {
  display: none;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide video {
  object-fit: contain;
  background: #000;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(12, 15, 14, 0.52);
  font-size: 1.3rem;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color 180ms ease, background 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.carousel-arrow--prev {
  left: 18px;
}

.carousel-arrow--next {
  right: 18px;
}

.carousel-count {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(12, 15, 14, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

#rotzblech .act-media img,
#rotzblech .carousel-slide img {
  object-position: center 42%;
}

#trompetenduo .carousel-slide img {
  object-fit: contain;
  background: var(--ink);
}

#southside-techno-brass-band .carousel-slide:first-child img {
  object-fit: cover;
  object-position: center 70%;
  background: transparent;
}

#southside-techno-brass-band .carousel-slide:nth-child(2) img {
  object-fit: contain;
  object-position: center;
  background: #000;
}

.act-copy {
  max-width: 430px;
}

.act-number {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.act-copy h2 {
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
}

.act-copy h2.act-title--compact {
  font-size: clamp(2.75rem, 4.6vw, 4.8rem);
}

.act-copy p {
  margin-top: 26px;
  color: var(--muted);
}

.act-copy .act-type {
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.act-copy .act-type + p {
  margin-top: 16px;
}

.act-copy .act-cast {
  margin-top: 18px;
  font-size: 0.88rem;
  font-style: italic;
}

.act-copy .text-link {
  margin-top: 30px;
}

.act-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 30px;
}

.act-links .text-link {
  margin-top: 0;
}

.bands-page .site-footer {
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.bands-page .footer-meta {
  color: var(--muted);
}

.hero-copy p {
  max-width: 520px;
  margin-top: 32px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-copy .button {
  margin-top: 38px;
}

.media-toggle {
  position: absolute;
  right: max(40px, calc((100vw - 1280px) / 2));
  bottom: 36px;
  z-index: 4;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.intro {
  padding: clamp(88px, 12vw, 150px) 0;
}

.intro-text-only {
  max-width: 920px;
}

.intro-text-only p {
  color: var(--muted);
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1.55;
}

.intro-text-only p + p {
  margin-top: 28px;
}

.about-page {
  background: var(--white);
}

.legal-page {
  background: var(--white);
}

.legal-page .site-header {
  color: var(--ink);
  background: var(--white);
  border-bottom-color: var(--line);
}

.legal-page .site-footer {
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-page .footer-meta {
  color: var(--muted);
}

.about-main {
  padding-top: 86px;
}

.about-section {
  padding: clamp(70px, 9vw, 120px) 0 clamp(100px, 13vw, 170px);
}

.about-heading {
  padding-bottom: clamp(52px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}

.about-heading h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  padding-top: clamp(60px, 8vw, 110px);
}

.about-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
}

.about-copy {
  max-width: 710px;
  padding-top: clamp(0px, 2vw, 28px);
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.about-copy .about-lead {
  color: inherit;
  font: inherit;
}

.about-copy p + p {
  margin-top: 28px;
}

.legal-main {
  padding-top: 86px;
}

.legal-section {
  padding: clamp(70px, 9vw, 120px) 0 clamp(100px, 13vw, 170px);
}

.legal-heading {
  padding-bottom: clamp(52px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}

.legal-heading h1 {
  overflow-wrap: anywhere;
  font-size: clamp(3.35rem, 7vw, 7rem);
}

.legal-content {
  max-width: 850px;
  margin-left: 0;
  padding-top: clamp(60px, 8vw, 105px);
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 58px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 34px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
}

.legal-content p,
.legal-content ul,
.legal-content address {
  margin-top: 18px;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content address {
  color: var(--ink);
  font-style: normal;
}

.legal-content a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.legal-content .legal-date {
  margin-top: 54px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.intro-copy {
  max-width: 480px;
  padding-bottom: 14px;
  color: var(--muted);
}

.intro-copy p + p {
  margin-top: 18px;
}

.intro-copy .text-link {
  margin-top: 28px;
  color: var(--ink);
}

.image-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 20px;
  width: var(--wrap);
  margin: 0 auto;
}

.image-pair figure {
  overflow: hidden;
  background: var(--cream);
}

.image-pair figure:first-child {
  aspect-ratio: 1.35 / 1;
}

.image-pair figure:last-child {
  aspect-ratio: 0.8 / 1;
  margin-top: 16%;
}

.image-pair img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.image-pair figure:hover img {
  transform: scale(1.025);
}

.film-section {
  padding: clamp(110px, 14vw, 180px) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}

.section-head h2 {
  max-width: 760px;
}

.section-head p {
  max-width: 350px;
  color: var(--muted);
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: var(--ink);
}

.film-frame video {
  height: 100%;
  object-fit: cover;
}

.services {
  color: var(--paper);
  background: var(--forest);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  min-height: 280px;
  padding: 48px 34px;
  border-left: 1px solid var(--light-line);
}

.service-item:last-child {
  border-right: 1px solid var(--light-line);
}

.service-item span {
  display: block;
  margin-bottom: 90px;
  opacity: 0.54;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.service-item h3 {
  font-size: clamp(2rem, 3.1vw, 3.5rem);
}

.cta {
  padding: clamp(110px, 14vw, 180px) 0;
  text-align: center;
}

.cta h2 {
  max-width: 1000px;
  margin-inline: auto;
}

.cta .text-link {
  margin-top: 38px;
}

.page-hero {
  min-height: 78svh;
}

.page-hero .hero-content {
  min-height: 78svh;
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(4.2rem, 9.2vw, 9rem);
}

.page-hero--contact,
.page-hero--contact .hero-content {
  min-height: 64svh;
}

.page-hero--contact .hero-content {
  align-items: flex-start;
  padding-top: clamp(138px, 18svh, 180px);
  padding-bottom: 0;
}

.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.76), rgba(7, 8, 12, 0.48)),
    url("assets/contact-keyboard.jpg") center / cover no-repeat;
}

.formations {
  padding: clamp(100px, 14vw, 180px) 0;
}

.formation-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.formation-intro p {
  max-width: 460px;
  align-self: end;
  color: var(--muted);
  font-size: 1.04rem;
}

.formation-list {
  list-style: none;
}

.formation-list li {
  display: grid;
  grid-template-columns: 90px minmax(0, 0.75fr) minmax(280px, 0.6fr);
  gap: 38px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
}

.formation-list .number {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
}

.formation-list p {
  color: var(--muted);
}

.gallery-block {
  padding-bottom: clamp(100px, 14vw, 180px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.gallery-grid figure,
.gallery-grid .video-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}

.gallery-grid img,
.gallery-grid video {
  height: 100%;
  object-fit: cover;
}

.gallery-grid video {
  object-position: center;
}

.contact-main {
  padding: clamp(100px, 13vw, 165px) 0;
  color: var(--ink);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 10vw, 160px);
}

.contact-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}

.contact-intro h2 {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.7vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 0;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.7vw, 1.55rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
}

.contact-details a {
  width: fit-content;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.contact-details a:first-of-type {
  margin-top: 0;
}

.contact-direct {
  margin-top: 52px;
}

.contact-direct small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct a {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-underline-offset: 6px;
}

.contact-main .contact-direct small,
.contact-main .form-note {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 24px;
}

.field {
  display: grid;
  gap: 10px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #929691;
}

.contact-main .field input,
.contact-main .field select,
.contact-main .field textarea {
  border-bottom-color: var(--line);
  color: var(--ink);
}

.contact-main .field input:focus,
.contact-main .field select:focus,
.contact-main .field textarea:focus {
  border-bottom-color: var(--ink);
}

.contact-main .field input::placeholder,
.contact-main .field textarea::placeholder {
  color: #929691;
}

.contact-main .button--dark {
  color: var(--ink);
}

.form-footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
}

.form-note {
  max-width: 390px;
  color: var(--muted);
  font-size: 0.73rem;
}

.site-footer {
  padding: 46px 0;
  color: var(--paper);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 26px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta a {
  text-underline-offset: 5px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  :root {
    --wrap: min(100% - 40px, 720px);
  }

  .site-header {
    position: absolute;
  }

  .nav {
    min-height: 76px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    padding: 100px 32px;
    color: var(--paper);
    background: #000000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-family: var(--serif);
    font-size: 2.6rem;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(10, 16, 14, 0.74) 0%, rgba(10, 16, 14, 0.28) 75%);
  }

  .home-hero-grid {
    width: calc(100vw - 32px);
    min-height: auto;
    padding: 28px 28px 30px;
  }

  .hero-brand-panel {
    top: 14px;
    right: 24px;
    width: 170px;
    min-height: 0;
    padding: 22px;
  }

  .hero-brand-logo {
    width: 100%;
  }

  .hero-photo-panel {
    width: 100%;
    height: clamp(320px, 54vw, 480px);
    min-height: 0;
    aspect-ratio: auto;
    margin: 0;
  }

  .hero-subtitle {
    margin-top: 24px;
  }

  .home-page.menu-open .brand,
  .home-page.menu-open .menu-toggle,
  .about-page.menu-open .brand,
  .about-page.menu-open .menu-toggle,
  .legal-page.menu-open .brand,
  .legal-page.menu-open .menu-toggle,
  .bands-page.menu-open .brand,
  .bands-page.menu-open .menu-toggle {
    color: var(--paper);
  }

  .act-entry {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .act-copy {
    max-width: 560px;
  }

  .media-toggle {
    right: 20px;
    bottom: 22px;
  }

  .intro-grid,
  .about-grid,
  .formation-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .image-pair {
    grid-template-columns: 1fr 0.72fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-item {
    min-height: 230px;
    padding-inline: 22px;
  }

  .service-item span {
    margin-bottom: 68px;
  }

  .formation-list li {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 34px 0;
  }

  .formation-list p {
    grid-column: 2;
  }

  .contact-intro {
    position: static;
  }

  .about-portrait {
    width: min(100%, 580px);
    aspect-ratio: 4 / 3;
  }

  .about-copy {
    max-width: 680px;
  }

  .legal-content {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(4.25rem, 22vw, 6.6rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-content {
    padding-bottom: 82px;
  }

  .home-hero--split {
    padding: 94px 0 20px;
  }

  .home-hero-grid {
    width: calc(100vw - 20px);
    padding: 24px 16px 22px;
    background:
      linear-gradient(var(--ink), var(--ink)) center top / calc(100% - 44px) 1px no-repeat,
      linear-gradient(var(--ink), var(--ink)) center bottom / calc(100% - 44px) 1px no-repeat,
      linear-gradient(var(--ink), var(--ink)) left center / 1px calc(100% - 44px) no-repeat,
      linear-gradient(var(--ink), var(--ink)) right center / 1px calc(100% - 44px) no-repeat;
  }

  .hero-brand-panel {
    position: static;
    order: 1;
    width: 156px;
    min-height: 0;
    padding: 20px;
    border: 1px solid rgba(22, 27, 25, 0.38);
  }

  .hero-brand-logo {
    width: 100%;
  }

  .hero-subtitle {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .hero-subtitle .button {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 64px;
    padding: 17px 22px;
    font-size: 0.78rem;
  }

  .hero-photo-panel {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    aspect-ratio: auto;
    margin: 0;
    overflow: visible;
    background: var(--white);
  }

  .hero-photo-panel > img {
    order: 2;
    width: 100%;
    height: clamp(280px, 72vw, 390px);
    flex: none;
  }

  .bands-main {
    padding-top: 76px;
  }

  .about-main {
    padding-top: 76px;
  }

  .legal-main {
    padding-top: 76px;
  }

  .legal-heading h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .about-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .act-media {
    aspect-ratio: 4 / 3;
  }

  .act-carousel {
    aspect-ratio: 4 / 3;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .act-copy h2 {
    font-size: clamp(3.3rem, 17vw, 4.8rem);
  }

  .hero-copy p {
    max-width: 300px;
    margin-top: 24px;
  }

  .hero-copy .button {
    margin-top: 30px;
  }

  .image-pair,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-pair figure:first-child,
  .image-pair figure:last-child {
    aspect-ratio: 1 / 1.08;
    margin-top: 0;
  }

  .image-pair figure:last-child {
    width: 76%;
    margin-left: auto;
  }

  .film-frame {
    aspect-ratio: 4 / 5;
  }

  .film-frame video {
    object-position: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: auto;
    padding: 42px 6px;
    border: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .service-item:last-child {
    border-right: 0;
  }

  .service-item span {
    margin-bottom: 28px;
  }

  .page-hero,
  .page-hero .hero-content {
    min-height: 72svh;
  }

  .page-hero h1 {
    font-size: clamp(4rem, 20vw, 6.2rem);
  }

  .formation-intro {
    padding-bottom: 44px;
  }

  .formation-list li {
    grid-template-columns: 42px 1fr;
  }

  .gallery-grid figure,
  .gallery-grid .video-card {
    aspect-ratio: 4 / 5;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field--wide,
  .form-footer {
    grid-column: auto;
  }

  .form-footer,
  .footer-inner,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
    justify-content: space-between;
  }
}

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

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