@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink: #0c1715;
  --paper: #f7f8f3;
  --blue: #2e8de0;
  --green: #31d46a;
  --mint: #c8f4dc;
  --line: rgba(12, 23, 21, 0.16);
  --scroll-thumb: rgb(49, 212, 106);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) rgba(12,23,21,.08);
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(12,23,21,.06); }
::-webkit-scrollbar-thumb {
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--scroll-thumb);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  border-width: 1px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.site { overflow: clip; }

.nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  transition: background .45s ease, backdrop-filter .45s ease, height .45s ease;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-disc {
  display: block;
  width: 47px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: white;
}
.brand-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.56);
}
.brand-name {
  font: 16px/1.04 "Instrument Serif", serif;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.nav-links { display: flex; gap: clamp(16px, 2.1vw, 38px); font-size: 13px; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.ticket-link { font-size: 13px; display: flex; gap: 16px; align-items: center; }
.ticket-link span { font-size: 20px; }
.menu-button { display: none; background: none; border: 0; padding: 10px; }

.orbital-opening {
  position: relative;
  height: 200svh;
  background:
    radial-gradient(circle at 50% 48%, rgba(49,212,106,.09), transparent 27%),
    var(--paper);
}
.orbital-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.orbital-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44vw;
  aspect-ratio: 1;
  border: 1px solid rgba(46,141,224,.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(46,141,224,.025),
    0 0 0 17vw rgba(49,212,106,.018);
  transition: opacity .1s linear;
}
.opening-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform, opacity;
  transition: opacity .08s linear;
  box-shadow: inset -20px -20px 50px rgba(12,23,21,.1), 0 22px 70px rgba(12,23,21,.08);
  animation: circleFloat 5s ease-in-out infinite alternate;
}
.opening-circle.blue { background: linear-gradient(145deg, #2e8de0, #6eb9f3); }
.opening-circle.green { background: linear-gradient(145deg, #31d46a, #8be8ae); }
.opening-circle.aqua { background: linear-gradient(145deg, #2e8de0, #31d46a); }
.opening-circle.blue-green { background: linear-gradient(145deg, #145e9c, #20b980); }
.opening-circle::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.28);
}
.opening-circle:nth-of-type(2n) {
  animation-direction: alternate-reverse;
  animation-duration: 6.2s;
}
.opening-circle:nth-of-type(3n) { animation-duration: 7.4s; }
.opening-circle:nth-of-type(4n) { animation-duration: 8.1s; }
@keyframes circleFloat {
  from {
    translate: -5px -7px;
    rotate: -1.5deg;
    filter: saturate(.9) brightness(.98);
  }
  to {
    translate: 7px 8px;
    rotate: 2deg;
    filter: saturate(1.13) brightness(1.06);
  }
}
.opening-logo {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: clamp(180px, 20vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  box-shadow: 0 30px 100px rgba(12,23,21,.16);
  will-change: transform, opacity;
}
.opening-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.56);
}
.opening-reveal {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 45%;
  width: 100%;
  text-align: center;
  font: clamp(42px, 6vw, 88px)/.95 "Instrument Serif", serif;
  letter-spacing: -.03em;
  pointer-events: none;
}
.opening-reveal em { color: var(--blue); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 170px 4.5vw 54px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-copy { width: min(1050px, 79vw); position: relative; z-index: 2; }
.eyebrow, .section-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 40px; }
.hero-title {
  margin: 0;
  font: 400 clamp(62px, 8.8vw, 148px)/.77 "Instrument Serif", serif;
  letter-spacing: -.045em;
}
.hero-title .line { display: block; overflow: hidden; padding: 0 .06em .12em 0; }
.hero-title .line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.is-loaded .hero-title .line:nth-child(1) > span { transform: none; transition-delay: 1.05s; }
.is-loaded .hero-title .line:nth-child(2) > span { transform: none; transition-delay: 1.15s; }
.is-loaded .hero-title .line:nth-child(3) > span { transform: none; transition-delay: 1.25s; }
.italic { padding-left: 21vw !important; }
.italic span, em { font-style: italic; }
.gradient-text span {
  width: max-content;
  background: linear-gradient(90deg, var(--blue), #28bbaa, var(--green));
  background-size: 200% 100%;
  background-clip: text;
  color: transparent;
  animation: driftGradient 8s ease infinite alternate;
}
@keyframes driftGradient { to { background-position: 100% center; } }
.reveal { opacity: 0; transform: translateY(15px); transition: .8s ease 1.45s; }
.is-loaded .reveal { opacity: 1; transform: none; }
.hero-bottom {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 35px;
  width: min(510px, 100%);
  margin-left: 22vw;
}
.hero-bottom p { margin: 0; font-size: 13px; line-height: 1.65; }
.round-button {
  flex: 0 0 60px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: .35s ease;
}
.round-button:hover { background: var(--ink); color: white; transform: rotate(-35deg); }
.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 3.2vw;
  bottom: 42px;
  width: clamp(90px, 9vw, 145px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(12,23,21,.12);
  transition-delay: 1.65s;
}
.hero-stamp img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.56); }
.hero-name {
  position: absolute;
  z-index: 3;
  right: 14vw;
  bottom: 56px;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .11em;
  font: clamp(15px, 1.55vw, 24px)/1.05 "Instrument Serif", serif;
  transition-delay: 1.7s;
}
.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(46,141,224,.22);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}
.orbit-one { width: 41vw; height: 41vw; right: -12vw; top: 17%; }
.orbit-two { width: 25vw; height: 25vw; right: -2vw; top: 31%; animation-direction: reverse; animation-duration: 13s; }
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  top: 15%;
  left: 12%;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.sound-field {
  position: absolute;
  z-index: -1;
  right: 2vw;
  top: 20%;
  width: 31vw;
  height: 56%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: .2;
}
.sound-field i {
  width: 1px;
  height: calc(12% + (var(--i) % 6) * 8%);
  background: linear-gradient(var(--blue), var(--green));
  transform-origin: center;
  animation: wave calc(2.1s + var(--i) * .08s) ease-in-out infinite alternate;
}
@keyframes wave { to { transform: scaleY(1.9); opacity: .4; } }

.manifesto {
  padding: 130px 4.5vw 150px;
  display: grid;
  grid-template-columns: 1fr 3.2fr 1.4fr;
  gap: 5vw;
  border-top: 1px solid var(--line);
}
.section-number { margin: 7px 0 0; }
.manifesto-text p {
  margin: 0;
  font: clamp(38px, 5.2vw, 78px)/1.02 "Instrument Serif", serif;
  letter-spacing: -.025em;
}
.manifesto-text em { color: var(--blue); }
.manifesto-aside { align-self: end; }
.manifesto-aside > p { font-size: 14px; line-height: 1.75; margin: 0 0 35px; }
.text-link {
  display: flex;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.season { background: var(--ink); color: white; padding: 120px 4.5vw 140px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.25fr 1fr;
  align-items: end;
  gap: 5vw;
  margin-bottom: 70px;
}
.section-number.light { color: rgba(255,255,255,.55); align-self: start; }
.section-heading h2, .voices h2, .conductor h2, .join h2 {
  font: clamp(50px, 6.3vw, 96px)/.88 "Instrument Serif", serif;
  letter-spacing: -.03em;
  margin: 0;
}
.section-heading h2 em { color: #83e6ad; }
.section-heading > p:last-child { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; margin: 0; }
.concert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.concert-card {
  min-height: 530px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.concert-card:hover { transform: translateY(-10px); }
.concert-card.charity {
  color: white;
  background: #123d70;
}
.concert-card.feature { background: linear-gradient(145deg, var(--blue), var(--green)); color: white; }
.concert-card.mint { background: #d7f5e3; }
.concert-card.blue { background: #d9eafa; }
.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .035em;
}
.card-top span:last-child { font-size: 22px; transition: transform .4s; }
.concert-card:hover .card-top span:last-child { transform: rotate(45deg); }
.card-copy { position: relative; z-index: 2; }
.card-copy p { text-transform: uppercase; letter-spacing: .16em; font-size: 10px; }
.card-copy h3 { font: 34px/1 "Instrument Serif", serif; margin: 12px 0 18px; }
.card-copy > span { font-size: 12px; opacity: .65; }
.card-visual { position: absolute; inset: 70px 10px 130px; display: grid; place-items: center; }
.ghost-number { font: 220px/1 "Instrument Serif", serif; opacity: .08; }
.pulse { position: absolute; width: 12vw; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; opacity: .25; transition: 1s ease; }
.pulse-b { width: 20vw; opacity: .14; }
.concert-card:hover .pulse-a { transform: scale(1.35); }
.concert-card:hover .pulse-b { transform: scale(.75); }
.card-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(.8) contrast(1.05);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,30,68,.05) 20%, rgba(7,26,53,.9) 100%),
    linear-gradient(130deg, rgba(46,141,224,.32), rgba(49,212,106,.16));
  z-index: 1;
}
.concert-card.charity:hover .card-poster {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}
.concert-card.charity .card-top { position: relative; z-index: 2; }
.concert-card.charity .card-top span:last-child { font-size: 15px; }
.concert-card.charity:hover .card-top span:last-child { transform: none; }
.concert-card.media-card { color: white; background: #10202d; }
.concert-card.media-card .card-top { position: relative; z-index: 2; }
.concert-card.media-card .card-copy { padding-right: 115px; }
.concert-card.media-card:hover .card-poster {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.04);
}
.opera-card .card-poster { object-position: center 60%; }
.songes-card .card-poster,
.astree-card .card-poster { object-position: center; }
.astree-card {
  grid-column: 1 / -1;
  min-height: 610px;
}
.card-site-link {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 26px;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 11px;
  transition: background .3s ease, color .3s ease;
}
.card-site-link:hover { background: white; color: var(--ink); }
.card-status {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 26px;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .02em;
  background: rgba(7,26,53,.28);
  backdrop-filter: blur(8px);
}
.charity .card-copy { padding-right: 150px; }

.sight-reading {
  position: relative;
  min-height: 680px;
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8vw;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 9% 85%, rgba(49,212,106,.18), transparent 27%),
    radial-gradient(circle at 92% 12%, rgba(46,141,224,.24), transparent 32%),
    #10201f;
}
.stage-intro, .stage-dates { position: relative; z-index: 2; }
.stage-intro h2 {
  margin: 42px 0 30px;
  font: clamp(50px, 6.3vw, 96px)/.88 "Instrument Serif", serif;
  letter-spacing: -.03em;
}
.stage-intro h2 em { color: #83e6ad; }
.stage-intro h2 + p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  line-height: 1.75;
}
.stage-signup {
  width: fit-content;
  margin-top: 34px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: 12px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.stage-signup:hover {
  background: white;
  color: var(--ink);
  transform: translateY(-2px);
}
.stage-dates { border-top: 1px solid rgba(255,255,255,.25); }
.stage-dates article {
  padding: 34px 0;
  display: grid;
  grid-template-columns: .55fr 1.25fr .7fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.stage-dates span {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
  color: #83e6ad;
}
.stage-dates strong {
  font: 34px/1 "Instrument Serif", serif;
  font-weight: 400;
}
.stage-dates p { margin: 0; text-align: right; font-size: 13px; }
.stage-circles { position: absolute; inset: 0; pointer-events: none; }
.stage-circles i {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(.1px);
  animation: stageDrift 9s ease-in-out infinite alternate;
}
.stage-circles i:nth-child(1) { width: 190px; height: 190px; right: -65px; top: 16%; background: rgba(46,141,224,.22); }
.stage-circles i:nth-child(2) { width: 95px; height: 95px; left: 44%; bottom: 5%; background: rgba(49,212,106,.17); animation-delay: -4s; }
.stage-circles i:nth-child(3) { width: 48px; height: 48px; left: 5%; top: 10%; background: linear-gradient(145deg, var(--blue), var(--green)); animation-delay: -6s; }
@keyframes stageDrift {
  to { transform: translate(20px, -16px) scale(1.06); }
}

.past-concerts {
  position: relative;
  min-height: 760px;
  padding: 120px 4.5vw;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eef8f5 0%, var(--paper) 55%, #e9f3ff 100%);
}
.past-heading h2 {
  margin: 42px 0 30px;
  font: clamp(50px, 6.3vw, 96px)/.88 "Instrument Serif", serif;
  letter-spacing: -.03em;
}
.past-heading h2 em { color: var(--blue); }
.past-heading > p:last-child {
  max-width: 390px;
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}
.past-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 4px;
  color: white;
  background: var(--ink);
  box-shadow: 0 35px 90px rgba(17,89,108,.18);
}
.past-card-photo {
  width: 100%;
  height: clamp(290px, 30vw, 390px);
  display: block;
  object-fit: cover;
  object-position: center 44%;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.past-card:hover .past-card-photo { transform: scale(1.018); }
.past-card-copy {
  position: relative;
  padding: 34px 42px 40px;
  background:
    radial-gradient(circle at 100% 0, rgba(46,141,224,.24), transparent 38%),
    var(--ink);
}
.past-card-copy > p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  color: #83e6ad;
}
.past-card h3 {
  margin: 14px 0 28px;
  font: clamp(48px, 5.4vw, 80px)/.86 "Instrument Serif", serif;
  letter-spacing: -.03em;
}
.past-card h3 em { color: #bff4d6; }
.past-card-details {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: end;
}
.past-card-details span {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.68);
}
.past-card-details strong {
  display: inline-block;
  margin-top: 4px;
  color: white;
  font-weight: 500;
}

.history {
  position: relative;
  padding: 130px 4.5vw 145px;
  background:
    radial-gradient(circle at 87% 18%, rgba(46,141,224,.13), transparent 20%),
    radial-gradient(circle at 12% 86%, rgba(49,212,106,.12), transparent 22%),
    var(--paper);
  overflow: hidden;
}
.history::before,
.history::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46,141,224,.13);
  pointer-events: none;
}
.history::before { width: 30vw; aspect-ratio: 1; right: -12vw; top: -10vw; }
.history::after { width: 18vw; aspect-ratio: 1; left: -8vw; bottom: -8vw; }
.history-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 2fr 1fr;
  align-items: end;
  gap: 5vw;
}
.history-heading h2 {
  margin: 0;
  font: clamp(52px, 6.3vw, 96px)/.88 "Instrument Serif", serif;
  letter-spacing: -.03em;
}
.history-heading h2 em { color: var(--blue); }
.history-heading > p:last-child { margin: 0; font-size: 13px; line-height: 1.7; }
.timeline-shell { position: relative; z-index: 1; margin-top: 100px; }
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 2vw;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 4vw;
  right: 4vw;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.timeline-point {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  border: 0;
  background: none;
  cursor: pointer;
  opacity: .42;
  transition: opacity .3s ease, transform .3s ease;
}
.timeline-point span { font: 28px "Instrument Serif", serif; }
.timeline-point i {
  display: block;
  width: 13px;
  aspect-ratio: 1;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  transition: transform .35s ease, background .35s ease;
}
.timeline-point:nth-child(n+3) i { background: var(--green); box-shadow: 0 0 0 1px var(--green); }
.timeline-point:hover, .timeline-point.active { opacity: 1; transform: translateY(-4px); }
.timeline-point.active i { transform: scale(1.65); }
.timeline-story {
  width: min(720px, 88%);
  min-height: 240px;
  margin: 65px auto 0;
  padding: 42px 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
  transition: opacity .18s ease, transform .18s ease;
}
.timeline-story.is-changing { opacity: 0; transform: translateY(12px); }
.timeline-year {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}
.timeline-story h3 { margin: 22px 0 18px; font: 38px "Instrument Serif", serif; }
.timeline-story > p:last-child { margin: 0; font-size: 13px; line-height: 1.75; }
.timeline-link {
  width: fit-content;
  margin-top: 22px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-weight: 600;
  transition: color .3s ease, gap .3s ease;
}
.timeline-link:hover,
.timeline-link:focus-visible { color: #159c5b; gap: 18px; }

.member-page {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(46,141,224,.12), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(49,212,106,.12), transparent 23%),
    var(--paper);
}
.member-nav {
  position: relative;
  z-index: 5;
  height: 104px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.member-back { font-size: 12px; display: flex; gap: 18px; }
.member-main {
  position: relative;
  min-height: calc(100svh - 104px);
  padding: 90px 4.5vw;
  display: block;
  overflow: visible;
}
.member-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: circleFloat 7s ease-in-out infinite alternate;
}
.member-orb-one {
  width: 32vw;
  aspect-ratio: 1;
  left: -12vw;
  top: 15%;
  background: linear-gradient(145deg, rgba(46,141,224,.9), rgba(49,212,106,.78));
}
.member-orb-two {
  width: 19vw;
  aspect-ratio: 1;
  right: -4vw;
  bottom: -5vw;
  background: linear-gradient(145deg, rgba(49,212,106,.7), rgba(46,141,224,.85));
  animation-direction: alternate-reverse;
}
.login-panel, .member-content {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  width: min(720px, 100%);
  padding: clamp(38px, 6vw, 80px);
  border: 1px solid rgba(12,23,21,.12);
  background: rgba(247,248,243,.88);
  backdrop-filter: blur(22px);
  box-shadow: 0 35px 100px rgba(12,23,21,.1);
}
.login-panel h1, .member-content > h1 {
  margin: 38px 0 30px;
  font: clamp(62px, 8vw, 108px)/.78 "Instrument Serif", serif;
  letter-spacing: -.04em;
}
.login-panel h1 em, .member-content > h1 em { color: var(--blue); }
.login-intro, .member-content > p {
  max-width: 470px;
  font-size: 13px;
  line-height: 1.7;
}
#login-form { margin-top: 42px; }
#login-form label {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 9px;
  font-weight: 600;
}
.password-row { display: flex; border-bottom: 1px solid var(--ink); }
.password-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 16px 4px;
  background: transparent;
  font: 26px "Instrument Serif", serif;
}
.password-row:has(.is-invalid) {
  border-color: #bf315d;
  box-shadow: 0 8px 0 -7px rgba(191,49,93,.45);
}
.password-row input.is-invalid { color: #9d244c; }
.password-row button {
  width: 58px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  transition: transform .3s ease;
}
.password-submit:hover { transform: rotate(45deg); }
.password-toggle {
  width: 48px !important;
  display: grid;
  place-items: center;
  color: rgba(12,23,21,.58);
  transition: color .25s ease !important;
}
.password-toggle:hover,
.password-toggle:focus-visible,
.password-toggle.is-visible { color: var(--blue); }
.password-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.password-toggle .eye-slash {
  opacity: 0;
  transition: opacity .2s ease;
}
.password-toggle.is-visible .eye-slash { opacity: 1; }
.login-error { min-height: 20px; color: #bf315d; font-size: 12px; }
.member-content {
  width: min(1240px, 100%);
  padding: clamp(38px, 5vw, 72px);
  background: rgba(247,248,243,.97);
  backdrop-filter: none;
}
.member-main.is-open > .member-orb {
  animation: none;
}
.member-welcome {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 7vw;
  align-items: end;
  padding-bottom: 75px;
  overflow: hidden;
}
.member-welcome > *:not(.member-welcome-circles) { position: relative; z-index: 2; }
.member-welcome h1 {
  margin: 38px 0 0;
  font: clamp(62px, 8vw, 108px)/.78 "Instrument Serif", serif;
  letter-spacing: -.04em;
}
.member-welcome h1 em { color: var(--blue); }
.member-welcome > p {
  margin: 0;
  max-width: 360px;
  font-size: 13px;
  line-height: 1.75;
}
.member-welcome-circles { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.member-welcome-circles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: welcomeOrbit 7s ease-in-out infinite alternate;
}
.member-welcome-circles span:nth-child(1) {
  width: 108px;
  height: 108px;
  right: 7%;
  top: 2%;
  background: linear-gradient(145deg, rgba(46,141,224,.2), rgba(49,212,106,.17));
}
.member-welcome-circles span:nth-child(2) {
  width: 47px;
  height: 47px;
  right: 30%;
  top: 17%;
  background: rgba(49,212,106,.25);
  animation-delay: -2s;
}
.member-welcome-circles span:nth-child(3) {
  width: 28px;
  height: 28px;
  right: 2%;
  bottom: 22%;
  background: var(--blue);
  opacity: .23;
  animation-delay: -4s;
}
.member-welcome-circles span:nth-child(4) {
  width: 18px;
  height: 18px;
  left: 49%;
  top: 9%;
  background: var(--green);
  opacity: .32;
  animation-delay: -5s;
}
.member-welcome-circles span:nth-child(5) {
  width: 68px;
  height: 68px;
  right: 20%;
  bottom: 1%;
  border: 1px solid rgba(46,141,224,.28);
  animation-delay: -3s;
}
@keyframes welcomeOrbit {
  to { transform: translate(12px, -10px) scale(1.05); }
}
.member-local-nav {
  display: flex;
  gap: 9px;
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.48);
}
.member-local-nav a {
  padding: 12px 18px;
  display: flex;
  gap: 13px;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.member-local-nav a span {
  color: var(--blue);
  font: 16px "Instrument Serif", serif;
  transition: color .3s ease;
}
.member-local-nav a:hover {
  color: white;
  background: #173b39;
  transform: translateY(-2px);
}
.member-local-nav a:hover span { color: #83e6ad; }
.member-section {
  padding: 85px 0;
  border-top: 1px solid var(--line);
}
.member-section-heading {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 55px;
}
.member-index {
  margin: 3px 0 0;
  color: var(--green);
  font: 24px "Instrument Serif", serif;
}
.member-section-heading h2 {
  margin: 25px 0 0;
  font: clamp(47px, 6vw, 82px)/.88 "Instrument Serif", serif;
  letter-spacing: -.03em;
}
.member-section-heading h2 em { color: var(--blue); }
.choir-registration .useful-grid {
  display: grid;
  grid-template-columns: 1.65fr .75fr;
  gap: 14px;
}
.choir-fee-card {
  min-height: 470px;
  padding: clamp(30px, 4vw, 52px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4vw;
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgba(49,212,106,.2), transparent 31%),
    #173b39;
}
.choir-fee-price { display: flex; flex-direction: column; justify-content: center; }
.choir-fee-price > span,
.meeting-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
}
.choir-fee-price strong {
  margin: 22px 0 13px;
  color: #83e6ad;
  font: clamp(72px, 8vw, 116px)/.8 "Instrument Serif", serif;
  font-weight: 400;
}
.choir-fee-price p { margin: 0; font-size: 12px; line-height: 1.6; opacity: .72; }
.choir-fee-price b { color: white; font-weight: 500; }
.choir-fee-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  line-height: 1.7;
}
.choir-fee-copy p { margin: 0 0 18px; }
.choir-fee-copy .payment-note { color: #83e6ad; font-weight: 500; }
.choir-fee-link {
  width: fit-content;
  margin-top: 12px;
  padding: 13px 18px;
  display: flex;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.choir-fee-link:hover {
  color: #173b39;
  background: white;
  transform: translateY(-2px);
}
.meeting-card {
  position: relative;
  min-height: 470px;
  padding: 38px 34px;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, var(--blue), #1aac7a);
}
.meeting-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  top: -70px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  animation: circleFloat 6s ease-in-out infinite alternate;
}
.meeting-card h3 {
  position: relative;
  z-index: 1;
  margin: 65px 0 35px;
  font: 46px/.9 "Instrument Serif", serif;
}
.meeting-card time { font-size: 13px; line-height: 1.55; }
.meeting-card time strong { font: 24px "Instrument Serif", serif; font-weight: 400; }
.meeting-card address { margin-top: 26px; font-style: normal; font-size: 12px; line-height: 1.65; }
.meeting-card > p:last-child { margin: 28px 0 0; font-size: 10px; line-height: 1.55; opacity: .68; }
.planning-download {
  align-self: end;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  display: flex;
  gap: 20px;
  font-size: 11px;
}
.rehearsal-list { border-top: 1px solid var(--line); }
.rehearsal-list article {
  min-height: 74px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 1.15fr 1fr .85fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, background .3s ease;
}
.rehearsal-list article:hover { padding-left: 28px; background: rgba(46,141,224,.055); }
.rehearsal-list time { font: 20px "Instrument Serif", serif; }
.rehearsal-list p { margin: 0; font-size: 12px; }
.rehearsal-list article > span { text-align: right; font-size: 11px; opacity: .6; }
.rehearsal-highlight { background: rgba(49,212,106,.1); }
.rehearsal-list p strong { font-weight: 600; color: var(--blue); }
.rehearsal-songes { background: rgba(46,141,224,.09); }
.rehearsal-concert { color: white; background: linear-gradient(100deg, #173b39, #247fcb) !important; }
.rehearsal-concert p strong { color: #83e6ad; }
.rehearsal-concert > span { opacity: .82 !important; }
.poster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.poster-card {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.poster-preview {
  position: relative;
  display: block;
  height: min(63vw, 680px);
  overflow: hidden;
  background: #10202d;
}
.poster-preview::after {
  content: "Ouvrir en grand ↗";
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  padding: 12px 17px;
  border-radius: 999px;
  color: white;
  background: rgba(12,23,21,.78);
  backdrop-filter: blur(10px);
  font-size: 10px;
  transform: translate(-50%, 18px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.poster-preview:hover::after { opacity: 1; transform: translate(-50%, 0); }
.poster-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.poster-preview:hover img { transform: scale(1.018); }
.poster-card-copy {
  padding: 27px 12px 10px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-end;
}
.poster-card-copy p {
  margin: 0 0 8px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
}
.poster-card-copy h3 { margin: 0; font: 30px "Instrument Serif", serif; }
.poster-actions { display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.poster-actions a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
  font-size: 10px;
}
.voice-guides { margin-top: 0; }
.voice-guides-heading {
  padding: 45px 38px;
  display: grid;
  grid-template-columns: .35fr .8fr 1fr;
  gap: 35px;
  align-items: end;
  color: white;
  background: #173b39;
}
.voice-guides-heading h3 { margin: 0; font: 46px "Instrument Serif", serif; }
.voice-guides-heading > p:last-child { margin: 0; font-size: 12px; line-height: 1.7; opacity: .66; }
.works-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}
.works-nav a {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: white;
  font-size: 9px;
  letter-spacing: .04em;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.works-nav a:hover,
.works-nav a:focus-visible {
  color: #173b39;
  background: white;
  border-color: white;
  transform: translateY(-2px);
}
.guide-work {
  position: relative;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  scroll-margin-top: 28px;
}
.guide-work.is-upcoming {
  overflow: hidden;
}
.upcoming-ribbon {
  position: absolute;
  z-index: 3;
  top: 21px;
  right: -39px;
  width: 185px;
  padding: 8px 0;
  color: white;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 6px 18px rgba(16,54,72,.16);
  transform: rotate(35deg);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 7px;
}
.guide-work > header {
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
}
.guide-work > header span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
}
.guide-work > header h4 { margin: 13px 0 0; font: 42px "Instrument Serif", serif; }
.guide-work > header > p { margin: 0; font-size: 11px; opacity: .55; }
.locked-act {
  position: relative;
  width: 100%;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: not-allowed;
  text-align: left;
}
.locked-act:last-child { border-bottom: 0; }
.locked-act > span { color: var(--green); font: 16px "Instrument Serif", serif; }
.locked-act > strong { font: 22px "Instrument Serif", serif; font-weight: 400; }
.locked-act > i { font: 22px "DM Sans", sans-serif; font-style: normal; }
.locked-act.is-refusing {
  animation: unavailable-shake .45s cubic-bezier(.36,.07,.19,.97);
}
.locked-act.is-refusing::after {
  content: "Bientôt";
  position: absolute;
  right: 62px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--blue), var(--green));
  font: 7px "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  animation: unavailable-pop .65s ease both;
}
.available-act {
  padding: 22px 28px 26px;
  border-bottom: 1px solid var(--line);
}
.available-act:last-child { border-bottom: 0; }
.act-heading {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  margin-bottom: 16px;
}
.act-heading > span { color: var(--green); font: 16px "Instrument Serif", serif; }
.act-heading > strong { font: 22px "Instrument Serif", serif; font-weight: 400; }
.act-heading > small {
  color: var(--blue);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.score-download {
  min-height: 86px;
  margin-left: 55px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(247,248,243,.75);
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.score-download:hover {
  border-color: var(--green);
  background: white;
  transform: translateY(-2px);
}
.score-download > span {
  padding: 6px 9px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--green));
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.score-download > strong { font: 19px "Instrument Serif", serif; font-weight: 400; }
.score-download > i {
  color: var(--blue);
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.locked-resource {
  position: relative;
  min-height: 112px;
  padding: 17px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(247,248,243,.75);
  cursor: not-allowed;
  text-align: left;
  font: 18px "Instrument Serif", serif;
}
.locked-resource > span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--green));
  font: 8px "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.locked-resource i {
  font: 9px "DM Sans", sans-serif;
  font-style: normal;
  opacity: .45;
}
.locked-resource.is-refusing {
  animation: unavailable-shake .45s cubic-bezier(.36,.07,.19,.97);
}
.locked-resource.is-refusing::after {
  content: "Bientôt";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--blue), var(--green));
  font: 7px "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  animation: unavailable-pop .65s ease both;
}
@keyframes unavailable-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(2px); }
}
@keyframes unavailable-pop {
  0% { opacity: 0; transform: translateY(4px) scale(.85); }
  25%, 75% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-3px) scale(.95); }
}
.voice-file-grid {
  padding: 0 28px 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.voice-file-grid a {
  min-height: 112px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: rgba(247,248,243,.75);
  cursor: default;
  font: 18px "Instrument Serif", serif;
}
.voice-file-grid a > span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--green));
  font: 8px "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.voice-file-grid a i {
  color: var(--ink);
  font: 9px "DM Sans", sans-serif;
  font-style: normal;
  opacity: .45;
}
.voice-file-grid a.is-active {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,.94);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.voice-file-grid a.is-active::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--green));
  opacity: .1;
  transition: transform .3s ease, opacity .3s ease;
}
.voice-file-grid a.is-active:hover,
.voice-file-grid a.is-active:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(34,181,128,.65);
  box-shadow: 0 14px 30px rgba(16,54,72,.1);
}
.voice-file-grid a.is-active:hover::after,
.voice-file-grid a.is-active:focus-visible::after {
  transform: scale(1.35);
  opacity: .18;
}
.voice-file-grid a.is-active i {
  color: var(--blue);
  font-weight: 700;
  opacity: 1;
}
.voice-audio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.voice-audio-grid .global-listen {
  grid-column: 1 / -1;
  min-height: 120px;
}
.voice-audio-card {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 108% -5%, rgba(49,212,106,.16) 0 24%, transparent 25%),
    rgba(255,255,255,.94);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.voice-audio-card:hover,
