  @import url("/tokens.css");

  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  .wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .label {
    font-family: var(--mono);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
  }

  /* Nav */
  header.site-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
  }

  .site-nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  .logo {
    font-family: var(--mono);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .logo span { color: var(--accent); }

  nav.links {
    display: flex;
    gap: 28px;
  }
  nav.links a {
    text-decoration: none;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
  }
  nav.links a:hover { color: var(--ink); }

  .nav-toggle { display: none; }
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* Hero */
  .hero {
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--line);
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-text > * { animation: fade-up 0.6s ease both; }
  .hero-text > *:nth-child(1) { animation-delay: 0s; }
  .hero-text > *:nth-child(2) { animation-delay: 0.08s; }
  .hero-text > *:nth-child(3) { animation-delay: 0.16s; }
  .hero-text > *:nth-child(4) { animation-delay: 0.24s; }
  .hero-text > *:nth-child(5) { animation-delay: 0.32s; }
  .hero-visual { animation: fade-up 0.7s ease 0.2s both; }

  @media (prefers-reduced-motion: reduce) {
    .hero-text > *, .hero-visual { animation: none; }
  }
  .hero-photo {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .hero-photo img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
  }
  .hero-credit {
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--ink-soft);
    text-align: right;
  }
  .hero-credit a { color: inherit; }
  .hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    font-weight: 700;
    max-width: 780px;
    letter-spacing: -0.01em;
  }
  .hero .lede {
    margin-top: 24px;
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 620px;
  }
  .tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .tag {
    font-family: var(--mono);
    font-size: 12.5px;
    background: rgba(74, 81, 88, 0.06);
    border: 1px solid var(--line);
    padding: 5px 10px;
    border-radius: 3px;
    color: var(--ink-soft);
  }
  .cta {
    display: inline-block;
    margin-top: 36px;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 3px;
    transition: background 0.15s ease;
  }
  .cta:hover { background: var(--accent-dim); }

  /* Storytelling */
  .story {
    padding: 88px 0;
    border-bottom: 1px solid var(--line);
  }
  .story .wrap { max-width: 660px; }
  .story-lead {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }
  .story-body {
    margin-top: 22px;
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .story-body + .story-body { margin-top: 16px; }

  .text-link {
    color: inherit;
    text-decoration: none;
    padding-bottom: 1px;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.25s ease;
  }
  .text-link:hover { background-size: 100% 1px; }

  /* Sections generic */
  section { padding: 72px 0; }
  section[id] { scroll-margin-top: 80px; }
  section.bordered { border-bottom: 1px solid var(--line); }

  .section-divider {
    display: flex;
    justify-content: center;
    padding: 8px 0 56px;
  }
  h2.section-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
    max-width: 560px;
  }
  .section-intro {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 16px;
    max-width: 560px;
  }

  /* Offres */
  .offres-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .parcours-grid {
    grid-template-columns: 1fr;
  }
  .offre {
    background: linear-gradient(160deg, var(--paper-raised), var(--paper));
    border: 1px solid rgba(220, 216, 206, 0.6);
    border-radius: 20px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(22, 25, 28, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
  }
  .offre:hover {
    box-shadow: 0 16px 40px rgba(22, 25, 28, 0.12);
    transform: translateY(-3px);
  }
  #parcours .offre {
    background: linear-gradient(160deg, var(--paper), #f1efe7);
  }
  .offre .num {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 600;
    background: rgba(179, 73, 46, 0.08);
    border: 1px solid rgba(179, 73, 46, 0.18);
    padding: 4px 10px;
    border-radius: 8px;
  }
  .offre .num svg { flex-shrink: 0; }
  .offre h3 {
    margin-top: 14px;
    font-size: 19px;
    font-weight: 700;
  }
  .offre .accroche {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 4px;
  }
  .offre p.body {
    margin-top: 16px;
    font-size: 14.5px;
    color: var(--ink-soft);
    flex-grow: 1;
  }
  .offre ul.points {
    margin-top: 14px;
    padding-left: 18px;
    font-size: 13.5px;
    color: var(--ink-soft);
    flex-grow: 1;
  }
  .offre ul.points li { margin-bottom: 7px; }
  .livrable {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-soft);
  }
  .livrable .label { display: block; margin-bottom: 4px; }
  .livrable p + p { margin-top: 10px; }

  /* Rythme de fond */
  .story,
  #parcours,
  #a-propos {
    background: var(--paper-raised);
  }

  /* Références */
  .refs-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 32px;
  }
  .ref-item {
    display: flex;
    align-items: baseline;
    gap: 11px;
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 600;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
  }
  .ref-item::before {
    content: "";
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: var(--accent);
  }
  .testimonial {
    margin-top: 40px;
    padding: 32px 36px;
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
  }
  .testimonial p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    font-style: italic;
  }
  .testimonial cite {
    display: block;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 13px;
    font-style: normal;
    color: var(--ink-soft);
  }

  /* À propos */
  .apropos-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
  }
  .apropos-grid .name {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 600;
  }
  .apropos-grid .role {
    margin-top: 6px;
    font-size: 13.5px;
    color: var(--ink-soft);
  }
  .apropos-grid .bio p {
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .apropos-grid .bio strong { color: var(--ink); }

  /* FAQ */
  .faq-groups {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
  }
  .faq-group + .faq-group { margin-top: 28px; }
  .faq-group-title {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 4px;
  }
  .faq-list {
    border-top: 1px solid var(--line);
  }
  .faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 11px 0;
  }
  .faq-list summary {
    cursor: pointer;
    position: relative;
    padding-right: 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    list-style: none;
    transition: color 0.15s ease;
  }
  .faq-list summary:hover { color: var(--accent); }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::before,
  .faq-list summary::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .faq-list summary::after { transform: translateY(-50%) rotate(90deg); }
  .faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
  }
  .faq-list details p {
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
  }
  .faq-list details p + p { margin-top: 10px; }
  .faq-list details ul {
    margin-top: 8px;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
  }
  .faq-list details li { margin-bottom: 5px; }
  .faq-list details strong { color: var(--ink); }

  /* Contact */
  section#contact {
    background: var(--ink);
    color: var(--paper);
  }
  #contact .label { color: #e8b7a5; }
  #contact h2.section-title { color: var(--paper); }
  .contact-grid {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact-item .label { display: block; margin-bottom: 8px; }
  .contact-item a, .contact-item span.value {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: var(--paper);
    border-bottom: 1px solid #3a3f45;
  }
  .contact-item a:hover { border-bottom-color: var(--accent); }

  footer {
    padding: 32px 0;
    font-family: var(--mono);
    font-size: 12.5px;
    background: var(--ink);
    color: #9aa0a6;
    border-top: 1px solid #2a2e33;
  }
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-inner .sep { color: #4a5158; }

  @media (max-width: 780px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-visual { order: -1; margin-bottom: 8px; }
    .hero-photo img { height: 220px; }
    .refs-list { grid-template-columns: 1fr 1fr; }
    .apropos-grid { grid-template-columns: 1fr; }
    .faq-groups { grid-template-columns: 1fr; }
    .faq-group + .faq-group { margin-top: 20px; }
    .nav-burger { display: flex; }
    nav.links {
      display: none;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 4px;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      padding: 12px 28px 20px;
    }
    nav.links a { padding: 10px 0; border-top: 1px solid var(--line); }
    nav.links a:first-child { border-top: none; }
    .nav-toggle:checked ~ nav.links { display: flex; }
    .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  }
