:root {
      --cream: #fffaf4;
      --terracotta: #d98668;
      --terracotta-dark: #ad5f49;
      --ochre: #d8a03c;
      --ochre-light: #f2d99a;
      --ink: #4d352e;
      --muted: #765b51;
      --white: #ffffff;
      --shadow: 0 18px 50px rgba(114, 70, 51, 0.14);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --max-width: 1180px;
      --font-accent: "Caveat", "Segoe Script", cursive;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
    }

    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 2%, rgba(239, 182, 156, 0.22), transparent 24rem),
        radial-gradient(circle at 95% 20%, rgba(242, 217, 154, 0.26), transparent 28rem),
        var(--cream);
      font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
      line-height: 1.7;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      display: block;
      width: 100%;
    }

    a {
      color: inherit;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .skip-link {
      position: fixed;
      top: -100px;
      left: 20px;
      z-index: 1000;
      padding: 12px 18px;
      color: var(--white);
      background: var(--terracotta-dark);
      border-radius: 10px;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 20px;
    }

    .main-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      background: rgba(255, 250, 244, 0.86);
      border-bottom: 1px solid rgba(173, 95, 73, 0.12);
      backdrop-filter: blur(16px);
    }

    .nav-container {
      width: min(calc(100% - 32px), var(--max-width));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .nav-logo {
      max-width: 330px;
      text-decoration: none;
      font-family: var(--font-accent);
      font-size: clamp(1.5rem, 3vw, 2.3rem);
      font-style: normal;
      font-weight: 700;
      line-height: 1;
      color: var(--terracotta-dark);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .nav-menu a {
      position: relative;
      text-decoration: none;
      font-size: 0.94rem;
      font-weight: 700;
      color: var(--muted);
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -7px;
      height: 2px;
      background: var(--terracotta);
      transition: right 0.25s ease;
    }

    .nav-menu a:hover::after,
    .nav-menu a:focus-visible::after {
      right: 0;
    }

    .nav-toggle {
      display: none;
      padding: 8px;
      border: 0;
      color: var(--ink);
      background: transparent;
      font-size: 1.6rem;
      cursor: pointer;
    }

    main {
      padding-top: 76px;
    }

    .section-shell {
      width: min(calc(100% - 36px), var(--max-width));
      margin-inline: auto;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--terracotta-dark);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-title {
      max-width: 780px;
      margin: 0 auto 18px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      line-height: 1.08;
      text-align: center;
    }

    .section-intro {
      max-width: 760px;
      margin: 0 auto;
      color: var(--muted);
      font-size: clamp(1rem, 2vw, 1.18rem);
      text-align: center;
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 76px);
      display: grid;
      place-items: center;
      padding: 70px 0 90px;
      overflow: hidden;
    }

    .hero-layout {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 36px), 1260px);
      min-height: 690px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(220px, 0.8fr) minmax(380px, 1.5fr) minmax(220px, 0.8fr);
      grid-template-rows: 1fr 1fr;
      align-items: center;
      gap: 24px 34px;
    }

    .hero-copy {
      grid-column: 2;
      grid-row: 1 / 3;
      z-index: 3;
      padding: 50px 28px;
      text-align: center;
    }

    .hero-title {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3rem, 5.6vw, 5.8rem);
      font-weight: 500;
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    .hero-title em {
      display: block;
      color: var(--terracotta-dark);
      font-weight: 700;
    }

    .hero-subtitle {
      max-width: 620px;
      margin: 28px auto 0;
      color: var(--muted);
      font-size: clamp(1.1rem, 2vw, 1.35rem);
    }

    .hero-actions {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 12px 24px;
      border: 2px solid transparent;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .button:hover {
      transform: translateY(-3px);
    }

    .button-primary {
      color: var(--white);
      background: var(--terracotta-dark);
      box-shadow: 0 10px 24px rgba(173, 95, 73, 0.24);
    }

    .button-secondary {
      border-color: rgba(173, 95, 73, 0.35);
      color: var(--terracotta-dark);
      background: rgba(255, 255, 255, 0.62);
    }

    .hero-photo {
      position: relative;
      overflow: hidden;
      border: 9px solid rgba(255, 255, 255, 0.8);
      box-shadow: var(--shadow);
    }

    .hero-photo img {
      height: 100%;
      object-fit: cover;
    }

    .hero-photo-one {
      grid-column: 1;
      grid-row: 1 / 3;
      height: 470px;
      align-self: center;
      border-radius: 48% 52% 44% 56% / 44% 42% 58% 56%;
      transform: rotate(-3deg);
    }

    .hero-photo-two {
      grid-column: 3;
      grid-row: 1;
      width: 235px;
      height: 275px;
      justify-self: start;
      align-self: end;
      border-radius: 55% 45% 48% 52% / 45% 60% 40% 55%;
      transform: rotate(4deg);
    }

    .hero-photo-three {
      grid-column: 3;
      grid-row: 2;
      width: 270px;
      height: 315px;
      justify-self: end;
      align-self: start;
      border-radius: 44% 56% 60% 40% / 56% 45% 55% 44%;
      transform: rotate(-4deg);
    }

    .music-note {
      position: absolute;
      z-index: 4;
      color: var(--ochre);
      font-family: Georgia, serif;
      font-size: 2rem;
      animation: floatNote 5s ease-in-out infinite;
    }

    .note-one { left: 25%; top: 16%; }
    .note-two { right: 27%; bottom: 17%; animation-delay: 1.2s; }
    .note-three { left: 17%; bottom: 10%; animation-delay: 2.4s; }

    @keyframes floatNote {
      0%, 100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-14px) rotate(5deg); }
    }

    .about {
      padding: 130px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
      gap: 70px;
      align-items: stretch;
    }

    .about-sticky {
      position: sticky;
      top: 120px;
      display: flex;
      flex-direction: column;
    }

    .about-sticky .section-title {
      text-align: left;
    }

    .about-portrait {
      width: min(100%, 360px);
      flex: 1;
      min-height: 280px;
      margin: 28px auto 0;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      transform: rotate(-2.5deg);
    }

    .about-portrait img {
      height: 100%;
      object-fit: cover;
      object-position: center 24%;
    }

    .about-copy {
      display: grid;
      gap: 22px;
    }

    .about-block {
      padding: 30px;
      background: rgba(255, 255, 255, 0.67);
      border-left: 4px solid var(--terracotta);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    }

    .about-block h3 {
      margin: 0 0 10px;
      font-family: Georgia, serif;
      font-size: 1.5rem;
    }

    .about-block p {
      margin: 0;
      color: var(--muted);
    }

    .contact {
      padding: 120px 0;
      background:
        radial-gradient(circle at 10% 10%, rgba(239, 201, 191, 0.42), transparent 30rem),
        linear-gradient(145deg, #fff9f1, #f8e5d3);
    }

    .contact-card {
      max-width: 920px;
      margin: 50px auto 0;
      padding: clamp(30px, 6vw, 66px);
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid rgba(173, 95, 73, 0.14);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .contact-form,
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .form-section {
      min-width: 0;
      margin: 0;
      padding: 0;
      border: 0;
    }

    .form-section legend {
      width: 100%;
      margin: 0 0 20px;
      padding: 0 0 10px;
      border-bottom: 1px solid rgba(173, 95, 73, 0.18);
      color: var(--ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.35rem, 3vw, 1.7rem);
      font-weight: 700;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field-full {
      grid-column: 1 / -1;
    }

    .form-field label {
      font-weight: 800;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 14px 16px;
      color: var(--ink);
      background: var(--white);
      border: 1px solid rgba(173, 95, 73, 0.24);
      border-radius: 14px;
      outline: none;
      font: inherit;
      transition: border 0.2s ease, box-shadow 0.2s ease;
    }

    .form-field select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      padding-right: 44px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23d98668' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 8 10 13 15 8'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 14px;
      cursor: pointer;
    }

    .form-field textarea {
      min-height: 175px;
      resize: vertical;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--terracotta);
      box-shadow: 0 0 0 4px rgba(217, 134, 104, 0.15);
    }

    .form-help,
    .form-required,
    .contact-privacy {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .form-optional {
      color: var(--muted);
      font-size: 0.85em;
      font-weight: 500;
    }

    .form-information {
      margin: 2px 0 0;
      padding: 15px 17px;
      color: var(--muted);
      background: rgba(242, 217, 154, 0.22);
      border-radius: 13px;
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .form-information a {
      color: var(--terracotta-dark);
      font-weight: 700;
    }

    .form-status {
      min-height: 1.5em;
      margin: 0;
      color: var(--terracotta-dark);
      font-weight: 700;
    }

    .form-honey {
      position: absolute !important;
      left: -10000px !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
    }

    .contact-submit {
      grid-column: 1 / -1;
      justify-self: start;
      border: 0;
      cursor: pointer;
    }

    .contact-submit:disabled {
      cursor: wait;
      opacity: 0.68;
      transform: none;
    }

    .contact-privacy {
      max-width: 720px;
      margin: 18px auto 0;
      font-size: 0.82rem;
      text-align: center;
    }

    .contact-privacy a {
      color: var(--terracotta-dark);
      font-weight: 700;
    }

    .contact-direct {
      margin: 28px 0 0;
      color: var(--muted);
      text-align: center;
    }

    .contact-direct a {
      color: var(--terracotta-dark);
      font-weight: 800;
    }

    @media (max-width: 680px) {
      .contact {
        padding: 80px 0;
      }

      .contact-card {
        margin-top: 34px;
        padding: 28px 20px;
        border-radius: 24px;
      }

      .contact-form,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .contact-submit {
        width: 100%;
      }
    }

    .main-footer {
      padding: 34px 20px;
      color: rgba(255, 255, 255, 0.82);
      background: var(--ink);
      text-align: center;
    }

    .main-footer p {
      margin: 5px 0;
    }

    .main-footer address {
      max-width: 760px;
      margin: 0 auto 12px;
      font-style: normal;
    }

    .main-footer a {
      color: var(--ochre-light);
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 980px) {
      .hero-layout {
        min-height: auto;
        grid-template-columns: 1fr 1.3fr 1fr;
      }

      .hero-photo-one {
        height: 380px;
      }

      .hero-photo-two {
        width: 190px;
        height: 225px;
      }

      .hero-photo-three {
        width: 210px;
        height: 250px;
      }

      .about-grid {
        gap: 38px;
      }
    }

    @media (max-width: 760px) {
      html {
        scroll-padding-top: 72px;
      }

      .main-header {
        min-height: 72px;
      }

      .nav-container {
        min-height: 72px;
      }

      .nav-toggle {
        display: block;
      }

      .nav-menu {
        position: fixed;
        inset: 72px 0 auto;
        min-height: calc(100vh - 72px);
        padding: 36px 24px;
        display: grid;
        align-content: start;
        gap: 22px;
        background: rgba(255, 250, 244, 0.98);
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }

      .nav-menu.is-open {
        transform: translateX(0);
      }

      .nav-menu a {
        font-size: 1.25rem;
      }

      main {
        padding-top: 72px;
      }

      .hero {
        padding: 40px 0 72px;
      }

      .hero-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 16px;
      }

      .hero-copy {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 24px 0;
      }

      .hero-title {
        font-size: clamp(3.1rem, 16vw, 5.6rem);
      }

      .hero-photo {
        border-width: 6px;
      }

      .hero-photo-one {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: 260px;
      }

      .hero-photo-two {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        height: 260px;
        justify-self: stretch;
      }

      .hero-photo-three {
        grid-column: 1 / -1;
        grid-row: 3;
        width: min(86%, 420px);
        height: 300px;
        justify-self: center;
      }

      .music-note {
        display: none;
      }

      .about {
        padding: 90px 0;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-sticky {
        position: static;
      }

      .about-sticky .section-title {
        text-align: center;
      }

      .about-portrait {
        width: min(86vw, 340px);
        flex: none;
        height: 210px;
      }

    }



    /* Titre intergénérationnel : lisible sans déborder sur mobile */
    .pc-intergeneration-title {
      max-width: 760px;
      font-size: clamp(2rem, 4.6vw, 4.2rem);
      line-height: 1.08;
      text-wrap: balance;
      overflow-wrap: normal;
      hyphens: none;
    }

    /* Partage social */
    .social-share {
      padding: 42px 20px;
      text-align: center;
      background: var(--cream);
    }

    .social-share p {
      margin: 0 0 14px;
      color: var(--muted);
      font-weight: 700;
    }

    .social-share .a2a_kit {
      width: fit-content;
      margin-inline: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px;
    }

    .social-share-declined {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .cookie-text-link {
      padding: 0;
      color: var(--terracotta-dark);
      background: none;
      border: 0;
      font: inherit;
      font-weight: 700;
      text-decoration: underline;
      cursor: pointer;
    }

    /* Bandeau de consentement cookies */
    .cookie-banner {
      position: fixed;
      inset: auto 0 0;
      z-index: 200;
      padding: 18px 20px;
      background: var(--ink);
      box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);
    }

    .cookie-banner-content {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .cookie-banner-copy {
      flex: 1 1 420px;
    }

    .cookie-banner-content p {
      margin: 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .cookie-banner-content a {
      color: var(--ochre-light);
      font-weight: 700;
    }

    .cookie-current-choice {
      margin-top: 5px !important;
      color: var(--ochre-light) !important;
      font-size: 0.82rem !important;
    }

    .cookie-banner-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .cookie-banner-actions .button {
      min-height: 42px;
      padding: 9px 20px;
    }

    .cookie-banner-actions .button-secondary {
      color: var(--white);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.35);
    }

    /* Page légale (politique de confidentialité) */
    .legal-page {
      padding: 130px 0 100px;
    }

    .legal-shell {
      max-width: 760px;
    }

    .legal-title {
      margin: 0 0 8px;
      text-align: left;
    }

    .legal-updated {
      margin: 0 0 36px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .legal-page h2 {
      margin: 44px 0 14px;
      color: var(--terracotta-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.4rem;
    }

    .legal-page p {
      margin: 0 0 16px;
      color: var(--muted);
      line-height: 1.75;
    }

    .legal-page a {
      color: var(--terracotta-dark);
      font-weight: 700;
    }

    .legal-back {
      margin-top: 46px;
    }

    .legal-back a {
      font-weight: 800;
    }

    @media (max-width: 700px) {
      .legal-page {
        padding: 100px 0 80px;
      }
    }

    /* Politique de confidentialité repliable (le serveur NetSite ne sert
       qu'une seule page : le texte se déroule et se replie sur place). */
    .legal-disclosure-section {
      padding: 20px 0 60px;
    }

    .legal-disclosure {
      max-width: 780px;
      margin: 0 auto;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(173, 95, 73, 0.16);
      border-radius: var(--radius-lg);
      box-shadow: 0 10px 30px rgba(85, 57, 44, 0.06);
    }

    .legal-disclosure summary {
      position: relative;
      padding: 22px 62px 22px 26px;
      color: var(--terracotta-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.15rem;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
    }

    .legal-disclosure summary::-webkit-details-marker {
      display: none;
    }

    .legal-disclosure summary::after {
      content: "+";
      position: absolute;
      top: 50%;
      right: 24px;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--terracotta);
      border-radius: 50%;
      font-family: Arial, sans-serif;
      transform: translateY(-50%);
      transition: transform 0.25s ease;
    }

    .legal-disclosure[open] summary::after {
      transform: translateY(-50%) rotate(45deg);
    }

    .legal-disclosure-content {
      padding: 0 26px 30px;
    }

    .legal-disclosure-content h3 {
      margin: 26px 0 10px;
      color: var(--terracotta-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.12rem;
    }

    .legal-disclosure-content h3:first-of-type {
      margin-top: 4px;
    }

    .legal-disclosure-content p {
      margin: 0 0 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    .legal-disclosure-content a {
      color: var(--terracotta-dark);
      font-weight: 700;
    }

    @media (max-width: 700px) {
      .legal-disclosure summary {
        padding: 19px 56px 19px 20px;
        font-size: 1.05rem;
      }

      .legal-disclosure-content {
        padding: 0 20px 26px;
      }
    }

    /* Confirmation d’envoi du formulaire */
    .feedback-modal {
      position: relative;
      width: min(92vw, 520px);
      margin: auto;
      padding: 0;
      border: 0;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .feedback-modal::backdrop {
      background: rgba(45, 30, 24, 0.55);
      backdrop-filter: blur(2px);
    }

    .feedback-modal-content {
      padding: clamp(34px, 7vw, 58px);
      text-align: center;
      background: var(--cream);
      border-radius: var(--radius-xl);
    }

    .feedback-modal-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 20px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--terracotta-dark);
      border-radius: 50%;
      font-size: 1.8rem;
      font-weight: 800;
    }

    .feedback-modal-content h2 {
      margin: 0 0 14px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.7rem, 5vw, 2.35rem);
      line-height: 1.15;
    }

    .feedback-modal-content > p:not(.eyebrow) {
      margin: 0 0 26px;
      color: var(--muted);
      line-height: 1.6;
    }

    @media (max-width: 700px) {
      .pc-intergeneration-title {
        font-size: clamp(1.85rem, 8.7vw, 2.55rem);
        line-height: 1.1;
        letter-spacing: -0.025em;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
/* =========================================================
   PROJETS CULTURELS & MÉDIATION MUSICALE
========================================================= */

.pc-section {
  /* Couleurs alignées sur la palette globale du site (:root) pour une teinte
     identique entre le hero, "À propos", le contact et cette section. */
  --pc-sand: #f5eadc;
  --pc-beige: #ead8c5;
  --pc-green: #7a8970;
  --pc-terracotta-light: #f2ddd0;

  --pc-radius-small: 16px;
  --pc-radius-medium: 26px;
  --pc-radius-large: 42px;

  --pc-shadow-soft:
    0 18px 50px rgba(85, 57, 44, 0.09);

  --pc-shadow:
    0 28px 70px rgba(85, 57, 44, 0.16);

  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
}

.pc-section *,
.pc-section *::before,
.pc-section *::after {
  box-sizing: border-box;
}

.pc-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.pc-eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pc-hero-content .pc-eyebrow,
.pc-intergeneration-content .pc-eyebrow {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

.pc-main-title,
.pc-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.pc-main-title {
  max-width: 760px;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
}

.pc-section h2 {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
}

.pc-section h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.pc-section p {
  line-height: 1.75;
}

.pc-lead {
  max-width: 760px;
  margin: 30px 0 22px;
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.pc-lead-small {
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.6;
}


/* INTRODUCTION */

.pc-hero {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(237, 196, 173, 0.48),
      transparent 27rem
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(240, 216, 154, 0.52),
      transparent 30rem
    ),
    var(--pc-sand);
}

.pc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: center;
}

.pc-hero-grid-solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.pc-hero-grid-solo .pc-hero-actions {
  justify-content: center;
}

.pc-hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pc-hero-decoration {
  position: absolute;
  z-index: 1;
  color: rgba(185, 104, 82, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.pc-hero-decoration-left {
  top: 50px;
  left: 2%;
  font-size: 14rem;
  transform: rotate(-15deg);
}

.pc-hero-decoration-right {
  right: 2%;
  bottom: 20px;
  font-size: 11rem;
  transform: rotate(11deg);
}


/* EN-TÊTES */

.pc-section-heading {
  max-width: 850px;
  margin: 0 auto 65px;
  text-align: center;
}

.pc-section-heading .pc-eyebrow {
  text-align: center;
}

.pc-section-heading > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
}


/* PUBLICS */

.pc-publics {
  padding: 130px 0 34px;
  background: var(--cream);
}

.pc-stage-card .button {
  margin-top: 10px;
}

.pc-public-grid {
  display: grid;
  gap: 34px;
}

.pc-public-card {
  overflow: hidden;
  border: 1px solid rgba(185, 104, 82, 0.12);
  border-radius: var(--pc-radius-large);
  box-shadow: var(--pc-shadow-soft);
}

/* Alternance de teintes et léger quinconce entre les articles */
.pc-card-alt-cream {
  background: var(--cream);
}

.pc-card-alt-terracotta {
  background: var(--pc-terracotta-light);
}

@media (min-width: 640px) {
  .pc-zigzag-left {
    margin-right: clamp(16px, 4vw, 30px);
  }

  .pc-zigzag-right {
    margin-left: clamp(16px, 4vw, 30px);
  }
}

.pc-card-content {
  position: relative;
  padding: clamp(38px, 5vw, 64px);
}

/* En-tête clair avec une photographie en signature latérale */
.pc-card-banner {
  position: relative;
  isolation: isolate;
  min-height: 176px;
  padding: 44px clamp(38px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(248, 231, 218, 0.96));
}

.pc-card-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  z-index: -1;
  background: var(--terracotta);
}

.pc-card-banner::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: clamp(155px, 25%, 260px);
  background: var(--pc-banner-image) var(--pc-banner-position, center) / cover no-repeat;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%);
  mask-image: linear-gradient(90deg, transparent, #000 38%);
}

.pc-card-banner .pc-card-kicker {
  max-width: calc(100% - clamp(125px, 21%, 220px));
  color: var(--terracotta-dark);
}

.pc-card-banner h2,
.pc-card-banner h3 {
  position: relative;
  z-index: 1;
  max-width: calc(100% - clamp(125px, 21%, 220px));
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
}

.pc-card-banner-seniors {
  --pc-banner-image: url("images/evenement-participatif-atelier-seniors.png");
  --pc-banner-position: center 45%;
}

.pc-card-banner-territoires {
  --pc-banner-image: url("images/concert-guitare-rocher.png");
  --pc-banner-position: center 12%;
}

.pc-card-banner-publics {
  --pc-banner-image: url("images/atelier-violoncelle-groupe.png");
  --pc-banner-position: center 38%;
}

.pc-card-banner-stage {
  --pc-banner-image: url("images/cours-guitare-portrait.png");
  --pc-banner-position: center 15%;
}

.pc-card-kicker {
  margin: 0 0 8px;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pc-card-content h2,
.pc-card-content h3 {
  max-width: 640px;
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
}

.pc-card-content > p {
  color: var(--muted);
}

.pc-card-content .pc-audiences {
  margin: 24px 0;
  padding: 18px 20px;
  color: var(--terracotta-dark);
  background: rgba(237, 196, 173, 0.23);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 13px 13px 0;
  font-weight: 600;
}

.pc-feature-list {
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 22px;
  list-style: none;
}

.pc-feature-list li {
  position: relative;
  padding-left: 21px;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.5;
}

.pc-feature-list li::before {
  content: "♪";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--terracotta);
}


/* INTERGÉNÉRATIONNEL */

.pc-intergeneration {
  padding: 34px 0 130px;
  background: var(--pc-sand);
}

.pc-intergeneration-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.pc-intergeneration-grid-solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(38px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(185, 104, 82, 0.12);
  border-radius: var(--pc-radius-large);
  box-shadow: var(--pc-shadow-soft);
}

.pc-intergeneration-content .pc-eyebrow {
  color: var(--terracotta-dark);
}

.pc-intergeneration-content p {
  color: var(--muted);
}

.pc-intergeneration-content .pc-lead-small {
  color: var(--ink);
}

.pc-intergeneration-points {
  margin-top: 35px;
  display: grid;
  gap: 12px;
}

.pc-intergeneration-points > div {
  padding: 18px 21px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(185, 104, 82, 0.18);
  border-radius: var(--pc-radius-small);
}

.pc-intergeneration-points strong {
  color: var(--terracotta-dark);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.pc-intergeneration-points span {
  color: var(--muted);
  line-height: 1.55;
}


/* EXEMPLES */

.pc-examples {
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 12% 90%,
      rgba(237, 196, 173, 0.37),
      transparent 25rem
    ),
    var(--pc-sand);
}

.pc-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.pc-example-card {
  min-height: 420px;
  padding: clamp(34px, 5vw, 55px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(185, 104, 82, 0.14);
  border-radius: var(--pc-radius-medium);
  box-shadow: var(--pc-shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pc-example-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--pc-shadow);
}

.pc-example-duration {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 8px 13px;
  color: var(--terracotta-dark);
  background: var(--ochre-light);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pc-example-card h3 {
  margin: 0 0 17px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.12;
}

.pc-example-card > p {
  color: var(--muted);
}

.pc-example-steps {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pc-example-steps span {
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(237, 196, 173, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
}


/* MÉTHODE */

.pc-method {
  padding: 125px 0;
  background: var(--cream);
}

.pc-method-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.pc-method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pc-method-step {
  position: relative;
  min-height: 330px;
  padding: 33px 28px;
  background: var(--white);
  border: 1px solid rgba(185, 104, 82, 0.13);
  border-radius: var(--pc-radius-medium);
  box-shadow: var(--pc-shadow-soft);
}

.pc-method-step > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.pc-method-step:nth-child(2) > span {
  color: var(--ink);
  background: var(--ochre-light);
}

.pc-method-step:nth-child(3) > span {
  background: var(--pc-green);
}

.pc-method-step:nth-child(4) > span {
  background: var(--terracotta-dark);
}

.pc-method-step h3 {
  margin: 0 0 13px;
  font-size: 1.75rem;
  font-weight: 500;
}

.pc-method-step p {
  margin: 0;
  color: var(--muted);
}


/* GALERIE */

/* FAQ */

.pc-faq {
  padding: 130px 0;
  background: var(--cream);
}

.pc-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.pc-faq-intro {
  position: sticky;
  top: 110px;
}

.pc-faq-intro > p:not(.pc-eyebrow) {
  color: var(--muted);
}

.pc-faq-list {
  display: grid;
  gap: 13px;
}

.pc-faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(185, 104, 82, 0.13);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(85, 57, 44, 0.06);
}

.pc-faq-item summary {
  position: relative;
  padding: 23px 62px 23px 25px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.16rem;
  font-weight: 600;
  list-style: none;
}

.pc-faq-item summary::-webkit-details-marker {
  display: none;
}

.pc-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.pc-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.pc-faq-item > div {
  padding: 0 25px 22px;
}

.pc-faq-item > div p {
  margin: 0;
  color: var(--muted);
}


/* ZONE D’INTERVENTION */

.pc-location {
  padding: 50px 0 125px;
  background: var(--cream);
}

.pc-location-box {
  padding: clamp(42px, 7vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 60px;
  align-items: center;
  background:
    linear-gradient(
      120deg,
      rgba(240, 216, 154, 0.9),
      rgba(237, 196, 173, 0.78)
    );
  border-radius: var(--pc-radius-large);
}

.pc-location-content {
  max-width: 760px;
}

.pc-location-content > p:not(.pc-eyebrow) {
  color: var(--muted);
}

.pc-location-symbol {
  position: relative;
  height: 210px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  font-family: Georgia, serif;
}

.pc-location-symbol span {
  position: absolute;
}

.pc-location-symbol span:nth-child(1) {
  top: 0;
  left: 20px;
  font-size: 5rem;
  transform: rotate(-12deg);
}

.pc-location-symbol span:nth-child(2) {
  font-size: 3rem;
  opacity: 0.34;
}

.pc-location-symbol span:nth-child(3) {
  right: 10px;
  bottom: 0;
  font-size: 6.5rem;
  transform: rotate(10deg);
}


/* RESPONSIVE */

@media (max-width: 980px) {

  .pc-hero-grid,
  .pc-intergeneration-grid,
  .pc-faq-layout {
    grid-template-columns: 1fr;
  }

  .pc-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-faq-intro {
    position: static;
  }

}

@media (max-width: 700px) {

  .pc-container {
    width: min(100% - 28px, 1180px);
  }

  .pc-hero,
  .pc-publics,
  .pc-intergeneration,
  .pc-examples,
  .pc-method,
  .pc-faq {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .pc-location {
    padding-bottom: 88px;
  }

  .pc-hero-actions {
    display: grid;
  }

  .pc-hero-actions .button {
    justify-content: center;
    text-align: center;
  }

  .pc-section-heading {
    margin-bottom: 42px;
  }

  .pc-public-card {
    border-radius: 28px;
  }

  .pc-card-content {
    padding: 35px 24px 40px;
  }

  .pc-feature-list {
    grid-template-columns: 1fr;
  }

  .pc-intergeneration-points > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .pc-example-grid,
  .pc-method-grid {
    grid-template-columns: 1fr;
  }

  .pc-example-card,
  .pc-method-step {
    min-height: 0;
  }

  .pc-location-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pc-location-symbol {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {

  .pc-section *,
  .pc-section *::before,
  .pc-section *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
  


/* Accès discret au site des prestations musicales */
.hero-concert-bubble {
  width: fit-content;
  max-width: 520px;
  margin: 22px auto 0;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--terracotta-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(173, 95, 73, 0.22);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(114, 70, 51, 0.08);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero-concert-bubble:hover,
.hero-concert-bubble:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(114, 70, 51, 0.12);
}
@media (max-width: 760px) {
  .hero-concert-bubble {
    max-width: 92%;
    margin-top: 16px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }
}

/* Avis Google */
.google-reviews {
  padding: 100px 0;
  background: var(--sand);
}

.google-reviews-panel {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: clamp(30px, 5vw, 52px);
  background: var(--paper);
  border: 1px solid rgba(173, 95, 73, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.google-reviews-mark {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid rgba(173, 95, 73, 0.22);
  border-radius: 50%;
}

.google-reviews-mark span {
  color: var(--terracotta-dark);
  font: 700 2.8rem Georgia, "Times New Roman", serif;
}

.google-reviews-mark i {
  position: absolute;
  right: 5px;
  bottom: 6px;
  color: #d49a36;
  font-style: normal;
  font-size: 0.8rem;
}

.google-reviews-copy .eyebrow { margin-bottom: 7px; }
.google-reviews-copy h2 {
  margin: 0 0 10px;
  font: 500 clamp(1.9rem, 3.5vw, 3rem)/1.05 Georgia, "Times New Roman", serif;
}
.google-reviews-copy > p:last-child { margin: 0; color: var(--muted); }
.google-reviews-status { padding-left: 28px; border-left: 1px solid rgba(173, 95, 73, 0.2); text-align: right; }
.google-reviews-status small { display: block; margin-top: 6px; color: var(--muted); }
.google-reviews-status a {
  display: inline-block;
  padding: 11px 16px;
  color: var(--paper);
  background: var(--terracotta-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.google-reviews-status a:hover { background: var(--ink); }

@media (max-width: 900px) {
  .google-reviews-panel { grid-template-columns: 80px 1fr; }
  .google-reviews-status { grid-column: 2; padding: 15px 0 0; border-top: 1px solid rgba(173, 95, 73, 0.2); border-left: 0; text-align: left; }
}

@media (max-width: 600px) {
  .google-reviews { padding: 70px 0; }
  .google-reviews-panel { grid-template-columns: 1fr; gap: 20px; }
  .google-reviews-mark { width: 68px; height: 68px; }
  .google-reviews-status { grid-column: 1; }
}

/* Passerelle entre les deux sites */
.cross-site-cta{padding:clamp(56px,8vw,104px) 20px;background:linear-gradient(135deg,#f4e3d6,#fff8f1)}
.cross-site-card{width:min(1120px,100%);margin:auto;display:grid;grid-template-columns:minmax(0,1.18fr) minmax(330px,.82fr);gap:clamp(26px,5vw,58px);align-items:center;padding:clamp(30px,5vw,62px);border-radius:32px;background:#fff;box-shadow:0 24px 70px rgba(87,54,35,.10);overflow:hidden}
.cross-site-card h2{margin:.15em 0 .3em;font-size:clamp(1.9rem,3.6vw,3rem);line-height:1.08}
.cross-site-card p{max-width:62ch}
.cross-site-photo{display:flex;justify-content:center}
.cross-site-photo img{display:block;width:min(230px,90%);aspect-ratio:4/5;object-fit:cover;border:6px solid var(--white);border-radius:6px;box-shadow:0 16px 34px rgba(77,53,46,.25);transform:rotate(-6deg)}
@media(max-width:900px){.cross-site-card{grid-template-columns:minmax(0,1fr) minmax(270px,.7fr)}}
@media(max-width:760px){.cross-site-card{grid-template-columns:1fr;border-radius:24px}.cross-site-photo{margin-top:8px}.cross-site-photo img{width:min(190px,60%)}}

/* Modalités administratives */
.pc-contracts {
  padding: 105px 0;
  background: var(--pc-sand);
}

.pc-contracts-box {
  padding: clamp(30px, 6vw, 65px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 45px;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(185, 104, 82, 0.14);
  border-radius: var(--pc-radius-large);
  box-shadow: var(--pc-shadow-soft);
}

.pc-contracts-box h2 { margin-bottom: 22px; }
.pc-contracts-box p { color: var(--muted); }
.pc-contracts-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.pc-contracts-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pc-contracts-tags span {
  min-height: 48px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ochre-light);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.pc-contracts-tag-secondary { grid-column: auto; }

/* Cadrage définitif des images */
.hero-photo-one img { object-position: 50% 45%; }
.hero-photo-two img { object-position: 50% 28%; }
.hero-photo-three img { object-position: 62% 48%; }
.contact .eyebrow { text-align: center; }

/* Tablettes, petits ordinateurs et iPad en paysage */
@media (max-width: 1180px) {
  .hero-layout {
    width: min(calc(100% - 32px), 1080px);
    grid-template-columns: minmax(180px, 0.75fr) minmax(330px, 1.35fr) minmax(180px, 0.75fr);
    gap: 22px;
  }

  .nav-menu { gap: 16px; }
  .nav-container { gap: 18px; }
}

/* Tablettes et iPad en portrait */
@media (max-width: 980px) {
  .nav-logo { max-width: 245px; }

  .hero {
    min-height: auto;
    padding-block: 56px 76px;
  }

  .hero-layout {
    grid-template-columns: minmax(160px, 0.8fr) minmax(300px, 1.35fr) minmax(160px, 0.8fr);
  }

  .hero-copy { padding-inline: 12px; }
  .hero-title { font-size: clamp(2.5rem, 6.4vw, 4.2rem); }
  .hero-subtitle { font-size: 1.08rem; }

  .pc-contracts-box {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cross-site-card {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
  }
}

/* Téléphones et petites tablettes */
@media (max-width: 760px) {
  .section-shell,
  .pc-container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .nav-logo {
    max-width: calc(100vw - 100px);
    font-size: clamp(0.98rem, 4vw, 1.12rem);
  }

  .nav-menu {
    height: calc(100dvh - 72px);
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-copy { padding: 22px 0; }
  .hero .eyebrow {
    font-size: clamp(1.5rem, 8vw, 2rem);
    text-wrap: balance;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7.2vw, 2.35rem);
    line-height: 1.13;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions { margin-top: 26px; }
  .hero-photo-one,
  .hero-photo-two { height: clamp(175px, 52vw, 220px); }
  .hero-photo-three {
    width: min(76%, 300px);
    height: clamp(190px, 58vw, 235px);
  }
  .hero-photo-one img { object-position: 50% 34%; }
  .hero-photo-two img { object-position: 50% 24%; }
  .hero-photo-three img { object-position: 62% 42%; }

  .section-title,
  .pc-section h2,
  .cross-site-card h2,
  .pc-intergeneration-title {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    text-wrap: balance;
  }

  .pc-main-title {
    font-size: clamp(1.75rem, 7vw, 2.3rem);
    line-height: 1.15;
    text-wrap: balance;
  }

  .pc-card-content h3,
  .pc-card-banner h2,
  .pc-card-banner h3,
  .pc-example-card h3 {
    font-size: clamp(1.3rem, 5.5vw, 1.65rem);
    line-height: 1.22;
    text-wrap: balance;
  }

  .pc-card-banner {
    padding: 30px 24px;
  }

  .pc-card-banner::after {
    width: 112px;
    opacity: 0.34;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 62%);
    mask-image: linear-gradient(90deg, transparent, #000 62%);
  }

  .pc-card-banner .pc-card-kicker,
  .pc-card-banner h2,
  .pc-card-banner h3 {
    max-width: 100%;
  }

  .about-block h3,
  .pc-method-step h3 {
    font-size: 1.22rem;
    line-height: 1.28;
  }

  .pc-lead { font-size: 1.05rem; line-height: 1.55; }
  .pc-lead-small { font-size: 1.02rem; }

  .pc-card-content { padding: 30px 24px 34px; }
  .pc-feature-list { grid-template-columns: 1fr; }

  .pc-contracts { padding: 78px 0; }
  .pc-contracts-box { padding: 30px 24px; }

  .cross-site-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .cookie-banner {
    max-height: 85dvh;
    overflow-y: auto;
  }

  .cookie-banner-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Très petits téléphones */
@media (max-width: 420px) {
  .section-shell,
  .pc-container {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-actions { display: grid; }
  .hero-concert-bubble { max-width: 100%; }
  .pc-card-content,
  .about-block { padding-inline: 20px; }

  .form-grid { gap: 16px; }
  .contact-card { padding-inline: 17px; }

  .cross-site-card { padding: 26px 20px; }
  .cookie-banner { padding-inline: 14px; }
  .cookie-banner-actions { grid-template-columns: 1fr; }
}

/* Écrans bas, notamment téléphone en paysage */
@media (max-height: 520px) and (orientation: landscape) {
  .nav-menu {
    padding-block: 18px;
    gap: 12px;
  }

  .nav-menu a { font-size: 1rem; }
  .cookie-banner { max-height: 92dvh; }
}

/* Priorité finale du nouveau visuel d'accueil. */
.hero {
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(92, 48, 36, 0.5), rgba(58, 38, 30, 0.78)),
    url("images/cello-detail.png") 52% 78% / cover fixed;
}

.hero .eyebrow {
  margin-bottom: 4px;
  color: var(--ochre-light);
  font-family: var(--font-accent);
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

.hero-title {
  color: var(--white);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr;
  min-height: 620px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  width: min(760px, 100%);
  margin: auto;
}

/* Le point focal conserve la tête et le début de la main sur tablette. */
@media (min-width: 761px) and (max-width: 1100px) {
  .hero {
    background-attachment: scroll;
    background-position: 54% 75%;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding-block: 44px 58px;
    background-attachment: scroll;
    background-position: 57% 68%;
  }

  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: min(680px, calc(100svh - 132px));
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 28px 12px;
  }
}
