/*
Theme Name: BPS-2026 (Blanchard Piano Studio)
Author: Katrina Adamsen
Version: 2.1.1
*/

:root {
  --ink: #090909;
  --paper: #f5f5f2;
  --white: #ffffff;
  --line: rgba(9, 9, 9, 0.18);
  --line-dark: rgba(255, 255, 255, 0.22);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --wrap: min(1240px, calc(100% - 48px));
  --header-height: 88px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(9, 9, 9, .94);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand__mark {
  width: 38px;
  height: 48px;
  display: grid;
  place-items: end center;
  padding-bottom: 4px;
  background: var(--white);
  color: var(--ink);
  border-radius: 0 0 4px 4px;
  font-family: var(--serif);
  font-size: 17px;
}

.brand__name {
  max-width: 135px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}
.brand__logo { width: clamp(190px, 19vw, 250px); height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }
.site-nav a {
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
}
.site-nav a::before { content: "♪"; display: inline-block; margin-right: 7px; font-family: var(--serif); font-size: 1.2em; line-height: 0; }
.site-nav a:nth-child(3n + 2)::before { content: "♫"; }
.site-nav a:nth-child(3n)::before { content: "♩"; }
.site-nav > a:not(.site-nav__contact)::after {
  content: "";
  position: absolute;
  inset: auto 0 -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav .site-nav__contact {
  padding: 10px 16px;
  border: 1px solid currentColor;
  transition: background .2s, color .2s;
}
.site-nav .site-nav__contact:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  top: 105px;
  right: -14%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.018), 0 0 0 200px rgba(255,255,255,.012);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 108px;
  padding-bottom: 190px;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: "♪"; display: inline-block; margin-right: 9px; font-family: var(--serif); font-size: 1.35em; line-height: 0; }

.hero h1,
.section-heading h2,
.split-heading h2,
.affiliations-layout h2,
.closing h2,
.page-article h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .9;
}

.hero h1 { max-width: 850px; font-size: clamp(68px, 8.5vw, 128px); }
.hero h1 em, .split-heading h2 em, .closing h2 em { font-weight: 500; }
.hero__intro {
  max-width: 620px;
  margin: 42px 0 0;
  color: rgba(255,255,255,.72);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.45;
}
.hero__actions { display: flex; align-items: center; gap: 32px; margin-top: 42px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, color .2s, gap .2s;
}
.button:hover { gap: 44px; }
.button--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button--light:hover { background: transparent; color: var(--white); }
.button--outline { border-color: rgba(255,255,255,.75); background: transparent; color: var(--white); }
.button--outline:hover { background: var(--white); color: var(--ink); }
.text-link { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-underline-offset: 5px; }
.text-link--light { color: var(--white); }
.back-to-top {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 58px 0 0 auto;
  padding: 9px 0;
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}
.back-to-top span { font-size: 15px; line-height: 1; }
.back-to-top:hover span { transform: translateY(-2px); }
.back-to-top--light { color: var(--white); }

.keyboard {
  position: absolute;
  z-index: 1;
  right: -18px;
  bottom: 0;
  width: min(55vw, 760px);
  height: 184px;
  display: flex;
  transform: skewY(-7deg);
  transform-origin: right bottom;
}
.keyboard__white {
  position: relative;
  flex: 1;
  background: var(--white);
  border: 1px solid var(--ink);
  border-bottom: 0;
}
.keyboard__white.has-black::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: -31%;
  width: 60%;
  height: 62%;
  background: var(--ink);
  border: 1px solid var(--white);
  border-top: 0;
}
.hero__credential {
  position: absolute;
  left: max(24px, calc((100% - 1240px) / 2));
  bottom: 30px;
  z-index: 3;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__credential span { margin: 0 10px; }
.hero--photo { min-height: 820px; }
.hero--photo::before { display: none; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 40%; filter: grayscale(1); }
.hero--photo .hero__photo { object-position: center 55%; opacity: .28; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.98) 0%, rgba(9,9,9,.9) 42%, rgba(9,9,9,.2) 78%, rgba(9,9,9,.35) 100%); }
.hero--photo .hero__copy { padding-bottom: 80px; }

