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

      :root {
        --or: #b8973a;
        --or-light: #d4b870;
        --or-pale: #edd98a;
        --or-dim: rgba(184, 151, 58, 0.15);
        --blanc: #f9f8f5;
        --gris: #7a7570;
        --noir: #0e0d0b;
        --noir2: #161410;
        --noir3: #1e1b16;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--noir);
        color: var(--blanc);
        font-family: "Montserrat", sans-serif;
        font-weight: 300;
        overflow-x: hidden;
        cursor: none;
      }

      /* ── CURSEUR CUSTOM ── */
      .cursor {
        width: 8px;
        height: 8px;
        background: var(--or);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          transform 0.1s,
          width 0.3s,
          height 0.3s,
          background 0.3s;
      }
      .cursor-ring {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(184, 151, 58, 0.4);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition:
          transform 0.15s ease-out,
          width 0.3s,
          height 0.3s;
      }
      body:hover .cursor {
        opacity: 1;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 48px;
        height: 64px;
        background: rgba(14, 13, 11, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(184, 151, 58, 0.08);
        transition: border-color 0.3s;
      }

      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.6rem;
        font-weight: 200;
        letter-spacing: 0.4em;
        color: var(--or-light);
        padding-right: 0.4em;
        text-decoration: none;
      }

      .nav-links {
        display: flex;
        gap: 28px;
        list-style: none;
      }

      .nav-links a {
        font-size: 0.55rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        color: rgba(212, 184, 112, 0.4);
        text-decoration: none;
        transition: color 0.2s;
        cursor: none;
      }
      .nav-links a:hover {
        color: var(--or-light);
      }

      .nav-cta {
        padding: 9px 24px;
        border: 1px solid rgba(184, 151, 58, 0.4);
        font-size: 0.55rem;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--or);
        text-decoration: none;
        transition:
          background 0.3s,
          color 0.3s;
        cursor: none;
      }
      .nav-cta:hover {
        background: var(--or);
        color: var(--noir);
      }

      /* ── HERO ── */
      .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 100px 24px 80px;
        position: relative;
        overflow: hidden;
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 80% 60% at 50% 80%,
            rgba(184, 151, 58, 0.06) 0%,
            transparent 65%
          ),
          radial-gradient(
            ellipse 40% 40% at 20% 20%,
            rgba(184, 151, 58, 0.03) 0%,
            transparent 60%
          );
      }

      /* Grain overlay */
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
        opacity: 0.4;
        pointer-events: none;
      }

      .hero-ornament {
        font-size: 0.6rem;
        letter-spacing: 0.8em;
        text-transform: uppercase;
        color: var(--or);
        margin-bottom: 32px;
        opacity: 0;
        animation: fadeUp 1s 0.3s forwards;
      }

      .hero-name {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(6rem, 20vw, 14rem);
        font-weight: 200;
        letter-spacing: 0.25em;
        color: transparent;
        padding-right: 0.25em;
        line-height: 1;
        margin-bottom: 0;
        -webkit-text-stroke: 1px rgba(212, 184, 112, 0.6);
        position: relative;
        opacity: 0;
        animation: fadeUp 1.2s 0.5s forwards;
      }

      .hero-name-fill {
        position: absolute;
        inset: 0;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(6rem, 20vw, 14rem);
        font-weight: 200;
        letter-spacing: 0.25em;
        padding-right: 0.25em;
        color: var(--or-light);
        clip-path: inset(0 100% 0 0);
        animation: revealText 2s 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
      }

      @keyframes revealText {
        to {
          clip-path: inset(0 0% 0 0);
        }
      }

      .hero-divider {
        width: 1px;
        height: 0;
        background: linear-gradient(
          to bottom,
          transparent,
          var(--or),
          transparent
        );
        margin: 20px auto;
        animation: growLine 1s 1.2s forwards;
      }
      @keyframes growLine {
        to {
          height: 60px;
        }
      }

      .hero-sub {
        font-size: 0.55rem;
        letter-spacing: 0.75em;
        text-transform: uppercase;
        color: rgba(212, 184, 112, 0.4);
        margin-bottom: 16px;
        opacity: 0;
        animation: fadeUp 1s 1.4s forwards;
      }

      .hero-tagline {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        font-weight: 300;
        font-style: italic;
        color: rgba(249, 248, 245, 0.35);
        max-width: 480px;
        line-height: 1.7;
        margin: 0 auto 52px;
        opacity: 0;
        animation: fadeUp 1s 1.6s forwards;
      }

      .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        opacity: 0;
        animation: fadeUp 1s 1.8s forwards;
      }

      .btn-primary {
        padding: 15px 40px;
        background: var(--or);
        color: var(--noir);
        font-size: 0.58rem;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        text-decoration: none;
        transition:
          background 0.3s,
          transform 0.2s;
        cursor: none;
      }
      .btn-primary:hover {
        background: var(--or-pale);
        transform: translateY(-2px);
      }

      .btn-outline {
        padding: 15px 40px;
        border: 1px solid rgba(184, 151, 58, 0.35);
        color: rgba(212, 184, 112, 0.7);
        font-size: 0.58rem;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        text-decoration: none;
        transition:
          border-color 0.3s,
          color 0.3s;
        cursor: none;
      }
      .btn-outline:hover {
        border-color: var(--or);
        color: var(--or-light);
      }

      .scroll-hint {
        position: absolute;
        bottom: 36px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        opacity: 0;
        animation: fadeUp 1s 2.2s forwards;
      }
      .scroll-hint span {
        font-size: 0.52rem;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: rgba(184, 151, 58, 0.3);
      }
      .scroll-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, var(--or), transparent);
        animation: scrollPulse 2s infinite;
      }
      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 0.3;
          transform: scaleY(1);
        }
        50% {
          opacity: 1;
          transform: scaleY(1.2);
        }
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ── SECTIONS COMMUNES ── */
      .section {
        padding: 110px 24px;
        position: relative;
      }

      .sec-eyebrow {
        font-size: 0.55rem;
        letter-spacing: 0.55em;
        text-transform: uppercase;
        color: var(--or);
        text-align: center;
        margin-bottom: 10px;
      }

      .sec-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 300;
        text-align: center;
        color: var(--blanc);
        letter-spacing: 0.05em;
        margin-bottom: 16px;
        line-height: 1.15;
      }

      .sec-intro {
        text-align: center;
        font-size: 0.82rem;
        color: rgba(249, 248, 245, 0.35);
        line-height: 1.9;
        max-width: 520px;
        margin: 0 auto 72px;
      }

      .gold-line {
        width: 60px;
        height: 1px;
        background: var(--or);
        margin: 20px auto 0;
        opacity: 0.5;
      }

      /* ── CONCEPT ── */
      #concept {
        background: var(--noir2);
      }

      .concept-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2px;
        max-width: 1000px;
        margin: 0 auto;
      }

      .concept-card {
        background: var(--noir3);
        border: 1px solid rgba(184, 151, 58, 0.08);
        padding: 44px 32px;
        text-align: center;
        transition:
          border-color 0.4s,
          transform 0.3s;
        position: relative;
        overflow: hidden;
      }

      .concept-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          to right,
          transparent,
          var(--or),
          transparent
        );
        transform: scaleX(0);
        transition: transform 0.4s;
      }

      .concept-card:hover {
        border-color: rgba(184, 151, 58, 0.3);
        transform: translateY(-4px);
      }
      .concept-card:hover::before {
        transform: scaleX(1);
      }

      .cc-icon {
        font-size: 1.6rem;
        margin-bottom: 20px;
        display: block;
        color: var(--or);
        opacity: 0.7;
      }

      .cc-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        font-weight: 300;
        color: var(--or-light);
        margin-bottom: 12px;
        letter-spacing: 0.05em;
      }

      .cc-text {
        font-size: 0.78rem;
        line-height: 1.8;
        color: rgba(249, 248, 245, 0.38);
      }

      /* ── GALERIE PHOTOS ── */
      #galerie {
        background: var(--noir);
      }

      .galerie-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 280px 280px;
        gap: 3px;
        max-width: 1060px;
        margin: 0 auto;
      }

      .photo-slot {
        background: var(--noir3);
        border: 1px solid rgba(184, 151, 58, 0.08);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        transition: border-color 0.3s;
      }

      .photo-slot:hover {
        border-color: rgba(184, 151, 58, 0.3);
      }

      .photo-slot.large {
        grid-row: span 2;
      }

      .photo-slot img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.85;
        transition:
          transform 0.6s,
          opacity 0.3s;
      }
      .photo-slot:hover img {
        transform: scale(1.04);
        opacity: 1;
      }

      .photo-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        z-index: 1;
      }

      .photo-placeholder .ph-icon {
        width: 48px;
        height: 48px;
        border: 1px solid rgba(184, 151, 58, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: rgba(184, 151, 58, 0.3);
      }

      .photo-placeholder p {
        font-size: 0.58rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: rgba(184, 151, 58, 0.25);
        text-align: center;
        line-height: 1.6;
      }

      /* ── PACKAGES ── */
      #packages {
        background: var(--noir2);
      }

      .pkg-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2px;
        max-width: 1060px;
        margin: 0 auto;
      }

      .pkg {
        background: var(--noir3);
        border: 1px solid rgba(184, 151, 58, 0.08);
        padding: 42px 30px;
        position: relative;
        display: flex;
        flex-direction: column;
        transition:
          border-color 0.3s,
          transform 0.3s;
      }

      .pkg:hover {
        border-color: rgba(184, 151, 58, 0.35);
        transform: translateY(-4px);
      }

      .pkg.star {
        border-color: rgba(184, 151, 58, 0.3);
        background: #1a1710;
      }

      .pkg-ribbon {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: var(--or);
        color: var(--noir);
        text-align: center;
        font-size: 0.5rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        font-weight: 400;
        padding: 6px;
      }

      .pkg-num {
        font-size: 0.52rem;
        letter-spacing: 0.5em;
        color: rgba(184, 151, 58, 0.4);
        text-transform: uppercase;
        margin-bottom: 14px;
        margin-top: 4px;
      }
      .pkg.star .pkg-num {
        margin-top: 22px;
      }

      .pkg-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.9rem;
        font-weight: 300;
        color: var(--or-light);
        letter-spacing: 0.06em;
        margin-bottom: 4px;
        line-height: 1;
      }

      .pkg-desc {
        font-size: 0.68rem;
        font-style: italic;
        color: rgba(212, 184, 112, 0.35);
        margin-bottom: 24px;
      }

      .pkg-price {
        font-family: "Cormorant Garamond", serif;
        font-size: 2.6rem;
        font-weight: 200;
        color: var(--blanc);
        line-height: 1;
        margin-bottom: 4px;
      }

      .pkg-note {
        font-size: 0.6rem;
        color: rgba(249, 248, 245, 0.25);
        letter-spacing: 0.1em;
        margin-bottom: 28px;
      }

      .pkg-sep {
        width: 100%;
        height: 1px;
        background: rgba(184, 151, 58, 0.1);
        margin-bottom: 24px;
      }

      .pkg-list {
        list-style: none;
        flex: 1;
        margin-bottom: 30px;
      }

      .pkg-list li {
        font-size: 0.76rem;
        line-height: 1.5;
        color: rgba(249, 248, 245, 0.4);
        padding: 7px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        display: flex;
        gap: 10px;
      }

      .pkg-list li::before {
        content: "✦";
        color: var(--or);
        font-size: 0.48rem;
        opacity: 0.5;
        margin-top: 4px;
        flex-shrink: 0;
      }

      .pkg-btn {
        display: block;
        width: 100%;
        padding: 13px;
        border: 1px solid rgba(184, 151, 58, 0.3);
        background: none;
        color: var(--or);
        font-family: "Montserrat", sans-serif;
        font-size: 0.55rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        font-weight: 300;
        cursor: none;
        transition:
          background 0.3s,
          color 0.3s,
          border-color 0.3s;
        text-align: center;
        text-decoration: none;
      }
      .pkg-btn:hover,
      .pkg.star .pkg-btn {
        background: var(--or);
        color: var(--noir);
        border-color: var(--or);
      }

      /* ── PRESTATAIRES ── */
      #prestataires {
        background: var(--noir);
      }

      .prest-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2px;
        max-width: 900px;
        margin: 0 auto;
      }

      .prest-card {
        background: var(--noir3);
        border: 1px solid rgba(184, 151, 58, 0.08);
        padding: 36px 24px;
        text-align: center;
        transition: border-color 0.3s;
      }
      .prest-card:hover {
        border-color: rgba(184, 151, 58, 0.3);
      }

      .prest-icon {
        font-size: 1.8rem;
        display: block;
        margin-bottom: 14px;
        color: var(--or);
        opacity: 0.6;
      }

      .prest-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 300;
        color: var(--or-light);
        margin-bottom: 8px;
        letter-spacing: 0.06em;
      }

      .prest-text {
        font-size: 0.7rem;
        color: rgba(249, 248, 245, 0.3);
        line-height: 1.7;
      }

      /* ── TEMOIGNAGES ── */
      #temoignages {
        background: var(--noir2);
      }

      .temo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2px;
        max-width: 960px;
        margin: 0 auto;
      }

      .temo {
        background: var(--noir3);
        border: 1px solid rgba(184, 151, 58, 0.08);
        padding: 40px 32px;
      }

      .temo-stars {
        color: var(--or);
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        margin-bottom: 20px;
        opacity: 0.7;
      }

      .temo-text {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.05rem;
        font-weight: 300;
        font-style: italic;
        color: rgba(249, 248, 245, 0.55);
        line-height: 1.8;
        margin-bottom: 24px;
      }

      .temo-author {
        font-size: 0.6rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--or);
        opacity: 0.6;
      }

      /* ── CONTACT ── */
      #contact {
        background: var(--noir);
        padding: 110px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      #contact::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 60% 50% at 50% 50%,
          rgba(184, 151, 58, 0.05) 0%,
          transparent 70%
        );
      }

      .contact-inner {
        max-width: 560px;
        margin: 0 auto;
        position: relative;
      }

      .contact-name {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(4rem, 12vw, 8rem);
        font-weight: 200;
        color: transparent;
        -webkit-text-stroke: 1px rgba(184, 151, 58, 0.2);
        letter-spacing: 0.3em;
        padding-right: 0.3em;
        line-height: 1;
        margin-bottom: 40px;
        user-select: none;
      }

      .contact-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(1.5rem, 3.5vw, 2.4rem);
        font-weight: 300;
        color: var(--blanc);
        margin-bottom: 14px;
        letter-spacing: 0.05em;
      }

      .contact-sub {
        font-size: 0.78rem;
        color: rgba(249, 248, 245, 0.35);
        line-height: 1.9;
        margin-bottom: 52px;
      }

      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
        text-align: left;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      .form-group label {
        font-size: 0.55rem;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: rgba(184, 151, 58, 0.5);
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        background: var(--noir3);
        border: 1px solid rgba(184, 151, 58, 0.12);
        color: var(--blanc);
        font-family: "Montserrat", sans-serif;
        font-size: 0.8rem;
        font-weight: 300;
        padding: 14px 16px;
        outline: none;
        transition: border-color 0.3s;
        cursor: none;
      }

      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        border-color: rgba(184, 151, 58, 0.5);
      }

      .form-group select option {
        background: var(--noir2);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 100px;
      }

      .form-submit {
        padding: 16px;
        background: var(--or);
        border: none;
        color: var(--noir);
        font-family: "Montserrat", sans-serif;
        font-size: 0.6rem;
        font-weight: 400;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        cursor: none;
        transition:
          background 0.3s,
          transform 0.2s;
        width: 100%;
      }
      .form-submit:hover {
        background: var(--or-pale);
        transform: translateY(-2px);
      }

      .contact-infos {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
      }

      .contact-infos a {
        color: inherit;
        text-decoration: inherit; /* no underline */
      }

      .ci {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
      }

      .ci-label {
        font-size: 0.52rem;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: rgba(184, 151, 58, 0.35);
      }

      .ci-val {
        font-size: 0.78rem;
        color: rgba(249, 248, 245, 0.45);
      }

      /* ── FOOTER ── */
      footer {
        background: var(--noir2);
        border-top: 1px solid rgba(184, 151, 58, 0.08);
        padding: 40px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
      }

      .footer-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        font-weight: 200;
        letter-spacing: 0.35em;
        color: rgba(212, 184, 112, 0.4);
        padding-right: 0.35em;
      }

      .footer-copy {
        font-size: 0.55rem;
        letter-spacing: 0.3em;
        color: rgba(184, 151, 58, 0.2);
        text-transform: uppercase;
      }

      .footer-social {
        display: flex;
        gap: 20px;
      }

      .footer-social a {
        font-size: 0.55rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: rgba(184, 151, 58, 0.25);
        text-decoration: none;
        transition: color 0.2s;
        cursor: none;
      }
      .footer-social a:hover {
        color: var(--or);
      }

      /* ── SCROLL REVEAL ── */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        .nav-links {
          gap: 18px;
        }
        .nav-links a {
          letter-spacing: 0.32em;
        }
      }

      @media (max-width: 768px) {
        nav {
          padding: 0 20px;
        }
        .nav-links {
          display: none;
        }
        .galerie-grid {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: 200px 200px 200px;
        }
        .photo-slot.large {
          grid-row: span 1;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        footer {
          flex-direction: column;
          text-align: center;
        }
        body {
          cursor: auto;
        }
        .cursor,
        .cursor-ring {
          display: none;
        }
      }

/* ── STRUCTURE EXTRAITE DES STYLES INLINE ── */
.hero-name-wrap {
  position: relative;
}

#prestataires {
  background: var(--noir2);
}

