:root {
  --paper: #e9d3b3;
  --paper-dark: #d7bc91;
  --red: #d80100;
  --ink: #111;
  --muted: #665f56;
  --white: #fff;
  --font-title: "Dosis", Arial, sans-serif;
  --font-body: "Roboto Slab", Georgia, serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 8px 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: none;
}

.main-nav {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 20px;
  max-width: 1240px;
  min-height: 150px;
  margin: 0 auto;
  padding: 10px 28px;
}

.brand {
  justify-self: center;
}

.brand img {
  width: 170px;
  max-height: 110px;
  object-fit: contain;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-cart-item {
  margin-left: auto;
}

.nav-cart-link,
.mobile-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-menu-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.cart-menu-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -10px;
  width: 10px;
  height: 8px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.cart-menu-icon::after {
  content: none;
}

.nav-cart-link {
  color: var(--white);
  text-shadow: none;
}

.nav-cart-link .cart-menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.cart-menu-count {
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 11px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-size: .72rem;
  line-height: 1;
  text-shadow: none;
}

.cart-menu-count[hidden] {
  display: none;
}

.nav-group a,
.menu-button {
  position: relative;
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--white);
  white-space: nowrap;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .35);
}

.nav-group a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: #b44231;
  transition: width .18s ease;
}

.nav-group a:hover::after,
.nav-group a:focus-visible::after,
.nav-group a.is-current::after {
  width: 100%;
}

.menu-button {
  display: none;
  justify-self: end;
  border: 2px solid var(--ink);
  background: transparent;
  padding: 8px 14px;
}

.mobile-links {
  display: none;
}

.hero {
  min-height: clamp(560px, 62vw, 720px);
  position: relative;
  background: var(--paper);
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 24px 20px 104px;
  margin-bottom: clamp(38px, 5vw, 72px);
}

.hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: calc(clamp(38px, 5vw, 72px) * -1);
  height: clamp(170px, 16vw, 330px);
  background:
    url("../img/site/Secteur-42-6-e1756486758134-1-e1756487236203.png") center bottom / 100% auto no-repeat,
    linear-gradient(to bottom, transparent 0 48%, var(--white) 48% 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  text-align: center;
  transform: translateY(-86px);
}

.hero-logo {
  width: min(880px, 90vw);
  margin: 0 auto -4px;
}

.hero h1 {
  margin: 0 auto 28px;
  font-family: var(--font-title);
  color: var(--white);
  font-size: clamp(2.2rem, 4.8vw, 4.55rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .02em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .45);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-light {
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
}

.compact-hero {
  min-height: 300px;
}

.account-hero {
  position: relative;
  display: block;
  min-height: 0;
  height: clamp(260px, 22vw, 320px);
  padding: 0;
  background-position: center bottom;
}

.account-hero > div {
  position: absolute;
  top: clamp(24px, 3.8vw, 54px);
  left: 20px;
  right: 20px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.account-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .9;
  letter-spacing: .03em;
  text-shadow: 0 5px 16px rgba(0,0,0,.26);
}

.account-hero p {
  max-width: 620px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.15;
}

.account-page {
  padding-top: 0;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: clamp(-72px, -5vw, -42px);
}

.account-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 8px solid var(--white);
  border-radius: 24px;
  background: #fffaf2;
  box-shadow: 0 18px 46px rgba(39, 27, 15, .12);
}

.account-panel h2 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: .9;
}

.account-session {
  grid-column: 1 / -1;
}

.account-session-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 28px;
  align-items: center;
}

.account-session-main > div > p:not(.event-month) {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.account-session-card {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 2px solid rgba(201, 45, 32, .2);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(39, 27, 15, .08);
}

.account-session-card[data-state="valid"] {
  border-color: rgba(37, 104, 70, .25);
  background: #effff6;
}

.account-session-card span,
.account-session-card small {
  color: var(--muted);
  font-weight: 800;
}

.account-session-card span {
  font-size: .78rem;
  text-transform: uppercase;
}

.account-session-card strong {
  color: var(--red);
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: .95;
}

.account-session-card[data-state="valid"] strong {
  color: #256846;
}

.account-card-status {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  border-color: #ffe463;
  background: linear-gradient(135deg, #fff7d5, #fffaf2);
}

.account-card-status[data-state="valid"] {
  border-color: #4fb07b;
  background: linear-gradient(135deg, #effff6, #fffaf2);
}

.account-card-status::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 24px;
  width: 74px;
  height: 74px;
  border: 7px solid currentColor;
  border-radius: 50%;
  opacity: .12;
}

.account-card-status[data-state="valid"] {
  color: #256846;
}

.account-card-status[data-state="missing"] {
  color: var(--red);
}

.account-card-status h2 {
  color: inherit;
}

.account-card-status p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.account-profile-panel {
  grid-column: 1 / -1;
}

.site-form {
  display: grid;
  gap: 14px;
}

.site-form label {
  display: grid;
  gap: 7px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
}

.site-form input {
  width: 100%;
  border: 2px solid #c7ad83;
  border-radius: 10px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.site-form input:disabled {
  color: #71695e;
  background: #f1eadf;
}

.site-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.35;
}

.site-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

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

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(199, 173, 131, .45);
}

.account-session .account-actions .button {
  min-height: 0;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: .95rem;
}

.account-session .form-status {
  margin-top: 8px;
  color: var(--muted);
  font-size: .95rem;
}

.account-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: -8px;
}

.account-tabs button {
  border: 2px solid rgba(21, 21, 21, .14);
  border-radius: 14px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(39, 27, 15, .07);
}

.account-tabs button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.member-reservations {
  margin-top: clamp(50px, 7vw, 90px);
}

.member-reservations-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.member-reservations-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .9;
}

.member-reservation-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  border: 2px solid var(--ink);
  border-radius: 7px;
  overflow: hidden;
}

.member-reservation-tabs button {
  border: 0;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.member-reservation-tabs button + button {
  border-left: 2px solid var(--ink);
}

.member-reservation-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
}

.member-reservation-tabs span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
}

.member-reservation-list {
  display: grid;
  gap: 14px;
}

.member-reservation {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #ead8bd;
  border-left: 7px solid #e2bc38;
  border-radius: 8px;
  background: #fffaf2;
}

.member-reservation[data-type="event"] {
  border-left-color: #2fa8cc;
}

.member-reservation[data-type="workshop"] {
  border-left-color: var(--red);
}

.member-reservation-date {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 20px 12px;
  border-right: 1px solid #ead8bd;
  background: var(--white);
  font-family: var(--font-title);
  text-transform: uppercase;
}

.member-reservation-date strong {
  font-size: 2.7rem;
  line-height: .8;
}

.member-reservation-date span {
  margin-top: 7px;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 800;
}

.member-reservation-date small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}

.member-reservation-content {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
}

.member-reservation-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.member-reservation-title h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.member-reservation-title a {
  color: var(--ink);
}

.member-reservation-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.member-reservation-badges span {
  border: 1px solid #c7ad83;
  border-radius: 12px;
  padding: 4px 9px;
  background: var(--white);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}

