﻿/* ── TOKENS ────────────────────────────────────────── */
    :root {
      --bg:            #f0ebe3;
      --surface:       #e8e1d8;
      --card:          #ffffff;
      --primary:       #26201a;
      --primary-light: #6b5a48;
      --peach:         #c4a882;
      --rust:          #c8622a;
      --rust-dark:     #a84e20;
      --ink:           #18120c;
      --muted:         rgba(38,32,26,.38);
      --ghost:         rgba(38,32,26,.14);
      --shadow:        0 4px 24px rgba(38,32,26,.08);
      --shadow-lg:     0 12px 40px rgba(38,32,26,.14);

      --font-display: 'Cormorant Garamond', serif;
      --font-body:    'Inter', sans-serif;

      --r-sm:  .375rem;
      --r-md:  .5rem;
      --r-lg:  .75rem;
      --r-full: 9999px;
    }

    /* ── RESET ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--primary);
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: var(--font-body); }
    ul { list-style: none; }

    /* ── UTILITAIRES ───────────────────────────────────── */
    .container { max-width: 1160px; margin-inline: auto; padding-inline: 1.5rem; }
    .section   { padding-block: 6rem; }
    .section--alt { background: var(--surface); }
    .label {
      font-size: .6875rem; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--primary-light);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.15;
      color: var(--primary);
    }
    .divider {
      width: 3rem; height: 2px;
      background: var(--peach);
      margin-block: 1.25rem;
    }
    .divider--center { margin-inline: auto; }
    .tag {
      display: inline-block;
      background: var(--peach);
      color: var(--ink);
      font-size: .6875rem; font-weight: 500;
      letter-spacing: .06em; text-transform: uppercase;
      padding: .25rem .75rem;
      border-radius: var(--r-full);
    }

    /* ── BOUTONS ───────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .6875rem; font-weight: 500;
      letter-spacing: .08em; text-transform: uppercase;
      padding: .8rem 1.75rem;
      border-radius: var(--r-sm);
      border: none;
      transition: background 200ms, transform 150ms, box-shadow 200ms;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--rust);
      color: #fff;
    }
    .btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,98,42,.25); }
    .btn-primary:active { transform: translateY(0); }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 1px solid var(--ghost);
    }
    .btn-outline:hover { border-color: rgba(38,32,26,.22); background: rgba(38,32,26,.04); }

    .btn-ghost {
      background: none; border: none; padding: 0;
      color: var(--primary-light);
      font-size: .875rem; font-weight: 400;
      text-decoration: underline;
      text-underline-offset: 3px;
      letter-spacing: 0; text-transform: none;
    }

    /* ── NAVIGATION ────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      height: 72px;
      display: flex; align-items: center;
      background: var(--bg);
      transition: box-shadow 300ms;
    }
    .nav.scrolled { box-shadow: var(--shadow); }
    .nav__inner {
      width: 100%; max-width: 1160px;
      margin-inline: auto; padding-inline: 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav__logo {
      font-family: var(--font-display);
      font-size: 1.25rem; font-style: italic;
      font-weight: 400;
      color: var(--primary);
      flex-shrink: 0;
    }
    .nav__links {
      display: flex; align-items: center; gap: 2.25rem;
    }
    .nav__links a {
      font-size: .6875rem; font-weight: 500;
      letter-spacing: .09em; text-transform: uppercase;
      color: var(--primary);
      opacity: .75;
      transition: opacity 200ms;
    }
    .nav__links a:hover { opacity: 1; }
    .nav__cta { display: flex; align-items: center; gap: 1rem; }

    .nav__burger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; padding: .25rem;
    }
    .nav__burger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--primary);
      transition: transform 300ms, opacity 300ms;
    }
    .nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav__mobile {
      display: none;
      flex-direction: column; gap: 0;
      position: fixed; top: 72px; left: 0; right: 0;
      background: var(--bg);
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }
    .nav__mobile.open { display: flex; }
    .nav__mobile a {
      font-size: .6875rem; font-weight: 500;
      letter-spacing: .09em; text-transform: uppercase;
      color: var(--primary);
      padding: 1rem 0;
      border-bottom: 1px solid var(--ghost);
    }
    .nav__mobile .btn { margin-top: 1.25rem; align-self: flex-start; }

    /* ── HERO ──────────────────────────────────────────── */
    .hero {
      padding-top: calc(72px + 5rem);
      padding-bottom: 6rem;
      overflow: hidden;
    }
    .hero__inner {
      display: grid;
      grid-template-columns: 55fr 45fr;
      gap: 4rem;
      align-items: center;
    }
    .hero__label { margin-bottom: 1.5rem; }
    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 400; font-style: italic;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }
    .hero__title em {
      color: var(--rust);
      font-style: italic;
    }
    .hero__sub {
      font-size: 1.0625rem;
      color: var(--primary-light);
      max-width: 40ch;
      margin-bottom: 2rem;
      line-height: 1.75;
    }
    .hero__pillars {
      display: flex; flex-wrap: wrap; gap: .5rem;
      margin-bottom: 2.5rem;
    }
    .hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
    .hero__visual {
      position: relative;
      display: flex; justify-content: center;
    }
    .hero__blob {
      width: min(420px, 100%);
      aspect-ratio: 4/5;
      border-radius: 4px 52px 4px 52px;
      background: var(--surface);
      position: relative;
      overflow: hidden;
      border: 1px solid var(--ghost);
    }
    .hero__blob-inner {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-size: 8rem; font-style: normal;
      color: rgba(38,32,26,.06);
      font-weight: 300;
      user-select: none;
    }
    .hero__badge {
      position: absolute; bottom: 2rem; left: -1rem;
      background: var(--card);
      padding: 1rem 1.25rem;
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: .75rem;
    }
    .hero__badge-icon {
      width: 36px; height: 36px;
      background: var(--peach);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .hero__badge-text strong { display: block; font-size: .8125rem; font-weight: 500; }
    .hero__badge-text span  { font-size: .6875rem; color: var(--primary-light); }

    .hero__stat {
      position: absolute; top: 2rem; right: -1rem;
      background: var(--rust);
      color: #fff;
      padding: .75rem 1.5rem;
      border-radius: var(--r-md);
      text-align: center;
    }
    .hero__stat strong { display: block; font-size: 1.5rem; font-weight: 500; line-height: 1; }
    .hero__stat span   { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }

    /* ── PROBLÈME ──────────────────────────────────────── */
    .problems__head { text-align: center; margin-bottom: 3.5rem; }
    .problems__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .problem-card {
      background: var(--card);
      padding: 2.25rem 2rem;
      border-radius: var(--r-md);
      box-shadow: var(--shadow);
      border-top: 2px solid var(--peach);
    }
    .problem-card__number {
      font-family: var(--font-display);
      font-size: 2rem; font-weight: 500;
      font-style: normal;
      color: var(--card);
      background: var(--rust);
      line-height: 1;
      width: 2.75rem; height: 2.75rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px;
      margin-bottom: 1.25rem;
      letter-spacing: 0.03em;
    }
    .problem-card__title {
      font-family: var(--font-display);
      font-size: 1.1875rem; font-weight: 500;
      margin-bottom: .75rem;
      color: var(--primary);
    }
    .problem-card__body {
      font-size: .875rem;
      color: var(--primary-light);
      line-height: 1.7;
    }

    /* ── SERVICES ──────────────────────────────────────── */
    .services__head { text-align: center; margin-bottom: 3.5rem; }
    .services__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .service-card {
      background: var(--card);
      padding: 2.25rem 2rem;
      border-radius: var(--r-md);
      box-shadow: var(--shadow);
      transition: transform 250ms, box-shadow 250ms;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .service-card__icon {
      width: 44px; height: 44px;
      background: var(--peach);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .service-card__icon svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .service-card__title {
      font-family: var(--font-display);
      font-size: 1.1875rem;
      font-style: normal;
      font-weight: 500;
      margin-bottom: .5rem;
    }
    .service-card__body {
      font-size: .875rem;
      color: var(--primary-light);
      line-height: 1.65;
      margin-bottom: 1rem;
    }
    .service-card__list {
      margin-top: .75rem;
      display: flex; flex-direction: column; gap: .4rem;
    }
    .service-card__list li {
      font-size: .8125rem;
      color: var(--primary-light);
      padding-left: 1rem;
      position: relative;
    }
    .service-card__list li::before {
      content: '—';
      position: absolute; left: 0;
      color: var(--peach);
    }

    /* ── ABOUT ─────────────────────────────────────────── */
    .about__inner {
      display: grid;
      grid-template-columns: 45fr 55fr;
      gap: 5rem;
      align-items: center;
    }
    .about__visual {
      position: relative;
    }
    .about__photo {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--surface);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-size: 6rem; font-style: normal;
      color: rgba(38,32,26,.08);
      overflow: hidden;
      border: 1px solid var(--ghost);
    }
    .about__deco {
      position: absolute;
      width: 180px; height: 180px;
      border-radius: 4px;
      background: transparent;
      border: 1px solid var(--ghost);
      bottom: -2rem; right: -2rem;
      z-index: -1;
    }
    .about__years {
      position: absolute; top: 2rem; right: -1.5rem;
      background: var(--rust);
      color: #fff;
      width: 80px; height: 80px;
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
    }
    .about__years strong { font-size: 1.625rem; font-weight: 500; line-height: 1; }
    .about__years span   { font-size: .55rem; letter-spacing: .06em; text-transform: uppercase; opacity: .9; }
    .about__quote {
      font-family: var(--font-display);
      font-size: 1.375rem; font-style: italic;
      color: var(--primary);
      margin-bottom: 1.5rem;
      padding-left: 1.25rem;
      border-left: 2px solid var(--peach);
      line-height: 1.5;
    }
    .about__text {
      font-size: .9375rem;
      color: var(--primary-light);
      margin-bottom: 2rem;
      line-height: 1.8;
    }
    .about__pills {
      display: flex; flex-wrap: wrap; gap: .5rem;
      margin-bottom: 2rem;
    }

    /* ── PROCESSUS ─────────────────────────────────────── */
    .process__head { text-align: center; margin-bottom: 3.5rem; }
    .process__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      position: relative;
    }
    .process__steps::before {
      content: '';
      position: absolute;
      top: 2.75rem;
      left: calc(16.66% + 1.5rem);
      right: calc(16.66% + 1.5rem);
      height: 1px;
      background: var(--ghost);
    }
    .process__step {
      text-align: center;
      padding: 0 1rem;
    }
    .process__step-number {
      width: 56px; height: 56px;
      background: var(--rust);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--font-display);
      font-size: 1.375rem; font-weight: 500;
      position: relative;
      z-index: 1;
    }
    .process__step-title {
      font-family: var(--font-display);
      font-size: 1.1875rem; font-weight: 500;
      margin-bottom: .75rem;
      color: var(--primary);
    }
    .process__step-body {
      font-size: .875rem;
      color: var(--primary-light);
      line-height: 1.7;
    }
    .process__cta {
      text-align: center;
      margin-top: 3rem;
    }

    /* ── CONTACT ───────────────────────────────────────── */
    .contact__inner {
      display: grid;
      grid-template-columns: 42fr 58fr;
      gap: 5rem;
      align-items: start;
    }
    .contact__info h2 { margin-bottom: .75rem; }
    .contact__info p { font-size: .9375rem; color: var(--primary-light); line-height: 1.75; margin-bottom: 2rem; }
    .contact__items { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact__item { display: flex; align-items: center; gap: .875rem; }
    .contact__item-icon {
      width: 36px; height: 36px;
      background: var(--peach);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact__item-icon svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .contact__item-text strong { display: block; font-size: .8125rem; font-weight: 500; }
    .contact__item-text span  { font-size: .8rem; color: var(--primary-light); }
    .contact__form { background: var(--card); padding: 2.25rem; border-radius: var(--r-lg); box-shadow: var(--shadow); }
    .form-row { margin-bottom: 1rem; }
    .form-row-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-label {
      display: block;
      font-size: .6375rem; font-weight: 500;
      letter-spacing: .07em; text-transform: uppercase;
      color: var(--primary-light);
      margin-bottom: .4rem;
    }
    .form-input {
      width: 100%;
      height: 42px;
      background: var(--bg);
      border: 1px solid var(--ghost);
      border-radius: var(--r-sm);
      padding: 0 .875rem;
      color: var(--primary);
      font-family: var(--font-body);
      font-size: .875rem;
      transition: box-shadow 150ms, border-color 150ms;
    }
    .form-input:focus {
      outline: none;
      border-color: transparent;
      box-shadow: 0 0 0 2px var(--rust);
    }
    .form-select { appearance: none; cursor: pointer; }
    .form-textarea {
      width: 100%; min-height: 100px; resize: vertical;
      background: var(--bg);
      border: 1px solid var(--ghost);
      border-radius: var(--r-sm);
      padding: .75rem .875rem;
      color: var(--primary);
      font-family: var(--font-body);
      font-size: .875rem;
      transition: box-shadow 150ms, border-color 150ms;
    }
    .form-textarea:focus { outline: none; border-color: transparent; box-shadow: 0 0 0 2px var(--rust); }

    /* ── FOOTER ────────────────────────────────────────── */
    .footer {
      background: #26201a;
      color: rgba(255,255,255,.8);
      padding-block: 4rem 2rem;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer__logo {
      font-family: var(--font-display);
      font-size: 1.5rem; font-style: italic;
      color: #fff;
      display: block;
      margin-bottom: .875rem;
    }
    .footer__baseline {
      font-size: .8125rem;
      color: rgba(255,255,255,.5);
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .footer__social { display: flex; gap: .75rem; }
    .footer__social a {
      width: 34px; height: 34px;
      background: rgba(255,255,255,.08);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.6);
      font-size: .75rem; font-weight: 500;
      transition: background 150ms, color 150ms;
      letter-spacing: 0;
    }
    .footer__social a:hover { background: rgba(255,255,255,.15); color: #fff; }
    .footer__col-title {
      font-size: .6375rem; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 1.25rem;
    }
    .footer__links { display: flex; flex-direction: column; gap: .6rem; }
    .footer__links a {
      font-size: .8375rem;
      color: rgba(255,255,255,.6);
      transition: color 150ms;
    }
    .footer__links a:hover { color: #fff; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer__copy { font-size: .75rem; color: rgba(255,255,255,.35); }
    .footer__legal { display: flex; gap: 1.5rem; }
    .footer__legal a { font-size: .75rem; color: rgba(255,255,255,.35); transition: color 150ms; }
    .footer__legal a:hover { color: rgba(255,255,255,.7); }

    /* ── SCROLL ANIMATIONS ─────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 500ms ease-out, transform 500ms ease-out;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 100ms; }
    .reveal-delay-2 { transition-delay: 200ms; }
    .reveal-delay-3 { transition-delay: 300ms; }
    .reveal-delay-4 { transition-delay: 400ms; }
    .reveal-delay-5 { transition-delay: 500ms; }

    /* ── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 1024px) {
      .services__grid { grid-template-columns: repeat(2, 1fr); }
      .problems__grid { grid-template-columns: repeat(2, 1fr); }
      .footer__top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .section { padding-block: 4rem; }
      .nav__links, .nav__cta { display: none; }
      .nav__burger { display: flex; }
      .hero__inner { grid-template-columns: 1fr; }
      .hero__visual { order: -1; }
      .hero__blob { width: min(280px, 90%); margin-inline: auto; }
      .about__inner { grid-template-columns: 1fr; }
      .about__photo { max-width: 340px; margin-inline: auto; }
      .contact__inner { grid-template-columns: 1fr; }
      .services__grid { grid-template-columns: 1fr; }
      .problems__grid { grid-template-columns: 1fr; }
      .process__steps { grid-template-columns: 1fr; }
      .process__steps::before { display: none; }
      .footer__top { grid-template-columns: 1fr; gap: 2rem; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
      .form-row-cols { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .hero__actions { flex-direction: column; align-items: flex-start; }
    }

/* -- PAGES LÉGALES -- */
.legal-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 72px; display: flex; align-items: center; background: var(--bg); box-shadow: 0 4px 24px rgba(38,32,26,.08); }
.legal-nav__inner { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.legal-nav__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; font-weight: 400; color: var(--primary); text-decoration: none; }
.legal-nav__back { font-size: .6875rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--primary-light); text-decoration: none; transition: color 150ms; }
.legal-nav__back:hover { color: var(--rust); }
.legal-page-header { padding-top: calc(72px + 4rem); padding-bottom: 3rem; }
.legal-label { font-size: .6875rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 1rem; display: block; }
.legal-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; font-style: italic; line-height: 1.15; color: var(--primary); margin-bottom: 1rem; }
.legal-divider { width: 3rem; height: 2px; background: var(--peach); margin-block: 1.25rem; }
.legal-update { font-size: .8125rem; color: var(--primary-light); }
.legal-content { padding-bottom: 6rem; }
.legal-section { background: var(--card); border-radius: .5rem; padding: 2rem 2.25rem; margin-bottom: 1.5rem; box-shadow: 0 4px 24px rgba(38,32,26,.08); }
.legal-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--primary); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(38,32,26,.14); }
.legal-section p { font-size: .9375rem; color: var(--primary-light); line-height: 1.8; margin-bottom: .75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--primary); font-weight: 500; }
.legal-section ul { margin: .5rem 0 .75rem; padding-left: 0; list-style: none; }
.legal-section ul li { font-size: .9375rem; color: var(--primary-light); padding-left: 1.25rem; position: relative; margin-bottom: .35rem; }
.legal-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--peach); }
.legal-footer { background: #26201a; color: rgba(255,255,255,.6); padding-block: 2rem; text-align: center; font-size: .8125rem; }
.legal-footer a { color: rgba(255,255,255,.6); text-decoration: none; transition: color 150ms; }
.legal-footer a:hover { color: #fff; }

/* -- SYMFONY ADDITIONS -- */
.form-error{display:block;font-size:.75rem;color:var(--rust);margin-top:.3rem;}
.flash-success{position:fixed;top:72px;left:0;right:0;z-index:200;background:var(--rust);color:#fff;text-align:center;padding:.875rem 1.5rem;font-size:.6875rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;}
.flash-error{position:fixed;top:72px;left:0;right:0;z-index:200;background:var(--primary);color:var(--peach);text-align:center;padding:.875rem 1.5rem;font-size:.6875rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;}