.section-lieux {
  background: var(--noir);
  padding-top: 0;
}

.lieux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3px;
  max-width: 1060px;
  margin: 0 auto 40px;
}

.lieu-card-link,
.exclusive-card-link {
  text-decoration: none;
  cursor: none;
  color: inherit;
}

.lieu-card {
  background: var(--noir3);
  border: 1px solid rgba(184, 151, 58, 0.1);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.lieu-card:hover {
  border-color: rgba(184,151,58,0.45);
  transform: translateY(-4px);
}

.lieu-media {
  height: 200px;
  background: linear-gradient(135deg, #1e1b16, #26231d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.lieu-media-2 {
  background: linear-gradient(135deg, #1a1814, #211f1a);
}

.lieu-media-3 {
  background: linear-gradient(135deg, #1e1b16, #161410);
}

.lieu-icon {
  font-size: 2rem;
  color: rgba(184, 151, 58, 0.3);
}

.lieu-photo-label {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(184, 151, 58, 0.25);
}

.lieu-body {
  padding: 24px 26px;
}

.lieu-type,
.exclusive-type,
.partner-kicker {
  font-size: 0.52rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 8px;
}

.lieu-title,
.exclusive-title,
.partner-title-small {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--or-light);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.lieu-text,
.exclusive-text,
.partner-card-text {
  font-size: 0.72rem;
  color: rgba(249, 248, 245, 0.35);
  line-height: 1.7;
  margin-bottom: 16px;
}

.lieu-link,
.exclusive-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0.7;
}

.lieux-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(184, 151, 58, 0.35);
  letter-spacing: 0.15em;
  font-style: italic;
}

.exclusive-partner-block {
  max-width: 1060px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.exclusive-eyebrow {
  margin-bottom: 16px;
}

.exclusive-card {
  background: var(--noir3);
  border: 1px solid rgba(184, 151, 58, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  transition: border-color 0.3s;
}

.exclusive-card:hover {
  border-color: rgba(184,151,58,0.45);
}

.exclusive-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.exclusive-content {
  flex: 1;
}

.exclusive-title {
  font-size: 1.3rem;
}

.exclusive-link {
  flex-shrink: 0;
}

.form-message {
  display: none;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.form-message--success {
  background: rgba(184, 151, 58, 0.1);
  border: 1px solid rgba(184, 151, 58, 0.3);
}

.form-message--error {
  background: rgba(180, 50, 50, 0.1);
  border: 1px solid rgba(180, 50, 50, 0.3);
}

.form-message-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--or-light);
}

.form-message--error .form-message-text {
  color: #e07070;
}

.gold-line-large {
  margin-bottom: 60px;
}

/* ── PAGES PARTENAIRES ── */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 72px;
  background: var(--noir);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 70%, rgba(184, 151, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 760px;
}

.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--or-light);
  line-height: 1;
  margin-bottom: 18px;
}

.page-intro {
  font-size: 0.82rem;
  color: rgba(249, 248, 245, 0.38);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
}

.partner-category-grid,
.partner-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3px;
  max-width: 1060px;
  margin: 0 auto;
}

