
    /* ═══════════════════════════
       DESIGN TOKENS
    ═══════════════════════════ */
    :root {
      --cream:        #F7F4EC;
      --cream-deep:   #EFEAD8;
      --terracotta:   #35C067;
      --terra-dark:   #B5744A;
      --brand-grad:   linear-gradient(135deg, #079796 0%, #4CBE54 100%);
      --forest:       #232B1F;
      --forest-mid:   #333D2A;
      --gold:         #B5744A;
      --gold-light:   #C68B5C;
      --ink:          #1F241C;
      --ink-soft:     #4F5449;
      --ink-faint:    #82877A;
      --white:        #FFFFFF;
      --bg:           var(--cream);
      --surface:      var(--white);
    }
    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) {
        --cream:      #1C1915;
        --cream-deep: #252119;
        --forest:     #5A8A72;
        --forest-mid: #6FA882;
        --ink:        #EDE6DB;
        --ink-soft:   #82877A;
        --ink-faint:  #4F5449;
        --bg:         #1C1915;
        --surface:    #252119;
      }
    }
    :root[data-theme="dark"] {
      --cream:      #1C1915;
      --cream-deep: #252119;
      --forest:     #5A8A72;
      --forest-mid: #6FA882;
      --ink:        #EDE6DB;
      --ink-soft:   #82877A;
      --ink-faint:  #4F5449;
      --bg:         #1C1915;
      --surface:    #252119;
    }
    :root[data-theme="light"] {
      --cream:      #F7F4EC;
      --cream-deep: #EFEAD8;
      --forest:     #232B1F;
      --forest-mid: #333D2A;
      --ink:        #1F241C;
      --ink-soft:   #4F5449;
      --ink-faint:  #82877A;
      --bg:         var(--cream);
      --surface:    var(--white);
      --brand-grad: linear-gradient(135deg, #079796 0%, #4CBE54 100%);
    }

    /* ═══════════════════════════
       RESET
    ═══════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; }

    /* ═══════════════════════════
       SCROLL ANIMATIONS
    ═══════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
                  transform 0.72s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: 0.10s; }
    .reveal.d2 { transition-delay: 0.20s; }
    .reveal.d3 { transition-delay: 0.30s; }
    .reveal.d4 { transition-delay: 0.40s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ═══════════════════════════
       LAYOUT
    ═══════════════════════════ */
    .wrap        { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .wrap--wide  { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
    .wrap--slim  { max-width: 800px;  margin: 0 auto; padding: 0 2rem; }

    /* ═══════════════════════════
       TYPOGRAPHY
    ═══════════════════════════ */
    .serif { font-family: 'Playfair Display', 'Palatino Linotype', Palatino, Georgia, serif; }

    /* ═══════════════════════════
       BUTTONS
    ═══════════════════════════ */
    .btn {
      display: inline-block;
      padding: 0.9rem 2rem;
      border-radius: 3rem;
      font-size: 0.9375rem;
      font-weight: 600;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn--primary {
      background: var(--brand-grad);
      color: #fff;
    }
    .btn--primary:hover {
      background: var(--terra-dark);
      box-shadow: 0 10px 30px rgba(181,116,74,0.40);
    }
    .btn--ghost-white {
      color: rgba(255,255,255,0.82);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
      padding: 0.9rem 0;
      border-radius: 0;
      transition: color 0.2s, gap 0.2s;
    }
    .btn--ghost-white:hover { color: #fff; gap: 0.75rem; transform: none; }

    /* ═══════════════════════════
       SECTION EYEBROW
    ═══════════════════════════ */
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .eyebrow__text {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--terracotta);
    }
    .eyebrow__line {
      width: 36px;
      height: 1.5px;
      background: var(--terracotta);
      border-radius: 1px;
    }
    .eyebrow--gold .eyebrow__text { color: var(--gold); }
    .eyebrow--gold .eyebrow__line { background: var(--gold); }

    /* ═══════════════════════════
       HEADER
    ═══════════════════════════ */
    .header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      padding: 1.375rem 0;
      transition: background 0.35s ease, backdrop-filter 0.35s ease,
                  padding 0.35s ease, border-color 0.35s ease;
      border-bottom: 1px solid transparent;
    }
    .header.scrolled {
      padding: 0.75rem 0;
      background: rgba(247,244,236,0.90);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-color: rgba(181,116,74,0.18);
    }
    [data-theme="dark"] .header.scrolled {
      background: rgba(28,25,21,0.90);
    }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .header__logo {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.125rem;
      font-weight: 700;
      color: #fff;
      transition: color 0.3s;
      white-space: nowrap;
    }
    .header.scrolled .header__logo { color: var(--forest); }
    .header__nav {
      display: flex;
      list-style: none;
      gap: 1.75rem;
      align-items: center;
      flex-wrap: nowrap;
    }
    .header__nav a {
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,0.80);
      transition: color 0.2s;
      white-space: nowrap;
    }
    .header__nav li { white-space: nowrap; }
    .header.scrolled .header__nav a { color: var(--ink); }
    .header__nav a:hover { color: var(--terracotta); }
    .header__cta {
      background: var(--brand-grad);
      color: #fff;
      padding: 0.5625rem 1.375rem;
      border-radius: 3rem;
      font-size: 0.875rem;
      font-weight: 600;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .header__cta:hover {
      background: var(--terra-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(181,116,74,0.35);
    }

    /* ═══════════════════════════
       HERO
    ═══════════════════════════ */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: flex-end;
      padding: 7rem 0 7rem;
      overflow: hidden;
    }
    @media (max-height: 700px) {
      .hero__title { font-size: clamp(2.25rem, 6vw, 4rem); margin-bottom: 1.125rem; }
      .hero__sub { margin-bottom: 1.75rem; }
      .hero__kicker--pill { margin-bottom: 1.25rem; }
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, #1a2e28 0%, #232B1F 35%, #7a4a1e 70%, #B5744A 100%);
      z-index: 0;
    }
    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px;
    }
    .hero__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(20,35,28,0.12) 0%,
        rgba(20,35,28,0.30) 45%,
        rgba(20,35,28,0.80) 85%,
        rgba(20,35,28,0.92) 100%
      );
      z-index: 2;
    }
    .hero__content {
      position: relative;
      z-index: 3;
      max-width: 820px;
    }
    .hero__kicker {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      margin-bottom: 1.75rem;
    }
    .hero__kicker-line { width: 52px; height: 1px; background: var(--gold); opacity: 0.7; }
    .hero__kicker-text {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero__title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.75rem, 7.5vw, 5.75rem);
      line-height: 1.04;
      letter-spacing: -0.022em;
      color: #fff;
      margin-bottom: 1.625rem;
      text-wrap: balance;
    }
    .hero__title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero__sub {
      font-size: clamp(1rem, 1.8vw, 1.1875rem);
      line-height: 1.75;
      color: rgba(255,255,255,0.70);
      max-width: 54ch;
      margin-bottom: 2.625rem;
    }
    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      align-items: center;
    }
    .hero__scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      right: 2rem;
      z-index: 3;
      writing-mode: vertical-lr;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }
    .hero__scroll-hint::before {
      content: '';
      display: block;
      width: 1px;
      height: 44px;
      background: rgba(255,255,255,0.22);
    }

    /* ═══════════════════════════
       REASSURANCE BAND
    ═══════════════════════════ */
    .reassurance {
      background: var(--cream-deep);
      padding: 4.5rem 0;
    }
    .reassurance__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .reassurance__item {
      text-align: center;
      padding: 1.5rem 1rem;
      border-right: 1px solid rgba(31,36,28,0.10);
    }
    .reassurance__item:last-child { border-right: none; }
    .reassurance__num {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.25rem, 5vw, 3.25rem);
      font-weight: 700;
      background: var(--brand-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .reassurance__label {
      font-size: 0.82rem;
      color: var(--ink-soft);
      line-height: 1.5;
      max-width: 16ch;
      margin: 0 auto;
    }

    /* ═══════════════════════════
       SECTION BASE
    ═══════════════════════════ */
    .section { padding: 6rem 0; }
    .section--lg { padding: 8rem 0; }
    .section--forest {
      background: var(--forest);
    }
    .section__title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.875rem, 4.5vw, 3rem);
      line-height: 1.18;
      letter-spacing: -0.018em;
      color: var(--ink);
      margin-bottom: 1.125rem;
      text-wrap: balance;
    }
    .section__intro {
      font-size: 1.05rem;
      line-height: 1.78;
      color: var(--ink-soft);
      max-width: 58ch;
    }

    /* ═══════════════════════════
       PENSION
    ═══════════════════════════ */
    .pension__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5.5rem;
      align-items: start;
    }
    .pension__media {
      position: relative;
    }
    .pension__img-wrap {
      border-radius: 1.125rem;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: linear-gradient(150deg, var(--forest-mid) 0%, #8C5A3A 60%, var(--terra-dark) 100%);
    }
    .pension__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .pension__img-inset-wrap {
      position: absolute;
      bottom: -3rem;
      right: -3rem;
      width: 58%;
      aspect-ratio: 1;
      border-radius: 1rem;
      overflow: hidden;
      border: 5px solid var(--cream);
      box-shadow: 0 32px 72px rgba(0,0,0,0.22), 0 8px 20px rgba(0,0,0,0.10);
      background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
      transform: rotate(-2deg);
    }
    .pension__img-inset-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .pension__features {
      display: flex;
      flex-direction: column;
      gap: 1.625rem;
      margin-top: 2.75rem;
    }
    .pension__feat {
      display: flex;
      gap: 1.125rem;
      align-items: flex-start;
    }
    .pension__feat-ico {
      flex-shrink: 0;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--cream-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .pension__feat:hover .pension__feat-ico { background: rgba(181,116,74,0.20); }
    .pension__feat-body h4 {
      font-weight: 700;
      font-size: 0.9375rem;
      color: var(--ink);
      margin-bottom: 0.3rem;
    }
    .pension__feat-body p {
      font-size: 0.875rem;
      color: var(--ink-soft);
      line-height: 1.65;
    }

    /* ═══════════════════════════
       ACADÉMIE
    ═══════════════════════════ */
    .academie__layout {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 5rem;
      align-items: start;
      margin-top: 4rem;
    }
    .academie__pillars {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .academie__pillar {
      padding: 1.75rem;
      border-radius: 0.875rem;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.10);
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .academie__pillar:hover {
      background: rgba(255,255,255,0.10);
      border-color: rgba(181,116,74,0.38);
      transform: translateX(4px);
    }
    .academie__pillar-ico {
      width: 40px;
      height: 40px;
      border-radius: 0.5rem;
      background: rgba(181,116,74,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    .academie__pillar h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.15rem;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .academie__pillar p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.68;
    }
    .academie__right {
      position: sticky;
      top: 6rem;
    }
    .academie__quote {
      padding: 2.5rem;
      background: rgba(181,116,74,0.09);
      border-radius: 1rem;
      border-left: 3px solid var(--gold);
      margin-bottom: 2rem;
    }
    .academie__quote-text {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.125rem, 1.8vw, 1.5rem);
      font-style: italic;
      line-height: 1.58;
      color: #fff;
      margin-bottom: 1.25rem;
    }
    .academie__quote-attr {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--gold);
      text-transform: uppercase;
    }
    .academie__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .academie__tag {
      padding: 0.4375rem 0.9375rem;
      border-radius: 2rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      font-size: 0.8rem;
      color: rgba(255,255,255,0.75);
    }

    /* ═══════════════════════════
       PENSION ÉDUCATIVE
    ═══════════════════════════ */
    .pension-edu { background: var(--cream-deep); }
    .pension-edu__header { text-align: center; max-width: 600px; margin: 0 auto 4.5rem; }
    .pension-edu__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
    }
    .pension-edu__connector {
      position: absolute;
      top: 2.125rem;
      left: calc(16.67% + 1.25rem);
      right: calc(16.67% + 1.25rem);
      height: 1px;
      background: linear-gradient(to right, rgba(181,116,74,0.5) 0%, rgba(198,139,92,0.8) 50%, rgba(181,116,74,0.5) 100%);
    }
    .pension-edu__step { text-align: center; padding: 0 1rem; }
    .pension-edu__num {
      width: 4.25rem;
      height: 4.25rem;
      border-radius: 50%;
      background: var(--forest);
      color: #fff;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.375rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.875rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 0 6px var(--cream-deep);
    }
    .pension-edu__step h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.25rem;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }
    .pension-edu__step p {
      font-size: 0.875rem;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    /* ═══════════════════════════
       COURS
    ═══════════════════════════ */
    .cours__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .cours__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.375rem;
    }
    .cours__card {
      background: var(--surface);
      border-radius: 1rem;
      padding: 2rem;
      border: 1px solid rgba(0,0,0,0.065);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    [data-theme="dark"] .cours__card { border-color: rgba(255,255,255,0.08); }
    .cours__card::after {
      content: '';
      position: absolute;
      inset: 0 0 auto;
      height: 3px;
      background: var(--brand-grad);
      opacity: 0;
      transition: opacity 0.25s;
    }
    .cours__card:hover { transform: translateY(-5px); box-shadow: 0 18px 52px rgba(0,0,0,0.10); }
    .cours__card:hover::after { opacity: 1; }
    .cours__badge {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: var(--forest);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      padding: 0.25rem 0.625rem;
      border-radius: 1rem;
    }
    .cours__ico {
      width: 50px;
      height: 50px;
      border-radius: 0.75rem;
      background: var(--cream-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.375rem;
    }
    [data-theme="dark"] .cours__ico { background: rgba(255,255,255,0.07); }
    .cours__card h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.125rem;
      color: var(--ink);
      margin-bottom: 0.625rem;
    }
    .cours__card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.68; }
    .cours__meta {
      margin-top: 1.375rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--cream-deep);
      font-size: 0.80rem;
      color: var(--ink-faint);
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
    [data-theme="dark"] .cours__meta { border-color: rgba(255,255,255,0.07); }
    .cours__meta::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ═══════════════════════════
       INTERNATIONAL
    ═══════════════════════════ */
    .intl { position: relative; overflow: hidden; }
    .intl::before {
      content: '';
      position: absolute;
      top: -5rem;
      right: -5rem;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: rgba(181,116,74,0.06);
      pointer-events: none;
    }
    .intl__layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .intl__steps {
      display: flex;
      flex-direction: column;
      gap: 1.625rem;
      margin-top: 2.5rem;
    }
    .intl__step {
      display: flex;
      gap: 1.125rem;
      align-items: flex-start;
    }
    .intl__step-n {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(181,116,74,0.45);
      color: var(--gold);
      font-size: 0.8125rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .intl__step-body h4 {
      font-weight: 700;
      font-size: 0.9375rem;
      color: #fff;
      margin-bottom: 0.3rem;
    }
    .intl__step-body p { font-size: 0.875rem; color: rgba(255,255,255,0.58); line-height: 1.65; }
    .intl__visual {
      border-radius: 1.125rem;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: linear-gradient(140deg, rgba(255,255,255,0.08) 0%, rgba(181,116,74,0.15) 100%);
      border: 1px solid rgba(255,255,255,0.10);
    }
    .intl__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.82;
    }

    /* ═══════════════════════════
       TÉMOIGNAGES
    ═══════════════════════════ */
    .temoignages__header { text-align: center; margin-bottom: 3rem; }
    .temoignages__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .temo {
      background: var(--surface);
      border: 1px solid rgba(0,0,0,0.065);
      border-radius: 1rem;
      padding: 2rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    [data-theme="dark"] .temo { border-color: rgba(255,255,255,0.08); }
    .temo:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.09); }
    .temo__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1.125rem; }
    .temo__text {
      font-size: 0.9375rem;
      font-style: italic;
      line-height: 1.72;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }
    .temo__author { display: flex; gap: 0.875rem; align-items: center; }
    .temo__avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
      flex-shrink: 0;
    }
    .temo__name { font-weight: 700; font-size: 0.875rem; color: var(--ink); }
    .temo__dog { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.125rem; }

    /* ═══════════════════════════
       FAQ
    ═══════════════════════════ */
    .faq { background: var(--cream-deep); }
    .faq__header { text-align: center; margin-bottom: 3rem; }
    .faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
    .faq__item {
      background: var(--surface);
      border: 1px solid rgba(0,0,0,0.065);
      border-radius: 0.875rem;
      overflow: hidden;
    }
    [data-theme="dark"] .faq__item { border-color: rgba(255,255,255,0.08); }
    .faq__q {
      width: 100%;
      background: none;
      border: none;
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--ink);
      text-align: left;
      transition: color 0.2s;
    }
    .faq__q:hover { color: var(--forest); }
    .faq__q[aria-expanded="true"] { color: var(--terracotta); }
    .faq__plus {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid rgba(0,0,0,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, border-color 0.3s, background 0.3s;
    }
    .faq__q[aria-expanded="true"] .faq__plus {
      transform: rotate(45deg);
      background: var(--brand-grad);
      border-color: var(--terracotta);
    }
    .faq__q[aria-expanded="true"] .faq__plus svg { stroke: #fff; }
    .faq__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s ease;
    }
    .faq__a-inner {
      padding: 0 1.5rem 1.5rem;
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--ink-soft);
    }

    /* ═══════════════════════════
       CTA FINAL
    ═══════════════════════════ */
    .cta-fin {
      background: var(--forest);
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }
    .cta-fin::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 25% 50%, rgba(181,116,74,0.16) 0%, transparent 55%),
        radial-gradient(circle at 75% 50%, rgba(53,192,103,0.14) 0%, transparent 55%);
      pointer-events: none;
    }
    .cta-fin__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5.5rem;
      align-items: start;
    }
    .cta-fin__title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.875rem, 4vw, 2.875rem);
      line-height: 1.2;
      letter-spacing: -0.016em;
      color: #fff;
      margin-bottom: 1.375rem;
    }
    .cta-fin__title em { font-style: italic; color: var(--gold); }
    .cta-fin__body { font-size: 0.9375rem; line-height: 1.75; color: rgba(255,255,255,0.58); max-width: 46ch; }
    .cta-fin__details {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      margin-top: 2.25rem;
    }
    .cta-fin__detail {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.62);
    }
    .cta-fin__detail svg { flex-shrink: 0; color: var(--gold); }

    /* ═══════════════════════════
       FORM
    ═══════════════════════════ */
    .form { display: flex; flex-direction: column; gap: 1.5rem; }
    .form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
    .form__row--2 { grid-template-columns: 1fr 1fr; }
    .form__field { display: flex; flex-direction: column; gap: 0.4rem; }
    .form__label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
    }
    .form__label em { font-weight: 400; font-style: italic; text-transform: none; letter-spacing: 0; }
    .form__input,
    .form__select,
    .form__textarea {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0.625rem;
      padding: 0.8125rem 1rem;
      color: #fff;
      font-family: inherit;
      font-size: 0.9375rem;
      outline: none;
      width: 100%;
      transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    }
    .form__input::placeholder,
    .form__textarea::placeholder { color: rgba(255,255,255,0.26); }
    .form__input:focus,
    .form__select:focus,
    .form__textarea:focus {
      border-color: rgba(53,192,103,0.60);
      background: rgba(255,255,255,0.11);
      box-shadow: 0 0 0 3px rgba(53,192,103,0.14);
    }
    .form__select option { background: #1F241C; }
    .form__textarea { resize: vertical; min-height: 110px; }
    .form__section-label {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.0625rem;
      font-style: italic;
      color: var(--gold);
      padding-bottom: 0.625rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 0.25rem;
    }
    .form__optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.32); }
    .form__toggle { display: inline-flex; border: 1px solid rgba(255,255,255,0.14); border-radius: 2rem; padding: 0.25rem; gap: 0.25rem; width: fit-content; margin-bottom: 0.25rem; }
    .form__toggle-input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
    .form__toggle-label {
      padding: 0.5rem 1.375rem;
      border-radius: 2rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255,255,255,0.55);
      cursor: pointer;
      transition: background 0.3s var(--ease-premium), color 0.3s ease;
    }
    .form__toggle-input:checked + .form__toggle-label { background: var(--brand-grad); color: #fff; }
    .form__dog-block {
      display: flex;
      flex-direction: column;
      gap: 1.125rem;
      padding: 1.5rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 1rem;
    }
    .form__dog-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1rem;
      font-style: italic;
      color: var(--gold-light);
      margin-bottom: 0.25rem;
    }
    .form__note { font-size: 0.8rem; line-height: 1.6; color: rgba(255,255,255,0.38); margin-top: -0.25rem; text-align: center; }
    .form__submit {
      width: 100%;
      margin-top: 0.25rem;
      background: var(--brand-grad);
      color: #fff;
      border: none;
      padding: 1.0625rem 2rem;
      border-radius: 3rem;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
      cursor: pointer;
    }
    .form__submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(7,151,150,0.40);
    }

    /* ═══════════════════════════
       FOOTER
    ═══════════════════════════ */
    .footer {
      background: #171B13;
      color: rgba(255,255,255,0.40);
      padding: 2.25rem 0;
      text-align: center;
      font-size: 0.8125rem;
    }
    .footer__logo {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.0625rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 0.375rem;
    }

    /* ═══════════════════════════
       STICKY MOBILE CTA
    ═══════════════════════════ */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 190;
      background: var(--surface);
      border-top: 1px solid rgba(0,0,0,0.09);
      padding: 0.875rem 1.5rem;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      box-shadow: 0 -10px 32px rgba(0,0,0,0.09);
    }
    .sticky-bar.show { display: flex; }
    .sticky-bar__text { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
    .sticky-bar__btn {
      background: var(--brand-grad);
      color: #fff;
      padding: 0.625rem 1.25rem;
      border-radius: 2rem;
      font-size: 0.875rem;
      font-weight: 700;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .sticky-bar__btn:hover { background: var(--terra-dark); }

    /* ═══════════════════════════
       DECORATIVE SEPARATOR
    ═══════════════════════════ */
    .sep {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .sep__line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(181,116,74,0.35), transparent);
    }
    .sep__paw {
      color: rgba(181,116,74,0.4);
      font-size: 1rem;
    }

    /* ═══════════════════════════
       ACADÉMIE PHOTOS DUO
    ═══════════════════════════ */
    .acad-duo {
      position: relative;
      margin-top: 2rem;
      padding-bottom: 3.5rem;
    }
    .acad-duo__main {
      border-radius: 1rem;
      overflow: hidden;
      aspect-ratio: 4/3;
      border: 1px solid rgba(255,255,255,0.10);
    }
    .acad-duo__main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
      transition: opacity 0.3s ease, transform 0.4s ease;
      display: block;
    }
    .acad-duo__main:hover img { opacity: 1; transform: scale(1.03); }
    .acad-duo__inset {
      position: absolute;
      bottom: 0;
      right: -1.25rem;
      width: 44%;
      aspect-ratio: 2/3;
      border-radius: 0.875rem;
      overflow: hidden;
      border: 4px solid rgba(255,255,255,0.15);
      box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 6px 18px rgba(0,0,0,0.18);
      transform: rotate(2.5deg);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .acad-duo__inset:hover {
      transform: rotate(0deg) scale(1.02);
      box-shadow: 0 30px 70px rgba(0,0,0,0.40), 0 8px 22px rgba(0,0,0,0.20);
    }
    .acad-duo__inset img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ═══════════════════════════
       MAP + INFOS (CTA FINAL)
    ═══════════════════════════ */
    .cta-map {
      margin-top: 4rem;
      padding-top: 3.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
    .cta-map__iframe-wrap {
      border-radius: 0.875rem;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: rgba(255,255,255,0.05);
    }
    .cta-map__iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    .cta-map__info { display: flex; flex-direction: column; gap: 2rem; }
    .cta-map__block-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .cta-map__contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.72);
      margin-bottom: 0.625rem;
    }
    .cta-map__contact-item svg { color: var(--gold); flex-shrink: 0; }
    .cta-map__contact-item a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
    .cta-map__contact-item a:hover { color: var(--gold); }
    .cta-map__hours { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .cta-map__hour-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.4375rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.055);
      font-size: 0.845rem;
      color: rgba(255,255,255,0.60);
    }
    .cta-map__hour-day { font-weight: 600; color: rgba(255,255,255,0.78); }
    .cta-map__hour-time { font-variant-numeric: tabular-nums; }

    /* ═══════════════════════════
       SOCIAL — HEADER
    ═══════════════════════════ */
    .hdr-socials {
      display: flex;
      align-items: center;
      gap: 0.125rem;
      padding-right: 1.25rem;
      border-right: 1px solid rgba(255,255,255,0.18);
      transition: border-color 0.3s;
    }
    .header.scrolled .hdr-socials { border-right-color: rgba(0,0,0,0.10); }
    .hdr-social {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      color: rgba(255,255,255,0.60);
      transition: color 0.2s ease, background 0.2s ease;
    }
    .header.scrolled .hdr-social { color: var(--ink-soft); }
    .hdr-social:hover { color: var(--terracotta); background: rgba(181,116,74,0.10); }

    /* ═══════════════════════════
       SOCIAL — SECTION
    ═══════════════════════════ */
    .social-sec {
      background: var(--forest);
      padding: 6rem 0;
    }
    .social-sec__intro {
      font-size: 1.05rem;
      line-height: 1.78;
      color: rgba(255,255,255,0.62);
      max-width: 54ch;
      margin-top: 1.125rem;
    }
    .social-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.375rem;
      margin-top: 3.5rem;
    }
    .social-card {
      background: var(--white);
      border-radius: 1rem;
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.08);
    }
    [data-theme="dark"] .social-card { background: var(--cream-deep); }
    .social-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 48px rgba(0,0,0,0.18);
    }
    .social-card__ico {
      width: 52px;
      height: 52px;
      border-radius: 0.875rem;
      background: var(--cream-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--terracotta);
      flex-shrink: 0;
    }
    [data-theme="dark"] .social-card__ico { background: rgba(255,255,255,0.08); }
    .social-card__name {
      font-size: 0.70rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-faint);
    }
    .social-card__desc {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--ink);
      flex: 1;
    }
    [data-theme="dark"] .social-card__desc { color: var(--ink); }
    .social-card__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--terracotta);
      transition: gap 0.2s;
      margin-top: 0.25rem;
    }
    .social-card:hover .social-card__cta { gap: 0.625rem; }

    /* ═══════════════════════════
       SOCIAL — FOOTER
    ═══════════════════════════ */
    .ftr-socials {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin: 0.875rem 0;
    }
    .ftr-social {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.42);
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .ftr-social:hover {
      color: var(--terracotta);
      border-color: rgba(181,116,74,0.45);
      background: rgba(181,116,74,0.08);
    }

    /* ═══════════════════════════
       RESPONSIVE
    ═══════════════════════════ */
    .header__cta { flex-shrink: 0; }
    @media (max-width: 1150px) {
      .hdr-socials { display: none; }
    }
    @media (max-width: 1023px) {
      .social-cards { grid-template-columns: repeat(2, 1fr); }
      .pension__layout,
      .academie__layout,
      .intl__layout,
      .cta-fin__inner { grid-template-columns: 1fr; gap: 3rem; }
      .pension__img-inset-wrap { display: none; }
      .reassurance__grid { grid-template-columns: repeat(2, 1fr); }
      .reassurance__item { border-right: none; border-bottom: 1px solid rgba(31,36,28,0.10); }
      .reassurance__item:nth-child(2n) { border-right: none; }
      .reassurance__item:nth-last-child(-n+2) { border-bottom: none; }
      .cours__grid { grid-template-columns: repeat(2, 1fr); }
      .temoignages__grid { grid-template-columns: repeat(2, 1fr); }
      .pension-edu__steps { grid-template-columns: 1fr; }
      .pension-edu__connector { display: none; }
      .academie__right { position: static; }
    }
    @media (max-width: 767px) {
      .cta-map { grid-template-columns: 1fr; }
      .acad-duo__inset { right: 0; width: 38%; }
      .acad-duo { padding-bottom: 2.5rem; }
      .cta-map__hours { grid-template-columns: 1fr; }
      .social-cards { grid-template-columns: 1fr; }
      .section { padding: 4rem 0; }
      .cours__grid { grid-template-columns: 1fr; }
      .temoignages__grid { grid-template-columns: 1fr; }
      .form__row { grid-template-columns: 1fr; }
      .header__nav, .header__cta, .hdr-socials { display: none; }
      .sticky-bar { display: flex; }
      .sticky-bar:not(.show) { display: none; }
      .hero { padding-bottom: 5rem; }
      .cours__header { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 479px) {
      .wrap, .wrap--wide, .wrap--slim { padding: 0 1.25rem; }
      .reassurance__grid { grid-template-columns: 1fr; }
      .reassurance__item { border-bottom: 1px solid rgba(31,36,28,0.10); }
      .reassurance__item:last-child { border-bottom: none; }
    }

/* ═══════════════════════════════════════════
   PREMIUM ENHANCEMENTS — v2
═══════════════════════════════════════════ */

:root {
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 10px rgba(31,36,28,0.06);
  --shadow-md: 0 14px 40px rgba(31,36,28,0.10);
  --shadow-lg: 0 24px 64px rgba(31,36,28,0.14);
}
.cours__card, .temo, .social-card, .faq__item {
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.cours__card:hover { box-shadow: var(--shadow-md); }
.temo:hover { box-shadow: var(--shadow-md); }
.social-card:hover { box-shadow: var(--shadow-lg); }
.btn { transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium); }
.academie__pillar { transition: background 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), transform 0.4s var(--ease-premium); }
.header { box-shadow: none; transition: background 0.4s var(--ease-premium), backdrop-filter 0.4s ease, padding 0.4s var(--ease-premium), border-color 0.4s ease, box-shadow 0.4s ease; }
.header.scrolled { box-shadow: 0 8px 32px rgba(31,36,28,0.06); }

