:root {
      --black: #050505;
      --carbon: #10100f;
      --bronze: #b8873d;
      --bronze-light: #d8b36b;
      --white: #f6f3eb;
      --muted: rgba(246, 243, 235, 0.74);
      --line: rgba(216, 179, 107, 0.24);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Montserrat", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--black);
    }

    body {
      margin: 0;
      min-width: 320px;
      background:
        radial-gradient(circle at 18% 10%, rgba(184, 135, 61, 0.16), transparent 30rem),
        linear-gradient(180deg, #030303 0%, var(--black) 52%, #080807 100%);
      color: var(--white);
      font-family: var(--sans);
      letter-spacing: 0;
    }

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

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

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 30;
      border-bottom: 1px solid var(--line);
      background: rgba(5, 5, 5, 0.88);
      backdrop-filter: blur(18px);
    }

    .nav-wrap {
      width: min(1180px, calc(100% - 44px));
      height: 82px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand img {
      width: 78px;
      height: 78px;
      object-fit: contain;
      filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.48));
    }

    .top-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      color: rgba(246, 243, 235, 0.76);
      font-size: 13px;
      font-weight: 800;
    }

    .top-nav a:hover,
    .top-nav a:focus-visible {
      color: var(--bronze-light);
      outline: none;
    }

    .section-inner {
      width: min(1180px, calc(100% - 44px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero {
      min-height: 720px;
      display: grid;
      align-items: end;
      padding: 150px 0 76px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.12)),
        linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.18) 40%),
        url("../park-auto/la-roue-et-le-moulin-a-eau.webp") center 48% / cover,
        var(--carbon);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.18;
      background-image:
        linear-gradient(rgba(216, 179, 107, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 179, 107, 0.15) 1px, transparent 1px);
      background-size: 90px 90px;
      pointer-events: none;
    }

    .breadcrumb,
    .eyebrow,
    .subtitle {
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .breadcrumb {
      margin-bottom: 28px;
      color: rgba(246, 243, 235, 0.58);
    }

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

    .eyebrow::before {
      content: "";
      width: 52px;
      height: 1px;
      background: currentColor;
    }

    h1,
    h2,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 880px;
      margin: 18px 0 16px;
      font-family: var(--serif);
      font-size: clamp(3rem, 6vw, 6.4rem);
      font-weight: 700;
      line-height: 0.92;
      letter-spacing: 0;
    }

    .subtitle {
      display: block;
      max-width: 780px;
      margin-bottom: 22px;
      color: var(--bronze-light);
      font-size: clamp(0.82rem, 1.4vw, 1.05rem);
      line-height: 1.5;
    }

    .hero-copy {
      max-width: 700px;
      margin-bottom: 0;
      color: rgba(246, 243, 235, 0.86);
      font-size: clamp(1.05rem, 1.7vw, 1.35rem);
      line-height: 1.65;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      width: min(760px, 100%);
      margin-top: 34px;
      border: 1px solid var(--line);
      background: rgba(8, 8, 8, 0.72);
      backdrop-filter: blur(10px);
    }

    .hero-meta div {
      padding: 18px;
      border-right: 1px solid var(--line);
    }

    .hero-meta div:last-child {
      border-right: 0;
    }

    .hero-meta strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1;
    }

    .hero-meta span {
      display: block;
      margin-top: 8px;
      color: rgba(246, 243, 235, 0.62);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .section {
      padding: 92px 0;
      border-top: 1px solid rgba(216, 179, 107, 0.16);
      background:
        linear-gradient(135deg, rgba(216, 179, 107, 0.05), transparent 34%),
        #080807;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 34px;
      align-items: start;
    }

    .panel {
      border: 1px solid var(--line);
      background: rgba(18, 18, 17, 0.78);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    }

    .panel-body {
      padding: 30px;
    }

    .panel h2 {
      margin: 14px 0 18px;
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .story p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    .source-image {
      width: 100%;
      max-height: 740px;
      object-fit: cover;
      border-bottom: 1px solid var(--line);
      background: #0b0b0a;
    }

    .spec-list {
      display: grid;
    }

    .spec-line {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 15px 0;
      border-top: 1px solid rgba(216, 179, 107, 0.14);
      color: rgba(246, 243, 235, 0.76);
      font-size: 14px;
      line-height: 1.45;
    }

    .spec-line:first-child {
      border-top: 0;
    }

    .spec-line b {
      min-width: 118px;
      color: var(--bronze-light);
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      min-height: 48px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.02em;
    }

    .btn-primary {
      background: linear-gradient(135deg, #c79545, #e3c37b);
      color: #080808;
    }

    .btn-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.03);
    }

    .footer {
      padding: 54px 0;
      border-top: 1px solid var(--line);
      background: #030303;
      color: rgba(246, 243, 235, 0.62);
    }

    .footer .section-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
    }

    @media (max-width: 900px) {
      .top-nav {
        display: none;
      }

      .hero {
        min-height: 640px;
        padding-top: 128px;
      }

      .detail-grid,
      .hero-meta {
        grid-template-columns: 1fr;
      }

      .hero-meta div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .hero-meta div:last-child {
        border-bottom: 0;
      }
    }

    @media (max-width: 620px) {
      .nav-wrap,
      .section-inner {
        width: min(100% - 32px, 1180px);
      }

      .brand img {
        width: 62px;
        height: 62px;
      }

      .brand span {
        display: none;
      }

      .hero {
        min-height: 590px;
        padding-bottom: 48px;
      }

      .section {
        padding: 64px 0;
      }

      .panel-body {
        padding: 24px;
      }

      .actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }
    }
