/* Ventix Restora — Parisian maison (full expression) */

:root {
    --ld-ink: #120e0c;
    --ld-ink-2: #1a1512;
    --ld-ink-3: #0a0807;
    --ld-stone: #2a2622;
    --ld-ivory: #f3eee6;
    --ld-ivory-2: rgba(243, 238, 230, 0.82);
    --ld-ivory-3: rgba(243, 238, 230, 0.55);
    --ld-brass: #c4a35a;
    --ld-brass-2: #d4b56e;
    --ld-brass-3: #a8863f;
    --ld-wine: #6b1e2a;
    --ld-wine-2: #8a2a38;
    --ld-line: rgba(243, 238, 230, 0.11);
    --ld-line-brass: rgba(196, 163, 90, 0.42);
    --ld-display: "Cormorant Garamond", "Times New Roman", serif;
    --ld-body: "Outfit", system-ui, sans-serif;
    --ld-gutter: max(1.5rem, calc((100% - 64rem) / 2));
    --ld-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4.75rem;
}

body.ld-body {
    margin: 0;
    min-height: 100%;
    font-family: var(--ld-body);
    color: var(--ld-ivory);
    background: var(--ld-ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; font-weight: inherit; }

/* Motifs: rail + watermark monogram */
.ld-rail {
    position: fixed;
    top: 0;
    bottom: 0;
    left: max(0.65rem, calc(var(--ld-gutter) - 1.6rem));
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--ld-line-brass) 12%, var(--ld-line-brass) 88%, transparent);
    pointer-events: none;
    z-index: 40;
    opacity: 0.7;
}

.ld-rail::before,
.ld-rail::after {
    content: "";
    position: absolute;
    left: -3px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--ld-brass);
    transform: rotate(45deg);
    background: var(--ld-ink);
}

.ld-rail::before { top: 18%; }
.ld-rail::after { bottom: 14%; }

.ld-mark {
    position: fixed;
    right: -2vw;
    bottom: -6vh;
    font-family: var(--ld-display);
    font-size: clamp(12rem, 28vw, 22rem);
    font-weight: 500;
    line-height: 0.8;
    color: rgba(196, 163, 90, 0.045);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* Nav */
.ld-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem var(--ld-gutter);
    background: rgba(18, 14, 12, 0.94);
    border-bottom: 1px solid rgba(196, 163, 90, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ld-nav__brand img {
    height: 3.25rem;
    width: auto;
    object-fit: contain;
}

.ld-nav__links {
    display: none;
    gap: 1.35rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(243, 238, 230, 0.62);
}

.ld-nav__links a:hover { color: var(--ld-brass); }

@media (min-width: 980px) {
    .ld-nav__links { display: flex; }
}

.ld-nav__actions {
    display: none;
    align-items: center;
    gap: 0.55rem;
}

@media (min-width: 980px) {
    .ld-nav__actions { display: flex; }
}

.ld-nav__ghost,
.ld-nav__cta {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.45rem 1rem;
    border-radius: 0;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ld-nav__ghost {
    border: 1px solid rgba(243, 238, 230, 0.28);
    color: var(--ld-ivory);
}

.ld-nav__cta {
    border: 1px solid var(--ld-brass);
    color: var(--ld-brass);
}

.ld-nav__cta:hover {
    background: var(--ld-brass);
    color: var(--ld-ink);
}

.ld-burger {
    width: 2.55rem;
    height: 2.55rem;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(196, 163, 90, 0.5);
    background: rgba(18, 14, 12, 0.4);
    color: var(--ld-ivory);
    cursor: pointer;
    z-index: 6;
}

.ld-burger__bars {
    display: grid;
    gap: 4px;
    width: 1rem;
}

.ld-burger__bars span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: currentColor;
}

.ld-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 45;
    padding: 4.75rem 1.25rem 1.35rem;
    background: rgba(18, 14, 12, 0.97);
    border-bottom: 1px solid rgba(196, 163, 90, 0.22);
}

.ld-drawer.is-open {
    display: grid;
    gap: 0.2rem;
}

.ld-drawer a {
    min-height: 2.55rem;
    display: flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(243, 238, 230, 0.86);
}

.ld-drawer__cta {
    margin-top: 0.35rem;
    justify-content: center;
    border: 1px solid var(--ld-brass);
    color: var(--ld-brass);
}

@media (min-width: 980px) {
    .ld-burger,
    .ld-drawer { display: none !important; }
}

/* Hero */
.ld-hero {
    position: relative;
    min-height: calc(100vh - 4.5rem);
    min-height: calc(100svh - 4.5rem);
    display: flex;
    align-items: flex-end;
    padding: 3.5rem var(--ld-gutter) 4.75rem;
    overflow: hidden;
    background: var(--ld-ink);
}

.ld-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    filter: saturate(0.85) contrast(1.06) brightness(0.92);
}