.voice-audio-card:focus-within,
.voice-audio-card.is-playing {
  transform: translateY(-4px);
  border-color: rgba(34,181,128,.65);
  box-shadow: 0 14px 30px rgba(16,54,72,.1);
}
.audio-card-heading {
  display: flex;
  align-items: center;
  gap: 9px;
}
.audio-card-heading > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--green));
  font: 8px "DM Sans", sans-serif;
}
.audio-card-heading strong {
  font: 24px "Instrument Serif", serif;
  font-weight: 400;
}
.audio-controls {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.audio-play {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--green));
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(46,141,224,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.audio-play:hover,
.audio-play:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(46,141,224,.3);
}
.audio-play span {
  margin-left: 2px;
  font-size: 9px;
}
.is-playing .audio-play span { margin-left: 0; }
.audio-timeline { min-width: 0; }
.audio-progress {
  --audio-fill: 0%;
  width: 100%;
  height: 7px;
  display: block;
  margin: 0;
  border-radius: 999px;
  appearance: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--green) 0 var(--audio-fill), rgba(16,54,72,.14) var(--audio-fill) 100%);
}
.audio-progress::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  border: 2px solid white;
  border-radius: 50%;
  appearance: none;
  background: var(--blue);
  box-shadow: 0 1px 5px rgba(16,54,72,.25);
}
.audio-progress::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 1px 5px rgba(16,54,72,.25);
}
.audio-time {
  margin-top: 9px;
  display: flex;
  justify-content: space-between;
  color: rgba(16,54,72,.52);
  font: 9px "DM Sans", sans-serif;
  font-variant-numeric: tabular-nums;
}
.audio-volume {
  display: grid;
  grid-template-columns: 22px minmax(0, 150px);
  align-items: center;
  gap: 8px;
  color: var(--blue);
}
.audio-volume > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46,141,224,.09);
  font-size: 11px;
}
.audio-volume input {
  width: 100%;
  height: 4px;
  appearance: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.audio-volume input::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  border: 2px solid white;
  border-radius: 50%;
  appearance: none;
  background: var(--blue);
  box-shadow: 0 1px 5px rgba(16,54,72,.25);
}
.audio-volume input::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue);
}
.audio-chapters {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
.audio-chapters button {
  min-height: 43px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(247,248,243,.72);
  cursor: pointer;
  text-align: left;
  font: 9px "DM Sans", sans-serif;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.audio-chapters button span {
  color: var(--blue);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.audio-chapters button:hover,
.audio-chapters button:focus-visible,
.audio-chapters button.is-current {
  color: white;
  background: linear-gradient(115deg, var(--blue), var(--green));
  border-color: transparent;
  transform: translateY(-2px);
}
.audio-chapters button:hover span,
.audio-chapters button:focus-visible span,
.audio-chapters button.is-current span {
  color: white;
}
.compact-work .voice-file-grid { padding-top: 28px; }
.logout-button {
  margin-top: 35px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 8px;
  background: none;
  cursor: pointer;
  font-size: 11px;
}
[hidden] { display: none !important; }

.voices {
  padding: 125px 4.5vw;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  gap: 70px 5vw;
}
.voices-copy { display: contents; }
.voices-copy h2 { margin: 0; }
.voices-copy h2 em { color: var(--green); }
.voices-copy > p:last-child { max-width: 340px; font-size: 13px; line-height: 1.7; }
.choir-portrait {
  grid-column: 1 / -1;
  position: relative;
  margin: 0;
  min-height: 420px;
  aspect-ratio: 16 / 7.2;
  overflow: hidden;
  border-radius: 5px;
  background: var(--ink);
}
.choir-portrait img,
.voice-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.choir-portrait img { object-position: center 47%; }
.choir-portrait::after,
.voice-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.choir-portrait::after {
  background: linear-gradient(180deg, transparent 55%, rgba(12,23,21,.72));
}
.choir-portrait figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 3.2vw, 50px);
  right: clamp(24px, 3.2vw, 50px);
  bottom: clamp(22px, 3vw, 44px);
  color: white;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}
.choir-portrait figcaption span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .75;
}
.choir-portrait figcaption strong {
  font: clamp(30px, 3.8vw, 58px)/.95 "Instrument Serif", serif;
  font-weight: 400;
  text-align: right;
}
.voice-selector {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(220px, .75fr);
  gap: 5vw;
  align-items: stretch;
}
.voice-stage {
  position: relative;
  min-height: 420px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 5px;
  background: var(--ink);
}
.voice-stage::after {
  background: linear-gradient(180deg, transparent 54%, rgba(12,23,21,.72));
}
.voice-photo {
  transition: opacity .36s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.voice-stage:hover .voice-photo { transform: scale(1.018); }
.voice-stage.is-changing .voice-photo { opacity: 0; transform: scale(1.025); }
.voice-center {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 3vw, 46px);
  right: clamp(22px, 3vw, 46px);
  bottom: clamp(20px, 2.8vw, 40px);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  transition: opacity .22s ease, transform .22s ease;
}
.voice-stage.is-changing .voice-center {
  opacity: 0;
  transform: translateY(8px);
}
.voice-center span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .76;
}
.voice-center strong { font: clamp(42px, 5vw, 72px)/.9 "Instrument Serif", serif; font-weight: 400; }
.voice-tabs { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.voice-tabs button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  opacity: .38;
  transition: .3s;
  font-size: 15px;
}
.voice-tabs button span { font-size: 9px; padding-top: 4px; }
.voice-tabs button.active, .voice-tabs button:hover, .voice-tabs button:focus-visible {
  opacity: 1;
  padding-left: 10px;
}
.voice-tabs button.active { color: var(--blue); }