.member-reservation-badges span[data-status="confirmed"],
.member-reservation-badges span[data-status="paid"],
.member-reservation-badges span[data-status="cash_paid"] {
  border-color: #3d8b68;
  color: #276548;
}

.member-reservation-badges span[data-status="pending"],
.member-reservation-badges span[data-status="bank_transfer_pending"] {
  border-color: #c78a24;
  color: #9b5f04;
  background: #fff6df;
}

.member-reservation-badges span[data-status="cancelled"],
.member-reservation-badges span[data-status="failed"] {
  border-color: var(--red);
  color: var(--red);
}

.member-reservation-schedule {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-transform: capitalize;
}

.member-reservation-lines {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-reservation-lines li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  max-width: 560px;
  font-size: .86rem;
}

.member-reservation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 12px;
  border-top: 1px solid #ead8bd;
}

.member-reservation-meta p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.member-reservation-meta span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.member-reservation-meta strong {
  font-size: .84rem;
}

.member-ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-ticket-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red);
  border: 2px solid var(--red);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}

.member-ticket-pdf {
  background: #fffaf2;
  color: var(--ink);
  border-color: #e2cda8;
}

.member-reservation-empty {
  padding: 48px 0;
  text-align: center;
}

.member-reservation-empty h3 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: 2rem;
}

.ticket-page {
  padding: 48px 18px 90px;
  background: var(--white);
}

.ticket-page-status {
  text-align: center;
}

.digital-ticket {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 22px 52px rgba(39, 27, 15, .14);
}

.digital-ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 105px;
  padding: 16px 26px;
  background: var(--ink);
  color: var(--white);
}

.digital-ticket-header img {
  width: 118px;
  height: 76px;
  object-fit: contain;
}

.digital-ticket-header > div {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.digital-ticket-header p,
.digital-ticket-header strong {
  margin: 0;
}

.digital-ticket-header p {
  color: #d8d2cb;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.digital-ticket-header strong {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: .04em;
}

.digital-ticket-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.digital-ticket-main {
  padding: clamp(28px, 5vw, 54px);
}

.digital-ticket-main h2 {
  max-width: 620px;
  margin: 0 0 28px;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .88;
}

.digital-ticket-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
  margin: 0;
}

.digital-ticket-facts div {
  display: grid;
  gap: 3px;
}

.digital-ticket-facts dt {
  color: var(--red);
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.digital-ticket-facts dd {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.4;
}

.digital-ticket-items {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #d8c7aa;
}

.digital-ticket-items p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  font-size: .86rem;
}

.digital-ticket-code {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 30px;
  border-left: 2px dashed #c7ad83;
  background: var(--white);
  text-align: center;
}

.digital-ticket-code canvas {
  width: min(280px, 100%);
  height: auto;
  aspect-ratio: 1;
  background: var(--white);
  image-rendering: pixelated;
}

.digital-ticket-code strong {
  border: 1px solid #3d8b68;
  border-radius: 13px;
  padding: 5px 11px;
  color: #276548;
  font-family: var(--font-title);
  font-size: 1rem;
}

.digital-ticket-code strong[data-status="used"],
.digital-ticket-code strong[data-status="cancelled"],
.digital-ticket-code strong[data-status="refunded"] {
  border-color: var(--red);
  color: var(--red);
}

.digital-ticket-code span {
  color: var(--muted);
  font-size: .72rem;
}

.ticket-page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ticket-control-body {
  min-height: 100vh;
  background: var(--paper);
}

.ticket-control-page {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100vh;
  padding: 28px 18px;
}

.ticket-control-brand img {
  width: 130px;
  height: 84px;
  object-fit: contain;
}

.ticket-control-panel {
  width: min(620px, 100%);
  border: 6px solid var(--white);
  border-radius: 8px;
  padding: clamp(26px, 6vw, 54px);
  background: #fffaf2;
  box-shadow: 0 20px 50px rgba(39, 27, 15, .14);
}

.ticket-control-panel h1 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: .85;
}

.ticket-control-result {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  border-left: 7px solid #3d8b68;
  padding: 18px 20px;
  background: var(--white);
}

.ticket-control-result[data-state="used"],
.ticket-control-result[data-state="invalid"] {
  border-left-color: var(--red);
}

.ticket-control-result h2,
.ticket-control-result p {
  margin: 0;
}

.ticket-control-result h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.ticket-control-state {
  color: #276548;
  font-family: var(--font-title);
  font-size: 1.3rem;
}

.ticket-control-result[data-state="used"] .ticket-control-state,
.ticket-control-result[data-state="invalid"] .ticket-control-state {
  color: var(--red);
}

.ticket-control-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 14mm;
  }

  .site-header,
  .site-footer,
  .ticket-page-hero,
  .ticket-page-actions,
  .cart-drawer,
  .cart-drawer-backdrop,
  .ticket-page-status {
    display: none !important;
  }

  .ticket-page {
    padding: 0;
  }

  .digital-ticket {
    border: 2px solid #111;
    box-shadow: none;
    break-inside: avoid;
  }
}

.cart-page {
  padding: 42px 18px 90px;
  background: var(--white);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.cart-section-heading,
.cart-entry-actions,
.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.cart-section-heading {
  margin-bottom: 20px;
}

.cart-section-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: .9;
}

.cart-section-heading > span {
  font-weight: 800;
  color: var(--muted);
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-entry {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(199, 173, 131, .55);
  border-radius: 8px;
  background: #fffaf2;
}

.cart-entry-media,
.cart-entry-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.cart-entry-media img {
  display: block;
  object-fit: cover;
}

.cart-entry-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.cart-entry h3 {
  margin: 0 0 4px;
  font-family: var(--font-title);
  font-size: 1.8rem;
  line-height: 1;
}

.cart-entry p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.cart-entry ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-entry li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(199, 173, 131, .3);
}

.membership-cart-help {
  padding: 8px 10px;
  border: 1px solid rgba(191, 53, 37, .3);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-size: .88rem;
}

.membership-cart-help summary {
  color: var(--red);
  font-family: var(--font-title);
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
}

.membership-cart-help p {
  margin: 8px 0 0;
  color: var(--ink);
  line-height: 1.45;
}

.cart-drawer-entry .membership-cart-help {
  display: block;
  margin-top: 7px;
}

.cart-remove {
  border: 0;
  padding: 7px 0;
  background: transparent;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.cart-summary {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
  border: 2px solid #ead8bd;
  border-radius: 8px;
  padding: 22px;
  background: #fffaf2;
}

.cart-summary > div:last-of-type {
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 1.3rem;
}

.cart-summary .button {
  justify-content: center;
  width: 100%;
}

.cart-expiry {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.checkout-payment-methods {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-payment-methods legend {
  margin-bottom: 2px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
}

.checkout-payment-methods label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 2px solid #ead8bd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.checkout-payment-methods input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--red);
}

.checkout-payment-methods span,
.checkout-payment-methods strong,
.checkout-payment-methods small {
  display: block;
}

.checkout-payment-methods strong {
  font-family: var(--font-title);
  font-size: 1.05rem;
  line-height: 1.1;
}

.checkout-payment-methods small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}

.checkout-payment-methods label:has(input:checked) {
  border-color: var(--red);
  background: #fff5eb;
}

.cart-empty,
.cart-guest {
  padding: 34px 0;
  text-align: center;
}

.cart-empty h3,
.cart-guest h2 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 2.2rem;
}

