:root {
  --ink: #25213a;
  --muted: #655f73;
  --paper: #fffaf4;
  --white: #ffffff;
  --wine: #d94f5c;
  --wine-dark: #126b61;
  --wine-light: #f9d9dc;
  --gold: #f4c84a;
  --gold-light: #fff2bd;
  --sage: #20a99a;
  --sage-light: #c9eee8;
  --sage-pale: #e2f2ef;
  --line: #eadfe9;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { color: var(--white); background: var(--wine); }

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

.error-page { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; background: radial-gradient(circle at 15% 18%, var(--gold-light), transparent 28%), radial-gradient(circle at 88% 80%, var(--sage-light), transparent 30%), var(--paper); }
.error-main { display: grid; place-items: center; padding: clamp(3rem, 8vw, 7rem) 1rem; overflow: hidden; }
.error-card { position: relative; width: min(820px, 100%); padding: clamp(2rem, 6vw, 4.8rem); border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: 0 28px 80px rgba(37,33,58,.12); text-align: center; isolation: isolate; }
.error-code { display: block; margin: 0; color: var(--wine); font: 900 clamp(5.5rem, 19vw, 11rem)/.78 Georgia, serif; letter-spacing: -.08em; }
.error-note { margin: 1.5rem 0 .35rem; color: var(--wine-dark); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.error-card h1 { max-width: 650px; margin: 0 auto; font: 400 clamp(2rem, 5vw, 3.7rem)/1.05 Georgia, serif; }
.error-copy { max-width: 590px; margin: 1.2rem auto 0; color: var(--muted); font-size: 1.08rem; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2rem; }
.error-actions a { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .7rem 1.15rem; border: 2px solid var(--wine-dark); border-radius: 999px; color: var(--wine-dark); font-weight: 800; text-decoration: none; }
.error-actions a:first-child { color: white; background: var(--wine-dark); }
.error-actions a:hover { color: white; border-color: var(--wine); background: var(--wine); }
.error-music { position: absolute; z-index: -1; color: var(--gold); font: 700 clamp(2.5rem, 7vw, 5rem)/1 Georgia, serif; opacity: .7; transform: rotate(-12deg); }
.error-music-one { top: 12%; left: 7%; }
.error-music-two { right: 8%; bottom: 12%; color: var(--sage); transform: rotate(14deg); }
.error-page .site-footer { align-self: end; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--wine-dark);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.42);
  background: rgba(143,85,77,.96);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 94px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  white-space: nowrap;
}
.brand img { width: 190px; height: 82px; object-fit: contain; }
.brand span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: .15rem; }
.main-nav a {
  padding: .65rem .72rem;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-size: .92rem;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: .45rem; }
.main-nav .private-link {
  margin-left: .35rem;
  border: 1px solid rgba(255,255,255,.38);
  color: var(--white);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(700px, 66vw, 780px);
  color: var(--white);
  background: #241d1d;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("images/choeur-futuriste-v3.png") center / cover no-repeat;
  animation: hero-arrive 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.hero::before {
  display: none;
}
.hero::after {
  display: none;
}
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: auto;
}
.hero-inner::before {
  display: none;
}
.hero-title {
  position: absolute;
  top: clamp(-1rem, .15vw, 0rem);
  left: 0;
  right: 0;
  text-align: center;
  transform: rotate(-1.2deg);
}
.hero-content {
  position: absolute;
  left: 0;
  right: auto;
  top: auto;
  bottom: 9rem;
  width: min(650px, calc(100% - 2rem));
  padding: 0;
  transform: rotate(-.45deg);
}
.hero-notes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-notes span {
  position: absolute;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine-dark);
  background: rgba(255,255,255,.86);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  box-shadow: 0 12px 25px rgba(49,20,45,.14);
  animation: note-float 4s ease-in-out infinite alternate;
}
.hero-notes span:nth-child(1) { top: 22%; left: 52%; right: auto; transform: rotate(9deg); }
.hero-notes span:nth-child(2) { top: 20%; right: 20%; width: 44px; height: 44px; color: var(--sage); font-size: 1.4rem; animation-delay: -1.4s; }
.hero-notes span:nth-child(3) { top: 27%; right: 3%; bottom: auto; color: var(--wine); animation-delay: -2.2s; }
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(49,20,45,.2);
}
.hero h1 {
  position: relative;
  display: inline-block;
  font-family: "Noteworthy", "Marker Felt", "Segoe Print", Baskerville, Georgia, cursive;
  font-weight: 700;
  line-height: 1.12;
  padding: 0 .08em .25em;
  color: var(--white);
  text-shadow: 3px 3px 0 var(--wine), -3px -2px 0 var(--sage), 0 5px 18px rgba(34,19,13,.78);
}
.hero h1::after {
  content: "";
  position: absolute;
  left: 4%;
  right: -4%;
  bottom: -.68rem;
  height: 6px;
  border-radius: 18px 7px 18px 7px;
  background: var(--gold);
  box-shadow: 12px 5px 0 var(--wine), -12px -4px 0 var(--sage);
  transform: rotate(-1deg);
}
.hero-copy {
  max-width: 660px;
  margin: .7rem 0 0;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 750;
  text-shadow: 0 2px 4px #000, 0 5px 18px #000;
}
.hero-tagline {
  position: absolute;
  left: 54%;
  top: 34%;
  max-width: 40%;
  margin: 0;
  color: #571845;
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  font-weight: 850;
  line-height: 1.45;
  text-shadow: 2px 2px 0 rgba(255,255,255,.92), -1px -1px 0 rgba(255,255,255,.92), 0 7px 16px rgba(255,255,255,.55);
  transform: rotate(-.6deg);
}
.hero-tagline span { display: block; white-space: nowrap; }
.hero-tagline span + span { margin-left: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .65rem; }
.hero-top-actions {
  position: absolute;
  top: 1.1rem;
  left: -.35rem;
  margin: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: .68rem;
  transform: rotate(-1deg);
}
.hero-top-actions > .button { min-height: 39px; padding: .48rem .85rem; font-size: .86rem; }
.hero-video-link { border-color: transparent; color: var(--ink); background: var(--sage); box-shadow: 6px 6px 0 var(--wine); }
.hero-video-link:hover { color: var(--white); background: var(--wine-dark); }

.hero-news {
  display: inline-flex;
  max-width: 100%;
  margin-top: .65rem;
  padding: .55rem .75rem .55rem .55rem;
  align-items: center;
  gap: .65rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 7px 7px 0 var(--sage), 0 12px 28px rgba(49,20,45,.2);
  text-decoration: none;
}
.hero-news span { padding: .2rem .65rem; border-radius: 999px; color: var(--white); background: var(--wine); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.hero-news strong { font-size: .92rem; }
.hero-news b { color: var(--wine); font-size: 1.2rem; }
.hero-top-actions .hero-news {
  margin-top: .65rem;
  padding: .4rem .6rem .4rem .4rem;
  gap: .5rem;
}
.hero-top-actions .hero-news span { padding: .15rem .5rem; font-size: .68rem; }
.hero-top-actions .hero-news strong { font-size: .82rem; }
.hero-top-actions .hero-news b { font-size: 1rem; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.05rem;
  border: 1px solid transparent;
  color: var(--white);
  background: var(--wine);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(120,37,91,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { background: var(--wine-dark); transform: translateY(-3px); box-shadow: 0 13px 28px rgba(120,37,91,.28); }
.button-light { border-color: rgba(255,255,255,.65); color: var(--white); background: rgba(255,255,255,.08); }
.hero-actions .button-light { border-color: transparent; color: var(--ink); background: var(--sage); box-shadow: 6px 6px 0 var(--gold); }
.button-light:hover { color: var(--white); background: var(--wine-dark); }
.hero-title .eyebrow {
  position: absolute;
  top: calc(100% + 1.1rem);
  right: 7%;
  display: inline-block;
  margin: 0;
  padding: .2rem .65rem;
  color: var(--ink);
  background: var(--gold);
  transform: rotate(1.5deg);
  box-shadow: 5px 5px 0 var(--wine);
}

.section { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; }
.section:not(.section-wine)::before,
.section:not(.section-wine)::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .18;
}
.section:not(.section-wine)::before { width: 130px; height: 130px; top: 2rem; left: -55px; background: var(--sage); }
.section:not(.section-wine)::after { width: 90px; height: 90px; right: 3%; bottom: 1rem; background: var(--wine); }
#actualites {
  padding-top: clamp(3rem, 6vw, 5rem);
  background: #fffdf8;
}
#actualites .section-heading {
  position: relative;
  max-width: 920px;
  margin-bottom: 3.2rem;
  padding: 1.8rem 2rem 2rem;
  border-radius: 34px 10px 34px 10px;
  background: var(--sage-pale);
  box-shadow: 12px 14px 0 var(--wine-light);
}
.news-label {
  display: inline-block;
  margin: 0 0 .7rem;
  padding: .28rem .8rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--wine);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
