:root {
  --color-bg-primary: #f8f3ea;
  --color-bg-secondary: #e4eee9;
  --color-bg-dark: #112a3c;
  --color-surface: #fffdf9;
  --color-text-primary: #2c2c2c;
  --color-text-secondary: #6b6560;
  --color-text-on-dark: #f0ebe3;
  --color-accent-primary: #bd7849;
  --color-accent-secondary: #4e928a;
  --color-accent-warning: #f5e6c8;
  --color-link: #276c8c;
  --color-focus: #bd7849;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 18px 45px rgba(28, 43, 58, 0.11);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.52), rgba(248, 243, 234, 0.96)),
    var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

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

a {
  color: var(--color-link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #315b84;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--color-accent-primary);
  color: #fff;
  padding: 0.7rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 239, 0.96);
  border-bottom: 1px solid rgba(107, 101, 96, 0.18);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.72rem;
  min-width: 230px;
  color: var(--color-text-primary);
  text-decoration: none;
  line-height: 1.08;
}

.brand-mark {
  width: 76px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 8px 22px rgba(17, 42, 60, 0.08);
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.brand-text span {
  color: var(--color-text-secondary);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(44, 44, 44, 0.2);
  background: transparent;
  color: var(--color-text-primary);
  min-width: 44px;
  min-height: 44px;
  font-size: 1.45rem;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  font-size: 0.93rem;
}

.main-nav a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #8b612a;
}

.nav-cta {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--color-accent-primary);
  background: var(--color-accent-primary);
  color: #fff !important;
}

.dropdown {
  position: relative;
}

.dropdown > span {
  cursor: default;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  padding: 0.65rem;
  background: var(--color-surface);
  border: 1px solid rgba(107, 101, 96, 0.18);
  box-shadow: var(--shadow-soft);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 0.45rem;
}

main {
  overflow: hidden;
}

.section,
.section-narrow {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-narrow {
  max-width: 860px;
}

.band {
  background: var(--color-bg-secondary);
}

.band-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.band-dark a {
  color: #f4d7a8;
}

.hero {
  min-height: min(620px, calc(100vh - 120px));
  display: grid;
  align-items: center;
  background-color: var(--color-bg-dark);
  background-image: linear-gradient(90deg, rgba(28, 43, 58, 0.92) 0%, rgba(28, 43, 58, 0.78) 42%, rgba(28, 43, 58, 0.35) 100%), var(--hero-image);
  background-size: cover;
  background-position: center 42%;
  color: var(--color-text-on-dark);
}

.hero-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 4.8rem 0;
}

.hero p {
  max-width: 690px;
  color: rgba(240, 235, 227, 0.9);
  font-size: 1.15rem;
}

.home-hero {
  width: min(100% - 2rem, var(--max-width));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 3rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.home-hero h1 {
  max-width: 620px;
  font-size: clamp(4rem, 10vw, 8rem);
}

.home-hero-copy {
  position: relative;
  z-index: 1;
}

.service-area {
  max-width: 620px;
  color: var(--color-text-secondary);
  font-weight: 700;
}

.home-hero-copy::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: -3rem;
  z-index: -1;
  width: min(34vw, 320px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(78, 146, 138, 0.22), rgba(78, 146, 138, 0));
}

.home-hero-art {
  position: relative;
  margin: 0;
}

.home-hero-art::before {
  content: "";
  position: absolute;
  inset: 9% -8% -5% 18%;
  z-index: -1;
  background: #112a3c;
  border-radius: 50% 50% 10px 10px;
  opacity: 0.95;
}

.home-hero-art img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(17, 42, 60, 0.18);
}

.home-intro {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid rgba(17, 42, 60, 0.12);
}

.home-intro > p {
  max-width: 720px;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

.home-pathways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.pathway-card {
  min-height: 100%;
  padding: 1rem;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(17, 42, 60, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 42, 60, 0.07);
}

.pathway-card img {
  width: 100%;
  height: 250px;
  padding: 1rem;
  object-fit: contain;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(189, 120, 73, 0.22), rgba(78, 146, 138, 0.12) 48%, rgba(255, 253, 249, 0) 74%),
    #f4efe7;
}

.pathway-card:nth-child(2) img {
  padding: 0;
  object-fit: cover;
}