.ld-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(12, 9, 8, 0.96) 0%, rgba(12, 9, 8, 0.82) 34%, rgba(12, 9, 8, 0.2) 66%, rgba(12, 9, 8, 0.4) 100%),
        linear-gradient(180deg, rgba(12, 9, 8, 0.55) 0%, transparent 34%, rgba(12, 9, 8, 0.92) 100%),
        linear-gradient(140deg, rgba(107, 30, 42, 0.22), transparent 46%),
        radial-gradient(60% 50% at 80% 30%, rgba(196, 163, 90, 0.12), transparent 55%);
}

.ld-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.ld-hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 40rem);
    display: grid;
    gap: 1rem;
}

.ld-hero__epigraph {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--ld-display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ld-brass-2);
    opacity: 0;
    animation: ld-rise 0.9s var(--ld-ease) 0.05s forwards;
}

.ld-fillet {
    width: 2.4rem;
    height: 1px;
    background: var(--ld-brass);
    display: inline-block;
}

.ld-hero__brand {
    margin: 0.2rem 0 0;
    display: grid;
    gap: 0;
    line-height: 0.88;
    opacity: 0;
    animation: ld-rise 0.95s var(--ld-ease) 0.12s forwards;
}

.ld-hero__brand-main {
    font-family: var(--ld-display);
    font-size: clamp(3.8rem, 12vw, 7.4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--ld-ivory);
}

.ld-hero__brand-sub {
    font-family: var(--ld-display);
    font-size: clamp(3.8rem, 12vw, 7.4rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.03em;
    color: var(--ld-brass);
    margin-top: -0.08em;
}

.ld-hero__eyebrow {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ld-brass-2);
    opacity: 0;
    animation: ld-rise 0.95s var(--ld-ease) 0.18s forwards;
}

.ld-hero h1 {
    margin: 0.35rem 0 0;
    max-width: 18ch;
    font-family: var(--ld-display);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ld-ivory-2);
    opacity: 0;
    animation: ld-rise 0.95s var(--ld-ease) 0.24s forwards;
}

.ld-hero__lead {
    margin: 0;
    max-width: 40ch;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ld-ivory-3);
    opacity: 0;
    animation: ld-rise 0.95s var(--ld-ease) 0.34s forwards;
}

.ld-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.55rem;
    opacity: 0;
    animation: ld-rise 0.95s var(--ld-ease) 0.46s forwards;
}

@media (max-width: 799px) {
    .ld-rail { display: none; }
    .ld-nav__brand img { height: 3.3rem; }
    .ld-hero {
        padding-bottom: 3.5rem;
    }
    .ld-hero__media { object-position: 75% center; }
}

/* Buttons */
.ld-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ld-ease);
}

.ld-btn:hover { transform: translateY(-1px); }

.ld-btn--primary {
    background: var(--ld-brass);
    border-color: var(--ld-brass);
    color: var(--ld-ink);
}

.ld-btn--primary:hover {
    background: var(--ld-brass-2);
    border-color: var(--ld-brass-2);
}