.conductor {
  min-height: 760px;
  background:
    radial-gradient(circle at 82% 18%, rgba(46,141,224,.16), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(49,212,106,.12), transparent 33%),
    #173b39;
  color: white;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  overflow: hidden;
}
.conductor-art { position: relative; border-right: 1px solid rgba(255,255,255,.22); overflow: hidden; background: #10202d; }
.conductor-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(.88) contrast(1.04);
}
.conductor-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(46,141,224,.16), transparent 50%, rgba(49,212,106,.09));
}
.conductor-photo-circle {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.52);
  animation: photoFloat 7s ease-in-out infinite alternate;
}
.photo-circle-one { width: 150px; height: 150px; left: -35px; top: 12%; background: rgba(46,141,224,.2); }
.photo-circle-two { width: 75px; height: 75px; right: 8%; bottom: 9%; background: rgba(49,212,106,.2); animation-delay: -3s; }
@keyframes photoFloat { to { transform: translate(14px, -12px); } }
.conductor-word {
  font: clamp(80px, 13vw, 210px) "Instrument Serif", serif;
  opacity: .08;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.baton {
  position: absolute;
  width: 2px;
  height: 55%;
  background: white;
  transform: rotate(25deg);
  transform-origin: bottom;
  animation: conduct 4s ease-in-out infinite alternate;
}
.baton::before { content: ""; position: absolute; bottom: -24px; left: -6px; width: 14px; height: 34px; border-radius: 50%; background: var(--ink); }
@keyframes conduct { 0% { transform: rotate(18deg); } 45% { transform: rotate(37deg); } 100% { transform: rotate(-10deg); } }
.conductor-copy { padding: 100px 7vw; display: flex; flex-direction: column; justify-content: center; }
.quote { font: italic 24px/1.25 "Instrument Serif", serif; max-width: 440px; margin: 70px 0 55px; opacity: .75; }
.conductor h2 { margin-bottom: 22px; }
.conductor-copy > p:nth-last-of-type(1) { font-size: 13px; }
.light-link { margin-top: 55px; color: white; }

.join {
  min-height: 620px;
  padding: 110px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(130deg, #f7f8f3 30%, #d8f4e7);
}
.join h2 { margin-top: 50px; }
.join h2 em { color: var(--blue); }
.join-disc {
  width: clamp(190px, 21vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font: 24px "Instrument Serif", serif;
  transition: .5s cubic-bezier(.2,.8,.2,1);
}
.join-disc:hover { background: var(--blue); transform: rotate(-8deg) scale(1.05); }

footer {
  background: var(--ink);
  color: white;
  padding: 70px 4.5vw 35px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  width: 95px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
  display: block;
  overflow: hidden;
}
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.56);
}
footer p { margin: 0 0 8px; font-size: 12px; opacity: .7; }
footer > div:nth-of-type(2) { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.copyright { grid-column: 1 / -1; padding-top: 35px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,.15); }

@media (max-width: 1100px) {
  .nav { height: 82px; padding: 0 22px; }
  .brand-name, .ticket-link { display: none; }
  .menu-button { display: flex; flex-direction: column; gap: 6px; z-index: 30; }
  .menu-button span { width: 25px; height: 1px; background: var(--ink); transition: .3s; }
  .menu-button.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    padding: 130px 30px;
    flex-direction: column;
    font: 42px "Instrument Serif", serif;
    transform: translateY(-100%);
    transition: transform .65s cubic-bezier(.76,0,.24,1);
  }
  .nav-links.is-open { transform: none; }
}

