:root {
      --cream: #f8f3eb;
      --cream-light: #fffaf4;
      --green: #68785a;
      --green-dark: #314332;
      --terracotta: #b8744f;
      --text: #252525;
      --muted: #6e6a63;
      --line: #e7ded1;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(60, 45, 30, 0.08);
      --radius: 22px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--cream-light);
      line-height: 1.6;
    }

    h1, h2, h3, .brand-name {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
      line-height: 1.12;
      color: #1f261f;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      background: rgba(255, 250, 244, 0.94);
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .nav {
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-mark {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      overflow: hidden;
      flex: 0 0 auto;
      background: transparent;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .brand-name {
      font-size: 34px;
    }

    .brand-subtitle {
      font-size: 14px;
      color: var(--muted);
      margin-top: 2px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      color: #333;
    }

    .menu a {
      border-bottom: 1px solid transparent;
      padding-bottom: 4px;
    }

    .menu a:hover {
      border-bottom-color: var(--green);
    }

    /* HERO */
    .hero {
      background: radial-gradient(circle at top left, #fff 0%, var(--cream-light) 44%, #f4eadc 100%);
      padding: 76px 0 0;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 54px;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(42px, 6vw, 72px);
      max-width: 560px;
      margin-bottom: 28px;
    }

    .hero p {
      max-width: 530px;
      font-size: 18px;
      color: #383632;
      margin-bottom: 26px;
    }

    .small-line {
      width: 54px;
      height: 2px;
      background: var(--green);
      margin: 24px 0;
    }

    .soft-note {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #504d47;
      font-size: 15px;
      margin-top: 34px;
    }

    .leaf-icon {
      width: 36px;
      height: 36px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--green);
    }

    .hero-image {
      min-height: 560px;
      border-top-left-radius: 90px;
      background:
        linear-gradient(90deg, rgba(255,250,244,0.08), rgba(255,250,244,0.08)),
        url("images/chambre-paradisiaque.png") center/cover;
      position: relative;
      box-shadow: var(--shadow);
    }

    .wave-overlay {
      position: absolute;
      right: 9%;
      top: 12%;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.8);
      opacity: 0.95;
    }

    .wave-overlay::before,
    .wave-overlay::after {
      content: "";
      position: absolute;
      inset: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.75);
    }

    .wave-overlay::after {
      inset: 58px;
    }

    .wave-dot {
      position: absolute;
      width: 22px;
      height: 22px;
      background: #fff;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 28px rgba(255,255,255,0.8);
    }

    /* SECTIONS */
    section {
      padding: 72px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 46px;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-size: 12px;
      color: var(--green-dark);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .section-title h2 {
      font-size: clamp(28px, 3.4vw, 42px);
    }

    .title-line {
      width: 50px;
      height: 2px;
      background: var(--green);
      margin: 20px auto 0;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .card {
      background: rgba(255,255,255,0.72);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 32px 20px 28px;
      text-align: center;
      min-height: 250px;
      box-shadow: 0 10px 30px rgba(70,50,30,0.05);
    }

    .card-icon {
      height: 82px;
      margin-bottom: 20px;
      display: grid;
      place-items: center;
      font-size: 46px;
      color: var(--green);
    }

    .card h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .card p {
      font-size: 14px;
      color: #4c4943;
    }

    .values {
      background:
        linear-gradient(90deg, rgba(248,243,235,1) 0%, rgba(248,243,235,0.92) 58%, rgba(248,243,235,0.75) 100%),
        url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1200&q=80") right center/cover;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .values-grid {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 56px;
      align-items: center;
    }

    .round-symbol {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--green);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 60px;
      box-shadow: var(--shadow);
    }

    .values h2 {
      font-size: clamp(30px, 4vw, 48px);
      margin-bottom: 18px;
    }

    .values em {
      color: var(--terracotta);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 38px;
      display: block;
      margin-top: 6px;
    }

    .values p {
      max-width: 640px;
      color: #3d3a36;
      font-size: 17px;
    }

    .steps {
      background: #fffdf9;
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      text-align: center;
      position: relative;
    }

    .step {
      padding: 10px 18px;
    }

    .step-number {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      margin: 0 auto 16px;
      background: #f5efe6;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--green-dark);
      font-size: 30px;
    }

    .step h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .step p {
      color: #55514b;
      font-size: 14px;
    }

    .contact-band {
      padding: 0 0 50px;
      background: #fffdf9;
    }

    .contact-box {
      display: grid;
      grid-template-columns: 300px 1fr;
      overflow: hidden;
      border-radius: 18px;
      background: var(--green);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .contact-photo {
      background: url("images/carnet-de-notes.png") center/cover;
      min-height: 180px;
    }

    .contact-content {
      padding: 40px 52px;
    }

    .contact-content h2 {
      color: #fff;
      font-size: clamp(28px, 4vw, 44px);
      margin-bottom: 14px;
    }

    .contact-content p {
      max-width: 580px;
      color: rgba(255,255,255,0.88);
      font-size: 17px;
    }

    footer {
      background: #fffdf9;
      border-top: 1px solid var(--line);
      padding: 28px 0 16px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      gap: 24px;
      align-items: center;
    }

    .footer-item {
      display: flex;
      gap: 12px;
      align-items: center;
      color: #383632;
      font-size: 14px;
    }

    .footer-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--green);
      flex: 0 0 auto;
    }

    .legal {
      border-top: 1px solid var(--line);
      margin-top: 22px;
      padding-top: 14px;
      text-align: center;
      color: var(--muted);
      font-size: 12px;
    }

    /* SUPPRESSION VOLONTAIRE DES BOUTONS
       Si tu veux remettre un bouton plus tard, ajoute un lien avec la classe .button.
       Pour l'instant, cette version est volontairement sobre et sans bouton d'appel à l'action. */

    @media (max-width: 960px) {
      .hero-grid,
      .values-grid,
      .contact-box,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 46px;
      }

      .hero-image {
        min-height: 420px;
        border-top-left-radius: 45px;
      }

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

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

      .menu {
        display: none;
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(100% - 26px, var(--max));
      }

      .nav {
        min-height: 74px;
      }

      .brand-name {
        font-size: 28px;
      }

      .logo-mark {
        width: 52px;
        height: 52px;
      }

      .hero h1 {
        font-size: 40px;
      }

      .hero p {
        font-size: 16px;
      }

      section {
        padding: 56px 0;
      }

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

      .values-grid {
        gap: 28px;
      }

      .round-symbol {
        width: 110px;
        height: 110px;
        font-size: 46px;
      }

      .values em {
        font-size: 30px;
      }

      .contact-content {
        padding: 30px 24px;
      }
    }