.section { padding: 7rem 0; }
.section--lg { padding: 9rem 0; }
.section__title { margin-bottom: 1.375rem; }
@media (max-width: 767px) {
  .section { padding: 4.5rem 0; }
}

.header__logo-wrap { display: flex; align-items: center; gap: 0.875rem; }
.header__logo-img {
  width: 125px; height: 125px; border-radius: 14px; object-fit: cover;
  box-shadow: 0 4px 16px rgba(31,36,28,0.20);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__logo-img { width: 64px; height: 64px; border-radius: 10px; }
}

.hero__kicker--pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  background: rgba(15,22,16,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 1.875rem;
}
.hero__kicker--pill .hero__kicker-text {
  text-align: center;
  color: rgba(255,255,255,0.92);
}

.pension__img-wrap, .pension__img-inset-wrap, .acad-duo__main, .acad-duo__inset, .intl__visual, .page-hero__media {
  position: relative;
}
.pension__img-wrap::after, .pension__img-inset-wrap::after, .acad-duo__main::after, .acad-duo__inset::after, .intl__visual::after, .page-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(35,43,31,0.28) 0%, rgba(35,43,31,0.02) 45%, rgba(181,116,74,0.16) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
[data-theme="dark"] .pension__img-wrap::after, [data-theme="dark"] .pension__img-inset-wrap::after, [data-theme="dark"] .acad-duo__main::after, [data-theme="dark"] .acad-duo__inset::after, [data-theme="dark"] .intl__visual::after {
  mix-blend-mode: normal;
}