@media (max-width: 900px) {
  .nav { height: 82px; padding: 0 22px; }
  .brand-name, .ticket-link { display: none; }
  .menu-button { display: flex; flex-direction: column; gap: 6px; z-index: 30; }
  .menu-button span { width: 25px; height: 1px; background: var(--ink); transition: .3s; }
  .menu-button.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    padding: 130px 30px;
    flex-direction: column;
    font: 42px "Instrument Serif", serif;
    transform: translateY(-100%);
    transition: transform .65s cubic-bezier(.76,0,.24,1);
  }
  .nav-links.is-open { transform: none; }
  .orbital-opening { height: 175svh; }
  .orbital-halo { width: 78vw; }
  .opening-logo { width: clamp(150px, 43vw, 220px); }
  .opening-circle { min-width: 42px; }
  .opening-reveal { font-size: clamp(39px, 12vw, 62px); padding: 0 24px; }
  .hero { padding: 130px 22px 35px; min-height: 820px; align-items: flex-start; }
  .hero-copy { width: 100%; margin-top: 80px; }
  .hero-title { font-size: clamp(55px, 17vw, 83px); line-height: .83; }
  .italic { padding-left: 14vw !important; }
  .hero-bottom { margin-left: 0; margin-top: 48px; width: 86%; }
  .hero-stamp { width: 80px; right: 20px; bottom: 28px; }
  .hero-name { right: 115px; bottom: 41px; font-size: 14px; }
  .sound-field { width: 65vw; height: 38%; top: auto; bottom: 5%; }
  .orbit-one { width: 85vw; height: 85vw; right: -45vw; top: 48%; }
  .orbit-two { width: 55vw; height: 55vw; right: -25vw; top: 58%; }
  .season { padding: 85px 22px 100px; }
  .section-heading { grid-template-columns: 1fr; gap: 35px; }
  .history { padding: 90px 22px 100px; }
  .history-heading { grid-template-columns: 1fr; gap: 35px; }
  .history-heading h2 { font-size: 57px; }
  .timeline-shell { margin-top: 70px; overflow-x: auto; }
  .timeline-track {
    min-width: 620px;
    padding-bottom: 12px;
  }
  .timeline-story { width: 100%; padding: 32px 25px; }
  .section-heading h2, .voices h2, .conductor h2, .join h2 { font-size: 57px; }
  .concert-grid { grid-template-columns: 1fr; }
  .concert-card { min-height: 430px; }
  .astree-card { grid-column: auto; min-height: 480px; }
  .concert-card.media-card .card-copy { padding-right: 0; padding-bottom: 55px; }
  .charity .card-copy { padding-right: 0; padding-bottom: 70px; }
  .card-status { left: 24px; right: auto; max-width: calc(100% - 48px); }
  .sight-reading { min-height: auto; padding: 90px 22px; grid-template-columns: 1fr; gap: 60px; }
  .stage-intro h2 { font-size: 57px; }
  .stage-dates article { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .stage-dates strong { font-size: 38px; }
  .stage-dates p { text-align: left; }
  .past-concerts { min-height: auto; padding: 90px 22px; grid-template-columns: 1fr; gap: 55px; }
  .past-heading h2 { font-size: 57px; }
  .past-card { min-height: 0; }
  .past-card-photo { height: auto; aspect-ratio: 4 / 3; }
  .past-card-copy { padding: 30px 25px 34px; }
  .past-card h3 { font-size: 58px; }
  .past-card-details { grid-template-columns: 1fr; gap: 14px; }
  .pulse { width: 40vw; }
  .pulse-b { width: 67vw; }
  .voices { padding: 90px 22px; grid-template-columns: 1fr; gap: 35px; min-height: auto; }
  .voices-copy { display: block; }
  .voices-copy h2 { margin: 35px 0; }
  .voices-copy > p:last-child { max-width: 520px; }
  .choir-portrait {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .choir-portrait img { object-position: center; }
  .choir-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .choir-portrait figcaption strong { text-align: left; }
  .voice-selector { grid-column: auto; grid-template-columns: 1fr; gap: 18px; }
  .voice-stage { width: 100%; min-height: 0; margin: 0; aspect-ratio: 4 / 3; }
  .voice-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .voice-tabs button { padding: 17px 5px; }
  .conductor { grid-template-columns: 1fr; }
  .conductor-art { min-height: 390px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .conductor-art > img { object-position: 63% center; }
  .conductor-copy { padding: 75px 22px 90px; }
  .quote { margin: 55px 0 45px; }
  .join { min-height: 660px; padding: 80px 22px; flex-direction: column; align-items: flex-start; }
  .join-disc { align-self: flex-end; }
  footer { grid-template-columns: 1fr 1fr; padding: 60px 22px 30px; }
  footer > div:nth-of-type(2) { align-items: flex-end; }
  .copyright { grid-column: 1 / -1; }
  .member-nav { height: 82px; padding: 0 22px; }
 .member-main { min-height: calc(100svh - 82px); padding: 55px 22px; }
  .member-orb-one { width: 75vw; left: -42vw; }
  .member-orb-two { width: 48vw; right: -25vw; }
  .login-panel, .member-content { padding: 38px 24px; }
  .login-panel h1 { font-size: 66px; }
  .member-welcome { grid-template-columns: 1fr; gap: 35px; padding-bottom: 55px; }
  .member-welcome h1 { font-size: 66px; }
  .member-welcome-circles { opacity: .7; }
  .member-welcome-circles span:nth-child(1) { width: 82px; height: 82px; right: -16px; top: 8%; }
  .member-welcome-circles span:nth-child(2) { right: 7%; top: 47%; }
  .member-welcome-circles span:nth-child(4) { left: 72%; top: 2%; }
  .member-welcome-circles span:nth-child(5) { right: 27%; bottom: 0; }
  .member-local-nav {
    margin-right: -24px;
    padding: 13px 24px 13px 13px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .member-local-nav::-webkit-scrollbar { display: none; }
  .member-local-nav a { flex: 0 0 auto; white-space: nowrap; }
  .member-section { padding: 65px 0; }
  .member-section-heading { grid-template-columns: 42px 1fr; gap: 14px; margin-bottom: 38px; }
  .member-section-heading h2 { font-size: 49px; }
  .planning-download { grid-column: 2; justify-self: start; margin-top: 12px; }
  .choir-registration .useful-grid, .choir-fee-card { grid-template-columns: 1fr; }
  .choir-fee-card { min-height: auto; padding: 34px 28px; gap: 42px; }
  .choir-fee-price strong { font-size: 83px; }
  .meeting-card { min-height: 430px; }
  .rehearsal-list article { grid-template-columns: 1fr; gap: 8px; padding: 20px 10px; }
  .rehearsal-list article:hover { padding-left: 16px; }
  .rehearsal-list article > span { text-align: left; }
  .poster-grid { grid-template-columns: 1fr; }
  .poster-preview { height: 118vw; max-height: 720px; }
  .poster-preview::after { display: none; }
  .poster-card-copy { align-items: flex-start; flex-direction: column; }
  .poster-actions { align-items: flex-start; }
  .voice-guides-heading { padding: 34px 26px; grid-template-columns: 1fr; gap: 18px; }
  .voice-guides-heading h3 { font-size: 42px; }
  .guide-work > header { padding: 28px 24px; align-items: flex-start; flex-direction: column; }
  .guide-work > header h4 { font-size: 36px; }
  .locked-act { padding: 20px 18px; grid-template-columns: 42px 1fr auto; }
  .available-act { padding: 20px 18px 22px; }
  .act-heading { grid-template-columns: 42px 1fr auto; }
  .score-download {
    margin-left: 0;
    min-height: 100px;
    grid-template-columns: auto 1fr;
  }
  .score-download > i { grid-column: 2; }
  .voice-file-grid { padding: 0 18px 22px; grid-template-columns: 1fr 1fr; }
  .voice-file-grid a:first-child { grid-column: 1 / -1; }
  .voice-file-grid > .locked-resource:first-child { grid-column: 1 / -1; }
  .voice-audio-grid { grid-template-columns: 1fr; }
  .voice-audio-card { min-height: 320px; padding: 22px 18px; }
  .compact-work .voice-file-grid { padding-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero-title .line > span, .reveal { transform: none; opacity: 1; }
}

/* Espace choristes : la zone d'inscription doit rester rendue. */
#inscription-chorale,
.choir-registration,
.choir-fee-card {
  display: block;
  visibility: visible;
  opacity: 1;
}
.choir-registration .useful-grid { display: grid; }
.choir-fee-card { display: grid; }

/* Espaces privés sécurisés */
.auth-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.logout-form { margin: 0; }
.logout-button {
  transition: color .25s ease, border-color .25s ease;
}
.logout-button:hover,
.logout-button:focus-visible { color: var(--blue); }

/* Espace du conseil d’administration */
.ca-content { width: min(1320px, 100%); }
.ca-page .member-orb-one {
  background: linear-gradient(145deg, rgba(49,212,106,.83), rgba(46,141,224,.78));
}
.ca-page .member-orb-two {
  background: linear-gradient(145deg, rgba(46,141,224,.82), rgba(49,212,106,.68));
}
.drive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.drive-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: white;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.drive-card::before,
.drive-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.drive-card::before {
  width: 230px;
  height: 230px;
  right: -75px;
  top: -80px;
  border: 1px solid rgba(255,255,255,.38);
}
.drive-card::after {
  width: 115px;
  height: 115px;
  right: 30px;
  bottom: -52px;
  background: rgba(255,255,255,.12);
}
.drive-card:hover,
.drive-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(12,23,21,.17);
}
.drive-card:hover::before,
.drive-card:focus-visible::before { transform: scale(1.16) translate(-9px, 10px); }
.drive-card:hover::after,
.drive-card:focus-visible::after { transform: translateY(-12px); }
.drive-card-general {
  background: linear-gradient(145deg, #173b39, #226f9d);
}
.drive-card-festival {
  background: linear-gradient(145deg, var(--blue), #1aac7a);
}
.drive-card > * { position: relative; z-index: 1; }
.drive-card-number {
  color: rgba(255,255,255,.75);
  font: 24px "Instrument Serif", serif;
}
.drive-card p {
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
  opacity: .72;
}
.drive-card h3 {
  margin: 0;
  font: clamp(42px, 4.5vw, 66px)/.88 "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -.025em;
}
.drive-card-action {
  width: fit-content;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,.7);
  font-size: 11px;
}
.drive-card-action i { font-style: normal; font-size: 17px; }

.ca-meeting-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 16px;
}
.ca-meeting-card,
.ca-agenda-card {
  min-height: 445px;
  padding: clamp(32px, 4vw, 54px);
}
.ca-meeting-card {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, var(--blue), #1aac7a);
}
.ca-meeting-card::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -110px;
  top: -100px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
}
.ca-meeting-card > * { position: relative; z-index: 1; }
.ca-meeting-card time {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ca-meeting-card time span {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
}
.ca-meeting-card time strong {
  margin: 10px 0 4px;
  color: white;
  font: clamp(105px, 12vw, 165px)/.72 "Instrument Serif", serif;
  font-weight: 400;
}
.ca-meeting-card address {
  margin-top: 52px;
  font: 28px "Instrument Serif", serif;
  font-style: normal;
}
.ca-agenda-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}
.ca-agenda-card h3 {
  margin: 28px 0 35px;
  font: clamp(42px, 5vw, 64px)/.9 "Instrument Serif", serif;
  font-weight: 400;
}
.ca-agenda-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.ca-agenda-card li {
  position: relative;
  padding: 18px 16px 18px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
}
.ca-agenda-card li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--green));
}