.ld-btn--ghost {
    background: transparent;
    border-color: rgba(243, 238, 230, 0.3);
    color: var(--ld-ivory);
}

.ld-btn--ghost:hover {
    border-color: rgba(243, 238, 230, 0.55);
}

/* Marquee strip */
.ld-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1.25rem;
    padding: 1.1rem var(--ld-gutter);
    background: var(--ld-ink-3);
    border-top: 1px solid var(--ld-line);
    border-bottom: 1px solid var(--ld-line);
    font-family: var(--ld-display);
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 0.08em;
    color: var(--ld-brass);
}

.ld-strip i {
    width: 5px;
    height: 5px;
    border: 1px solid var(--ld-brass-3);
    transform: rotate(45deg);
    display: inline-block;
}

/* Chapters */
.ld-chapter {
    position: relative;
    z-index: 1;
    padding: 5.5rem var(--ld-gutter);
    background: var(--ld-ink);
}

.ld-chapter--salle {
    background: var(--ld-stone);
}

.ld-chapter--cuisine {
    background:
        linear-gradient(180deg, rgba(107, 30, 42, 0.28), rgba(107, 30, 42, 0.08) 40%, transparent 70%),
        #160f10;
    border-block: 1px solid rgba(196, 163, 90, 0.18);
}

.ld-chapter--stone {
    background: var(--ld-ink-2);
}

.ld-chapter--invite {
    background: var(--ld-ink);
    padding-bottom: 3rem;
}

.ld-chapter__head {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 3rem;
    max-width: 42rem;
}

@media (min-width: 800px) {
    .ld-chapter__head {
        grid-template-columns: 4.5rem 1fr;
        gap: 2rem;
        align-items: start;
    }
}

.ld-chapter__roman {
    margin: 0;
    font-family: var(--ld-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1;
    color: var(--ld-brass);
    opacity: 0.85;
}

.ld-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ld-brass);
}

.ld-chapter__head h2 {
    margin: 0;
    font-family: var(--ld-display);
    font-size: clamp(2.3rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ld-ivory);
}

.ld-chapter__head h2 em {
    color: var(--ld-brass);
}

.ld-chapter__lead {
    margin: 1rem 0 0;
    max-width: 40ch;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ld-ivory-3);
}

/* Brigade steps */
.ld-brigade {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ld-line-brass);
}

@media (min-width: 900px) {
    .ld-brigade {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ld-brigade li {
    padding: 1.75rem 1.25rem 1.75rem 0;
    border-bottom: 1px solid var(--ld-line);
}

@media (min-width: 900px) {
    .ld-brigade li {
        padding: 1.75rem 1.5rem 1.75rem 0;
        border-bottom: none;
        border-right: 1px solid var(--ld-line);
    }
    .ld-brigade li:last-child { border-right: none; }
}

.ld-brigade__n {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    color: var(--ld-brass);
}

.ld-brigade h3 {
    margin: 0 0 0.55rem;
    font-family: var(--ld-display);
    font-size: 1.7rem;
    font-weight: 500;
}

.ld-brigade p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;
    color: var(--ld-ivory-3);
    max-width: 28ch;
}

/* Menu carte — salle */
.ld-menu {
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem 0;
}

.ld-menu__ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0 1.5rem;
    color: var(--ld-brass);
}

.ld-menu__ornament span {
    flex: 1;
    height: 1px;
    background: var(--ld-line-brass);
}

.ld-menu__ornament i {
    font-family: var(--ld-display);
    font-style: italic;
    font-size: 1.15rem;
}

.ld-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}

.ld-menu__list li {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 0.95rem 0;
    border-bottom: 1px dotted rgba(196, 163, 90, 0.35);
}

.ld-menu__list em {
    font-family: var(--ld-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--ld-brass);
}

.ld-menu__list span {
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.45;
    color: var(--ld-ivory-2);
}

/* Cuisine passe timeline */
.ld-passe {
    display: grid;
    gap: 0;
    position: relative;
}