.header__nav a[aria-current="page"] { color: var(--terracotta); }
.header.scrolled .header__nav a[aria-current="page"] { color: var(--terracotta); }

.paw-trail {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.75rem;
  padding: 3.5rem 0;
}
.paw-trail__icon {
  opacity: 0;
  color: var(--terracotta);
  width: 30px;
  height: 30px;
}
.paw-trail__icon svg { width: 100%; height: 100%; display: block; }
.paw-trail__icon:nth-child(2), .paw-trail__icon:nth-child(4) { margin-bottom: 0.9rem; width: 22px; height: 22px; }

@keyframes paw-step {
  0%   { opacity: 0; transform: translateY(14px) scale(0.5) rotate(var(--paw-angle, 0deg)); }
  8%   { opacity: 1; transform: translateY(0)    scale(1)   rotate(var(--paw-angle, 0deg)); }
  62%  { opacity: 1; transform: translateY(0)    scale(1)   rotate(var(--paw-angle, 0deg)); }
  72%  { opacity: 0; transform: translateY(0)    scale(0.9) rotate(var(--paw-angle, 0deg)); }
  100% { opacity: 0; transform: translateY(14px) scale(0.5) rotate(var(--paw-angle, 0deg)); }
}

.paw-trail.visible .paw-trail__icon {
  animation: paw-step 7s ease-in-out infinite both;
}
.paw-trail.visible .paw-trail__icon:nth-child(1) { --paw-angle: -14deg; animation-delay: 0s;    }
.paw-trail.visible .paw-trail__icon:nth-child(2) { --paw-angle:   8deg; animation-delay: 0.55s; }
.paw-trail.visible .paw-trail__icon:nth-child(3) { --paw-angle: -10deg; animation-delay: 1.10s; }
.paw-trail.visible .paw-trail__icon:nth-child(4) { --paw-angle:  12deg; animation-delay: 1.65s; }
.paw-trail.visible .paw-trail__icon:nth-child(5) { --paw-angle:  -8deg; animation-delay: 2.20s; }