.pathway-card div {
  padding: 1.1rem 0.55rem 0.3rem;
}

.pathway-card h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
}

.event-feature {
  margin: 2rem 0;
  color: #f8f3ea;
  background:
    linear-gradient(90deg, rgba(17, 42, 60, 0.96), rgba(17, 42, 60, 0.8)),
    url("../images/brand/tableau-vibratoire.webp") center 38% / cover;
}

.event-feature .eyebrow {
  color: #f3d08e;
}

.event-feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.event-feature-inner p {
  color: rgba(248, 243, 234, 0.88);
}

.event-times {
  display: grid;
  gap: 1rem;
}

.event-times article {
  padding: 1.15rem;
  background: rgba(248, 243, 234, 0.12);
  border: 1px solid rgba(248, 243, 234, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.event-times span,
.event-times strong {
  display: block;
}

.event-times span {
  color: #f3d08e;
  font-weight: 700;
}

.event-times strong {
  margin: 0.2rem 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
}

.home-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.home-contact-band img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.event-page-hero {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(228, 238, 233, 0.92), rgba(248, 243, 234, 0.94)),
    url("../images/events/chant-du-vent-2026.webp") center 42% / cover;
  border-bottom: 1px solid rgba(17, 42, 60, 0.12);
}

.event-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: center;
}

.event-page-grid img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.event-program {
  padding-bottom: 3rem;
}

.event-card-featured {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(228, 238, 233, 0.72));
}

.event-hour {
  margin-bottom: 0.8rem;
  color: #112a3c;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.page-hero {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid rgba(107, 101, 96, 0.18);
}

.page-hero-visual {
  overflow: hidden;
}

.page-hero .section-narrow,
.page-hero .section {
  padding: 4rem 0;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  max-width: 940px;
  font-size: clamp(2.2rem, 6vw, 4.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
}

h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 760px;
  color: var(--color-text-secondary);
  font-size: 1.12rem;
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: #8b612a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cta-group + h2 {
  margin-top: 2.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent-primary);
  color: #fff;
}

.btn-primary:hover {
  background: #a87432;
  color: #fff;
}

.btn-secondary {
  border-color: rgba(240, 235, 227, 0.72);
  color: var(--color-text-on-dark);
}

.btn-outline {
  border-color: rgba(107, 101, 96, 0.45);
  color: var(--color-text-primary);
}

.btn-disabled {
  background: #c8c2ba;
  color: #57514b;
  cursor: not-allowed;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1.4rem;
}

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

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

.card,
.service-card,
.testimonial-card,
.event-card,
.instrument-card,
.value-card {
  background: var(--color-surface);
  border: 1px solid rgba(107, 101, 96, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 43, 58, 0.07);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.card,
.value-card {
  padding: 1.35rem;
}

.event-card {
  padding: 1.35rem;
  border-left: 4px solid var(--color-accent-primary);
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.tariff-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  background: var(--color-surface);
  border: 1px solid rgba(107, 101, 96, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 43, 58, 0.06);
}

.tariff-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.tariff-price {
  color: #112a3c;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.tariff-note {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.agenda-event-card {
  display: grid;
  gap: 1.2rem;
}

.agenda-times {
  margin-top: 1rem;
}

.agenda-times strong,
.agenda-times span {
  display: block;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.badge-list li {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(78, 146, 138, 0.28);
  border-radius: 999px;
  background: rgba(228, 238, 233, 0.8);
  color: #244f4b;
  font-size: 0.86rem;
  font-weight: 700;
}

.event-meta {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
}

.event-meta div {
  display: flex;
  gap: 0.5rem;
}

.event-meta dt {
  min-width: 70px;
  color: var(--color-text-secondary);
  font-weight: 700;
}

.event-meta dd {
  margin: 0;
}

.testimonial-card {
  margin: 0;
  padding: 1.35rem;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.35;
}

.testimonial-card figcaption {
  color: var(--color-text-secondary);
  font-weight: 700;
}

.profile-block {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 2.2rem;
  align-items: center;
}

.profile-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.list-check {
  display: grid;
  gap: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.8rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--color-accent-secondary);
}

.instrument-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
  align-items: center;
}