.cart-status {
  margin-top: 18px;
}

.checkout-details {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 2px solid #ead8bd;
}

.checkout-details-heading {
  margin-bottom: 8px;
}

.checkout-details-heading h2 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: .95;
}

.checkout-details-heading > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-form .checkout-consent {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.5;
}

.site-form .checkout-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--red);
}

.checkout-payment-note {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.checkout-continue {
  justify-self: center;
  color: var(--ink);
  font-family: var(--font-title);
  font-weight: 800;
  text-decoration: underline;
}

.checkout-success {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 0;
  text-align: center;
}

.checkout-success h2 {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .9;
}

.checkout-success > p:not(.event-month) {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.checkout-references {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 30px 0;
  text-align: left;
}

.checkout-references article {
  display: grid;
  gap: 6px;
  border: 1px solid #ead8bd;
  border-radius: 8px;
  padding: 18px;
  background: #fffaf2;
}

.checkout-references strong {
  font-family: var(--font-title);
  font-size: 1.3rem;
}

.checkout-references span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.checkout-success .account-actions {
  justify-content: center;
}

body.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 17, 14, .42);
  opacity: 0;
  transition: opacity .22s ease;
}

.cart-drawer-backdrop.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 91;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(460px, 100vw);
  height: 100dvh;
  background: var(--white);
  box-shadow: -18px 0 45px rgba(32, 25, 19, .22);
  transform: translateX(105%);
  transition: transform .24s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 26px 22px;
  border-bottom: 1px solid #ead8bd;
  background: #fffaf2;
}

.cart-drawer-header h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2.5rem;
  line-height: .95;
}

.cart-drawer-header .event-month {
  margin-bottom: 5px;
}

.cart-drawer-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font: 700 2rem/1 var(--font-title);
  cursor: pointer;
}

.cart-drawer-body {
  overflow-y: auto;
  padding: 18px 26px;
}

.cart-drawer-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #ead8bd;
}

.cart-drawer-entry > div > a {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.05;
}

.cart-drawer-entry ul {
  display: grid;
  gap: 5px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.cart-drawer-entry li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .84rem;
}

.cart-drawer-entry li strong {
  color: var(--ink);
  white-space: nowrap;
}

.cart-drawer-remove {
  align-self: start;
  border: 0;
  padding: 3px 0;
  background: transparent;
  color: var(--red);
  font-family: var(--font-title);
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.cart-drawer-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 54px 4px;
}

.cart-drawer-empty h3,
.cart-drawer-empty p {
  margin: 0;
}

.cart-drawer-empty h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.cart-drawer-empty p {
  color: var(--muted);
  line-height: 1.55;
}

.cart-drawer-status {
  min-height: 0;
  margin: 0;
  padding: 0 26px;
  color: var(--muted);
  font-size: .82rem;
}

.cart-drawer-footer {
  display: grid;
  gap: 12px;
  padding: 20px 26px 24px;
  border-top: 1px solid #ead8bd;
  background: #fffaf2;
}

.cart-drawer-footer > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
}

.cart-drawer-footer .button {
  justify-content: center;
  width: 100%;
}

.cart-drawer-continue {
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.activity-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.activity-detail-media {
  border: 8px solid var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(35, 24, 15, .18);
  background: var(--white);
}

.activity-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.activity-detail-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .88;
}

.activity-detail-copy p:not(.event-month) {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
}

.activity-detail-body {
  padding: clamp(44px, 6vw, 86px) 20px;
  background:
    url("../img/site/Secteur-42-5.png") center top / 100% auto no-repeat,
    var(--white);
}

.activity-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 24px;
}

.activity-detail-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 8px solid var(--white);
  border-radius: 24px;
  background: #fffaf2;
  box-shadow: 0 18px 42px rgba(35, 24, 15, .1);
}

.activity-detail-panel h2,
.activity-detail-panel h3 {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .9;
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-facts p,
.detail-tickets p {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--white);
}

.detail-facts strong {
  color: var(--red);
  font-family: var(--font-title);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-date-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-date-block {
  display: grid;
  gap: 4px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(199, 173, 131, .55);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(216, 1, 0, .08), rgba(255, 255, 255, .92) 54%),
    var(--white);
  box-shadow: 0 12px 24px rgba(35, 24, 15, .06);
}

.activity-booking-summary .detail-facts .detail-date-block {
  display: grid;
  align-content: start;
}

.detail-date-block b {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: .95rem;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.detail-date-block strong {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: .94;
}

.detail-date-block span,
.detail-date-block em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.detail-date-block em {
  color: var(--red);
  font-family: var(--font-title);
  font-size: 1.25rem;
}

.detail-tickets {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.activity-detail-hero {
  position: relative;
  min-height: 0;
  height: clamp(380px, 42vh, 500px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: #111;
  color: var(--white);
}

.activity-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0 -4vw auto;
  height: clamp(140px, 13vw, 190px);
  background: url("../img/site/Secteur-42-6-e1756486758134-1-e1756487236203.png") center top / 100% auto no-repeat;
  pointer-events: none;
  z-index: 4;
}

.activity-detail-media {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #111;
}

.activity-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.34) 52%, rgba(0,0,0,.14) 100%),
    linear-gradient(0deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,.04) 72%);
}

.activity-detail-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  opacity: .9;
}

.activity-detail-copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: clamp(140px, 14vw, 190px);
  padding-bottom: clamp(44px, 6vw, 78px);
  text-align: center;
}

.activity-detail-copy h1 {
  margin: 0;
  max-width: 100%;
  color: var(--white);
  font-size: min(4.25rem, 4.75vw);
  line-height: .95;
  white-space: nowrap;
  text-shadow: 0 8px 28px rgba(0,0,0,.45);
}

.activity-detail-body {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  padding: 0 20px clamp(58px, 7vw, 96px);
  background:
    url("../img/site/Secteur-42-5.png") center top / 100% auto no-repeat,
    var(--white);
}

.activity-detail-grid {
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1fr) minmax(300px, .62fr);
  align-items: start;
}

.activity-detail-panel {
  border-radius: 18px;
  background: rgba(255, 250, 242, .98);
  box-shadow: 0 26px 70px rgba(35, 24, 15, .16);
}

.activity-detail-poster {
  display: grid;
  place-items: center;
  align-self: start;
  overflow: hidden;
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border-radius: 16px;
  background: var(--white);
}

.activity-detail-poster img {
  width: auto;
  max-width: 100%;
  max-height: min(620px, 72vh);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(35, 24, 15, .18);
}

.activity-detail-side {
  position: sticky;
  top: 176px;
}

.detail-facts p,
.detail-tickets p {
  border: 1px solid rgba(199, 173, 131, .55);
  box-shadow: 0 8px 20px rgba(35, 24, 15, .06);
}