.paw-trail--forest .paw-trail__icon { color: rgba(255,255,255,0.55); }

@media (prefers-reduced-motion: reduce) {
  .paw-trail.visible .paw-trail__icon { animation: none !important; opacity: 1; }
}

.page-hero {
  position: relative;
  padding: 11rem 0 4rem;
  overflow: hidden;
  background: var(--forest);
}
.page-hero__grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}
.page-hero__eyebrow { color: var(--terracotta); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.25rem, 5.5vw, 3.75rem); line-height: 1.08; letter-spacing: -0.02em; color: #fff; max-width: 720px; }
.page-hero__sub { font-size: 1.0625rem; line-height: 1.75; color: rgba(255,255,255,0.62); max-width: 56ch; margin-top: 1.25rem; }

.services-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.75rem; }
.svc-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  min-height: 460px;
  color: #fff;
  transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium);
  box-shadow: var(--shadow-md);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card__bg { position: absolute; inset: 0; z-index: 0; }
.svc-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(190deg, rgba(20,30,20,0.05) 20%, rgba(20,30,20,0.86) 100%); }
.svc-card__body { position: relative; z-index: 2; }
.svc-card__eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.75rem; }
.svc-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.15; margin-bottom: 0.75rem; }
.svc-card__desc { font-size: 0.9375rem; line-height: 1.65; color: rgba(255,255,255,0.68); max-width: 42ch; margin-bottom: 1.5rem; }
.svc-card--secondary { min-height: 460px; }
@media (max-width: 1023px) {
  .services-split { grid-template-columns: 1fr; }
  .svc-card, .svc-card--secondary { min-height: 380px; }
}