.partner-category-card,
.partner-profile-card {
  background: var(--noir3);
  border: 1px solid rgba(184, 151, 58, 0.1);
  color: inherit;
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}

.partner-category-card:hover,
.partner-profile-card:hover {
  border-color: rgba(184, 151, 58, 0.45);
  transform: translateY(-4px);
}

.partner-card-media,
.partner-profile-media {
  height: 220px;
  background: linear-gradient(135deg, #1e1b16, #26231d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(184, 151, 58, 0.28);
}

.partner-card-icon {
  font-size: 2rem;
}

.partner-card-body,
.partner-profile-body {
  padding: 26px;
}

.partner-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--or-light);
  margin-bottom: 8px;
}

.partner-card-link {
  font-size: 0.56rem;
  letter-spacing: 0.35em;
  color: var(--or);
  text-transform: uppercase;
}

.partner-layout {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3px;
}

.partner-main,
.partner-aside {
  background: var(--noir3);
  border: 1px solid rgba(184, 151, 58, 0.1);
  padding: 38px;
}

.partner-main p,
.legal-content p,
.legal-content li {
  color: rgba(249, 248, 245, 0.42);
  font-size: 0.82rem;
  line-height: 1.9;
}

.partner-meta-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.partner-meta-list strong {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(184, 151, 58, 0.55);
  margin-bottom: 4px;
}

.partner-meta-list span,
.partner-meta-list a {
  color: rgba(249, 248, 245, 0.45);
  font-size: 0.8rem;
  text-decoration: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3px;
  max-width: 1060px;
  margin: 0 auto;
}

.gallery-placeholder {
  min-height: 220px;
  background: var(--noir3);
  border: 1px solid rgba(184, 151, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(184, 151, 58, 0.28);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1.8;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--noir3);
  border: 1px solid rgba(184, 151, 58, 0.1);
  padding: 40px;
}

.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: var(--or-light);
  margin: 30px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .exclusive-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .exclusive-link {
    width: 100%;
  }

  .partner-layout {
    grid-template-columns: 1fr;
  }

  .partner-main,
  .partner-aside,
  .legal-content {
    padding: 28px 22px;
  }
}

.footer-copy a { color: rgba(184, 151, 58, 0.35); text-decoration: none; }
.footer-copy a:hover { color: var(--or); }