.detail-tickets p,
.detail-ticket-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.detail-tickets p strong,
.detail-ticket-row strong {
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.detail-tickets p span,
.detail-ticket-row span {
  color: var(--red);
  font-family: var(--font-title);
  font-weight: 800;
}

.detail-tickets h3 {
  margin-top: 20px;
  font-size: 2rem;
}

.detail-seating {
  margin: 22px 0;
}

.detail-seating h3 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.public-seat-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 2px dashed rgba(199, 173, 131, .85);
  border-radius: 16px;
  background:
    linear-gradient(45deg, rgba(199,173,131,.15) 25%, transparent 25%, transparent 75%, rgba(199,173,131,.15) 75%),
    linear-gradient(45deg, rgba(199,173,131,.15) 25%, transparent 25%, transparent 75%, rgba(199,173,131,.15) 75%),
    #fff;
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
}

.public-seat-map.has-background {
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.public-seat-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: var(--seat-bubble-size, 28px);
  height: var(--seat-bubble-size, 28px);
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
  border-radius: 50%;
  padding: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-indent: 0;
  box-shadow: 0 5px 12px rgba(0,0,0,.22);
  cursor: pointer;
}

.public-seat-bubble.is-selected {
  background: #17afd2;
  box-shadow: 0 0 0 5px rgba(23,175,210,.22), 0 9px 20px rgba(0,0,0,.22);
}

.public-seat-bubble.is-confirmed {
  background: #1f8f4d;
  box-shadow: 0 0 0 6px rgba(31,143,77,.22), 0 9px 20px rgba(0,0,0,.22);
}

.public-seat-bubble.is-unavailable,
.public-seat-bubble:disabled {
  background: #c8c1b6;
  color: rgba(0,0,0,.45);
  cursor: not-allowed;
  opacity: .6;
  box-shadow: none;
}

.activity-detail-layout {
  display: grid;
  gap: clamp(22px, 4vw, 38px);
}

.activity-booking-card {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
  border: 8px solid var(--white);
  border-radius: 22px;
  padding: clamp(14px, 2vw, 22px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,250,242,.98)),
    #fffaf2;
  box-shadow: 0 26px 70px rgba(35, 24, 15, .16);
}

.activity-booking-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(10px, 2vw, 18px);
}

.activity-booking-summary h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: .9;
}

.activity-inline-description {
  border-radius: 18px;
  padding: clamp(18px, 2vw, 24px);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(35, 24, 15, .06);
}

.activity-inline-description h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.activity-inline-description p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.6;
}

.activity-inline-description p:last-child {
  margin-bottom: 0;
}

.activity-booking-summary .button {
  width: fit-content;
  margin-top: 4px;
}

.activity-booking-summary .detail-facts {
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, .9fr);
  gap: 12px;
  margin: 0;
}

.activity-booking-summary .detail-facts p {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(199, 173, 131, .55);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(35, 24, 15, .06);
}

.activity-booking-summary .detail-facts strong {
  font-size: .95rem;
}

.activity-booking-summary .detail-facts span {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.05;
}

.activity-booking-summary .detail-tickets {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(35, 24, 15, .06);
}

.activity-booking-summary .detail-tickets h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.activity-booking-summary .detail-tickets p,
.activity-booking-summary .detail-ticket-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  border: 0;
  border-top: 1px solid rgba(199, 173, 131, .36);
  border-radius: 0;
  padding: 12px 0;
  box-shadow: none;
}

.detail-ticket-name,
.detail-ticket-price {
  display: block;
}

.detail-ticket-price {
  white-space: nowrap;
}

.detail-ticket-description {
  display: block;
  max-width: 62ch;
  margin: 4px 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.4;
}

.detail-ticket-seat-hint {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 800;
}

.detail-tickets[hidden] {
  display: none;
}

.detail-tickets.is-locked {
  opacity: .58;
}

.detail-ticket-controls {
  display: grid;
  grid-template-columns: 38px 42px 38px;
  align-items: center;
  overflow: hidden;
  border: 2px solid rgba(199, 173, 131, .6);
  border-radius: 999px;
  background: #fffaf2;
}

.detail-ticket-controls button,
.detail-ticket-controls output {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
}

.detail-ticket-controls button {
  cursor: pointer;
}

.detail-ticket-controls button:hover {
  background: var(--red);
  color: var(--white);
}

.detail-action-status {
  margin: -6px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.detail-action-status[data-status="success"] {
  color: #1f8f4d;
}

.detail-action-status[data-status="error"] {
  color: var(--red);
}

.activity-detail-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
}

.activity-about-panel {
  min-height: 100%;
}

.detail-seating-panel:has(.detail-seating[hidden]) {
  display: none;
}

.detail-seating-panel {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 22px;
}

.detail-seating {
  margin: 0;
}

.detail-seating-instructions {
  margin: -4px 0 16px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.detail-seating-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  margin: 0 0 10px;
  color: var(--muted);
}

.detail-seating-price strong {
  color: var(--red);
  font-family: var(--font-title);
  font-size: 1.35rem;
}

.detail-seat-validate {
  margin-top: 16px;
}

.detail-seating h3 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.section-white {
  background: var(--white);
}

.activities {
  position: relative;
  padding: 48px 20px 92px;
  background-image: url("../img/site/Secteur-42-5.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
  margin-bottom: 0;
}

#activites,
#ateliers,
#actualites {
  scroll-margin-top: 150px;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.dream-band h2,
.project-band h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3.3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}

.section-heading span {
  position: relative;
  color: #c92d20;
}

.section-heading span::after {
  content: "";
  position: absolute;
  left: -12%;
  top: -12%;
  width: 126%;
  height: 124%;
  border: 4px solid currentColor;
  border-color: var(--ink);
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1320px);
  margin: 54px auto 0;
  align-items: start;
}

.activity-card {
  position: relative;
  text-align: center;
}

.activity-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  -webkit-mask: radial-gradient(circle at 50% 47%, #000 0 58%, transparent 59%);
  mask: radial-gradient(circle at 50% 47%, #000 0 58%, transparent 59%);
}

.activity-card h3 {
  position: static;
  margin: -8px 0 8px;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 1.65vw, 1.9rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: .09em;
  text-shadow: none;
}

.activity-card p {
  max-width: 240px;
  margin: 0 auto;
  font-size: clamp(.95rem, 1.25vw, 1.2rem);
  line-height: 1.35;
}

.activity-1 {
  margin-top: 30px;
}

.activity-2 {
  margin-top: 165px;
}

.activity-3 {
  margin-top: 62px;
}

.activity-4 {
  margin-top: 131px;
}

.activity-5 {
  margin-top: 46px;
}

.dream-band {
  position: relative;
  min-height: 0;
  aspect-ratio: 1921 / 681;
  display: grid;
  place-items: end center;
  padding: 0 20px clamp(46px, 5vw, 82px);
  margin-top: -1px;
  text-align: center;
  background: var(--white);
  overflow: visible;
}

.torn-stage {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
}

.dream-band h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-shadow: 0 3px 22px rgba(0, 0, 0, .7);
}