.instrument-hero-image {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(255, 253, 249, 0.58);
  border: 1px solid rgba(107, 101, 96, 0.14);
  border-radius: 8px;
}

.instrument-hero-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.instrument-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.instrument-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: 1.1rem;
  box-shadow: 0 12px 30px rgba(28, 43, 58, 0.06);
}

.instrument-card h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.instrument-card p:last-child {
  margin-bottom: 0;
}

.instrument-card img {
  width: 100%;
  height: 220px;
  padding: 1rem;
  border-radius: 8px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 56%, rgba(196, 145, 74, 0.24) 0 30%, rgba(122, 158, 126, 0.12) 50%, rgba(255, 253, 249, 0) 72%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.7), rgba(237, 232, 225, 0.55));
}

.instrument-origin {
  color: var(--color-text-secondary);
  font-weight: 700;
}

.audio-player {
  margin-top: 0.8rem;
  color: var(--color-text-secondary);
  font-size: 0.88rem;
}

.audio-player audio {
  width: 100%;
}

.voice-section {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  border-radius: 8px;
}

.info-box,
.warning-box,
.science-box,
.disclaimer-legal {
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
}

.info-box {
  background: #e8eef5;
  border-left: 4px solid var(--color-link);
}

.science-box {
  background: #e8eef5;
  border-left: 4px solid var(--color-link);
}

.warning-box {
  background: var(--color-accent-warning);
  border-left: 4px solid #d4860f;
}

.disclaimer-legal {
  width: min(100% - 2rem, var(--max-width));
  margin: 2rem auto;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  border-top: 1px solid rgba(107, 101, 96, 0.28);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid rgba(107, 101, 96, 0.18);
  text-align: left;
  vertical-align: top;
}

th {
  color: #5a3d1f;
}

.timeline {
  display: grid;
  gap: 0.8rem;
  padding-left: 0;
  list-style: none;
}

.timeline li {
  padding: 1rem;
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent-secondary);
  border-radius: 0 8px 8px 0;
}

details {
  margin: 0.8rem 0;
  background: var(--color-surface);
  border: 1px solid rgba(107, 101, 96, 0.18);
  border-radius: 8px;
}

summary {
  padding: 1rem;
  font-weight: 700;
  cursor: pointer;
}

details p {
  padding: 0 1rem 1rem;
}

.tabs {
  display: grid;
  gap: 1rem;
}

.tab-panel {
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid rgba(107, 101, 96, 0.18);
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-status {
  margin: 0 0 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.form-status-error {
  background: var(--color-accent-warning);
  border-left: 4px solid #d4860f;
}

.form-note {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem;
  border: 1px solid rgba(107, 101, 96, 0.35);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text-primary);
  font: inherit;
}

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

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 400;
}

.checkbox-line input {
  width: auto;
  min-height: auto;
  margin-top: 0.45rem;
}

.hidden {
  display: none;
}

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.footer-grid {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 3rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: #f4d7a8;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--color-text-on-dark);
  text-decoration: none;
}

.footer-brand img {
  width: 86px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
}