.mini-cta {
  background: var(--forest);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mini-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(53,192,103,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.mini-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.mini-cta__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.125rem); color: #fff; margin-bottom: 0.875rem; }
.mini-cta__sub { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.62); margin-bottom: 2rem; }

.teaser-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 700; color: var(--terracotta);
  margin-top: 0.5rem; transition: gap 0.3s var(--ease-premium);
}
.teaser-link:hover { gap: 0.8rem; }

/* ═══════════════════════════════════════════
   CONTACT — Form premium v2 + missing utilities
═══════════════════════════════════════════ */

/* Fix: [hidden] must win over any display rule */
[hidden] { display: none !important; }

/* Form card (right column) */
.cta-fin__right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1.375rem;
  padding: 2.75rem;
}

/* Form title */
.form__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.375rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

/* Fieldset reset + legend */
fieldset.form__section {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.form__legend {
  display: block;
  width: 100%;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(181,116,74,0.22);
}

/* cta-fin contact detail links */
.cta-fin__detail a { color: rgba(255,255,255,0.62); transition: color 0.2s; }
.cta-fin__detail a:hover { color: var(--gold-light); }

/* Hours grid */
.hours-grid {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 2.25rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8125rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.065);
  font-size: 0.875rem;
  transition: background 0.18s;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,255,255,0.035); }