.project-band {
  padding: 18px 20px 112px;
  text-align: center;
  background: var(--paper);
}

.project-band h2 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.scribble {
  width: min(512px, 70vw);
  margin: 12px auto 26px;
}

.workshops {
  padding: 62px 20px 84px;
  background: var(--paper);
}

.workshop-carousel {
  position: relative;
  width: min(100%, 1240px);
  margin: 42px auto 0;
  padding: 0 56px;
}

.workshop-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 24vw, 310px);
  grid-template-rows: 190px;
  gap: 18px;
  width: min(100%, 1220px);
  margin: 0 auto;
  overflow-x: auto;
  padding: 6px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.workshop-grid::-webkit-scrollbar {
  display: none;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
  transform: translateY(-50%);
}

.carousel-button:first-child {
  left: 4px;
}

.carousel-button:last-child {
  right: 4px;
}

.workshop-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(83, 55, 22, .13);
  scroll-snap-align: center;
}

.workshop-card:first-child {
  grid-row: auto;
}

.workshop-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -2px;
  right: -2px;
  top: 0;
  height: 52px;
  background:
    linear-gradient(rgba(233, 211, 179, .6), rgba(233, 211, 179, .28)),
    url("../img/site/Secteur-42-6-e1756486758134-1-e1756487236203.png") center top / 150% 100% no-repeat;
  transform: rotate(.2deg);
  pointer-events: none;
}

.workshop-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 43%;
  height: 70px;
  background: url("../img/site/Secteur-42-5.png") left top / 260px auto no-repeat;
  filter: contrast(1.3);
  pointer-events: none;
}

.workshop-card img {
  width: 100%;
  height: 100%;
  min-height: 116px;
  object-fit: cover;
  transition: transform .2s ease;
}

.workshop-card:hover img {
  transform: scale(1.035);
}

.workshop-card span {
  position: absolute;
  z-index: 3;
  left: 12px;
  right: 10px;
  top: 10px;
  font-family: var(--font-title);
  font-size: clamp(.72rem, .85vw, .92rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, .7);
}

.workshop-card strong {
  display: block;
  color: #e3312a;
  font: inherit;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(100%, var(--max));
  margin: 70px auto 0;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 58px;
  box-shadow: 0 18px 45px rgba(38, 25, 12, .18);
}

.events {
  position: relative;
  padding: clamp(170px, 18vw, 340px) 20px 95px;
  background: var(--white);
}

.events::before {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: 0;
  height: clamp(170px, 16vw, 330px);
  background:
    url("../img/site/Secteur-42-6-e1756486758134-1-e1756487236203.png") center top / 100% auto no-repeat,
    linear-gradient(to bottom, transparent 0 48%, var(--white) 48% 100%);
  pointer-events: none;
}

.torn-line { display: none; }

.event-panel {
  width: min(100%, 900px);
  margin: 55px auto 0;
  padding: 34px;
  border: 12px solid var(--paper);
  border-radius: 54px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.calendar-board {
  width: min(100%, 980px);
  margin: 48px auto 0;
  padding: 26px;
  border: 10px solid var(--paper);
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
}

.calendar-head button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font: inherit;
  line-height: 1;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar-grid span {
  font-family: var(--font-title);
  font-weight: 800;
  text-align: center;
}

.calendar-grid time {
  min-height: 72px;
  padding: 8px;
  border: 2px solid #ead8bd;
  border-radius: 12px;
  background: #fffaf2;
  font-weight: 700;
}

.calendar-grid time.muted {
  color: #a18b6a;
  background: #f7eddd;
}

.calendar-grid .has-event {
  border-color: var(--event-color, var(--red));
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--event-color, var(--red)) 16%, transparent);
}

.calendar-grid a {
  display: block;
  margin-top: 5px;
  color: var(--event-color, var(--red));
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.calendar-grid .type-workshop {
  --event-color: var(--red);
}

.calendar-grid .type-activity {
  --event-color: #d6aa00;
}

.calendar-grid .type-event {
  --event-color: #1f6bd8;
}

.event-month {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 6px;
  color: #bd651f;
  border-bottom: 3px solid currentColor;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
}

.site-footer {
  position: relative;
  margin-top: clamp(110px, 13vw, 250px);
  padding-top: 56px;
  color: var(--ink);
  background: var(--paper);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: calc(clamp(110px, 13vw, 250px) * -1);
  height: clamp(170px, 16vw, 330px);
  background:
    url("../img/site/Secteur-42-6-e1756486758134-1-e1756487236203.png") center top / 100% auto no-repeat,
    linear-gradient(var(--white), var(--white));
  transform: rotate(180deg);
  pointer-events: none;
}

.footer-social {
  position: relative;
  z-index: 1;
  padding: 0 20px 34px;
  text-align: center;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-social a {
  border-bottom: 2px solid currentColor;
}

.facebook {
  color: #4c7ff4;
}

.instagram {
  color: #ef3993;
}

.tiktok {
  color: #ff3030;
}

.footer-main {
  display: grid;
  grid-template-columns: .75fr 1.35fr .9fr;
  gap: 48px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 35px 20px 55px;
}

.footer-logo {
  width: min(260px, 100%);
  justify-self: center;
}

.site-footer h2 {
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.site-footer p {
  margin: 8px 0;
  font-size: 1.1rem;
}

.site-footer address {
  font-style: normal;
  text-align: center;
}

.hours p {
  margin: 3px 0;
}

.copyright {
  margin: 0;
  padding: 16px 20px 24px;
  text-align: center;
  font-size: .95rem;
}

.page-hero {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 90px 20px 105px;
  text-align: center;
  background: var(--paper) url("../img/site/Copie-de-Canevas-Atelier-7-scaled.png") center bottom / cover no-repeat;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: .08em;
}

.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.activities-page-hero {
  position: relative;
  min-height: clamp(155px, 11vw, 220px);
  padding: 0;
  background: var(--paper);
}

.activities-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(120px, 9vw, 180px);
  background:
    url("../img/site/Secteur-42-6-e1756486758134-1-e1756487236203.png") center bottom / 100% 100% no-repeat,
    var(--white);
  pointer-events: none;
}

.activities-page-hero img {
  width: min(780px, 78vw);
  margin: 0 auto;
}

.ateliers-page-hero {
  min-height: clamp(132px, 9vw, 190px);
}

.activity-directory {
  position: relative;
  scroll-margin-top: 170px;
  margin-top: -1px;
  padding: 56px 20px 118px;
  background:
    url("../img/site/Secteur-42-5.png") center top / 100% auto no-repeat,
    var(--white);
  overflow: hidden;
}

.activity-directory::before,
.activity-directory::after {
  content: none;
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 230px;
  background: url("../img/site/Secteur-42-5.png") center / contain no-repeat;
  opacity: .55;
  pointer-events: none;
}

.activity-directory::before {
  left: -92px;
  top: 56px;
}

.activity-directory::after {
  right: -96px;
  bottom: 36px;
  transform: rotate(180deg);
}

.activity-directory .section-heading,
.directory-intro,
.activity-options {
  position: relative;
  z-index: 1;
}

.activity-directory .section-heading h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  line-height: .95;
  letter-spacing: .05em;
}

.activity-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  width: min(100%, 1240px);
  margin: 104px auto 0;
  align-items: start;
}