@media (min-width: 900px) {
    .ld-passe {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .ld-passe::before {
        content: "";
        position: absolute;
        top: 0.55rem;
        left: 0.55rem;
        right: 0.55rem;
        height: 1px;
        background: linear-gradient(90deg, var(--ld-brass), rgba(196, 163, 90, 0.25));
        opacity: 0.55;
    }
}

.ld-passe__step {
    position: relative;
    padding: 1.5rem 1.25rem 1.5rem 0;
    border-bottom: 1px solid rgba(243, 238, 230, 0.1);
}

@media (min-width: 900px) {
    .ld-passe__step {
        border-bottom: none;
        padding-right: 1.5rem;
    }
}

.ld-passe__dot {
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    margin-bottom: 1.1rem;
    border: 1px solid var(--ld-brass);
    transform: rotate(45deg);
    background: var(--ld-ink);
}

.ld-passe__step.is-ready .ld-passe__dot {
    background: var(--ld-wine-2);
    border-color: #c45a6a;
    box-shadow: 0 0 0 4px rgba(107, 30, 42, 0.35);
}

.ld-passe__step strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--ld-display);
    font-size: 1.55rem;
    font-weight: 500;
}

.ld-passe__step.is-ready strong {
    color: #f0d5da;
}

.ld-passe__step p {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--ld-ivory-3);
    max-width: 26ch;
}

.ld-aside {
    margin: 2rem 0 0;
    font-family: var(--ld-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ld-brass);
}

/* Editorial commandes */
.ld-editorial {
    display: grid;
    border-top: 1px solid var(--ld-line-brass);
}

.ld-editorial__row {
    display: grid;
    gap: 0.6rem;
    padding: 1.65rem 0;
    border-bottom: 1px solid var(--ld-line);
}

@media (min-width: 800px) {
    .ld-editorial__row {
        grid-template-columns: minmax(12rem, 16rem) 1fr;
        gap: 2.5rem;
        align-items: baseline;
    }
}

.ld-editorial__row h3 {
    margin: 0;
    font-family: var(--ld-display);
    font-size: 1.55rem;
    font-weight: 500;
}

.ld-editorial__row p {
    margin: 0;
    max-width: 44ch;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ld-ivory-3);
}

/* Triptych maison */
.ld-triptych {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ld-line-brass);
}

@media (min-width: 800px) {
    .ld-triptych { grid-template-columns: repeat(3, 1fr); }
}

.ld-triptych article {
    padding: 2rem 1.5rem 2rem 0;
    border-bottom: 1px solid var(--ld-line);
}

@media (min-width: 800px) {
    .ld-triptych article {
        border-bottom: none;
        border-right: 1px solid var(--ld-line);
        padding-right: 1.75rem;
    }
    .ld-triptych article:last-child { border-right: none; }
}

.ld-triptych__label {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--ld-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--ld-brass);
}

.ld-triptych h3 {
    margin: 0 0 0.5rem;
    font-family: var(--ld-display);
    font-size: 1.65rem;
    font-weight: 500;
}

.ld-triptych p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;
    color: var(--ld-ivory-3);
    max-width: 28ch;
}

/* Gestión — 6 módulos */
.ld-gestion {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ld-line-brass);
}

