/* ============================================================
   TERMS.CSS — Page Conditions Générales Luvreizel
   ============================================================ */

/* Hero ────────────────────────────────────────────────────*/
body.theme-luv .terms-hero {
    position: relative;
    isolation: isolate;
    padding: 70px 24px 40px;
    text-align: center;
    overflow: hidden;
}
body.theme-luv .terms-hero::before {
    content: '';
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 138, 31, 0.18) 0%, transparent 70%);
    filter: blur(90px);
    z-index: 0;
}
body.theme-luv .terms-hero-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: callsFadeUp 0.5s ease both;
}

body.theme-luv .terms-title {
    font-family: var(--luv-font-display);
    font-size: clamp(36px, 5.5vw, 52px);
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 14px;
}
body.theme-luv .terms-title .text-accent {
    color: var(--luv-orange);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: var(--luv-orange);
}

body.theme-luv .terms-subtitle {
    color: var(--luv-text-mute);
    font-family: var(--luv-font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    margin: 0;
    text-transform: uppercase;
}

/* Layout ─────────────────────────────────────────────────*/
body.theme-luv .terms-section {
    padding: 30px 24px 80px;
    position: relative;
    z-index: 1;
}
body.theme-luv .terms-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
}

/* TOC ────────────────────────────────────────────────────*/
body.theme-luv .terms-toc {
    position: sticky;
    top: 90px;
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-lg);
    padding: 22px 22px 18px;
}
body.theme-luv .terms-toc h3 {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
    margin: 0 0 12px;
}
body.theme-luv .terms-toc ol {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--luv-text-dim);
    font-size: 13px;
    line-height: 1.9;
}
body.theme-luv .terms-toc a {
    color: var(--luv-text-dim);
    text-decoration: none;
    transition: var(--transition);
}
body.theme-luv .terms-toc a:hover {
    color: var(--luv-orange);
}

/* Articles ──────────────────────────────────────────────*/
body.theme-luv .terms-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

body.theme-luv .terms-article {
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-lg);
    padding: 26px 30px 24px;
    scroll-margin-top: 90px;
}
body.theme-luv .terms-article-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
body.theme-luv .terms-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: var(--luv-r-sm);
    background: rgba(255, 138, 31, 0.12);
    border: 1px solid rgba(255, 138, 31, 0.40);
    color: var(--luv-orange);
    font-family: var(--luv-font-mono);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
body.theme-luv .terms-article h2 {
    font-family: var(--luv-font-heading);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 400;
    color: var(--luv-text);
    margin: 0;
    letter-spacing: 0.3px;
}

body.theme-luv .terms-article p {
    color: var(--luv-text-dim);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0 0 12px;
}
body.theme-luv .terms-article p:last-child { margin-bottom: 0; }
body.theme-luv .terms-article strong { color: var(--luv-text); }

body.theme-luv .terms-highlight {
    margin-top: 12px;
    padding: 12px 14px;
    background: rgba(255, 184, 74, 0.08);
    border: 1px solid rgba(255, 184, 74, 0.32);
    border-left: 3px solid var(--luv-orange-2);
    border-radius: var(--luv-r-md);
    color: var(--luv-text-dim);
    font-size: 13.5px;
    line-height: 1.55;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
body.theme-luv .terms-highlight svg {
    color: var(--luv-orange-2);
    flex-shrink: 0;
    margin-top: 2px;
}

body.theme-luv .terms-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    background: rgba(255, 138, 31, 0.10);
    border: 1px solid rgba(255, 138, 31, 0.40);
    border-radius: var(--luv-r-md);
    color: var(--luv-orange);
    font-family: var(--luv-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
}
body.theme-luv .terms-link-btn:hover {
    background: var(--luv-orange);
    color: #1a0a00;
    border-color: var(--luv-orange);
}

body.theme-luv .terms-contact-box {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
}
body.theme-luv .terms-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--luv-font-mono);
    font-size: 13.5px;
    color: var(--luv-text-dim);
}
body.theme-luv .terms-contact-item svg { color: var(--luv-orange); flex-shrink: 0; }
body.theme-luv .terms-contact-item a {
    color: var(--luv-orange);
    text-decoration: none;
    transition: var(--transition);
}
body.theme-luv .terms-contact-item a:hover { color: var(--luv-orange-2); }

/* Responsive ────────────────────────────────────────────*/
@media (max-width: 900px) {
    body.theme-luv .terms-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    body.theme-luv .terms-toc {
        position: static;
    }
}
@media (max-width: 600px) {
    body.theme-luv .terms-section { padding: 24px 16px 60px; }
    body.theme-luv .terms-article { padding: 22px 20px; }
}