.activity-option-card {
  --option-color: var(--red);
  --option-soft: rgba(216, 1, 0, .12);
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0 6px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.activity-option-card::before {
  content: none;
}

.activity-option-card::after {
  content: none;
}

.activity-option-logo {
  position: relative;
  z-index: 1;
  width: min(224px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 0;
  box-shadow: 0 16px 38px rgba(48, 31, 14, .16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.activity-option-card:hover,
.activity-option-card:focus-visible {
  transform: translateY(-7px);
  outline: none;
}

.activity-option-card:hover .activity-option-logo,
.activity-option-card:focus-visible .activity-option-logo {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 22px 46px rgba(48, 31, 14, .22);
}

.activity-option-card.is-active .activity-option-logo {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(48, 31, 14, .24),
    0 0 0 5px var(--white),
    0 0 0 9px var(--option-color);
}

.activity-option-card.is-active strong {
  color: var(--option-color);
}

.option-concerts {
  --option-color: #111;
  --option-soft: rgba(0, 0, 0, .1);
}

.option-stages {
  --option-color: #d6aa00;
  --option-soft: rgba(214, 170, 0, .15);
}

.option-events {
  --option-color: #1f6bd8;
  --option-soft: rgba(31, 107, 216, .13);
}

.option-activities,
.option-meetings {
  --option-color: var(--red);
  --option-soft: rgba(216, 1, 0, .12);
}

.activity-option-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: .95;
  letter-spacing: .08em;
}

.activity-option-card em {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: .95rem;
  line-height: 1.42;
}

.activity-results {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 78px auto 0;
  scroll-margin-top: 170px;
}

.activity-results-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.activity-results h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: .06em;
}

.activity-results-head p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.activity-results-list {
  display: grid;
  gap: 18px;
}

.activity-result-card {
  --result-color: var(--red);
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 16px;
  border: 5px solid var(--paper);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(54, 35, 16, .13);
}

.activity-result-poster {
  position: relative;
  display: block;
  min-height: 218px;
  overflow: hidden;
  border-radius: 13px;
  background: var(--paper);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .86);
}

.activity-result-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .18));
  pointer-events: none;
}

.activity-result-poster img {
  width: 100%;
  height: 100%;
  min-height: 218px;
  object-fit: cover;
  transition: transform .2s ease;
}

.activity-result-card:hover .activity-result-poster img {
  transform: scale(1.04);
}

.activity-result-date {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 0;
  padding: 10px 14px;
  border: 2px solid color-mix(in srgb, var(--result-color) 28%, var(--paper));
  border-radius: 999px;
  background: color-mix(in srgb, var(--result-color) 10%, var(--white));
  color: var(--ink);
  font-family: var(--font-title);
  text-align: left;
}

.activity-result-date span {
  color: var(--result-color);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: .06em;
}

.activity-result-date strong {
  font-size: .98rem;
  line-height: 1.08;
}

.activity-result-content {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 10px 10px 10px 0;
}

.activity-result-content h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: .95;
  letter-spacing: .06em;
}

.activity-result-content p {
  margin: 0;
}

.activity-result-meta {
  color: var(--result-color);
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
}

.activity-result-link {
  width: max-content;
  margin-top: 8px;
  color: var(--result-color);
  border-bottom: 3px solid currentColor;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
}

.result-stages {
  --result-color: #d6aa00;
}

.result-concerts {
  --result-color: #1f9bc5;
}

.result-activites {
  --result-color: #d6aa00;
}

.result-evenements {
  --result-color: #1f9bc5;
}

.result-reunions {
  --result-color: var(--red);
}

.activity-empty {
  margin: 0;
  padding: 28px;
  border: 5px solid var(--paper);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  text-align: center;
  font-weight: 700;
}

.workshop-directory {
  position: relative;
  margin-top: -1px;
  padding: 54px 20px 110px;
  background:
    url("../img/site/Secteur-42-5.png") center top / 100% auto no-repeat,
    var(--white);
}

.workshop-directory .section-heading h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  line-height: .95;
  letter-spacing: .05em;
}

.workshop-layout {
  display: block;
  width: min(100%, 1320px);
  margin: 74px auto 0;
}

.workshop-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.workshop-option-card {
  position: relative;
  display: block;
  align-self: start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  perspective: 1100px;
}

.workshop-flip-inner {
  position: relative;
  display: block;
  transform-style: preserve-3d;
  transition: transform .58s cubic-bezier(.2, .72, .18, 1);
}

.workshop-option-card:hover .workshop-flip-inner,
.workshop-option-card:focus-visible .workshop-flip-inner {
  transform: translateY(-5px);
}

.workshop-option-card.is-flipped .workshop-flip-inner,
.workshop-option-card.is-flipped:hover .workshop-flip-inner,
.workshop-option-card.is-flipped:focus-visible .workshop-flip-inner {
  transform: rotateY(180deg);
}

.workshop-face {
  display: grid;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(54, 35, 16, .17);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.workshop-face-front {
  grid-template-rows: auto auto;
  background: var(--white);
  color: var(--white);
}

.workshop-face-back {
  position: absolute;
  inset: 0;
}

.workshop-face-front::before {
  content: none;
}

.workshop-option-card img {
  grid-row: 1;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  background: var(--white);
}

.workshop-card-title {
  position: relative;
  z-index: 3;
  grid-row: 2;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 15px 18px 18px;
  background: var(--white);
  color: var(--ink);
}

.workshop-card-title strong {
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 1.75vw, 2rem);
  line-height: .96;
  letter-spacing: .06em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.workshop-card-title em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
  line-height: 1.28;
}

.workshop-face-back {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)),
    var(--paper);
  color: var(--ink);
  transform: rotateY(180deg);
}