.ca-task-heading { align-items: end; }
.ca-task-note {
  max-width: 300px;
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 1.65;
  opacity: .63;
}
.task-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.56);
  scrollbar-width: thin;
}
.ca-task-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  text-align: left;
}
.ca-task-table th {
  padding: 18px 16px;
  color: rgba(12,23,21,.66);
  background: rgba(12,23,21,.045);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 8px;
  font-weight: 600;
}
.ca-task-table td {
  padding: 20px 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
  vertical-align: middle;
}
.ca-task-table td:first-child {
  width: 27%;
  font: 18px/1.25 "Instrument Serif", serif;
}
.ca-task-table td:nth-child(2) { width: 13%; }
.ca-task-table td:nth-child(3) { width: 12%; white-space: nowrap; }
.ca-task-table td:last-child { width: 20%; color: rgba(12,23,21,.68); }
.ca-task-table tbody tr {
  transition: background .25s ease;
}
.ca-task-table tbody tr:hover { background: rgba(46,141,224,.055); }
.priority,
.task-status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 600;
}
.priority-high { color: #8a1742; background: rgba(191,49,93,.12); }
.priority-medium { color: #875b00; background: rgba(236,178,22,.15); }
.status-todo { color: #185e98; background: rgba(46,141,224,.13); }
.status-progress { color: #116438; background: rgba(49,212,106,.16); }
.status-waiting { color: #5d625f; background: rgba(12,23,21,.08); }

@media (max-width: 900px) {
  .drive-grid,
  .ca-meeting-grid { grid-template-columns: 1fr; }
  .drive-card { min-height: 340px; }
  .ca-meeting-card,
  .ca-agenda-card { min-height: 390px; }
  .ca-task-heading { align-items: start; }
  .ca-task-note { grid-column: 2; }
  .task-table-scroll { margin-right: -24px; }
}

@media (max-width: 520px) {
  .drive-card { padding: 30px 26px; }
  .drive-card h3 { font-size: 43px; }
  .ca-meeting-card,
  .ca-agenda-card { padding: 34px 27px; }
  .ca-task-note { grid-column: 1 / -1; }
}