.footer-brand span {
  color: var(--color-text-on-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.footer-list {
  display: grid;
  gap: 0.4rem;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 2rem;
  color: rgba(240, 235, 227, 0.72);
  font-size: 0.88rem;
  border-top: 1px solid rgba(240, 235, 227, 0.18);
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .brand {
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-mark {
    width: 58px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .brand-text span {
    font-size: 0.7rem;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(107, 101, 96, 0.18);
  }

  .main-nav[data-open] {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0.4rem 0 0.4rem 1rem;
  }

  .grid-2,
  .grid-3,
  .home-hero,
  .home-intro,
  .home-pathways,
  .event-feature-inner,
  .home-contact-band,
  .event-page-grid,
  .profile-block,
  .instrument-hero-grid,
  .instrument-card,
  .instrument-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand span {
    font-size: 1.75rem;
  }

  .instrument-card img {
    height: 240px;
    justify-self: center;
  }

  .section,
  .section-narrow {
    padding: 3.5rem 0;
  }

  .home-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .home-hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }

  .home-hero-art {
    order: -1;
  }

  .home-hero-art img {
    max-height: 460px;
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 4rem 0 3rem;
  }

  .cta-group,
  .event-meta div {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}

/* Visual refresh inspired by the Guerison Sonore moodboard */
:root {
  --color-forest: #1e3a2d;
  --color-moss: #5a6f4b;
  --color-earth: #7a4b2e;
  --color-copper: #a6683d;
  --color-cream: #f5efe3;
  --color-ivory: #fbf8f1;
  --color-linen: #e6d8c6;
  --color-gold-soft: #d4b06a;
  --color-text: #24332d;
  --color-green-deep: var(--color-forest);
  --color-sage: var(--color-moss);
  --color-sage-light: #a7b49a;
  --color-gold: var(--color-gold-soft);
  --color-sand: var(--color-linen);
  --color-bg-primary: var(--color-cream);
  --color-bg-secondary: #edf1e8;
  --color-bg-dark: var(--color-forest);
  --color-surface: rgba(255, 253, 247, 0.92);
  --color-text-primary: var(--color-text);
  --color-text-secondary: #5f6b61;
  --color-text-on-dark: var(--color-ivory);
  --color-accent-primary: var(--color-gold);
  --color-accent-secondary: var(--color-sage);
  --color-link: #2f6758;
  --color-focus: var(--color-gold);
  --radius-card: 8px;
  --radius-soft: 8px;
  --shadow-soft: 0 22px 58px rgba(30, 58, 45, 0.12);
  --shadow-card: 0 14px 34px rgba(30, 58, 45, 0.08);
  --border-soft: 1px solid rgba(30, 58, 45, 0.13);
}

body {
  background:
    linear-gradient(180deg, rgba(251, 251, 242, 0.86), rgba(246, 243, 236, 0.98)),
    var(--color-cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(122, 75, 46, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 58, 45, 0.035) 1px, transparent 1px),
    repeating-radial-gradient(ellipse at 8% 8%, rgba(212, 176, 106, 0.12) 0 1px, transparent 2px 36px),
    repeating-radial-gradient(ellipse at 92% 22%, rgba(30, 58, 45, 0.07) 0 1px, transparent 2px 44px);
  background-size: 96px 96px, 96px 96px, auto, auto;
  opacity: 0.42;
}

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-green-deep);
}

:focus-visible {
  outline: 3px solid rgba(212, 176, 106, 0.82);
  outline-offset: 4px;
}

.site-header {
  background: rgba(251, 251, 242, 0.88);
  border-bottom: 1px solid rgba(41, 69, 61, 0.12);
  box-shadow: 0 10px 34px rgba(41, 69, 61, 0.08);
}

.nav-wrap {
  min-height: 82px;
}

.brand {
  gap: 0.85rem;
  color: var(--color-green-deep);
}

.brand-mark {
  width: 82px;
  height: 52px;
  padding: 0.12rem;
  border: 1px solid rgba(212, 176, 106, 0.24);
  border-radius: 8px;
  background: rgba(251, 251, 242, 0.84);
  box-shadow: 0 10px 30px rgba(41, 69, 61, 0.1);
}

.brand-text strong,
.footer-brand span {
  color: inherit;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--color-sage);
}

.main-nav {
  gap: 0.28rem;
}

.main-nav a,
.dropdown > span {
  padding: 0.48rem 0.62rem;
  border-radius: 8px;
  color: var(--color-green-deep);
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.dropdown:hover > span,
.dropdown:focus-within > span {
  color: var(--color-green-deep);
  background: rgba(212, 176, 106, 0.16);
}

.nav-cta {
  padding-inline: 0.9rem !important;
  border: 0;
  background: var(--color-green-deep);
  color: var(--color-ivory) !important;
  box-shadow: 0 12px 24px rgba(41, 69, 61, 0.16);
}

.nav-cta:hover {
  background: rgba(212, 176, 106, 0.16) !important;
  color: var(--color-green-deep) !important;
  box-shadow: none;
}

.nav-cta[aria-current="page"] {
  background: rgba(212, 176, 106, 0.16);
  color: var(--color-green-deep) !important;
  box-shadow: none;
}

.dropdown-menu {
  border: var(--border-soft);
  border-radius: 8px;
  background: rgba(251, 251, 242, 0.97);
  box-shadow: var(--shadow-soft);
}

.section,
.section-narrow {
  position: relative;
}

.page-hero,
.event-page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 251, 242, 0.92), rgba(232, 221, 198, 0.62)),
    var(--color-bg-secondary);
  border-bottom: 1px solid rgba(41, 69, 61, 0.12);
}

