    :root {
      --navy: #334f73;
      --navy-deep: #263b57;
      --blue: #7db4df;
      --blue-soft: #a8d0ef;
      --cream: #f7f3ee;
      --white: #ffffff;
      --sand: #efe6dc;
      --text-dark: #24364a;
      --text-soft: #667487;
      --line: rgba(36, 54, 74, 0.14);
      --shadow-soft: 0 18px 45px rgba(19, 32, 48, 0.10);
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      background: var(--cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin: 0 auto;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      color: var(--white);
      background: url("images/hotel-ormichal-dijon-sud.jpg") center center / cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(38, 59, 87, 0.86) 0%, rgba(38, 59, 87, 0.60) 34%, rgba(38, 59, 87, 0.18) 68%, rgba(38, 59, 87, 0.10) 100%),
        linear-gradient(180deg, rgba(38, 59, 87, 0.18) 0%, rgba(38, 59, 87, 0.38) 60%, rgba(38, 59, 87, 0.60) 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 48px), 1180px);
      margin: 0 auto;
      padding: 56px 0 72px;
    }

    .hero-content {
      max-width: 560px;
    }

    .section-heading h2, .contact-block h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.55rem, 2.4vw, 2.2rem);
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: 0.005em;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 20px;
      color: var(--blue-soft);
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .logo {
      /* Réduction de l'échelle du logo hero */
      width: min(220px, 96%);
      margin-bottom: 22px;
    }

    h1, h2 {
      font-family: 'Cormorant Garamond', serif;
    }

    h1 {
      margin: 0 0 12px;
      font-size: clamp(1.75rem, 2.6vw, 2.7rem);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: 0.01em;
      max-width: 18ch;
    }

    .hero p {
      margin: 0;
      max-width: 520px;
      color: rgba(255,255,255,0.88);
      font-size: 1rem;
    }

    .hero .lead {
      font-size: 1rem;
      color: rgba(255,255,255,0.92);
      margin-bottom: 0;
      max-width: 32ch;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 28px;
    }

    .button,
    .button-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 0 28px;
      border-radius: 2px;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .button {
      background: var(--blue-soft);
      color: var(--navy-deep);
      border: 1px solid var(--blue-soft);
      box-shadow: 0 14px 30px rgba(20, 32, 47, 0.16);
    }

    .button-secondary {
      background: rgba(255,255,255,0.06);
      color: var(--white);
      border: 1px solid rgba(168,208,239,0.52);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .button:hover,
    .button-secondary:hover,
    .contact-link:hover,
    .gallery-item:hover {
      transform: translateY(-2px);
    }

    .button:hover {
      background: #c0ddf4;
      border-color: #c0ddf4;
      box-shadow: 0 18px 36px rgba(20, 32, 47, 0.18);
    }

    .button-secondary:hover {
      background: rgba(168,208,239,0.12);
      border-color: rgba(168,208,239,0.78);
    }

    .hero-location {
      margin-top: 20px;
      padding-top: 14px;
      border-top: 1px solid rgba(168,208,239,0.32);
      max-width: 340px;
      color: rgba(255,255,255,0.82);
      font-size: 0.92rem;
    }

    .hero-location strong {
      display: block;
      margin-bottom: 4px;
      color: var(--blue-soft);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .section {
      padding: 96px 0;
    }

    .section-cream {
      background: var(--cream);
    }

    .section-white {
      background: var(--white);
    }

    .section-navy {
      background: var(--navy);
      color: var(--white);
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-heading.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      margin: 0 0 14px;
      font-size: clamp(2rem, 3.2vw, 3.15rem);
      line-height: 1.08;
      font-weight: 300;
      letter-spacing: 0.02em;
    }

    .section p {
      margin: 0;
      font-size: 1.05rem;
      color: var(--text-soft);
    }

    .section-navy p,
    .section-navy .section-heading p {
      color: rgba(255,255,255,0.78);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 56px;
      align-items: center;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px 34px;
      margin-top: 32px;
      padding-top: 26px;
      border-top: 1px solid var(--line);
    }

    .feature strong {
      display: block;
      margin-bottom: 6px;
      color: var(--navy-deep);
      font-size: 1.03rem;
      font-weight: 600;
    }

    .feature:nth-child(2) strong,
    .feature:nth-child(4) strong {
      color: var(--navy);
    }

    .feature span {
      color: var(--text-soft);
      font-size: 0.98rem;
    }

    .image-large {
      overflow: hidden;
      min-height: 540px;
      box-shadow: var(--shadow-soft);
    }

    .image-large img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Ajuste le recadrage pour une image carrée (meilleure composition) */
      object-position: center 35%;
    }

    .gallery {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr 0.85fr;
      gap: 18px;
    }

    .gallery-item {
      overflow: hidden;
      background: #dfe6ee;
      min-height: 300px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.2s ease;
    }

    .gallery-item.large {
      min-height: 618px;
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .contact-block {
      max-width: 1180px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 36px;
      margin-top: 42px;
    }

    .contact-link {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      padding: 34px 26px 36px;
      box-shadow: none;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .contact-link:hover {
      background: rgba(255,255,255,0.11);
      border-color: rgba(168,208,239,0.24);
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 22px;
      color: var(--blue-soft);
      opacity: 0.95;
    }

    .contact-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .contact-label {
      margin-bottom: 14px;
      color: var(--white);
      font-size: 1.02rem;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: none;
    }

    .contact-value {
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 0;
      color: var(--blue-soft);
      line-height: 1.5;
    }

    .contact-subtext {
      color: rgba(255,255,255,0.78);
      font-size: 1rem;
      line-height: 1.5;
    }

    footer {
      background: var(--cream);
      padding: 0 0 38px;
    }

    .footer-inner {
      border-top: 1px solid rgba(38, 59, 87, 0.12);
      padding-top: 28px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .footer-text {
      color: var(--text-soft);
      font-size: 0.95rem;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-logo.ormichal-mini {
      height: 36px;
      width: auto;
    }

    .footer-logo.originals {
      height: 42px;
      width: auto;
    }

    @media (max-width: 980px) {
      .intro-grid,
      .gallery,
      .contact-links {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .image-large,
      .gallery-item,
      .gallery-item.large {
        min-height: 320px;
      }

      .features {
        grid-template-columns: 1fr 1fr;
      }

      .contact-links {
        gap: 20px;
      }
    }

    @media (max-width: 720px) {
      .container,
      .hero-inner {
        width: min(calc(100% - 32px), 1180px);
      }

      .hero {
        min-height: 82vh;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(38, 59, 87, 0.52) 0%, rgba(38, 59, 87, 0.30) 30%, rgba(38, 59, 87, 0.68) 100%),
          linear-gradient(90deg, rgba(38, 59, 87, 0.76) 0%, rgba(38, 59, 87, 0.24) 100%);
      }

      .hero-inner {
        padding: 32px 0 40px;
      }

      .logo {
        /* ~1/3 de la taille mobile actuelle */
        width: min(120px, 92%);
      }

      h1 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
        max-width: 18ch;
      }

      .actions {
        gap: 12px;
      }

      .button,
      .button-secondary {
        width: 100%;
        min-height: 54px;
        padding: 0 20px;
        font-size: 0.88rem;
        letter-spacing: 0.06em;
      }

      .contact-link {
        padding: 28px 20px 30px;
      }

      .contact-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 18px;
      }

      .section {
        padding: 64px 0;
      }

      .features,
      .contact-links {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        justify-content: center;
        text-align: center;
      }
    }