@media (min-width: 720px) {
    .ld-gestion { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
    .ld-gestion { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.ld-gestion article {
    padding: 1.55rem 1.25rem 1.65rem 0;
    border-bottom: 1px solid var(--ld-line);
}

@media (min-width: 720px) {
    .ld-gestion article {
        padding-right: 1.5rem;
        border-right: 1px solid var(--ld-line);
    }

    .ld-gestion article:nth-child(2n) { border-right: none; }
}

@media (min-width: 1100px) {
    .ld-gestion article:nth-child(2n) { border-right: 1px solid var(--ld-line); }
    .ld-gestion article:nth-child(3n) { border-right: none; }
}

.ld-gestion h3 {
    margin: 0 0 0.45rem;
    font-family: var(--ld-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--ld-ivory);
}

.ld-gestion p {
    margin: 0;
    max-width: 32ch;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.55;
    color: var(--ld-ivory-3);
}

/* Houses */
.ld-houses {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    border-top: 1px solid var(--ld-line-brass);
}

@media (min-width: 700px) {
    .ld-houses { grid-template-columns: 1fr 1fr; }
}

.ld-houses li {
    margin: 0;
    padding: 1.35rem 1rem 1.35rem 0;
    border-bottom: 1px solid var(--ld-line);
    font-family: var(--ld-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.02em;
}

/* Invite / CTA like reservation card */
.ld-invite {
    position: relative;
    z-index: 1;
    padding: 2rem var(--ld-gutter) 5.5rem;
    background:
        radial-gradient(70% 80% at 10% 0%, rgba(107, 30, 42, 0.3), transparent 50%),
        var(--ld-ink-2);
}

.ld-invite__frame {
    max-width: 40rem;
    margin: 0 auto;
    padding: 2.75rem 1.75rem;
    border: 1px solid var(--ld-line-brass);
    text-align: center;
    background: rgba(18, 14, 12, 0.55);
}

@media (min-width: 700px) {
    .ld-invite__frame { padding: 3.25rem 3rem; }
}

.ld-invite__frame .ld-kicker {
    margin-bottom: 1rem;
}

.ld-invite__frame h2 {
    margin: 0 0 0.85rem;
    font-family: var(--ld-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
}

.ld-invite__frame > p {
    margin: 0 auto 1.5rem;
    max-width: 36ch;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ld-ivory-3);
}

.ld-invite__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* Footer */
.ld-foot {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.85rem 1.5rem;
    padding: 1.5rem var(--ld-gutter);
    background: var(--ld-ink-3);
    border-top: 1px solid var(--ld-line);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--ld-ivory-3);
}

.ld-foot__motto {
    font-family: var(--ld-display);
    font-style: italic;
    letter-spacing: 0.12em;
    color: var(--ld-brass);
}

.ld-foot a:hover { color: var(--ld-brass-2); }

/* VII · Tarifs — planes (carte Restora) */
.ld-chapter--tarifs {
    background:
        radial-gradient(640px 280px at 90% 8%, rgba(196, 163, 90, 0.08), transparent 55%),
        var(--ld-ink-2);
}

.ld-tarifs {
    display: grid;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--ld-line-brass);
    border-bottom: 1px solid var(--ld-line-brass);
}

@media (min-width: 900px) {
    .ld-tarifs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.ld-tarif {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.75rem 1.35rem 1.85rem;
    border-bottom: 1px solid var(--ld-line);
    background: transparent;
}

@media (min-width: 900px) {
    .ld-tarif {
        border-bottom: 0;
        border-right: 1px solid var(--ld-line);
    }
    .ld-tarif:last-child { border-right: 0; }
}

.ld-tarif__badge {
    margin: 0 0 0.35rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ld-brass);
}

.ld-tarif h3 {
    margin: 0;
    font-family: var(--ld-display);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ld-ivory);
}

.ld-tarif__tag {
    margin: 0;
    font-family: var(--ld-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ld-brass-2);
}

.ld-tarif__price {
    margin: 0.55rem 0 0;
    font-family: var(--ld-display);
    font-size: clamp(2.1rem, 3.4vw, 2.7rem);
    font-weight: 500;
    line-height: 1;
    color: var(--ld-ivory);
}

.ld-tarif__currency {
    display: inline-block;
    margin-right: 0.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--ld-brass);
    vertical-align: super;
}

.ld-tarif__period {
    margin-left: 0.25rem;
    font-family: var(--ld-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--ld-ivory-3);
}

.ld-tarif__sales {
    margin: 0.55rem 0 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ld-brass);
}

.ld-tarif__summary {
    margin: 0.65rem 0 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;
    color: var(--ld-ivory-2);
    flex: 1;
}