.page-hero::after,
.event-page-hero::after,
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(212, 176, 106, 0.22);
  border-radius: 999px;
}

.page-hero > *,
.event-page-hero > *,
.home-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero::after {
  right: -7rem;
  top: 1.6rem;
  width: 22rem;
  height: 22rem;
  box-shadow: 0 0 0 22px rgba(212, 176, 106, 0.06), 0 0 0 48px rgba(30, 58, 45, 0.035);
}

.home-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 82px));
  padding-block: 4.2rem 5rem;
}

.home-hero::before,
.page-hero::before,
.event-page-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13;
  background: url("data:image/svg+xml,%3Csvg width='420' height='420' viewBox='0 0 420 420' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%231E3A2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M210 300V125'/%3E%3Cpath d='M210 164c-28-10-48-30-58-62'/%3E%3Cpath d='M210 178c34-10 58-31 72-64'/%3E%3Cpath d='M210 212c-42-1-76-19-101-54'/%3E%3Cpath d='M210 224c47-3 83-22 109-58'/%3E%3Cpath d='M210 300c-23 8-45 23-64 45'/%3E%3Cpath d='M210 300c25 8 49 23 72 45'/%3E%3Cpath d='M210 300c-10 22-11 45-4 69'/%3E%3Cpath d='M210 300c7 20 7 42 0 66'/%3E%3Cpath d='M210 300c-35 0-70 9-105 28'/%3E%3Cpath d='M210 300c36 0 71 10 105 28'/%3E%3Cpath d='M172 118c12-9 27-10 42-3'/%3E%3Cpath d='M252 116c-13-8-28-9-43-2'/%3E%3Cpath d='M118 162c15-8 31-8 48 0'/%3E%3Cpath d='M294 160c17-8 34-7 50 2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.home-hero::before {
  right: 42%;
  bottom: 0.8rem;
  width: min(42vw, 390px);
  aspect-ratio: 1;
}

.page-hero::before,
.event-page-hero::before {
  left: 4%;
  bottom: -7rem;
  width: min(36vw, 340px);
  aspect-ratio: 1;
}

.home-hero::after {
  left: -8rem;
  top: 6rem;
  width: 26rem;
  height: 26rem;
  box-shadow: 0 0 0 28px rgba(212, 176, 106, 0.06), 0 0 0 58px rgba(30, 58, 45, 0.04);
}

.home-hero-copy::before {
  display: none;
}

.home-hero h1 {
  color: var(--color-green-deep);
  text-wrap: balance;
}

.lead {
  color: #4f5c55;
}

.service-area {
  color: var(--color-sage);
  font-weight: 700;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-earth);
  letter-spacing: 0.09em;
}

.eyebrow::before {
  content: "";
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  opacity: 0.82;
}

.home-hero-art::before {
  inset: 7% -5% -4% 14%;
  border-radius: 52% 48% 8px 8px;
  background:
    linear-gradient(145deg, rgba(30, 58, 45, 0.96), rgba(90, 111, 75, 0.88));
}

.home-hero-art img,
.home-contact-band img,
.profile-block img,
.event-page-grid img,
.service-card img {
  border-radius: 8px;
  filter: saturate(0.95) sepia(0.04);
}

.home-hero-art img {
  box-shadow: 0 30px 80px rgba(41, 69, 61, 0.18);
}

.card,
.service-card,
.testimonial-card,
.event-card,
.instrument-card,
.value-card,
.pathway-card,
.tariff-card,
.tab-panel,
details,
.icon-card {
  border: var(--border-soft);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(251, 251, 242, 0.94), rgba(246, 243, 236, 0.82));
  box-shadow: var(--shadow-card);
}

.pathway-card {
  position: relative;
  overflow: hidden;
  padding: 1.05rem;
}