.hours-row span:first-child { font-weight: 600; color: rgba(255,255,255,0.82); }
.hours-row span:last-child { color: rgba(255,255,255,0.52); font-variant-numeric: tabular-nums; }

/* Map embed */
.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 2.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.32);
}
.map-embed iframe { display: block; border: 0; border-radius: 0; }

/* Contact page responsive */
@media (max-width: 1023px) {
  .cta-fin__right { padding: 2.25rem; }
}
@media (max-width: 767px) {
  .form__row--2 { grid-template-columns: 1fr; }
  .cta-fin__right { padding: 1.75rem 1.5rem; }
  .form__title { font-size: 1.25rem; }
}
@media (max-width: 479px) {
  .cta-fin__right { padding: 1.5rem 1.25rem; }
}

/* ── Pension Carousel ── */
.pcarousel-wrap {
  background: var(--cream-deep);
  padding: 0 0 3.5rem;
}
.pcarousel {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--cream);
}
.pcarousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pcarousel__img--active { opacity: 1; }
.pcarousel__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1rem;
}
.pcarousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(35,43,31,0.18);
  transition: background 0.3s;
  flex-shrink: 0;
}
.pcarousel__dot--active { background: var(--terracotta); }
@media (max-width: 767px) {
  .pcarousel { aspect-ratio: 4/3; }
}
@media (prefers-reduced-motion: reduce) {
  .pcarousel__img { transition: none; }
}