.workshop-back-eyebrow {
  color: var(--red);
  font-family: var(--font-title);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.workshop-face-back > strong {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 1.75vw, 1.95rem);
  line-height: .96;
  letter-spacing: .06em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.workshop-back-description {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.workshop-back-info {
  display: grid;
  gap: 6px;
  margin-top: 0;
}

.workshop-back-info > span {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 8px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .7);
}

.workshop-back-info b {
  color: var(--red);
  font-family: var(--font-title);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workshop-back-info span span {
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.25;
}

.workshop-back-link {
  position: relative;
  z-index: 1;
  justify-self: start;
  margin-top: 2px;
  color: var(--red);
  border-bottom: 3px solid currentColor;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.news-page-hero {
  min-height: clamp(118px, 8vw, 170px);
}

.news-page {
  position: relative;
  margin-top: -1px;
  padding: 58px 20px 112px;
  background:
    url("../img/site/Secteur-42-5.png") center top / 100% auto no-repeat,
    var(--white);
}

.news-heading h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  line-height: .95;
  letter-spacing: .05em;
}

.news-intro {
  width: min(100%, 760px);
  margin: 48px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 700;
  text-align: center;
}

.news-list {
  display: grid;
  gap: 16px;
  width: min(100%, 1120px);
  margin: 34px auto 0;
}

.news-card {
  --news-color: var(--red);
  display: grid;
  grid-template-columns: minmax(220px, 310px) 1fr;
  overflow: hidden;
  border: 6px solid var(--paper);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 44px rgba(54, 35, 16, .14);
}

.news-card:first-child {
  grid-template-columns: minmax(240px, 340px) 1fr;
  border-color: var(--red);
}

.news-presse {
  --news-color: #1f6bd8;
}

.news-evenement {
  --news-color: #d6aa00;
}

.news-card-media {
  min-height: 210px;
  background: var(--paper);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.news-card-content {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 22px;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: .08em;
}

.news-card-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--news-color);
  color: var(--white);
}

.news-card-meta time {
  color: var(--news-color);
}

.news-card h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  line-height: .9;
  letter-spacing: .05em;
}

.news-card-source {
  margin: 0;
  color: var(--news-color);
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
}

.news-card-excerpt {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.news-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.news-card-actions a,
.news-card-actions button {
  padding: 0;
  border: 0;
  border-bottom: 3px solid currentColor;
  background: transparent;
  color: var(--news-color);
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.page-content {
  padding: 78px 20px 100px;
  background: var(--white);
}

.page-content.paper {
  background: var(--paper);
}

.page-title-heading {
  margin-bottom: 42px;
}

.page-title-heading h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: .9;
  letter-spacing: .05em;
}

.content-wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.info-card {
  padding: 26px;
  border: 8px solid var(--paper);
  border-radius: 48px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.paper .info-card {
  border-color: var(--white);
}

.info-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 34px;
  margin-bottom: 18px;
}

.info-card h2,
.split-content h2 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: .06em;
}

.info-card p,
.split-content p {
  margin: 0 0 12px;
}

.split-content {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.split-content img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: 60px;
}

.form-box {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 8px solid var(--paper);
  border-radius: 40px;
  background: var(--white);
}

.form-box label {
  display: grid;
  gap: 6px;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  border: 2px solid #c7ad83;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fffaf2;
}

.form-box select {
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.contact-page {
  padding-top: 64px;
}

.contact-page-hero,
.about-page-hero {
  min-height: clamp(145px, 10vw, 200px);
}

.contact-details {
  padding: 32px;
  border: 8px solid var(--paper);
  border-radius: 36px;
  background: #fffaf2;
  box-shadow: 0 18px 42px rgba(54, 35, 16, .10);
}

.contact-details a {
  border-bottom: 2px solid currentColor;
}

.contact-note {
  color: var(--muted);
  font-weight: 700;
  text-align: justify;
}

.about-page {
  position: relative;
  padding-top: 64px;
  background:
    url("../img/site/Secteur-42-5.png") center top / 100% auto no-repeat,
    var(--white);
}

.about-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 42px;
}

.about-entry-card,
.about-panel,
.about-text-block,
.about-team,
.about-timeline {
  border: 7px solid var(--paper);
  border-radius: 30px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(54, 35, 16, .12);
}

.about-entry-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}

.about-entry-card:hover,
.about-entry-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--red);
}

.about-entry-card span,
.about-kicker {
  color: var(--red);
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-entry-card h2,
.about-panel h2,
.about-text-block h2,
.about-team h2,
.about-timeline h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 3.2vw, 3.15rem);
  line-height: .95;
  letter-spacing: .05em;
}

.about-entry-card p,
.about-panel p,
.about-text-block p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: justify;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 30px;
  align-items: start;
  margin-top: 26px;
  padding: 34px;
}

.about-panel-red {
  border-color: var(--red);
  background: #fff8f6;
}

.about-kicker {
  margin: 0 0 10px;
  font-size: 1rem;
}

.about-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fffaf2;
  font-weight: 800;
}

.about-list li::before {
  content: "";
  display: inline-block;
  width: .6em;
  height: .6em;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
}

.about-text-block,
.about-timeline,
.about-team {
  margin-top: 26px;
  padding: 34px;
}

.about-text-block p {
  max-width: 940px;
  margin-top: 12px;
}

.timeline-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.timeline-grid article,
.team-grid article {
  padding: 16px;
  border-radius: 18px;
  background: #fffaf2;
}

.timeline-grid strong,
.team-grid strong {
  display: block;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 1.45rem;
  line-height: 1;
}