.pathway-card::before,
.tariff-card::before,
.icon-card::before,
.value-card::before {
  content: "";
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(212, 176, 106, 0.44);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%231E3A2D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 31V12'/%3E%3Cpath d='M22 18c-5-2-8-5-10-10'/%3E%3Cpath d='M22 19c6-1 10-5 13-10'/%3E%3Cpath d='M22 25c-7 0-13-3-17-9'/%3E%3Cpath d='M22 25c8 0 14-3 18-9'/%3E%3Cpath d='M22 31c-5 2-9 5-13 9'/%3E%3Cpath d='M22 31c5 2 10 5 14 9'/%3E%3C/g%3E%3C/svg%3E") center / 62% 62% no-repeat,
    rgba(251, 251, 242, 0.72);
}

.pathway-card::before {
  position: absolute;
  top: 1.55rem;
  left: 1.55rem;
  z-index: 1;
  margin: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%231E3A2D' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M8 22c5-8 10-8 14 0s9 8 14 0'/%3E%3Cpath d='M8 29c5-8 10-8 14 0s9 8 14 0' opacity='.65'/%3E%3Cpath d='M8 15c5-8 10-8 14 0s9 8 14 0' opacity='.65'/%3E%3C/g%3E%3C/svg%3E") center / 64% 64% no-repeat,
    rgba(251, 251, 242, 0.88);
}

.pathway-card img {
  height: 255px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(212, 176, 106, 0.2), rgba(167, 180, 154, 0.16) 48%, rgba(251, 251, 242, 0) 74%),
    var(--color-ivory);
}

.pathway-card div {
  padding: 1.25rem 0.55rem 0.4rem;
}

.btn {
  min-height: 46px;
  padding: 0.78rem 1.18rem;
  border-radius: 8px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-green-deep);
  color: var(--color-ivory);
  box-shadow: 0 14px 28px rgba(41, 69, 61, 0.18);
}

.btn-primary:hover {
  background: #1f3932;
}

.btn-secondary {
  border-color: transparent;
  background: var(--color-gold);
  color: #fff;
}

.btn-secondary:hover {
  background: #b78e4d;
  color: #fff;
}

.btn-outline {
  border-color: rgba(41, 69, 61, 0.24);
  background: rgba(251, 251, 242, 0.48);
  color: var(--color-green-deep);
}

.btn-outline:hover {
  border-color: rgba(212, 176, 106, 0.62);
  background: rgba(212, 176, 106, 0.12);
  color: var(--color-green-deep);
}

.cta-group {
  gap: 0.9rem;
}

.cta-group + h2 {
  margin-top: 3.4rem;
}

#contact {
  scroll-margin-top: 7rem;
}

.event-feature {
  background:
    linear-gradient(100deg, rgba(20, 50, 44, 0.96), rgba(41, 69, 61, 0.82)),
    url("../images/brand/tableau-vibratoire.webp") center 38% / cover;
}

.event-feature .eyebrow,
.band-dark .eyebrow {
  color: #f1d49d;
}

.event-times article,
.voice-section {
  border-radius: var(--radius-card);
}

.event-card {
  border-left: 0;
  position: relative;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px;
  background: linear-gradient(var(--color-gold), var(--color-sage));
}

.event-hour,
.tariff-price {
  color: var(--color-green-deep);
}

.tariff-grid {
  gap: 1.2rem;
}

.tariff-card {
  position: relative;
  align-content: start;
  padding: 1.45rem;
}

.tariff-card::before {
  background:
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%231E3A2D' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M12 22h20'/%3E%3Cpath d='M14 16c5-5 11-5 16 0'/%3E%3Cpath d='M14 28c5 5 11 5 16 0'/%3E%3C/g%3E%3C/svg%3E") center / 62% 62% no-repeat,
    rgba(251, 251, 242, 0.82);
}

.tariff-note {
  color: #667069;
}

.badge-list li {
  border-color: rgba(41, 69, 61, 0.13);
  background: rgba(168, 181, 166, 0.24);
  color: var(--color-green-deep);
}

.instrument-card {
  padding: 1.25rem;
}

.instrument-card img {
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 56%, rgba(212, 176, 106, 0.2) 0 30%, rgba(167, 180, 154, 0.18) 50%, rgba(251, 251, 242, 0) 72%),
    linear-gradient(145deg, rgba(251, 251, 242, 0.86), rgba(231, 221, 198, 0.32));
}

.info-box,
.science-box,
.warning-box,
.disclaimer-legal,
.timeline li {
  border-radius: var(--radius-card);
}