/* ── Google Form CTA (sous formulaire réservation) ── */
.gform-cta {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream-deep);
  border-radius: 12px;
  border: 1px solid rgba(35,43,31,0.08);
}
.gform-cta__label {
  margin: 0 0 0.875rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.gform-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.gform-cta__btn:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}
.gform-cta__btn[hidden] { display: none; }

/* ── Burger mobile ── */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  flex-shrink: 0;
}
.header.scrolled .header__burger { color: var(--ink); }
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav panel ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(31,36,28,0.10);
  box-shadow: 0 12px 32px rgba(31,36,28,0.14);
  z-index: 999;
  padding: 1.5rem 1.25rem 2rem;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav__list li {
  border-bottom: 1px solid rgba(31,36,28,0.08);
}
.mobile-nav__list a {
  display: block;
  padding: 0.9rem 0.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s;
}
.mobile-nav__list a:hover,
.mobile-nav__list a[aria-current="page"] { color: var(--terracotta); }
.mobile-nav__cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 0.25rem; }

@media (max-width: 767px) {
  .header__burger { display: flex; }
  .mobile-nav { display: block; }
}

/* ── Page politique de confidentialité ── */
.priv-body { display: flex; flex-direction: column; gap: 0; }
.priv-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(31,36,28,0.09);
}
.priv-section:last-child { border-bottom: none; }
.priv-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.875rem;
}
.priv-section p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.75rem; }
.priv-section p:last-child { margin-bottom: 0; }
.priv-section ul { padding-left: 1.25rem; margin: 0.5rem 0 0.75rem; }
.priv-section li { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.35rem; }
.priv-section a { color: var(--terracotta); text-decoration: underline; }

/* ── Bannière cookies ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--forest);
  color: rgba(255,255,255,0.82);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.825rem;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}
.cookie-banner a { color: var(--terracotta); text-decoration: underline; }
.cookie-banner__btn {
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookie-banner__btn:hover { background: var(--terra-dark); }

/* ── Avis de collecte formulaire ── */
.form__privacy {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 1rem;
  line-height: 1.55;
}
.form__privacy a { color: var(--terracotta); text-decoration: underline; }