.ld-tarif__meta {
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid var(--ld-line);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ld-ivory-3);
}

.ld-tarif--featured {
    background:
        linear-gradient(165deg, rgba(107, 30, 42, 0.35), transparent 55%),
        rgba(196, 163, 90, 0.06);
}

.ld-tarif--featured::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: var(--ld-brass);
}

.ld-tarif-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    margin: 1.35rem 0 0;
    padding: 0;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--ld-brass-2);
}

.ld-tarif-extras span {
    position: relative;
    padding-left: 0.9rem;
}

.ld-tarif-extras span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.35rem;
    height: 0.35rem;
    transform: rotate(45deg);
    border: 1px solid var(--ld-brass);
}

.ld-tarif-link {
    margin: 1.35rem 0 0;
    text-align: center;
}

.ld-tarif-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ld-brass-2);
    border-bottom: 1px solid rgba(196, 163, 90, 0.35);
    padding-bottom: 0.15rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ld-tarif-link a:hover {
    color: var(--ld-brass);
    border-bottom-color: var(--ld-brass);
}

.ld-cmp-wrap {
    margin-top: 2.75rem;
}

@media (max-width: 899px) {
    .ld-cmp-wrap--desktop {
        display: none;
    }
}

.ld-cmp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
    font-family: var(--ld-display);
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--ld-brass-2);
}

.ld-cmp-scroll {
    overflow-x: auto;
    border: 1px solid var(--ld-line-brass);
}

.ld-cmp {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ld-cmp th,
.ld-cmp td {
    padding: 0.72rem 0.9rem;
    border-bottom: 1px solid var(--ld-line);
    text-align: center;
    vertical-align: middle;
}

.ld-cmp thead th {
    font-family: var(--ld-display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ld-ivory);
    background: rgba(0, 0, 0, 0.22);
    border-bottom-color: var(--ld-line-brass);
}

.ld-cmp thead th:first-child,
.ld-cmp tbody th {
    text-align: left;
    font-weight: 400;
    color: var(--ld-ivory-2);
}

.ld-cmp tbody th {
    font-family: var(--ld-body);
    font-size: 0.88rem;
    font-weight: 300;
    width: 42%;
}

.ld-cmp thead th.is-featured,
.ld-cmp td.is-featured {
    background: rgba(196, 163, 90, 0.07);
}

.ld-cmp__cat td {
    padding: 0.85rem 0.9rem 0.55rem;
    font-family: var(--ld-display);
    font-size: 0.82rem;
    font-style: italic;
    letter-spacing: 0.08em;
    text-align: left;
    color: var(--ld-brass);
    background: rgba(196, 163, 90, 0.05);
    border-bottom-color: transparent;
}

.ld-cmp__cat--gold td {
    color: var(--ld-brass-2);
}

.ld-cmp__yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ld-ink);
    background: var(--ld-brass);
}

.ld-cmp__no {
    color: rgba(243, 238, 230, 0.28);
    font-weight: 500;
}

.ld-tarif-points {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ld-line);
}

@media (min-width: 800px) {
    .ld-tarif-points { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.ld-tarif-points li {
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem 1rem 1.25rem;
    border-bottom: 1px solid var(--ld-line);
}

@media (min-width: 800px) {
    .ld-tarif-points li {
        border-bottom: 0;
        border-right: 1px solid var(--ld-line);
    }
    .ld-tarif-points li:last-child { border-right: 0; }
}

.ld-tarif-points strong {
    font-family: var(--ld-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ld-ivory);
}

.ld-tarif-points span {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.45;
    color: var(--ld-ivory-3);
}

/* Motion */
.ld-reveal {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.75s var(--ld-ease), transform 0.75s var(--ld-ease);
}

.ld-reveal.is-in {
    opacity: 1;
    transform: none;
}

@keyframes ld-rise {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .ld-hero__epigraph,
    .ld-hero__brand,
    .ld-hero h1,
    .ld-hero__lead,
    .ld-hero__actions,
    .ld-reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