.info-box,
.science-box {
  background: rgba(168, 181, 166, 0.22);
  border-left-color: var(--color-sage);
}

.warning-box {
  background: rgba(231, 221, 198, 0.74);
  border-left-color: var(--color-gold);
}

.list-check li::before {
  background: var(--color-sage);
  box-shadow: 0 0 0 5px rgba(168, 181, 166, 0.2);
}

.step-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.step-list li {
  counter-increment: step;
  min-height: 100%;
  padding: 1.2rem;
  border: var(--border-soft);
  border-radius: var(--radius-card);
  background: rgba(251, 251, 242, 0.74);
  box-shadow: var(--shadow-card);
}

.step-list li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--color-green-deep);
  color: var(--color-ivory);
  font-weight: 700;
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list strong {
  color: var(--color-green-deep);
}

.step-list span {
  margin-top: 0.35rem;
  color: var(--color-text-secondary);
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 2rem;
}

.icon-card {
  padding: 1.25rem;
}

.icon-card h2,
.icon-card h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
}

.rooted-approach {
  margin: 2rem 0 2.4rem;
}

.site-footer h3 {
  color: var(--color-linen);
}

.site-footer p {
  color: rgba(251, 248, 241, 0.82);
}

.footer-list {
  color: rgba(251, 248, 241, 0.82);
}

details {
  overflow: hidden;
}

summary {
  position: relative;
  padding-right: 3.2rem;
  color: var(--color-green-deep);
}

summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(212, 176, 106, 0.44);
  border-radius: 50%;
  color: var(--color-green-deep);
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

input,
textarea,
select {
  border-color: rgba(41, 69, 61, 0.18);
  border-radius: 8px;
  background: rgba(251, 251, 242, 0.72);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-gold);
  outline: 3px solid rgba(212, 176, 106, 0.22);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--color-forest), #254737);
}

.site-footer::before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: -8rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(212, 176, 106, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(212, 176, 106, 0.05), 0 0 0 48px rgba(251, 248, 241, 0.035);
}

.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 4%;
  top: 2rem;
  width: 16rem;
  aspect-ratio: 1;
  opacity: 0.08;
  background: url("data:image/svg+xml,%3Csvg width='260' height='260' viewBox='0 0 260 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23FBF8F1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M130 205V62'/%3E%3Cpath d='M130 91c-30-5-54-23-70-53'/%3E%3Cpath d='M130 105c33-6 59-25 78-57'/%3E%3Cpath d='M130 138c-42 0-76-17-103-51'/%3E%3Cpath d='M130 148c45-2 80-20 106-54'/%3E%3Cpath d='M130 205c-28 6-54 20-78 42'/%3E%3Cpath d='M130 205c29 6 56 20 82 42'/%3E%3Cpath d='M130 205c-13 16-17 33-12 51'/%3E%3Cpath d='M130 205c12 16 15 33 10 51'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-grid,
.footer-bottom {
  position: relative;
}

.footer-brand img {
  border-radius: 8px;
}

@media (max-width: 1050px) {
  .nav-wrap {
    width: min(100% - 1.4rem, var(--max-width));
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 68px;
    height: 44px;
  }

  .main-nav {
    font-size: 0.88rem;
  }

  .main-nav a,
  .dropdown > span {
    padding-inline: 0.48rem;
  }
}

@media (max-width: 880px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand-mark {
    width: 58px;
    height: 38px;
    border-radius: 8px;
  }

  .menu-toggle {
    border-color: rgba(41, 69, 61, 0.22);
    border-radius: 8px;
    color: var(--color-green-deep);
  }

  .main-nav {
    top: 74px;
    background: rgba(251, 251, 242, 0.98);
    box-shadow: 0 20px 38px rgba(41, 69, 61, 0.12);
  }

  .main-nav a,
  .dropdown > span {
    border-radius: 8px;
  }

  .home-hero {
    min-height: auto;
    padding-block: 2rem 3.5rem;
  }

  #contact {
    scroll-margin-top: 6rem;
  }

  .home-hero::after,
  .page-hero::after {
    opacity: 0.45;
  }

  .step-list,
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  body::before {
    opacity: 0.35;
  }

  .home-hero h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .pathway-card img {
    height: 220px;
  }

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