#actualites .section-heading h2 { color: var(--wine-dark); }
.section-white { background: var(--white); }
.section-wine { color: var(--white); background: #77265f; }
#video-concert { scroll-margin-top: 94px; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: auto; }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading h2, .content h2 {
  margin: 0 0 .7rem;
  font-family: "Noteworthy", "Marker Felt", "Segoe Print", Georgia, cursive;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-wine .section-heading p { color: rgba(255,255,255,.72); }

.forum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.forum-card {
  min-height: 260px;
  padding: 1.5rem;
  border: 0;
  border-radius: 48% 52% 45% 55% / 42% 45% 55% 58%;
  background: var(--gold-light);
  box-shadow: 0 18px 38px rgba(87,58,96,.13);
  transform: rotate(-1.2deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.forum-card:nth-child(2) { background: var(--sage-light); transform: translateY(1.5rem) rotate(1.3deg); }
.forum-card:nth-child(3) { background: var(--wine-light); transform: rotate(-.6deg); }
.forum-card:hover { transform: translateY(-7px) rotate(0); box-shadow: 0 24px 45px rgba(87,58,96,.18); }
.forum-card .place { margin: 0 0 .25rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; line-height: 1.2; }
.forum-card .time { display: inline-block; margin: .2rem 0 1rem; padding: .2rem .7rem; border-radius: 999px; color: var(--white); background: var(--wine); font-weight: 800; }
.forum-card address { color: var(--muted); font-style: normal; }
.forum-card .invite { margin-top: 1.3rem; font-weight: 750; }
.heritage-concert {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(240px, 310px);
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.25rem;
  padding: 1.6rem 2rem;
  border-left: 6px solid var(--home-coral);
  background: var(--home-gold);
  box-shadow: 12px 12px 0 rgba(18, 107, 97, .12);
}
.heritage-date { text-align: center; color: var(--home-teal); border-right: 1px solid rgba(18, 107, 97, .28); }
.heritage-date strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 3.4rem; line-height: .9; }
.heritage-date span { display: block; margin-top: .4rem; font-weight: 800; }
.heritage-concert h3 { margin: .15rem 0 .65rem; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.heritage-concert p { margin: .25rem 0; }
.heritage-concert .eyebrow { color: var(--home-coral); }
.heritage-note { font-weight: 850; color: var(--home-teal); }
.heritage-poster { margin: 0; align-self: center; }
.heritage-poster img { display: block; width: 100%; height: auto; border-radius: 3px; box-shadow: 0 10px 24px rgba(37, 33, 58, .18); }
.heritage-poster-button{position:relative;display:block;width:100%;padding:0;border:0;border-radius:3px;background:transparent;cursor:zoom-in}.heritage-poster-button span{position:absolute;right:.65rem;bottom:.65rem;padding:.4rem .65rem;border-radius:999px;color:white;background:rgba(56,33,63,.9);font-size:.76rem;font-weight:800;box-shadow:0 4px 14px rgba(0,0,0,.25)}.heritage-poster-button:hover img,.heritage-poster-button:focus-visible img{outline:4px solid var(--home-coral);outline-offset:3px}.heritage-poster-button:focus-visible{outline:none}

.video-layout, .rehearsal-layout, .split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.video-frame { position: relative; overflow: hidden; background: #130f11; aspect-ratio: 16 / 9; border-radius: 36px 12px 36px 12px; box-shadow: 20px 20px 0 rgba(244,184,63,.78); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-pending {
  position: absolute;
  inset: auto 1rem 1rem;
  padding: .55rem .75rem;
  color: var(--white);
  background: rgba(25,20,22,.82);
  font-size: .88rem;
}
.concert-details { border-left: 6px solid var(--gold); padding-left: 2rem; }
.concert-details h2 { margin: 0 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem,4vw,3.4rem); font-weight: 400; line-height: 1.05; }
.concert-details strong { color: var(--gold); }

.rehearsal-layout { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
.rehearsal-photo {
  width: min(100%, 450px);
  justify-self: center;
  min-height: 0;
  aspect-ratio: 1255 / 1800;
  border-radius: 24px 24px 42% 58% / 24px 24px 61% 47%;
  background: var(--sage-pale) url("images/eglise-mere.jpg") center / contain no-repeat;
  box-shadow: -18px 20px 0 var(--sage-light);
}
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.fact { padding: 1.2rem; border: 0; border-radius: 24px 8px 24px 8px; background: var(--gold-light); }
.fact:nth-child(2) { background: var(--sage-light); }
.fact:nth-child(3) { background: var(--wine-light); }
.fact:nth-child(4) { background: var(--sage-pale); }
.fact strong { display: block; color: var(--wine); font-size: 1.1rem; }

.page-hero {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0 4rem;
  color: var(--white);
  background: var(--wine);
  overflow: hidden;
}
.page-hero::before {
  content: "♪  ♫  ♪";
  position: absolute;
  right: -1rem;
  top: 68%;
  color: rgba(255,255,255,.16);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 1;
  transform: translateY(-50%) rotate(-8deg);
  white-space: nowrap;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -4%;
  bottom: 12%;
  width: 42%;
  height: 14px;
  background: var(--gold);
  transform: rotate(-3deg);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: 900px;
  font-family: "Noteworthy", "Marker Felt", "Segoe Print", Georgia, cursive;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  transform: rotate(-1deg);
}
.page-hero p { max-width: 700px; margin: 1.2rem 0 0; color: rgba(255,255,255,.8); font-size: 1.15rem; }
.page-hero-compact { padding: clamp(2.7rem, 6vw, 4.5rem) 0 2.7rem; }
.page-hero-compact h1 { font-size: clamp(2.35rem, 5vw, 4.25rem); }
.page-hero-compact p { margin-top: .75rem; }
.history-section { padding-top: 2rem; }
.recruitment-section { padding-top: 2.5rem; }
.recruitment-section .lead { margin-top: 0; }
.recruitment-banner {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 2.25rem auto 0;
  padding: 0;
  border: 8px solid var(--white);
  border-radius: 10px 34px 10px 34px;
  background: var(--home-teal);
  box-shadow: 14px 16px 0 var(--home-gold);
  transform: rotate(-.35deg);
}
.recruitment-banner img {
  display: block;
  width: 100%;
  height: clamp(90px, 23.5vw, 278px);
  border-radius: 4px 26px 4px 26px;
  object-fit: cover;
  object-position: center center;
}
.contact-section { padding-top: 2rem; }

.content { max-width: 820px; }
.content h2 { margin-top: 3.2rem; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.content h3 { margin: 2rem 0 .3rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 400; }
.content .lead { font-size: 1.25rem; color: #454149; }
.timeline { margin: 3rem 0; border-left: 5px solid var(--gold); }
.timeline-item { position: relative; padding: 0 0 2.1rem 2rem; }
.timeline-item::before { content: "♪"; position: absolute; left: -15px; top: .2rem; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: var(--white); background: var(--wine); font-weight: 800; }
.timeline-item time { color: var(--wine); font-weight: 800; }
.timeline-item h3 { margin-top: .2rem; }

.season-archive { margin-top: 5rem; }
.season-archive > h2 { margin-top: 0; }
.season-intro { margin-bottom: 2rem; color: var(--muted); }
.season {
  margin: .8rem 0;
  border: 0;
  border-radius: 20px 7px 20px 7px;
  background: var(--gold-light);
  box-shadow: 7px 7px 0 var(--wine-light);
  overflow: hidden;
}
.season:nth-of-type(3n+2) { background: var(--sage-light); box-shadow-color: var(--sage-pale); }
.season:nth-of-type(3n) { background: var(--wine-light); box-shadow-color: var(--gold-light); }
.season summary {
  display: flex;
  padding: 1rem 1.2rem;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.season summary::-webkit-details-marker { display: none; }
.season summary::after { content: "+"; margin-left: auto; color: var(--wine); font-size: 1.7rem; font-weight: 800; line-height: 1; }
.season[open] summary::after { content: "−"; }
.season summary span { min-width: 78px; color: var(--wine-dark); font-family: "Noteworthy", "Marker Felt", "Segoe Print", Georgia, cursive; font-size: 1.45rem; font-weight: 800; }
.season summary strong { line-height: 1.3; }
.season > div { padding: 0 1.2rem 1.25rem; border-top: 1px solid rgba(120,37,91,.14); }
.season > div p { margin: .9rem 0 0; }
.season-pause { color: var(--white); background: var(--wine-dark) !important; box-shadow-color: var(--gold); }
.season-pause summary span { color: var(--gold); }
.season-pause summary::after { color: var(--gold); }

#concerts, #repertoire { scroll-margin-top: 170px; }
.archive-jumps {
  position: sticky;
  float: left;
  left: 1rem;
  top: 92px;
  z-index: 30;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  flex-direction: column;
  transform: none;
}
.archive-jumps a {
  display: flex;
  min-width: 130px;
  padding: .7rem .9rem;
  align-items: center;
  gap: .55rem;
  border: 2px solid var(--white);
  border-radius: 18px 7px 18px 7px;
  color: var(--white);
  background: var(--wine);
  box-shadow: 6px 6px 0 var(--gold), 0 8px 22px rgba(37,33,58,.18);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.65);
  text-underline-offset: .25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.archive-jumps a:nth-child(2) { color: var(--ink); background: var(--sage); box-shadow-color: var(--wine); }
.archive-jumps a:hover { transform: translateX(5px) rotate(-1deg); box-shadow: 9px 9px 0 var(--gold); }
.archive-jumps span { font-family: Georgia, serif; font-size: 1.2rem; text-decoration: none; }

.repertoire-archive { margin-top: 6rem; }
.repertoire-archive > h2 { margin-top: 0; }
.repertoire-period {
  margin: .8rem 0;
  border-radius: 18px 6px 18px 6px;
  background: var(--sage-pale);
  box-shadow: 7px 7px 0 var(--sage-light);
  overflow: hidden;
}
.repertoire-period:nth-of-type(3n+2) { background: var(--gold-light); box-shadow-color: var(--wine-light); }
.repertoire-period:nth-of-type(3n) { background: var(--wine-light); box-shadow-color: var(--sage-pale); }
.repertoire-period summary {
  display: flex;
  padding: 1rem 1.2rem;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.repertoire-period summary::-webkit-details-marker { display: none; }
.repertoire-period summary::after { content: "+"; margin-left: auto; color: var(--wine); font-size: 1.7rem; font-weight: 850; line-height: 1; }
.repertoire-period[open] summary::after { content: "−"; }
.repertoire-period summary span { color: var(--wine-dark); font-family: "Noteworthy", "Marker Felt", "Segoe Print", Georgia, cursive; font-size: 1.45rem; font-weight: 850; }
.repertoire-period summary strong { color: var(--muted); font-size: .9rem; }
.repertoire-list { border-top: 1px solid rgba(120,37,91,.14); background: rgba(255,255,255,.66); }
.repertoire-row {
  display: grid;
  grid-template-columns: 105px minmax(0,1fr) minmax(150px,.55fr);
  gap: 1rem;
  padding: .75rem 1.2rem;
  align-items: baseline;
  border-bottom: 1px solid rgba(120,37,91,.1);
  line-height: 1.4;
}
.repertoire-row:last-child { border-bottom: 0; }
.repertoire-row time { color: var(--wine); font-size: .82rem; font-weight: 850; }
.repertoire-row strong { color: var(--muted); font-size: .88rem; }

.recruit-band { padding: 2rem; border: 0; border-radius: 30px 10px 30px 10px; background: var(--gold-light); box-shadow: 13px 13px 0 var(--sage); transform: rotate(-.6deg); }
.chef-profile { display: grid; grid-template-columns: minmax(190px, .7fr) minmax(0, 2fr); gap: clamp(1.5rem, 4vw, 3rem); margin: 3rem 0 3.5rem; padding: 2rem clamp(1.3rem, 4vw, 3rem); align-items: start; border-left: 9px solid var(--wine); border-radius: 8px 34px 8px 34px; background: var(--gold-light); box-shadow: 14px 14px 0 var(--sage-light); }
.chef-profile > img { width: 100%; max-height: 570px; object-fit: cover; object-position: center top; border-radius: 28px 8px 28px 8px; box-shadow: 9px 9px 0 var(--wine-light); }
.chef-profile h2 { margin: .15rem 0 .5rem; color: var(--wine); }
.chef-profile .chef-intro { margin-top: 0; color: var(--ink); font-size: 1.1rem; font-weight: 800; }
.chef-profile p:last-child { margin-bottom: 0; }
.recruitment-photo {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 42px 10px 42px 10px;
  box-shadow: 18px 18px 0 var(--wine-light), -10px -10px 0 var(--sage-light);
  transform: rotate(1deg);
}
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.contact-block { padding: 1.5rem; border: 0; border-radius: 28px 8px 28px 8px; background: var(--white); box-shadow: 0 14px 35px rgba(87,58,96,.1); }
.contact-block:nth-child(1) { border-top: 8px solid var(--sage); transform: rotate(-.7deg); }
.contact-block:nth-child(2) { border-top: 8px solid var(--gold); transform: translateY(1rem) rotate(.7deg); }
.contact-block:nth-child(3) { border-top: 8px solid var(--wine); background: var(--sage-pale); transform: rotate(-.4deg); }
.contact-block h2 { margin: 0 0 .4rem; font-size: 1.55rem; }
.contact-block a { color: var(--wine); font-weight: 750; }

.access-section { padding-top: 2.5rem; }
.access-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: 2rem; align-items: start; }
.access-login, .access-request { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 30px 8px 30px 8px; }
.access-login { background: var(--sage-light); box-shadow: 13px 13px 0 var(--gold-light); transform: rotate(-.6deg); }
.access-request { background: #f8f4fa; box-shadow: 13px 13px 0 var(--wine-light); }
.access-login h2, .access-request h2 { margin: .2rem 0 .7rem; }
.access-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.form-row { display: grid; gap: .35rem; }
.form-row-wide { grid-column: 1 / -1; }
.form-row label { color: var(--ink); font-weight: 800; }
.form-row label span { color: var(--muted); font-size: .84rem; font-weight: 500; }
.form-row input, .form-row textarea { width: 100%; padding: .8rem .9rem; border: 2px solid #d8cddd; border-radius: 8px; color: var(--ink); background: var(--white); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--wine); outline: 3px solid rgba(120,37,91,.14); }
.form-consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; }
.form-consent input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--wine); flex: 0 0 auto; }
.form-trap { position: absolute; left: -10000px; }
.form-status { margin: 1rem 0 0; padding: .8rem 1rem; border-left: 5px solid var(--sage); background: var(--white); font-weight: 750; }
.form-result { min-height: 100svh; display: grid; padding: 1.5rem; place-items: center; background: var(--sage-light); }
.form-result section { width: min(620px, 100%); padding: 2.5rem; border-radius: 30px 8px 30px 8px; background: var(--white); box-shadow: 15px 15px 0 var(--gold); }
.message-section { padding-top: 2.5rem; }
.message-panel { max-width: 820px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem); border: 3px solid var(--home-teal); border-radius: 8px; background: var(--white); box-shadow: 14px 14px 0 var(--home-gold); }
.message-panel h2 { margin: .2rem 0 .6rem; color: var(--home-coral); }
.message-form { margin-top: 2rem; }
.form-privacy { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.form-privacy a { color: var(--wine); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-content { display: grid; gap: 1.25rem; max-width: 980px; }
.legal-content > section { padding: clamp(1.4rem, 3vw, 2.25rem); border-left: 6px solid var(--home-gold); background: #f8f4fa; }
.legal-content > section:nth-of-type(even) { border-left-color: var(--home-coral); background: var(--sage-light); }
.legal-content h2 { margin: .15rem 0 1rem; color: var(--home-teal); }
.legal-content p, .legal-content li, .legal-content address { line-height: 1.7; }
.legal-content address { font-style: normal; }
.legal-content a { color: var(--wine); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { margin-bottom: 0; padding-left: 1.25rem; }
.legal-update { justify-self: end; color: var(--muted); font-size: .85rem; font-style: italic; }
.chorister-mockup-page { min-height: 100svh; background: linear-gradient(115deg, var(--home-teal) 0 63%, var(--home-coral) 63% 100%); }
.chorister-mockup { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); width: min(1180px, calc(100% - 3rem)); margin: auto; align-items: center; gap: clamp(2rem, 7vw, 6rem); }
.chorister-login { padding: clamp(1.5rem, 5vw, 4rem); border-top: 8px solid var(--home-gold); background: var(--home-paper); box-shadow: 18px 18px 0 rgba(37, 33, 58, .15); }
.chorister-login > img { display: block; width: 190px; height: auto; margin: -1rem 0 2rem; padding: .65rem; background: var(--home-teal); }
.chorister-login-copy h1 { margin: .15rem 0 .8rem; color: var(--ink); font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: .95; }
.chorister-login-copy > p:last-child { max-width: 610px; color: var(--muted); }
.chorister-login-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.chorister-login-form .button, .chorister-login-form .chorister-help, .chorister-login-form .form-status { grid-column: 1 / -1; }
.chorister-login-form .button { justify-self: start; }
.chorister-help { margin: .2rem 0 0; color: var(--muted); font-size: .9rem; }
.chorister-score { position: relative; min-height: 420px; display: grid; padding: 2rem; place-items: center; color: var(--white); }
.chorister-score span { position: absolute; color: var(--home-gold); font-family: Georgia, serif; font-size: clamp(2.5rem, 6vw, 5rem); transform: rotate(-8deg); }
.chorister-score span:nth-child(1) { left: 5%; top: 9%; }
.chorister-score span:nth-child(2) { right: 4%; top: 32%; transform: rotate(9deg); }
.chorister-score span:nth-child(3) { left: 18%; bottom: 8%; transform: rotate(5deg); }
.chorister-score p { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 4rem); font-style: italic; line-height: 1.35; }

@media (max-width: 760px) {
  .chorister-mockup { grid-template-columns: 1fr; width: calc(100% - 2rem); padding: 1rem 0; }
  .chorister-score { display: none; }
  .chorister-login-form { grid-template-columns: 1fr; }
}

.gallery-section { padding-top: 2.5rem; }
.gallery-heading { margin-bottom: 1.6rem; }
.gallery-heading h2 { margin: .15rem 0 0; }
.gallery-heading-seasons { margin-top: 5rem; }
.gallery-heading-seasons > p:last-child { max-width: 700px; margin: .55rem 0 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 28px 8px 28px 8px;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 11px 11px 0 var(--wine-light);
  cursor: zoom-in;
  text-align: left;
  transform: rotate(-.7deg);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: bubble-float 5.8s ease-in-out infinite;
}
.gallery-item:nth-child(3n+2) { background: var(--sage-light); box-shadow-color: var(--sage-pale); transform: rotate(.7deg); animation-delay: -1.8s; }
.gallery-item:nth-child(3n) { background: var(--wine-light); box-shadow-color: var(--gold-light); animation-delay: -3.1s; }
.gallery-item:hover { transform: translateY(-5px) rotate(0); box-shadow: 15px 15px 0 var(--gold); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item-portrait img { object-position: center 22%; }
.gallery-item-wide img { object-fit: contain; padding: 1rem; background: #fff; }
.gallery-item-poster img { object-fit: contain; padding: .75rem; background: #fff; }
.gallery-item span { display: flex; padding: .9rem 1rem 1rem; justify-content: space-between; gap: .8rem; font-weight: 750; }
.gallery-item b { color: var(--wine); }
.gallery-dialog {
  width: min(1000px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 24px 8px 24px 8px;
  color: var(--white);
  background: #17131b;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.gallery-dialog::backdrop { background: rgba(37,33,58,.84); backdrop-filter: blur(5px); }
.gallery-dialog img { width: 100%; max-height: calc(100svh - 7rem); object-fit: contain; }
.gallery-dialog p { margin: 0; padding: .8rem 1rem 1rem; text-align: center; font-weight: 750; }
.gallery-close { position: absolute; right: .7rem; top: .7rem; z-index: 1; width: 44px; height: 44px; border: 2px solid var(--white); border-radius: 50%; color: var(--white); background: var(--wine); font-size: 1.8rem; line-height: 1; cursor: pointer; }

.site-footer { padding: 2.5rem 0; color: rgba(255,255,255,.8); background: #38213f; }

@keyframes float-shapes {
  from { transform: translate3d(0,0,0) rotate(0); }
  to { transform: translate3d(-22px,-18px,0) rotate(5deg); }
}
@keyframes note-float {
  from { translate: 0 0; rotate: -4deg; }
  to { translate: 0 -14px; rotate: 5deg; }
}
@keyframes hero-arrive {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bubble-float {
  0%, 100% { translate: 0 0; }
  45% { translate: 0 -7px; }
  70% { translate: 3px -3px; }
}
.button,
.hero-news,
.forum-card,
.fact,
.recruit-band,
.contact-block,
.archive-jumps a,
.news-label {
  animation: bubble-float 4.8s ease-in-out infinite;
}
.hero-news, .forum-card:nth-child(2), .fact:nth-child(2), .contact-block:nth-child(2) { animation-delay: -1.4s; animation-duration: 5.4s; }
.forum-card:nth-child(3), .fact:nth-child(3), .archive-jumps a:nth-child(2) { animation-delay: -2.7s; animation-duration: 5.9s; }
.fact:nth-child(4), .recruit-band { animation-delay: -.8s; animation-duration: 6.2s; }
.reveal-ready .section-heading,
.reveal-ready .forum-card,
.reveal-ready .video-frame,
.reveal-ready .concert-details,
.reveal-ready .rehearsal-photo,
.reveal-ready .fact,
.reveal-ready .timeline-item,
.reveal-ready .recruit-band,
.reveal-ready .contact-block {
  opacity: 0;
  translate: 0 24px;
  transition: opacity .65s ease var(--reveal-delay, 0ms), translate .65s ease var(--reveal-delay, 0ms), transform .25s ease, box-shadow .25s ease;
}
.reveal-ready .is-visible { opacity: 1; translate: 0 0; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: center; }
.footer-grid p { margin: 0; }
.footer-grid a { color: var(--white); }
.footer-grid .facebook-link {
  display: inline-flex;
  min-height: 44px;
  padding: .55rem .8rem;
  gap: .55rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.footer-grid .facebook-link svg { width: 22px; height: 22px; flex: 0 0 auto; fill: currentColor; }
.footer-grid .facebook-link:hover { color: var(--home-teal); background: var(--white); transform: translateY(-2px); }
.footer-grid .facebook-link:focus-visible { outline: 3px solid var(--home-gold); outline-offset: 3px; }
.home-footer-grid { flex-wrap: nowrap; gap: clamp(.6rem, 1.2vw, 1.2rem); font-size: clamp(.78rem, 1vw, .94rem); }
.home-footer-grid p { white-space: nowrap; }
.home-footer-grid .facebook-link { min-height: 40px; padding: .45rem .65rem; gap: .4rem; }
.home-footer-grid .facebook-link svg { width: 20px; height: 20px; }

@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 94px;
    display: none;
    padding: .7rem 1rem 1rem;
    align-items: stretch;
    flex-direction: column;
    background: rgba(120,37,91,.98);
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .8rem; }
  .main-nav .private-link { margin-left: 0; text-align: center; }
  .forum-grid { grid-template-columns: 1fr; }
  .forum-card { min-height: auto; }
  .forum-card:nth-child(2) { transform: none; }
  .video-layout, .rehearsal-layout, .split { grid-template-columns: 1fr; }
  .access-layout { grid-template-columns: 1fr; }
  .chef-profile { grid-template-columns: 1fr; }
  .chef-profile > img { width: min(100%, 420px); max-height: 620px; justify-self: center; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .concert-details { border-left: 0; padding-left: 0; }
  .hero-notes span:nth-child(2) { display: none; }
  .archive-jumps { position: sticky; float: none; top: 82px; margin: .75rem 1rem 2rem; align-items: stretch; flex-direction: row; transform: none; }
  .archive-jumps a { min-width: 0; flex: 1; justify-content: center; }
}

@media (max-width: 560px) {
  .brand img { width: 158px; height: 70px; }
  .hero { min-height: 720px; }
  .hero-photo { background-position: 58% center; }
  .hero h1 { font-size: 2.75rem; }
  .hero-title { top: -.6rem; }
  .hero-title .eyebrow { right: 1%; top: calc(100% + .9rem); }
  .hero-top-actions { top: 4.7rem; left: -.2rem; gap: .5rem; }
  .hero-top-actions > .button { min-height: 36px; padding: .4rem .7rem; font-size: .78rem; }
  .hero-top-actions .hero-news { max-width: min(310px, calc(100vw - 2.5rem)); }
  .hero-content { top: auto; right: auto; bottom: 7rem; width: calc(100% - 1rem); padding: .9rem; }
  .hero-copy { margin-top: .65rem; font-size: 1rem; }
  .hero-tagline { left: 37%; top: 37%; max-width: 60%; margin: 0; font-size: .92rem; }
  .hero-tagline span + span { margin-left: 1.2rem; }
  .hero-news { align-items: flex-start; border-radius: 22px; }
  .hero-news strong { line-height: 1.35; }
  .hero-notes span { width: 44px; height: 44px; font-size: 1.35rem; opacity: .8; }
  #actualites .section-heading { padding: 1.4rem 1.2rem 1.6rem; box-shadow: 8px 9px 0 var(--wine-light); }
  .facts, .contact-grid { grid-template-columns: 1fr; }
  .access-form { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .season summary { align-items: flex-start; flex-direction: column; gap: .15rem; }
  .repertoire-row { grid-template-columns: 1fr; gap: .15rem; }
  .rehearsal-photo { min-height: 0; max-height: 650px; }
  .recruitment-banner { width: calc(100% - 1.5rem); margin-top: 1.4rem; border-width: 5px; box-shadow: 8px 9px 0 var(--home-gold); transform: none; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .home-footer-grid { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::after { animation: none; }
  .hero-notes span { animation: none; }
  .button, .hero-news, .forum-card, .fact, .recruit-band, .contact-block, .archive-jumps a, .news-label { animation: none; }
  .gallery-item { animation: none; }
}

/* Accueil epure, inspire du rythme editorial de l'Institut Strebler. */
:root {
  --home-teal: #126b61;
  --home-coral: #d94f5c;
  --home-gold: #f4c84a;
  --home-paper: #fffdf8;
}

.site-header {
  min-height: 88px;
  border-bottom: 0;
  background: linear-gradient(110deg, var(--home-teal) 0 58%, var(--home-coral) 100%);
  box-shadow: 0 8px 30px rgba(26, 72, 66, .13);
}
.page-hero,
.site-footer {
  color: var(--white);
  background: linear-gradient(110deg, var(--home-teal) 0 58%, var(--home-coral) 100%);
}
.site-footer { border-top: 5px solid var(--home-gold); }
.nav-shell { min-height: 88px; }
.brand img { width: 172px; height: 74px; }
.main-nav a { color: rgba(255, 255, 255, .9); }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a[aria-current="page"] { text-decoration-color: var(--home-gold); }
.main-nav .private-link { border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .08); }

.home-intro {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--home-paper);
}
.home-intro::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -170px;
  width: 430px;
  height: 430px;
  border: 54px solid rgba(244, 200, 74, .2);
  border-radius: 50%;
  pointer-events: none;
}
.home-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 225px minmax(390px, .9fr) minmax(390px, 1.1fr);
  gap: 2.5rem;
  width: min(1420px, calc(100% - 4rem));
  min-height: 560px;
  margin: auto;
  padding: 54px 0 42px;
  align-items: center;
}
.home-quick-links { display: flex; flex-direction: column; gap: 1rem; align-self: center; }
.quick-link {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  gap: .55rem;
  min-height: 66px;
  padding: .9rem 1rem;
  align-items: center;
  border-radius: 7px 24px 7px 24px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 8px 9px 0 rgba(18, 107, 97, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.quick-link:hover { transform: translateY(-3px); box-shadow: 11px 13px 0 rgba(18, 107, 97, .14); }
.quick-link > span { font-size: .7rem; font-weight: 850; opacity: .75; }
.quick-link strong { font-size: .9rem; line-height: 1.2; }
.quick-link > b { justify-self: end; font-size: 1.05rem; }
.quick-link small { grid-column: 2 / -1; margin-top: -.25rem; font-size: .7rem; line-height: 1.35; opacity: .9; }
.quick-news { background: var(--home-coral); }
.quick-video { background: var(--home-teal); }
.quick-featured { color: var(--ink); background: var(--home-gold); box-shadow-color: rgba(217, 79, 92, .16); }
.quick-join {
  display: flex;
  gap: .7rem;
  width: max-content;
  margin: .35rem 0 0 .7rem;
  padding-bottom: .28rem;
  align-items: center;
  border-bottom: 2px solid var(--home-teal);
  color: var(--home-teal);
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
}
.quick-join span { color: var(--home-coral); font-size: 1rem; }
.quick-join:hover { color: var(--home-coral); }

.home-intro-copy { max-width: 680px; padding-left: .5rem; }
.home-kicker {
  display: inline-flex;
  margin: 0 0 1.4rem;
  padding: .55rem .8rem;
  border-left: 5px solid var(--home-coral);
  color: var(--home-teal);
  background: rgba(18, 107, 97, .08);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-intro h1 {
  position: relative;
  max-width: 880px;
  margin: 0 0 1.5rem;
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(4.2rem, 5.2vw, 6rem);
  font-weight: 850;
  line-height: .78;
  letter-spacing: 0;
}
.home-intro h1 small {
  display: block;
  width: max-content;
  margin: 0 0 .65rem .3rem;
  padding: .32rem .7rem;
  border: 2px solid var(--home-coral);
  color: var(--home-coral);
  background: var(--home-paper);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.home-intro h1 > span {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  color: var(--ink);
  text-shadow: 5px 5px 0 rgba(217, 79, 92, .2);
  transform: rotate(-1deg);
}
.home-intro h1 em {
  position: relative;
  z-index: 0;
  display: block;
  width: max-content;
  margin: .2em 0 0 1.15em;
  color: var(--home-teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9em;
  font-weight: 400;
  font-style: italic;
  transform: rotate(1.5deg);
}
.home-intro h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: .02em;
  height: .15em;
  border-radius: 99px;
  background: var(--home-gold);
  transform: rotate(-2.5deg);
}
.home-slogan { margin: 0 0 1.2rem; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; line-height: 1.3; }
.home-slogan span { margin-left: 2.5rem; color: var(--home-coral); }
.home-lead { max-width: 610px; margin: -.35rem 0 0; color: var(--muted); font-size: 1.05rem; font-style: italic; line-height: 1.65; }
.home-join {
  display: inline-flex;
  gap: .8rem;
  margin-top: 1.65rem;
  padding-bottom: .3rem;
  align-items: center;
  border-bottom: 2px solid var(--home-teal);
  color: var(--home-teal);
  font-size: .88rem;
  font-weight: 850;
  text-decoration: none;
}
.home-join span { color: var(--home-coral); }
.rehearsal-burst {
  display: grid;
  width: 250px;
  min-height: 150px;
  margin: 1.5rem 0 0 2.2rem;
  padding: 2.2rem 2.1rem;
  place-content: center;
  color: var(--white);
  background: var(--home-coral);
  text-align: center;
  transform: rotate(-3deg);
  clip-path: polygon(50% 3%, 57% 15%, 68% 5%, 72% 18%, 87% 12%, 86% 27%, 100% 30%, 90% 42%, 100% 50%, 89% 58%, 99% 70%, 84% 73%, 86% 89%, 71% 84%, 66% 98%, 56% 87%, 47% 100%, 41% 87%, 29% 97%, 26% 82%, 11% 88%, 14% 72%, 0% 68%, 11% 56%, 0% 48%, 12% 40%, 2% 27%, 17% 25%, 15% 9%, 31% 16%, 39% 5%);
}
.rehearsal-burst span,
.rehearsal-burst strong { display: block; }
.rehearsal-burst span { font-size: .74rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.rehearsal-burst strong { margin-top: .3rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; line-height: 1.1; }
.home-visual {
  position: relative;
  margin: 0;
  align-self: center;
  transform: rotate(1.2deg);
}
.home-visual::before {
  content: "";
  position: absolute;
  inset: 14px -12px -14px 14px;
  z-index: -1;
  background: var(--home-gold);
}
.home-visual::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -12px;
  width: 42%;
  height: 18px;
  background: var(--home-coral);
}
.home-visual img,
.home-visual video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 7px solid var(--white);
  box-shadow: 0 18px 42px rgba(34, 28, 54, .18);
}
.home-visual video { background: #17131b; }
.home-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.35rem 6vw;
  color: var(--white);
  background: var(--home-teal);
  border-bottom: 7px solid var(--home-gold);
}
.home-ribbon p { margin: 0; padding: .25rem 2rem; border-right: 1px solid rgba(255, 255, 255, .25); }
.home-ribbon p:last-child { border-right: 0; }
.home-ribbon strong, .home-ribbon span { display: block; }
.home-ribbon strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; }
.home-ribbon span { margin-top: .25rem; color: rgba(255, 255, 255, .78); font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

#actualites { padding-top: 4.5rem; background: var(--home-paper); }
#actualites::before, #actualites::after, .section-white::before, .section-white::after { display: none; }
#actualites .section-heading {
  max-width: 880px;
  margin-bottom: 2.6rem;
  padding: 0 0 0 1.5rem;
  border-left: 7px solid var(--home-coral);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.news-label { color: var(--home-teal); background: transparent; padding: 0; transform: none; }
#actualites .section-heading h2 { color: var(--ink); }
.forum-grid { gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.forum-card, .forum-card:nth-child(2), .forum-card:nth-child(3) {
  min-height: 250px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  animation: none;
}
.forum-card:last-child { border-right: 0; }
.forum-card:nth-child(1) { border-top: 6px solid var(--home-coral); }
.forum-card:nth-child(2) { border-top: 6px solid var(--home-gold); }
.forum-card:nth-child(3) { border-top: 6px solid var(--home-teal); }
.forum-card:hover { transform: translateY(-4px); box-shadow: 0 15px 32px rgba(18, 107, 97, .08); }
.forum-card .time { background: var(--home-teal); }
.section-wine { background: var(--home-teal); }
.video-frame { box-shadow: 13px 14px 0 var(--home-gold); }
.concert-details { border-left-color: var(--home-coral); }
.section-white { background: var(--home-paper); }

@media (max-width: 1000px) {
  .main-nav { top: 88px; background: linear-gradient(125deg, var(--home-teal), var(--home-coral)); }
  .home-intro-inner { grid-template-columns: 220px minmax(0, 1fr); gap: 2.5rem; width: min(920px, calc(100% - 3rem)); }
  .home-visual { grid-column: 1 / -1; width: min(720px, 100%); margin: 0 auto 1rem; }
  .home-intro h1 { font-size: 4.85rem; }
}

@media (max-width: 900px) {
  .heritage-concert { grid-template-columns: 90px minmax(0, 1fr); }
  .heritage-poster { grid-column: 1 / -1; justify-self: center; width: min(330px, 100%); }
  .heritage-poster img { height: auto; max-height: none; }
}

@media (max-width: 700px) {
  .heritage-concert { grid-template-columns: 1fr; gap: 1rem; padding: 1.4rem; }
  .heritage-date { display: flex; align-items: baseline; gap: .55rem; text-align: left; border-right: 0; }
  .heritage-date strong { font-size: 2.7rem; }
  .heritage-date span { margin-top: 0; }
  .heritage-poster { grid-column: auto; width: 100%; }
  .site-header, .nav-shell { min-height: 78px; }
  .brand img { width: 150px; height: 66px; }
  .main-nav { top: 78px; }
  .home-intro::before { right: -185px; top: -210px; }
  .home-intro-inner { grid-template-columns: 1fr; gap: 2.2rem; width: calc(100% - 2rem); min-height: 0; padding: 2.4rem 0 2.7rem; }
  .home-intro-copy { order: 1; }
  .home-visual { order: 2; width: 100%; transform: rotate(.6deg); }
  .home-quick-links { order: 3; width: 100%; }
  .home-intro-copy { padding-left: 0; }
  .home-intro h1 { font-size: 3.35rem; }
  .home-intro h1 em { margin-left: .55em; }
  .home-slogan { font-size: 1.25rem; }
  .home-slogan span { margin-left: 1rem; }
  .rehearsal-burst { margin-left: auto; margin-right: auto; }
  .home-ribbon { grid-template-columns: 1fr; padding: 1rem 1.4rem; }
  .home-ribbon p { padding: .75rem 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .22); }
  .home-ribbon p:last-child { border-bottom: 0; }
  .forum-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .forum-card, .forum-card:nth-child(2), .forum-card:nth-child(3) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
}

/* Proposition d'accueil : direction editoriale contemporaine. */
.home-intro-inner {
  grid-template-columns: minmax(430px, .88fr) minmax(520px, 1.12fr);
  grid-template-areas:
    "copy visual"
    "links visual";
  gap: 1.6rem 4.5rem;
  min-height: 585px;
  padding: 34px 0 48px;
}
.home-intro-copy { grid-area: copy; align-self: end; max-width: 720px; padding: 2.2rem 0 0; }
.home-visual { grid-area: visual; width: 78%; justify-self: end; align-self: center; transform: translateX(-2rem) rotate(.8deg); }
.home-quick-links {
  grid-area: links;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  align-self: start;
  align-items: start;
}
.home-intro::before {
  right: auto;
  left: 4.5vw;
  top: 92px;
  width: 38%;
  height: 72px;
  border: 0;
  border-top: 1px solid rgba(18, 107, 97, .18);
  border-bottom: 1px solid rgba(18, 107, 97, .18);
  border-radius: 0;
  box-shadow: 0 17px 0 rgba(18, 107, 97, .12), 0 34px 0 rgba(18, 107, 97, .08);
}
.home-kicker {
  margin-bottom: 1.65rem;
  padding: 0 0 .4rem;
  border: 0;
  border-bottom: 3px solid var(--home-gold);
  background: transparent;
  letter-spacing: .14em;
}
.home-intro h1 { margin-bottom: 1.8rem; font-size: clamp(4.7rem, 6vw, 7rem); line-height: .82; }
.home-intro h1 small {
  margin: 0 0 .3rem;
  padding: .25rem .6rem;
  border: 2px solid var(--home-coral);
  background: transparent;
  font-size: .82rem;
  transform: rotate(-2deg);
}
.home-intro h1 > span {
  text-shadow:
    -1px 0 0 rgba(217, 79, 92, .2),
    1px 0 0 rgba(217, 79, 92, .2),
    0 -1px 0 rgba(217, 79, 92, .2),
    0 1px 0 rgba(217, 79, 92, .2),
    4px 4px 0 rgba(217, 79, 92, .11);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.025em;
  transform: rotate(-1deg);
}
.home-intro h1 em { margin: .16em 0 0 .38em; font-size: .82em; transform: none; }
.home-intro h1 em::after { left: -.05em; right: -.05em; bottom: .04em; height: .13em; transform: none; }
.home-slogan { margin-bottom: .9rem; font-size: 1.42rem; }
.home-slogan span { margin-left: 2rem; }
.home-lead { max-width: 570px; margin: 0; font-size: .98rem; }
.home-conductor-sketch {
  position: absolute;
  left: 43.5%;
  top: 214px;
  z-index: 2;
  width: 132px;
  height: auto;
  opacity: .43;
  pointer-events: none;
  transform: translateX(-50%) rotate(-2deg);
}
.rehearsal-burst {
  position: relative;
  top: auto;
  left: auto;
  z-index: 3;
  width: 250px;
  min-height: 150px;
  margin: 1.5rem 0 0 2.2rem;
  padding: 2.2rem 2.1rem;
  border: 0;
  clip-path: polygon(50% 3%, 57% 15%, 68% 5%, 72% 18%, 87% 12%, 86% 27%, 100% 30%, 90% 42%, 100% 50%, 89% 58%, 99% 70%, 84% 73%, 86% 89%, 71% 84%, 66% 98%, 56% 87%, 47% 100%, 41% 87%, 29% 97%, 26% 82%, 11% 88%, 14% 72%, 0% 68%, 11% 56%, 0% 48%, 12% 40%, 2% 27%, 17% 25%, 15% 9%, 31% 16%, 39% 5%);
  text-align: center;
  transform: rotate(-3deg);
  box-shadow: none;
}
.rehearsal-burst span { font-size: .7rem; }
.rehearsal-burst strong { margin-top: .4rem; font-size: 1.22rem; }
.rehearsal-burst small {
  display: block;
  margin-top: .48rem;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}
.rehearsal-burst-mobile { display: none; }
.quick-link {
  grid-template-columns: 1fr 18px;
  gap: .45rem;
  min-height: 112px;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: none;
  align-content: start;
  align-items: start;
  align-self: start;
}
.quick-link:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(18, 107, 97, .12); }
.quick-link > span { grid-column: 1 / -1; }
.quick-link strong { align-self: start; font-size: .9rem; }
.quick-link small { grid-column: 1 / -1; font-size: .68rem; }
.featured-links { grid-column: 1 / -1; display: grid; gap: .55rem; margin-top: .15rem; }
.featured-links a { position: relative; display: block; padding: .4rem 1.25rem .4rem .5rem; color: var(--ink); background: rgba(255, 255, 255, .52); font-size: .68rem; line-height: 1.3; text-decoration: none; }
.featured-links a:hover { background: rgba(255, 255, 255, .82); }
.featured-links b { display: block; color: var(--home-teal); font-size: .68rem; white-space: nowrap; }
.featured-links i { position: absolute; right: .42rem; top: 50%; color: var(--ink); font-style: normal; transform: translateY(-50%); }
#forums, #concert-boissy { scroll-margin-top: 110px; }
.quick-link > b { grid-column: 2; grid-row: 2; }
.quick-join { grid-column: 1 / -1; margin: .3rem 0 0; }
.home-visual::before { inset: .6rem 18px 18px -14px; background: var(--home-coral); }
.home-visual::after { left: auto; right: -14px; bottom: -14px; width: 52%; height: 14px; background: var(--home-gold); }
.home-visual img,
.home-visual video { height: auto; margin-top: 1.4rem; aspect-ratio: 4 / 3; border: 0; box-shadow: 0 22px 48px rgba(34, 28, 54, .17); }
.last-update { color: rgba(255,255,255,.9); font-size: .84rem; font-style: italic; }
.pwa-install {
  position: fixed;
  z-index: 30;
  right: 1rem;
  bottom: 1rem;
  padding: .85rem 1.1rem;
  border: 2px solid white;
  border-radius: 999px;
  color: white;
  background: var(--home-coral);
  box-shadow: 0 8px 24px rgba(34, 28, 54, .25);
  font: 800 .85rem/1.1 Inter, system-ui, sans-serif;
  cursor: pointer;
}
.pwa-install:hover { background: var(--home-teal); }

@media (max-width: 1100px) {
  .home-intro-inner { grid-template-columns: minmax(360px, .9fr) minmax(430px, 1.1fr); gap: 2.5rem; }
  .home-intro h1 { font-size: 4.7rem; }
  .home-conductor-sketch { display: none; }
}

@media (max-width: 820px) {
  .home-intro-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "notice" "visual" "links";
    width: calc(100% - 2rem);
    min-height: 0;
    padding: 3rem 0;
  }
  .home-intro::before { display: none; }
  .home-intro h1 { font-size: clamp(3.4rem, 15vw, 5rem); }
  .home-visual { width: 100%; padding-top: 0; transform: rotate(.6deg); }
  .rehearsal-burst-desktop { display: none; }
  .rehearsal-burst-mobile {
    display: grid;
    grid-area: notice;
    position: relative;
    top: auto;
    left: auto;
    width: min(250px, calc(100% - 1rem));
    margin: -.35rem 0 -.35rem 1rem;
  }
  .home-visual img,
  .home-visual video { margin-top: 0; }
}

@media (max-width: 560px) {
  .home-quick-links { grid-template-columns: 1fr; }
  .quick-link { min-height: 76px; }
  .quick-join { grid-column: auto; }
  .rehearsal-burst-mobile { width: min(250px, 100%); margin-left: 0; }
}
.cookie-consent{position:fixed;z-index:10000;left:1rem;right:1rem;bottom:1rem;display:flex;align-items:center;justify-content:space-between;gap:1.25rem;max-width:980px;margin:auto;padding:1rem 1.15rem;border:2px solid var(--green,#176c61);border-radius:14px;background:#fff;box-shadow:0 12px 40px rgba(0,0,0,.22);color:#222}.cookie-consent p{margin:.25rem 0;font-size:.92rem;line-height:1.4}.cookie-consent a{font-size:.82rem}.cookie-actions{display:flex;gap:.6rem;flex:none}.cookie-actions button,.cookie-manage{border:1px solid #176c61;border-radius:999px;background:#fff;color:#176c61;font-weight:800;cursor:pointer}.cookie-actions button{padding:.65rem .9rem}.cookie-actions button:last-child{background:#176c61;color:#fff}.cookie-manage{position:fixed;z-index:9998;left:.65rem;bottom:.65rem;padding:.35rem .65rem;font-size:.72rem;box-shadow:0 2px 10px rgba(0,0,0,.12)}@media(max-width:680px){.cookie-consent{display:block}.cookie-actions{margin-top:.8rem}.cookie-actions button{flex:1}}

/* Annonce de recrutement à droite du libellé du chœur. */
.home-heading-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.home-heading-row .home-kicker { flex: 1; min-width: 0; margin: 0; }
.home-heading-row .rehearsal-burst { flex: 0 0 250px; margin: 0; }
@media (max-width: 560px) {
  .home-heading-row { gap: .5rem; }
  .home-heading-row .rehearsal-burst { flex-basis: 200px; width: 200px; padding: 2rem 1.7rem; }
}

/* Réduire l’espace au-dessus du bandeau de recrutement. */
.home-intro-inner { padding-top: .5rem; }
.home-intro-copy { padding-top: 0; }
[data-expires][hidden], [data-expire-at][hidden] { display: none !important; }

/* Légende du concert : couleurs et typographie de la page d’accueil. */
.home-concert-caption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  padding: .9rem 1.2rem;
  border-top: 3px solid var(--home-gold);
  background: #faf7ef;
  color: var(--home-teal);
}
.home-concert-caption-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.2;
}
.home-concert-caption time {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .home-concert-caption { padding: .8rem .9rem; gap: .4rem .75rem; }
  .home-concert-caption time { font-size: .7rem; letter-spacing: .05em; }
}

/* Accès permanents et accueil des futurs choristes. */
.home-welcome-links { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
.home-welcome-links .quick-video { min-height: 92px; width: 100%; }
.home-welcome-links .quick-video > b { grid-row: 1; }
.home-welcome-links .quick-video small { font-size: .78rem; }
.home-welcome-links .quick-join { grid-column: auto; margin: 0; justify-self: center; }
.first-rehearsal-invite { grid-column: 1 / -1; position: relative; display: block; padding: .8rem 2.5rem .8rem 1rem; border-left: 3px solid var(--home-gold); color: var(--home-teal); text-decoration: none; background: #faf7ef; }
.first-rehearsal-invite strong { display: block; font: italic 1.35rem/1.25 Georgia, serif; }
.first-rehearsal-invite span { display: block; margin-top: .3rem; font-size: .85rem; line-height: 1.5; }
.first-rehearsal-invite b { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
.first-rehearsal-invite:hover { background: #f1ead9; }
.first-rehearsal { background: #faf7ef; scroll-margin-top: 100px; }
.first-rehearsal-heading { max-width: 680px; margin-bottom: 2rem; }
.first-rehearsal-heading h2 { margin: .4rem 0 1rem; color: var(--home-teal); font: 400 clamp(2rem, 4vw, 3rem)/1.15 Georgia, serif; }
.first-rehearsal-heading > p:last-child { font-size: 1.05rem; line-height: 1.65; }
.first-rehearsal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.first-rehearsal-grid article { border-top: 3px solid var(--home-gold); padding-top: 1rem; }
.first-rehearsal-grid h3 { margin: 0 0 .8rem; color: var(--home-teal); font: italic 1.5rem/1.2 Georgia, serif; }
.first-rehearsal-grid p { line-height: 1.7; }
@media (max-width: 820px) { .first-rehearsal-grid { grid-template-columns: 1fr; gap: 1.2rem; } }
@media (max-width: 380px) { .home-welcome-links { grid-template-columns: 1fr; } .home-welcome-links .quick-join { justify-self: start; margin: .3rem 0; } }

.first-rehearsal .eyebrow { color: var(--home-teal); }

/* Cartouche d’écoute clair, assorti à la palette de l’accueil. */
.home-welcome-links .quick-video { background: #e5eee8; color: #126b61; border-left: 3px solid var(--home-gold); }
.home-welcome-links .quick-video:hover { background: #d9e8de; }

.home-welcome-links .quick-repertoire { background: #f6edda; color: #126b61; border-left: 3px solid var(--home-coral); min-height: 92px; width: 100%; }
.home-welcome-links .quick-repertoire > b { grid-row: 1; }
.home-welcome-links .quick-repertoire small { font-size: .78rem; }
.home-welcome-links .quick-join { grid-column: 1 / -1; justify-self: start; margin: .25rem 0; }
.home-repertoire { background: #fff; scroll-margin-top: 100px; }
.home-repertoire .eyebrow { color: var(--home-teal); }
.home-repertoire h2 { margin: .4rem 0 1rem; color: var(--home-teal); font: 400 clamp(2rem,4vw,3rem)/1.15 Georgia,serif; }
.repertoire-intro { max-width: 700px; font-size: 1.05rem; line-height: 1.7; }
.repertoire-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; margin: 2rem 0; }
.repertoire-cards article { padding: 1.5rem; background: #f7f5ee; border-bottom: 3px solid var(--home-gold); }
.repertoire-cards article > span { color: var(--home-coral); font: 2rem Georgia,serif; }
.repertoire-cards h3 { color: var(--home-teal); font: italic 1.5rem/1.2 Georgia,serif; margin: .75rem 0; }
.repertoire-cards p { line-height: 1.7; }
.repertoire-listen { color: var(--home-teal); font-weight: 750; text-underline-offset: .3em; }
@media(max-width:820px) { .repertoire-cards { grid-template-columns: 1fr; } }

/* FAQ publique : réponses accessibles sans JavaScript. */
.home-welcome-links .quick-join { grid-column: auto; }
.home-faq-link { justify-self: end; color: var(--home-teal); font-weight: 750; text-underline-offset: .3em; }
.home-faq-link span { margin-left: .5rem; }
.home-faq { background: #faf7ef; scroll-margin-top: 100px; }
.home-faq .container { max-width: 960px; }
.home-faq .eyebrow { color: var(--home-teal); }
.home-faq h2 { margin: .4rem 0 1rem; color: var(--home-teal); font: 400 clamp(2rem,4vw,3rem)/1.15 Georgia,serif; }
.faq-intro { line-height: 1.7; margin-bottom: 2rem; }
.faq-list { border-top: 1px solid #b9cec3; }
.faq-item { border-bottom: 1px solid #b9cec3; }
.faq-item summary { position: relative; cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem .25rem; color: var(--home-teal); font-weight: 750; line-height: 1.5; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: .5rem; top: 1.15rem; font-size: 1.4rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: #edf2eb; }
.faq-item summary:focus-visible { outline: 2px solid var(--home-teal); outline-offset: 3px; }
.faq-answer { padding: 0 2rem 1rem .25rem; max-width: 800px; line-height: 1.75; }
.faq-answer p { margin: 0; }
.faq-answer a, .faq-contact a { color: var(--home-teal); text-underline-offset: .2em; }
.faq-contact { margin-top: 1.75rem; line-height: 1.7; }
@media(max-width:380px) { .home-faq-link { justify-self: start; } }

/* Accès rapides de l’accueil : quatre cartouches pastel harmonisées. */
.home-welcome-links { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: .75rem; }
.home-welcome-links .quick-link { display: grid; grid-template-columns: minmax(0, 1fr) 18px; grid-template-rows: auto auto; width: 100%; min-height: 96px; height: 100%; align-self: stretch; align-content: center; padding: 1rem; gap: .45rem .5rem; border-radius: 6px; color: var(--home-teal); }
.home-welcome-links .quick-link strong { grid-column: 1; grid-row: 1; line-height: 1.35; }
.home-welcome-links .quick-link small { grid-column: 1 / -1; grid-row: 2; margin: 0; font-size: .78rem; line-height: 1.4; }
.home-welcome-links .quick-link > b { grid-column: 2; grid-row: 1; align-self: center; }
.home-welcome-links .quick-sing { background: #f7e4df; border-left: 3px solid var(--home-coral); }
.home-welcome-links .quick-sing:hover { background: #f0d8d1; }
.home-welcome-links .quick-questions { background: #e8e5f1; border-left: 3px solid #9b8db5; }
.home-welcome-links .quick-questions:hover { background: #ddd8eb; }
.home-welcome-links .quick-link:focus-visible, .first-rehearsal-invite:focus-visible { outline: 3px solid var(--home-teal); outline-offset: 3px; }
.home-welcome-links .first-rehearsal-invite { margin-top: .15rem; border-radius: 6px; }
@media (max-width: 380px) { .home-welcome-links { grid-template-columns: 1fr; } .home-welcome-links .quick-link { min-height: 84px; } }