.intro-band { padding: 68px 0; border-bottom: 1px solid var(--line); }
.intro-band__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.section-number { margin: 8px 0 0; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.section-number::before { content: "♪"; display: inline-block; margin-right: 8px; font-family: var(--serif); font-size: 1.45em; line-height: 0; }
.intro-band__aside { display: flex; min-height: 240px; flex-direction: column; justify-content: space-between; }
.note-flourish { margin: 0; font-family: var(--serif); font-size: clamp(28px, 4vw, 54px); letter-spacing: .18em; line-height: 1; }
.philosophy-copy__motto { margin: 0; font-family: var(--serif); font-size: clamp(56px, 7vw, 96px); font-weight: 500; letter-spacing: -.045em; line-height: .95; }
.philosophy-copy__meaning { margin: 18px 0 48px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.intro-band blockquote { max-width: 760px; margin: 0; padding-top: 32px; border-top: 1px solid var(--line); }
.intro-band blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(24px, 3vw, 40px); font-style: italic; letter-spacing: -.02em; line-height: 1.35; }
.intro-band blockquote cite { display: block; margin-top: 14px; color: #555; font-size: 10px; font-style: normal; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.section { position: relative; overflow: hidden; padding: clamp(90px, 10vw, 150px) 0; }
.section::before,
.section::after {
  position: absolute;
  z-index: 0;
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.section::before { content: "♪"; top: 45px; right: 4vw; color: rgba(9,9,9,.075); font-size: clamp(50px, 7vw, 100px); transform: rotate(8deg); }
.section::after { content: "♫"; bottom: 45px; left: 3vw; color: rgba(9,9,9,.055); font-size: clamp(42px, 5vw, 76px); transform: rotate(-9deg); }
.section > .wrap { position: relative; z-index: 1; }
.section--ink::before,
.section--ink::after,
.closing::before,
.closing::after { color: rgba(255,255,255,.075); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--ink { background: var(--ink); color: var(--white); }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; margin-bottom: 100px; }
.section-heading .eyebrow { margin-top: 12px; }
.section-heading h2 { font-size: clamp(64px, 8vw, 112px); }
.section-heading--with-photo { grid-template-columns: auto auto; justify-content: start; align-items: center; gap: clamp(24px, 4vw, 54px); }
.section-heading--with-photo > div { display: block; }
.section-heading--with-photo img { width: clamp(140px, 15vw, 205px); aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.section-heading--with-photo .eyebrow { margin: 0 0 28px; }

.bio-layout { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(60px, 10vw, 150px); }
.bio-aside { padding-top: 8px; }
.monogram {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.monogram::before, .monogram::after { content: ""; position: absolute; background: var(--paper); }
.monogram::before { width: calc(100% + 2px); height: 42px; }
.monogram::after { width: 42px; height: calc(100% + 2px); }
.monogram span { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(72px, 8vw, 118px); letter-spacing: -.09em; }
.bio-copy { max-width: 760px; }
.bio-copy p { margin: 0 0 28px; color: #373737; font-size: 17px; line-height: 1.85; }
.bio-copy .lead { margin-bottom: 38px; color: var(--ink); font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); line-height: 1.4; }
.bio-copy a { color: var(--ink); font-weight: 600; text-underline-offset: 4px; }
.bio-achievement-photo { margin: 0 0 42px; }
.bio-achievement-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.bio-achievement-photo figcaption { margin-top: 8px; color: #666; }
.bio-professional { margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--ink); }
.bio-professional h3 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.bio-copy .bio-professional > p { margin-bottom: 28px; font-size: 15px; }
.bio-professional__links { border-top: 1px solid var(--line); }
.bio-professional__links a { display: grid; grid-template-columns: 26px 1fr auto; gap: 10px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1.3; text-decoration: none; }
.bio-professional__links a:hover { padding-left: 10px; background: var(--white); }
.bio-professional__links span { font-size: 18px; }
.bio-professional__links small { font-family: var(--sans); font-size: 11px; }

.split-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: end; margin-bottom: 90px; }
.split-heading h2 { font-size: clamp(62px, 7vw, 104px); }
.split-heading > p { max-width: 390px; margin: 0 0 10px; color: rgba(255,255,255,.65); font-family: var(--serif); font-size: 21px; line-height: 1.55; }
.offerings { border-top: 1px solid var(--line-dark); }
.offering {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  gap: 30px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--line-dark);
}
.offering__number { align-self: start; margin: 6px 0 0; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .15em; }
.offering h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(30px, 3vw, 45px); font-weight: 500; letter-spacing: -.03em; }
.offering div p { max-width: 660px; margin: 0; color: rgba(255,255,255,.62); }
.offering__mark { font-family: var(--serif); font-size: 56px; text-align: right; }
.lesson-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lesson-card { margin: 0; background: #171717; }
.lesson-card { position: relative; overflow: hidden; }
.lesson-card::before { content: "♫"; position: absolute; z-index: 2; top: 14px; right: 16px; color: rgba(255,255,255,.85); font-family: var(--serif); font-size: 30px; line-height: 1; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.lesson-card > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.lesson-card > div { padding: 28px; }
.lesson-card > div > p:first-child { margin: 0 0 18px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .15em; }
.lesson-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.lesson-card > div > p:last-child { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.studio-life { background: var(--white); }
.studio-life__heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 60px; }
.studio-life__heading .eyebrow { margin: 0 0 8px; }
.studio-life__heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr .8fr; grid-template-rows: 310px 250px; gap: 12px; }
.photo-grid figure { position: relative; overflow: hidden; margin: 0; background: #ddd; }
.photo-grid__feature { grid-column: 1 / 3; }
.photo-grid__portrait { grid-column: 3; grid-row: 1 / 3; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.photo-grid figure:hover img { transform: scale(1.02); }
.photo-grid figcaption { position: absolute; inset: auto 10px 10px; padding: 7px 10px; background: rgba(9,9,9,.82); color: var(--white); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

figure figcaption {
  max-width: 100%;
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.photo-grid figcaption {
  right: auto;
  max-width: calc(100% - 20px);
  margin: 0;
  line-height: 1.25;
}

.button--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button--dark:hover { background: transparent; color: var(--ink); }

.newsletter-section { background: #e9e9e5; }
.newsletter-section--page { min-height: 70vh; }
.newsletter-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.newsletter-copy { position: sticky; top: calc(var(--header-height) + 50px); }
.newsletter-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 7vw, 94px); font-weight: 500; letter-spacing: -.045em; line-height: .96; }
.newsletter-copy > p:not(.eyebrow) { max-width: 410px; margin: 34px 0 0; color: #444; font-family: var(--serif); font-size: 19px; line-height: 1.55; }
.newsletter-copy .button { margin-top: 32px; }
.newsletter-viewer { background: var(--white); border-top: 4px solid var(--ink); }
.newsletter-viewer iframe { display: block; width: 100%; height: min(72vh, 760px); border: 0; }
.newsletter-viewer > p { margin: 0; padding: 13px 18px; border-top: 1px solid var(--line); color: #555; font-size: 11px; text-align: center; }
.newsletter-viewer > p a { font-weight: 600; text-underline-offset: 3px; }
.newsletter-placeholder { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px; text-align: center; }
.newsletter-placeholder > span { font-family: var(--serif); font-size: 60px; line-height: 1; }
.newsletter-placeholder h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.newsletter-placeholder p { max-width: 390px; margin: 0; color: #555; font-size: 14px; }

.choir-ministry { position: relative; min-height: 780px; display: flex; align-items: center; overflow: hidden; padding: 100px 0; background: var(--ink); color: var(--white); }
.choir-ministry > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 42%; filter: grayscale(1); opacity: .58; }
.choir-ministry__shade { position: absolute; inset: 0; background: rgba(9,9,9,.9); }
.choir-ministry__content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .85fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.choir-ministry h1,
.choir-ministry h2 { max-width: 700px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 7vw, 98px); font-weight: 500; letter-spacing: -.045em; line-height: .95; }
.choir-ministry--page { min-height: calc(100vh - 88px); }
.choir-page { padding-top: var(--header-height); background: var(--ink); }
.choir-ministry__history { max-width: 610px; margin: 34px 0 0; color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 20px; line-height: 1.55; }
.choir-future-note { max-width: 580px; margin: 32px 0 0; padding: 20px 22px; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.choir-future-note p { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; }
.choir-future-note .choir-future-note__label { margin-bottom: 6px; color: var(--white); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.choir-ministry blockquote { max-width: 620px; margin: 44px 0 0; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.5); }
.choir-ministry blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(20px, 2.2vw, 29px); font-style: italic; line-height: 1.5; }
.choir-ministry cite { display: block; margin-top: 12px; color: rgba(255,255,255,.65); font-family: var(--sans); font-size: 11px; font-style: normal; letter-spacing: .14em; text-transform: uppercase; }
.choir-ministry .button { margin-top: 36px; }
.choir-ministry__copy { position: relative; }
.choir-ministry__copy::before { content: "♩"; position: absolute; top: -52px; right: 10%; color: rgba(255,255,255,.14); font-family: var(--serif); font-size: 70px; line-height: 1; transform: rotate(10deg); }
.choir-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choir-gallery figure { min-height: 190px; margin: 0; overflow: hidden; background: #222; }
.choir-gallery__wide { grid-column: 1 / -1; min-height: 260px !important; }
.choir-gallery img { width: 100%; height: 100%; object-fit: cover; }

.section--policies { background: #e9e9e5; color: var(--ink); }
.policy-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.policy-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .96;
}
.policy-heading > p {
  max-width: 410px;
  margin: 0 0 8px;
  color: #4a4a4a;
  font-size: 17px;
}
.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.35fr);
  gap: 20px;
  align-items: start;
}
.policy-card {
  padding: clamp(34px, 4vw, 58px);
  background: var(--white);
  border-top: 4px solid var(--ink);
}
.policy-card__label {
  margin: 0 0 34px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.policy-card h3 {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.policy-card__copy p {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: #383838;
  font-size: 15px;
  line-height: 1.75;
}
.tips-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: studio-tip;
}
.tips-list li {
  position: relative;
  min-height: 54px;
  padding: 19px 0 19px 52px;
  border-top: 1px solid var(--line);
  color: #383838;
  font-size: 14px;
  line-height: 1.65;
  counter-increment: studio-tip;
}
.tips-list li::before {
  content: counter(studio-tip, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  color: #6b6b6b;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
}
.policy-card--fees,
.policy-card--conferences { grid-column: 1 / -1; }
.policy-card--fees {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  column-gap: clamp(40px, 7vw, 110px);
}
.policy-card--fees .policy-card__label,
.policy-card--fees h3 { grid-column: 1; }
.policy-card--fees h3 { grid-row: 2; }
.fee-table { grid-column: 2; grid-row: 1 / span 3; border-top: 1px solid var(--ink); }
.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.fee-row strong { font-weight: 600; text-align: right; }
.fee-notes { grid-column: 2; margin-top: 22px; color: #555; }
.fee-notes p { margin: 8px 0 0; font-size: 12px; line-height: 1.6; }
.guideline-list,
.check-list { margin: 0; padding: 0; list-style: none; }
.guideline-list li,
.check-list li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-top: 1px solid var(--line);
  color: #383838;
  font-size: 14px;
  line-height: 1.65;
}
.guideline-list li::before,
.check-list li::before { content: "—"; position: absolute; left: 0; color: #777; }
.dress-intro { margin: -12px 0 28px; color: #444; font-size: 15px; }
.recital-attire { margin-top: 34px; padding: 24px; background: var(--ink); color: var(--white); }
.recital-attire h4 { margin: 0 0 14px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.recital-attire p { margin: 7px 0; color: rgba(255,255,255,.78); font-size: 13px; }
.policy-card--conferences { display: grid; grid-template-columns: .55fr .75fr 1.7fr; gap: 40px; align-items: start; }
.policy-card--conferences .policy-card__label { margin-top: 8px; }
.policy-card--conferences h3 { margin: 0; }
.policy-card--conferences > p:last-child { margin: 7px 0 0; color: #383838; font-size: 15px; }

.affiliations-layout { display: grid; grid-template-columns: 1fr 1.45fr; gap: clamp(70px, 10vw, 160px); }
.affiliations-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(68deg, transparent 0 24%, rgba(255,255,255,.07) 24.1%, rgba(255,255,255,.07) 24.2%, transparent 24.3%),
    linear-gradient(68deg, transparent 0 68%, rgba(255,255,255,.055) 68.1%, rgba(255,255,255,.055) 68.2%, transparent 68.3%);
}
.about-affiliations { margin-top: clamp(90px, 10vw, 140px); padding: clamp(50px, 7vw, 90px); }
.about-affiliations::before { content: "♪  ♫"; position: absolute; top: 28px; right: 4%; color: rgba(255,255,255,.1); font-family: var(--serif); font-size: 64px; letter-spacing: .18em; line-height: 1; transform: rotate(5deg); }
.about-affiliations .affiliations-layout { position: relative; z-index: 1; }
.affiliations-layout h2 { font-size: clamp(58px, 6.5vw, 90px); }
.affiliations-intro { max-width: 430px; margin: 42px 0 0; color: #4b4b4b; font-family: var(--serif); font-size: 21px; }
.affiliations-photo { max-width: 320px; margin: 54px 0 0; }
.affiliations-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.affiliations-photo figcaption,
.handbook-photo-pair figcaption,
.handbook-wide-photo figcaption,
.resource-photo-row figcaption,
.contact-photo-grid figcaption { margin-top: 8px; color: #666; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.affiliation-list { border-top: 1px solid var(--ink); }
.affiliation-list { position: relative; }
.affiliation-list::after { content: "♩"; position: absolute; right: -24px; bottom: -80px; color: rgba(9,9,9,.08); font-family: var(--serif); font-size: 80px; line-height: 1; transform: rotate(9deg); }
.affiliation-list a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 102px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .25s, background .25s;
}
.affiliation-list a:hover { padding-inline: 16px; background: var(--white); }
.affiliation-list span { font-family: var(--serif); font-size: 22px; }
.affiliation-list strong { font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.25; }
.affiliation-list small { font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.affiliations-section .affiliations-intro { color: rgba(255,255,255,.68); }
.affiliations-section .affiliations-photo figcaption { color: rgba(255,255,255,.58); }
.affiliations-section .affiliation-list { border-top-color: var(--white); }
.affiliations-section .affiliation-list::after { color: rgba(255,255,255,.1); }
.affiliations-section .affiliation-list a { border-bottom-color: var(--line-dark); }
.affiliations-section .affiliation-list a:hover { background: var(--white); color: var(--ink); }

.resources-section { background: var(--white); color: var(--ink); border-top: 1px solid var(--line); }
.resources-layout { display: grid; grid-template-columns: .8fr 1.5fr; gap: clamp(70px, 10vw, 150px); }
.resources-heading { position: sticky; top: 50px; align-self: start; }
.resources-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
.resources-heading > p:last-child {
  max-width: 340px;
  margin: 34px 0 0;
  color: #4b4b4b;
  font-size: 16px;
}
.resource-list { border-top: 1px solid var(--ink); }
.resource-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.resource-item__note { padding-top: 3px; font-family: var(--serif); font-size: 24px; }
.resource-item h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.2; }
.resource-item h3 a { text-decoration: none; }
.resource-item h3 a span { display: inline-block; font-family: var(--sans); font-size: 15px; transition: transform .2s; }
.resource-item h3 a:hover span { transform: translate(3px, -3px); }
.resource-item p { max-width: 720px; margin: 0; color: #444; font-size: 15px; line-height: 1.75; }

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vw, 200px) 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.closing::before, .closing::after {
  content: "";
  position: absolute;
  top: -70px;
  bottom: -70px;
  width: 1px;
  background: rgba(255,255,255,.09);
  transform: rotate(22deg);
}
.closing::before { left: 25%; }
.closing::after { right: 25%; }
.closing__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.closing__inner::before { content: "♪   ♫"; position: absolute; top: -70px; left: 50%; color: rgba(255,255,255,.12); font-family: var(--serif); font-size: clamp(38px, 5vw, 68px); letter-spacing: .3em; line-height: 1; transform: translateX(-45%) rotate(-4deg); pointer-events: none; }
.closing h2 { font-size: clamp(72px, 10vw, 138px); }
.closing p:not(.eyebrow) { max-width: 580px; margin: 40px auto 34px; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: 21px; }

.site-footer { position: relative; overflow: hidden; padding: 36px 0; background: var(--ink); color: var(--white); border-top: 1px solid var(--line-dark); }
.site-footer::after { content: "♪  ♫  ♩  ♬"; position: absolute; right: 3vw; top: 9px; color: rgba(255,255,255,.06); font-family: var(--serif); font-size: 54px; letter-spacing: .2em; line-height: 1; transform: rotate(-3deg); pointer-events: none; }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.site-footer__inner { position: relative; z-index: 1; }
.site-footer p { margin: 0; color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.site-footer p:last-child { text-align: right; }
.site-footer__links { display: flex; align-items: center; gap: 14px; }
.site-footer__links a { color: rgba(255,255,255,.78); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.site-footer__links a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__credits { display: grid; gap: 3px; justify-items: end; }
.site-footer__credits p:last-child { color: rgba(255,255,255,.75); }
.brand--footer .brand__mark { width: 30px; height: 38px; font-size: 14px; }
.brand--footer .brand__logo { width: 210px; }

.subpage { padding-top: var(--header-height); background: var(--paper); }
.subpage-hero { position: relative; overflow: hidden; padding: 110px 0 100px; background: var(--ink); color: var(--white); }
.subpage-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 42%; filter: grayscale(1); opacity: .52; }
.subpage-hero--resources .subpage-hero__image { object-position: 50% 48%; }
.subpage-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.98) 0%, rgba(9,9,9,.82) 48%, rgba(9,9,9,.35) 100%); }
.subpage-hero__content { position: relative; z-index: 1; }
.subpage-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(64px, 9vw, 118px); font-weight: 500; letter-spacing: -.05em; line-height: .92; }
.subpage-hero > .wrap > p:last-child { max-width: 560px; margin: 36px 0 0; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: 21px; }
.subpage-content { position: relative; overflow: hidden; padding: 40px 0 120px; }
.subpage-content::before,
.contact-page::before,
.contact-page::after {
  position: absolute;
  color: rgba(9,9,9,.065);
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.subpage-content::before { content: "♫  ♪"; top: 55px; right: 4vw; font-size: clamp(45px, 6vw, 84px); letter-spacing: .2em; transform: rotate(5deg); }
.handbook { max-width: 1080px; }
.handbook-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 8vw, 110px); padding: 70px 0; border-bottom: 1px solid var(--line); }
.handbook-section__title span { display: block; margin-bottom: 18px; color: #666; font-size: 10px; letter-spacing: .18em; }
.handbook-section__title span::after { content: "  ♪"; color: #999; font-family: var(--serif); font-size: 16px; }
.handbook-section__title h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.handbook-section__copy > p { margin: 0 0 24px; color: #383838; font-size: 15px; line-height: 1.8; }
.handbook-section__copy > p:last-child { margin-bottom: 0; }
.handbook .tips-list li { padding-top: 0; padding-bottom: 22px; border-top: 0; border-bottom: 1px solid var(--line); }
.handbook .tips-list li + li { padding-top: 22px; }
.handbook .tips-list li::before { top: 1px; }
.handbook .tips-list li + li::before { top: 23px; }
.handbook .fee-table { border-top-color: var(--ink); }
.handbook .fee-notes { margin-top: 24px; }
.handbook .recital-attire { max-width: 520px; }
.handbook-photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 70px 0; border-bottom: 1px solid var(--line); }
.handbook-photo-pair figure,
.handbook-wide-photo { margin: 0; }
.handbook-photo-pair img { width: 100%; height: 430px; object-fit: cover; }
.handbook-wide-photo { display: grid; grid-template-columns: .7fr 1.3fr; column-gap: clamp(45px, 8vw, 110px); row-gap: 0; align-items: end; padding: 70px 0 30px; }
.handbook-wide-photo img { grid-column: 2; width: 100%; max-height: 650px; object-fit: cover; object-position: center 30%; }
.handbook-wide-photo figcaption { grid-column: 2; margin-top: 8px; }
.resources-page { min-height: 55vh; background: var(--white); }
.resource-photo-row { display: grid; grid-template-columns: 1fr 1.35fr .75fr; gap: 12px; margin-bottom: 90px; }
.resource-photo-row figure { margin: 0; }
.resource-photo-row img { width: 100%; height: 310px; object-fit: cover; }
.resource-list--page { max-width: 960px; }
.resource-list--page .resource-item { padding: 52px 0; }
.resource-item h2 { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); font-weight: 500; line-height: 1.15; }
.resource-item h2 a { text-decoration: none; }
.resource-item h2 span { display: inline-block; font-family: var(--sans); font-size: 15px; transition: transform .2s; }
.resource-item h2 a:hover span { transform: translate(3px, -3px); }

.contact-page { position: relative; overflow: hidden; padding: calc(110px + var(--header-height)) 0 120px; background: var(--paper); }
.contact-page::before { content: "♪"; top: 40px; right: 5vw; font-size: 90px; transform: rotate(9deg); }
.contact-page::after { content: "♬"; bottom: 50px; left: 4vw; font-size: 68px; transform: rotate(-10deg); }
.subpage-content > .wrap,
.contact-layout { position: relative; z-index: 1; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.contact-intro { position: sticky; top: calc(var(--header-height) + 50px); }
.contact-intro h1 { margin: 0; font-family: var(--serif); font-size: clamp(60px, 7vw, 96px); font-weight: 500; letter-spacing: -.05em; line-height: .94; }
.contact-intro > p:not(.eyebrow) { max-width: 470px; margin: 36px 0 0; color: #444; font-family: var(--serif); font-size: 20px; line-height: 1.55; }
.contact-intro dl { margin: 52px 0 0; }
.contact-intro dl div { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-intro dt { font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.contact-intro dd { margin: 5px 0 0; color: #444; font-size: 14px; }
.contact-intro dd a { color: inherit; text-underline-offset: 4px; }
.contact-photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 185px 185px; gap: 12px; margin-top: 48px; }
.contact-photo-grid figure { min-width: 0; margin: 0; }
.contact-photo-grid__portrait { grid-row: 1 / 3; }
.contact-photo-grid img { width: 100%; height: calc(100% - 24px); object-fit: cover; }
.contact-photo-grid__portrait img { object-position: center 35%; }
.contact-photo-grid figure:last-child img { object-position: center 28%; }
.contact-form-wrap { padding: clamp(32px, 5vw, 64px); background: var(--white); border-top: 4px solid var(--ink); }
.form-notice { margin-bottom: 30px; padding: 15px 18px; border: 1px solid var(--ink); font-size: 14px; }
.form-notice--success { background: var(--ink); color: var(--white); }
.form-notice--error { background: #f1f1ed; }
.contact-form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.form-field input,
.form-field textarea { width: 100%; padding: 13px 14px; border: 1px solid #aaa; border-radius: 0; background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--ink); outline: 0; box-shadow: 0 0 0 2px var(--ink); }
.form-field--hidden { position: absolute; left: -9999px; }
.form-submit { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0 22px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s; }
.form-submit:hover { background: var(--white); color: var(--ink); }
.form-required { margin: -12px 0 0; color: #666; font-size: 10px; }
.contact-form--ninja { display: block; }
.contact-form--ninja .nf-form-fields-required { margin-bottom: 24px; color: #666; font-size: 10px; }
.contact-form--ninja .nf-field-container { margin-bottom: 24px; }
.contact-form--ninja .nf-field-label label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.contact-form--ninja .nf-form-content input:not([type="button"]):not([type="submit"]),
.contact-form--ninja .nf-form-content select,
.contact-form--ninja .nf-form-content textarea { border: 1px solid #aaa; border-radius: 0; background: var(--white); color: var(--ink); }
.contact-form--ninja .nf-form-content input:focus,
.contact-form--ninja .nf-form-content select:focus,
.contact-form--ninja .nf-form-content textarea:focus { border-color: var(--ink); outline: 0; box-shadow: 0 0 0 2px var(--ink); }
.contact-form--ninja .nf-form-content button,
.contact-form--ninja .nf-form-content input[type="button"],
.contact-form--ninja .nf-form-content input[type="submit"] { min-height: 54px; padding: 0 24px; border: 1px solid var(--ink); border-radius: 0; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.contact-form--ninja .nf-form-content button:hover,
.contact-form--ninja .nf-form-content input[type="button"]:hover,
.contact-form--ninja .nf-form-content input[type="submit"]:hover { background: var(--white); color: var(--ink); }

main img.is-lightbox-photo { cursor: zoom-in; }
.lightbox-dialog {
  width: auto;
  max-width: 96vw;
  max-height: 96vh;
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}
.lightbox-dialog::backdrop { background: rgba(0,0,0,.9); }
.lightbox-dialog__frame { position: relative; display: grid; justify-items: center; gap: 12px; }
.lightbox-dialog__image { display: block; max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; background: #111; }
.lightbox-dialog__caption { max-width: min(760px, 80vw); margin: 0; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.45; text-align: center; }
.lightbox-dialog__actions { display: flex; align-items: center; gap: 18px; }
.lightbox-dialog__actions a,
.lightbox-dialog__close { color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.lightbox-dialog__actions a { text-underline-offset: 4px; }
.lightbox-dialog__close { padding: 7px 11px; border: 1px solid rgba(255,255,255,.7); background: transparent; cursor: pointer; }

.page-shell { min-height: 70vh; padding: calc(110px + var(--header-height)) 0 120px; background: var(--paper); }
.page-shell + .site-footer { background: var(--ink); }
.page-article { max-width: 860px; }
.page-article h1 { margin-bottom: 60px; font-size: clamp(64px, 9vw, 120px); }
.entry-content { font-size: 17px; }
.entry-content h2, .entry-content h3 { margin-top: 2em; font-family: var(--serif); line-height: 1.15; }
.entry-content h2 { font-size: 42px; }
.entry-content a { text-underline-offset: 4px; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }

@media (max-width: 900px) {
  :root { --wrap: min(100% - 36px, 720px); }
  .site-header {
    background: var(--ink);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }
  .menu-toggle__label { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
  .menu-toggle__icon { width: 26px; display: grid; gap: 6px; }
  .menu-toggle__icon i { height: 1px; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 88px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 40px 24px;
    background: #090909;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s, visibility .2s, transform .2s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 20px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); font-size: 30px; }
  .site-nav .site-nav__contact { margin-top: 20px; padding: 16px; font-family: var(--sans); font-size: 12px; text-align: center; }
  .hero { min-height: 800px; }
  .hero--photo { min-height: 760px; }
  .hero__copy { padding-bottom: 210px; }
  .keyboard { width: 75vw; height: 145px; }
  .intro-band__grid, .section-heading, .bio-layout, .split-heading, .policy-heading, .policy-grid, .affiliations-layout, .resources-layout, .handbook-section, .contact-layout, .newsletter-layout { grid-template-columns: 1fr; }
  .section-heading--with-photo { grid-template-columns: auto auto; gap: 24px; }
  .section-heading--with-photo > div { grid-template-columns: 1fr; gap: 0; }
  .section-heading--with-photo img { width: 150px; }
  .section-heading { gap: 15px; margin-bottom: 70px; }
  .section-heading .eyebrow { margin: 0; }
  .bio-layout { gap: 70px; }
  .bio-copy { order: 1; }
  .bio-aside { order: 2; }
  .bio-aside { display: grid; grid-template-columns: 220px 1fr; gap: 45px; }
  .split-heading { gap: 40px; }
  .policy-heading { gap: 34px; }
  .policy-grid { gap: 20px; }
  .policy-card--fees,
  .policy-card--conferences { grid-template-columns: 1fr; }
  .policy-card--fees .policy-card__label,
  .policy-card--fees h3,
  .fee-table,
  .fee-notes { grid-column: 1; grid-row: auto; }
  .policy-card--conferences { gap: 0; }
  .policy-card--conferences .policy-card__label { margin-top: 0; }
  .policy-card--conferences h3 { margin-bottom: 24px; }
  .affiliations-layout { gap: 70px; }
  .resources-layout { gap: 70px; }
  .resources-heading { position: static; }
  .lesson-cards { grid-template-columns: 1fr; }
  .lesson-card { display: grid; grid-template-columns: .75fr 1.25fr; }
  .lesson-card > img { height: 100%; aspect-ratio: 4 / 3; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 230px 300px; }
  .photo-grid__feature { grid-column: 1 / 3; }
  .photo-grid__portrait { grid-column: 1; grid-row: 2 / 4; }
  .handbook-section { gap: 34px; padding: 55px 0; }
  .handbook-wide-photo { grid-template-columns: 1fr; }
  .handbook-wide-photo img,
  .handbook-wide-photo figcaption { grid-column: 1; }
  .resource-photo-row { grid-template-columns: 1fr 1fr; }
  .resource-photo-row figure:last-child { grid-column: 1 / 3; }
  .contact-intro { position: static; }
  .newsletter-copy { position: static; }
  .choir-ministry__content { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --wrap: calc(100% - 32px); --header-height: 76px; }
  .site-header__inner { min-height: 76px; }
  .brand__mark { width: 32px; height: 42px; }
  .brand__name { font-size: 11px; }
  .site-nav { inset: 76px 0 0; }
  .hero { min-height: 750px; }
  .hero--photo { min-height: 720px; }
  .hero__photo { object-position: center 55%; opacity: .32; }
  .hero__shade { background: linear-gradient(90deg, rgba(9,9,9,.96), rgba(9,9,9,.42)); }
  .hero__copy { padding-top: 130px; padding-bottom: 170px; }
  .hero h1 { font-size: clamp(57px, 18vw, 82px); }
  .hero__intro { margin-top: 30px; font-size: 19px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 34px; }
  .keyboard { right: -90px; width: 120vw; height: 100px; }
  .hero__credential { left: 16px; right: 16px; bottom: 18px; font-size: 8px; }
  .hero__credential span { margin: 0 4px; }
  .intro-band { padding: 48px 0; }
  .intro-band__grid { gap: 24px; }
  .section { padding: 90px 0; }
  .section-heading h2 { font-size: 58px; }
  .bio-aside { display: block; }
  .monogram { max-width: 210px; }
  .bio-copy .lead { font-size: 26px; }
  .bio-copy p { font-size: 16px; }
  .split-heading h2 { font-size: 58px; }
  .offering { grid-template-columns: 42px 1fr; gap: 14px; padding: 34px 0; }
  .offering__mark { display: none; }
  .offering h3 { font-size: 30px; }
  .affiliations-layout h2 { font-size: 54px; }
  .affiliation-list a { grid-template-columns: 26px 1fr; gap: 10px; padding: 22px 0; }
  .affiliation-list small { display: none; }
  .affiliation-list strong { font-size: 18px; }
  .closing h2 { font-size: 70px; }
  .site-footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer p:last-child { text-align: center; }
  .site-footer__credits { justify-items: center; }
  .site-footer__links { flex-direction: column; gap: 3px; }
  .lesson-card { display: block; }
  .lesson-card > img { aspect-ratio: 4 / 3; }
  .studio-life__heading { display: block; }
  .studio-life__heading .eyebrow { margin-bottom: 20px; }
  .photo-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-grid figure,
  .photo-grid__feature,
  .photo-grid__portrait { grid-column: 1; grid-row: auto; min-height: 240px; }
  .subpage-hero { padding: 80px 0; }
  .handbook-section { padding: 45px 0; }
  .handbook-photo-pair { grid-template-columns: 1fr; padding: 45px 0; }
  .handbook-photo-pair img { height: 360px; }
  .resource-photo-row { grid-template-columns: 1fr; margin-bottom: 60px; }
  .resource-photo-row figure:last-child { grid-column: 1; }
  .choir-ministry { min-height: 620px; }
  .choir-ministry > img { object-position: 64% 50%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-page { padding: calc(80px + var(--header-height)) 0 80px; }
  .contact-form-wrap { padding-inline: 22px; }
  .contact-photo-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .contact-photo-grid__portrait { grid-row: auto; }
  .contact-photo-grid img { height: 300px; }
  .section-heading--with-photo { grid-template-columns: 1fr; }
  .section-heading--with-photo img { width: 130px; }
  .about-affiliations { padding: 38px 24px; }
  .section::before { right: 14px; font-size: 54px; }
  .section::after { left: 12px; font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