.timeline-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
  text-align: justify;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .main-nav {
    grid-template-columns: auto 1fr auto;
    min-height: 104px;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    width: 128px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .mobile-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    margin: 0;
    padding: 10px 24px 22px;
    list-style: none;
    background: var(--paper);
    box-shadow: 0 16px 26px rgba(0, 0, 0, .12);
  }

  .mobile-links.is-open {
    display: grid;
  }

  .mobile-links a {
    display: block;
    padding: 10px 0;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
  }

  .activities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 60px;
  }

  .activity-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-option-card,
  .option-concerts,
  .option-events,
  .option-activities,
  .option-meetings {
    grid-column: auto;
  }

  .activity-card {
    margin-top: 0;
  }

  .gallery-strip,
  .footer-main,
  .content-grid,
  .split-content {
    grid-template-columns: 1fr 1fr;
  }

  .workshop-grid {
    grid-template-columns: none;
    grid-auto-columns: clamp(210px, 42vw, 300px);
  }

  .workshop-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card,
  .news-card:first-child {
    grid-template-columns: minmax(220px, 300px) 1fr;
  }

  .about-entry-grid,
  .about-panel,
  .timeline-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

  .account-session-main {
    grid-template-columns: 1fr;
  }

  .account-session-card {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .main-nav {
    padding: 8px 16px;
  }

  .hero {
    min-height: 620px;
    padding: 35px 16px 85px;
  }

  .hero-inner {
    transform: translateY(-42px);
  }

  .activities {
    padding-bottom: 70px;
  }

  .activities-page-hero {
    min-height: 128px;
    padding: 0;
  }

  .activity-directory {
    padding: 54px 16px 82px;
  }

  .activity-options {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .activity-option-card {
    grid-template-columns: 96px 1fr;
    align-items: center;
    justify-items: start;
    gap: 18px;
    padding: 0;
    text-align: left;
  }

  .activity-option-logo {
    width: 96px;
    border-width: 5px;
  }

  .activity-option-card strong {
    font-size: 1.7rem;
  }

  .activity-results {
    margin-top: 54px;
  }

  .activity-result-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .activity-result-poster,
  .activity-result-poster img {
    min-height: 220px;
  }

  .activity-result-date {
    min-height: 0;
  }

  .activity-result-content {
    padding: 2px;
  }

  .activities-grid,
  .account-grid,
  .cart-layout,
  .activity-detail-hero,
  .activity-detail-grid,
  .form-two,
  .gallery-strip,
  .footer-main,
  .content-grid,
  .split-content,
  .about-entry-grid,
  .about-panel,
  .timeline-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .account-grid {
    margin-top: -34px;
  }

  .account-session-card {
    max-width: none;
  }

  .account-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -4px;
  }

  .account-tabs button {
    padding: 12px 14px;
    text-align: left;
  }

  .cart-entry {
    grid-template-columns: 1fr;
  }

  .member-reservations-heading,
  .member-reservation-title {
    align-items: stretch;
    flex-direction: column;
  }

  .member-reservation-tabs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-reservation {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .member-reservation-date {
    padding: 16px 8px;
  }

  .member-reservation-date strong {
    font-size: 2rem;
  }

  .member-reservation-content {
    padding: 17px 15px;
  }

  .member-reservation-badges {
    justify-content: flex-start;
  }

  .digital-ticket-header {
    padding: 14px 18px;
  }

  .digital-ticket-header img {
    width: 88px;
  }

  .digital-ticket-header strong {
    font-size: .95rem;
  }

  .digital-ticket-body {
    grid-template-columns: 1fr;
  }

  .digital-ticket-facts {
    grid-template-columns: 1fr;
  }

  .digital-ticket-code {
    border-top: 2px dashed #c7ad83;
    border-left: 0;
  }

  .cart-entry-media,
  .cart-entry-media img {
    min-height: 190px;
    max-height: 260px;
  }

  .cart-summary {
    position: static;
  }

  .account-panel {
    border-width: 5px;
  }

  .detail-facts p,
  .detail-tickets p,
  .detail-ticket-row {
    grid-template-columns: 1fr;
  }

  .detail-date-card {
    grid-template-columns: 1fr;
  }

  .activity-detail-hero {
    height: 340px;
    padding: 0 18px;
  }

  .activity-detail-copy {
    padding-top: 132px;
    padding-bottom: 44px;
  }

  .activity-detail-copy h1 {
    font-size: min(2.1rem, 7.2vw);
  }

  .activity-detail-body {
    margin-top: -34px;
  }

  .activity-detail-side {
    position: static;
  }

  .activity-booking-card,
  .activity-detail-main {
    grid-template-columns: 1fr;
  }

  .activity-booking-card {
    padding: 12px;
  }

  .activity-booking-card .activity-detail-poster,
  .activity-booking-card .activity-detail-poster img {
    min-height: 320px;
  }

  .activity-booking-summary .detail-facts {
    grid-template-columns: 1fr;
  }

  .activity-booking-summary .button {
    width: 100%;
    justify-content: center;
  }

  .workshop-directory {
    padding: 52px 16px 78px;
  }

  .workshop-catalog {
    grid-template-columns: 1fr;
  }

  .workshop-option-card img {
    min-height: 0;
  }

  .news-page {
    padding: 52px 16px 78px;
  }

  .news-card,
  .news-card:first-child {
    grid-template-columns: 1fr;
  }

  .news-card-media,
  .news-card-media img {
    min-height: 210px;
  }

  .news-card-content {
    padding: 22px;
  }

  .workshop-carousel {
    padding: 0 48px;
  }

  .workshop-grid {
    grid-template-columns: none;
    grid-auto-columns: min(74vw, 280px);
  }

  .activity-card h3 {
    top: clamp(92px, 36vw, 150px);
  }

  .dream-band {
    min-height: 330px;
  }

  .project-band,
  .workshops,
  .events {
    padding-bottom: 70px;
  }

  .site-footer h2 {
    letter-spacing: .09em;
  }

  .mobile-links {
    grid-template-columns: 1fr;
  }
}
.cart-coupon { margin: 12px 0; padding: 12px 0; border-top: 1px solid rgba(20, 20, 20, .16); border-bottom: 1px solid rgba(20, 20, 20, .16); }
.cart-coupon label { display: block; margin-bottom: 7px; font-family: "Dosis", sans-serif; font-weight: 800; }
.cart-coupon > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.cart-coupon input { min-width: 0; padding: 10px; border: 1px solid #8f7b5b; background: #fff; font: inherit; text-transform: uppercase; }
.cart-coupon button { padding: 9px 12px; border: 0; background: #1d1d1d; color: #fff; font-family: "Dosis", sans-serif; font-weight: 800; cursor: pointer; }
.cart-coupon p { min-height: 1.3em; margin: 7px 0 0; font-size: .86rem; }
.cart-coupon .cart-coupon-remove { padding: 0; background: transparent; color: #bd3325; text-decoration: underline; }
.cart-discount-row strong { color: #268045; }

.footer-legal {
  margin: 14px auto 0;
  padding: 0 18px 24px;
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: .9rem;
  color: rgba(255, 255, 255, .78);
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  padding: 72px 18px 96px;
  background: #fffaf2;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  color: #24201b;
  font-family: "Roboto Slab", serif;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 1.25em;
}
.account-household-panel {
  grid-column: 1 / -1;
}

.account-member-list,
.account-member-requests {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.account-member-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #dedbd5;
  border-left: 5px solid #c52d1f;
  border-radius: 6px;
  background: #fff;
}

.account-member-card h3,
.account-member-card p {
  margin: 0;
}

.account-member-state {
  flex: 0 0 auto;
  font-weight: 800;
}

.account-member-state.is-valid { color: #287a4b; }
.account-member-state.is-missing { color: #7a6653; }

.account-member-request {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid #d99416;
  background: #fff5dc;
}

.detail-participant {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid #dedbd5;
  border-radius: 6px;
  background: #fff;
}

.detail-participant label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.detail-participant select {
  width: 100%;
  min-height: 46px;
  padding: 8px 10px;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
}

.detail-participant p,
.cart-entry-participant {
  margin: 8px 0 0;
  color: #6a6259;
}

.detail-participant-link {
  display: inline-block;
  margin-top: 8px;
  color: #b52319;
  font-weight: 800;
}

.account-member-guide {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #dedbd5;
}

.account-guide-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.account-guide-heading > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font: 800 20px/1 "Dosis", sans-serif;
}

.account-guide-heading h3,
.account-guide-heading p {
  margin: 0;
}

.account-member-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-member-paths button {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 20px;
  text-align: left;
  border: 2px solid #171717;
  border-radius: 6px;
  background: #fff;
  color: #171717;
  cursor: pointer;
}

.account-member-paths button:hover,
.account-member-paths button:focus-visible {
  border-color: #c52d1f;
  background: #fff7f4;
}

.account-member-paths strong {
  font: 800 24px/1.1 "Dosis", sans-serif;
}

.account-member-paths span {
  font: 400 15px/1.45 "Roboto Slab", serif;
}

.account-member-step {
  max-width: 780px;
  padding: 20px;
  border: 1px solid #dedbd5;
  border-radius: 6px;
  background: #fff;
}

.account-step-message {
  padding: 12px 14px;
  border-left: 4px solid #d99416;
  background: #fff5dc;
}

.account-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 700px) {
  .account-member-paths { grid-template-columns: 1fr; }
  .account-member-card { align-items: flex-start; flex-direction: column; }
  .account-step-actions .button { width: 100%; }
}
