/* ============================================
   DOMINATRICE VIRTUELLE — Editorial Dark
   Rose Copper + Pure Black
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600&display=swap');

:root {
    --black: #080808;
    --black-light: #0f0f0f;
    --black-card: #111111;
    --black-elevated: #181818;

    --copper: #c9956d;
    --copper-light: #dbb08e;
    --copper-dim: rgba(201, 149, 109, 0.12);

    --white: #f2ece6;
    --white-dim: #b8ada3;
    --gray: #6b6460;
    --gray-dark: #3d3a38;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(201, 149, 109, 0.25);

    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Manrope', system-ui, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --container: 1100px;
}

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

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--gray-dark) var(--black); overflow-x: hidden; }

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    line-height: 1.75;
    font-size: 16px;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--copper-light); }
::selection { background: var(--copper); color: var(--black); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 5vw, 48px); }

/* ========= HEADER ========= */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 100; padding: 22px 0;
    transition: all 0.4s var(--ease);
}
.header.scrolled {
    background: rgba(8,8,8,0.94);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
    font-style: italic; color: var(--copper);
    text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
    font-size: 0.8rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white-dim); text-decoration: none;
    transition: color 0.3s var(--ease);
}
.nav a:hover { color: var(--white); }

.nav-cta {
    padding: 10px 24px !important;
    background: var(--copper) !important;
    color: var(--black) !important;
    font-weight: 500 !important;
}
.nav-cta:hover { background: var(--copper-light) !important; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 8px; z-index: 101;
}
.hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s ease; transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 98; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.visible { opacity: 1; }
.mobile-nav { display: none; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--black-light); z-index: 99; transition: right 0.35s ease; padding: 100px 32px 40px; border-left: 1px solid var(--border); }
.mobile-nav.open { right: 0; }
.mobile-nav a { display: block; font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--white-dim); padding: 14px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: all 0.3s ease; }
.mobile-nav a:hover { color: var(--copper); padding-left: 10px; }

/* Dropdown adjustments */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: -20px;
    margin-top: 20px; background: var(--black-elevated);
    border: 1px solid var(--border); padding: 10px 0;
    display: flex; flex-direction: column; width: max-content;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s var(--ease); border-radius: 4px; z-index: 102;
}
.header.scrolled .nav-dropdown-menu { margin-top: 14px; background: rgba(15,15,15,0.95); backdrop-filter: blur(10px); }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { padding: 10px 24px; font-size: 0.8rem !important; display: block; border-bottom: none !important; margin: 0; }
.nav-dropdown-menu a:hover { background: var(--copper-dim); color: var(--copper); }
.mobile-nav .sub-link { font-size: 0.95rem !important; padding: 10px 0 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.mobile-nav .mobile-nav-title { display: block; font-family: var(--sans); color: var(--gray); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 24px; margin-bottom: 8px; }
.mobile-nav .nav-cta-mobile { margin-top: 24px; text-align: center; border-bottom: none; background: var(--copper); color: var(--black) !important; font-style: normal; font-weight: 600; padding: 12px; border-radius: 4px; }
.mobile-nav .nav-cta-mobile:hover { background: var(--copper-light); padding-left: 0; }

/* ========= HERO ========= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px clamp(32px, 5vw, 80px) 80px clamp(32px, 5vw, 80px);
    max-width: 640px;
    margin-left: auto;
}

.hero-label {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 2rem;
    opacity: 0; animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.7s 0.35s var(--ease) forwards;
}
.hero-title em { font-style: italic; color: var(--copper); }

.hero-sub {
    font-size: 1.1rem;
    color: var(--white-dim);
    margin-bottom: 2.5rem;
    max-width: 420px;
    opacity: 0; animation: fadeUp 0.7s 0.5s var(--ease) forwards;
}

.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.7s 0.65s var(--ease) forwards;
}

.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}
.hero-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 30%);
}

.hero-online {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 2rem;
    font-size: 0.88rem; color: var(--gray);
    opacity: 0; animation: fadeUp 0.7s 0.8s var(--ease) forwards;
}
.hero-online .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 14px 32px; border: none; cursor: pointer;
    transition: all 0.3s var(--ease); text-decoration: none;
}
.btn-fill {
    background: var(--copper); color: var(--black);
}
.btn-fill:hover { background: var(--copper-light); color: var(--black); transform: translateY(-2px); box-shadow: 0 10px 30px var(--copper-dim); }
.btn-line {
    background: transparent; color: var(--white-dim);
    border: 1px solid var(--border);
}
.btn-line:hover { border-color: var(--copper); color: var(--copper); }

/* ========= MARQUEE ========= */
.marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100vw;
}
.marquee {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}
.marquee span {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray);
    padding: 0 32px;
}
.marquee span em { color: var(--copper); font-style: normal; }

/* ========= SERVICES / TARIFS ========= */
.services {
    padding: clamp(80px, 12vh, 140px) 0;
}
.section-label {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--copper); margin-bottom: 1rem;
}
.section-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400; line-height: 1.15;
    margin-bottom: 0.8rem;
}
.section-heading em { font-style: italic; color: var(--copper); }
.section-sub {
    font-size: 1.05rem; color: var(--gray);
    max-width: 480px; margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.pricing-card {
    background: var(--black-card);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
}
.pricing-card:hover {
    border-color: var(--border-hover);
    background: var(--black-elevated);
}
.pricing-card.featured {
    border-color: var(--copper-dim);
}
.pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: 0; right: 0;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--copper);
    color: var(--black);
    padding: 6px 14px;
}

.pricing-card-icon {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.pricing-card .type {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
}

.pricing-card .price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}
.pricing-card .price small {
    font-size: 0.8rem;
    color: var(--gray);
    font-family: var(--sans);
}

.pricing-card .duration {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 24px;
}
.pricing-card ul li {
    font-size: 0.95rem;
    color: var(--white-dim);
    padding: 7px 0;
    padding-left: 20px;
    position: relative;
}
.pricing-card ul li::before {
    content: '✦';
    position: absolute; left: 0;
    color: var(--copper);
    font-size: 0.55rem;
    top: 9px;
}

.pricing-card .card-btn {
    display: block; text-align: center;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 12px;
    border: 1px solid var(--border);
    color: var(--white-dim);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.pricing-card .card-btn:hover {
    border-color: var(--copper);
    color: var(--copper);
    background: var(--copper-dim);
}
.pricing-card.featured .card-btn {
    background: var(--copper);
    color: var(--black);
    border-color: var(--copper);
}
.pricing-card.featured .card-btn:hover {
    background: var(--copper-light);
}

/* ========= ABOUT / MISTRESS ========= */
.mistress {
    padding: clamp(80px, 12vh, 140px) 0;
    border-top: 1px solid var(--border);
}
.mistress-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
}
.mistress-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.mistress-heading em { font-style: italic; color: var(--copper); }
.mistress-text p { font-size: 1.05rem; color: var(--white-dim); margin-bottom: 1.2rem; }
.mistress-text p strong { color: var(--white); font-weight: 500; }

.mistress-name {
    font-size: 1.25rem;
    color: var(--white);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}
.mistress-name strong {
    color: var(--copper);
    font-weight: 600;
}

.mistress-quote {
    margin-top: 2rem;
    padding: 28px 32px;
    border-left: 3px solid var(--copper);
    background: var(--copper-dim);
    position: relative;
}
.mistress-quote p {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}
.mistress-quote cite {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper);
}

.mistress-image {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.mistress-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.7);
}

/* ========= RULES ========= */
.rules {
    padding: clamp(80px, 12vh, 140px) 0;
    border-top: 1px solid var(--border);
    background: var(--black-light);
    position: relative;
}
.rules::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--copper-dim), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.rules-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.rules-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0;
}
.rules-heading em {
    font-style: italic;
    color: var(--copper);
}

.rules-divider {
    width: 60px;
    height: 2px;
    background: var(--copper);
    margin: 1.5rem auto 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.rule-item {
    padding: 36px 36px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
}
.rule-item:hover {
    background: var(--black-elevated);
    border-color: var(--border-hover);
}
.rule-item:hover .rule-number {
    color: var(--copper-light);
    text-shadow: 0 0 20px var(--copper-dim);
}
.rule-item:hover .rule-line {
    background: var(--copper);
}

.rule-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rule-number {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--copper);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.rule-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    transition: background 0.4s var(--ease);
}

.rule-item h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}
.rule-item p {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.65;
}

.rules-closing {
    text-align: center;
    margin-top: 3rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

/* ========= REDEMPTION ========= */
.redemption {
    padding: clamp(80px, 12vh, 140px) 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.redemption-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.redemption-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
}
.redemption-heading em {
    font-style: italic;
    color: var(--copper);
}

.redemption-intro {
    max-width: 640px;
    margin: 2rem auto 0;
    font-size: 1.05rem;
    color: var(--white-dim);
    line-height: 1.75;
}
.redemption-intro strong {
    color: var(--white);
    font-weight: 500;
}

.redemption-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.redemption-card {
    padding: 40px 36px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
}
.redemption-card:hover {
    background: var(--black-elevated);
    border-color: var(--border-hover);
}
.redemption-card:hover .rule-number {
    color: var(--copper-light);
    text-shadow: 0 0 20px var(--copper-dim);
}
.redemption-card:hover .rule-line {
    background: var(--copper);
}

.redemption-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
}
.redemption-card p {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.7;
}
.redemption-card p strong {
    color: var(--white);
    font-weight: 500;
}

/* ========= EXPLAINER / DOMINATRICE VIRTUELLE ========= */
.explainer {
    padding: clamp(80px, 12vh, 140px) 0;
    border-top: 1px solid var(--border);
}
.explainer-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: stretch;
}
.explainer-image {
    position: relative;
}
.explainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    border: 1px solid var(--border);
}
.explainer-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.explainer-heading em { font-style: italic; color: var(--copper); }
.explainer-text p {
    font-size: 1.05rem;
    color: var(--white-dim);
    margin-bottom: 1.2rem;
}
.explainer-text p strong { color: var(--white); font-weight: 500; }

.explainer-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--black-card);
    border: 1px solid var(--border);
    transition: border-color 0.3s var(--ease);
}
.highlight:hover { border-color: var(--border-hover); }
.highlight-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.highlight strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}
.highlight span {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}


/* ========= PROTOCOLE D'ADMISSION ========= */
.protocole {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.protocole-ambient {
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--copper-dim), transparent 60%);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.protocole-grid {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    min-height: 100vh;
}

/* -- Visual panel (left) -- */
.protocole-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.protocole-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.45) saturate(0.8);
    transition: filter 0.6s var(--ease);
}
.protocole:hover .protocole-visual img {
    filter: brightness(0.55) saturate(0.9);
}
.protocole-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 60%,
        var(--black) 100%
    );
    z-index: 1;
}
.protocole-visual-text {
    position: absolute;
    bottom: 48px;
    left: 32px;
    z-index: 2;
}
.protocole-stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    padding: 10px 20px;
    border: 1px solid var(--copper);
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(12px);
}

/* -- Content panel (right) -- */
.protocole-content {
    position: relative;
    z-index: 2;
    padding: clamp(80px, 10vh, 140px) clamp(40px, 5vw, 80px);
    max-width: 720px;
}

.protocole-header {
    margin-bottom: 2.5rem;
}

.protocole-heading {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 0.6rem;
}

.protocole-subheading {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--copper);
    letter-spacing: 0.02em;
}

.protocole-text p {
    font-size: 1.05rem;
    color: var(--white-dim);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}
.protocole-text p strong {
    color: var(--white);
    font-weight: 500;
}

.protocole-transition {
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--copper);
    text-align: center;
    margin: 3rem 0 2.5rem;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* -- Timeline -- */
.protocole-timeline {
    position: relative;
    padding-left: 48px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--copper) 15%,
        var(--copper) 85%,
        transparent 100%
    );
    opacity: 0.4;
}

.protocole-step {
    position: relative;
    padding: 28px 0 36px;
}
.protocole-step + .protocole-step {
    border-top: 1px solid var(--border);
}

.step-marker {
    position: absolute;
    left: -48px;
    top: 28px;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: 1px solid var(--copper);
    transition: all 0.4s var(--ease);
    z-index: 2;
}
.step-marker span {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--copper);
    transition: all 0.4s var(--ease);
}

.protocole-step:hover .step-marker {
    background: var(--copper);
    box-shadow: 0 0 24px var(--copper-dim);
}
.protocole-step:hover .step-marker span {
    color: var(--black);
}

.step-body h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    margin-bottom: 10px;
}
.step-body p {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.7;
}
.step-body p strong {
    color: var(--white);
    font-weight: 500;
}

/* -- CTA -- */
.protocole-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.protocole-warning {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.btn-sas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 56px;
    background: var(--copper);
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.btn-sas-glow {
    position: absolute;
    inset: -4px;
    background: var(--copper);
    opacity: 0;
    filter: blur(24px);
    transition: opacity 0.5s var(--ease);
    z-index: 0;
    animation: sas-pulse 3s ease-in-out infinite;
}

.btn-sas:hover .btn-sas-glow {
    opacity: 0.5;
}

.btn-sas-text {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-sas:hover {
    background: var(--copper-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--copper-dim);
}

@keyframes sas-pulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.35; }
}

/* ========= FAQ ========= */
.faq {
    padding: clamp(80px, 12vh, 140px) 0;
    border-top: 1px solid var(--border);
    background: var(--black-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
}
.faq-heading em {
    font-style: italic;
    color: var(--copper);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    transition: color 0.3s var(--ease);
}
.faq-question:hover {
    color: var(--copper);
}
.faq-question a {
    color: var(--copper);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.faq-question a:hover {
    color: var(--copper-light);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--copper);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--copper);
    color: var(--black);
    border-color: var(--copper);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    padding: 0 0 0 0;
}
.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 0 28px 0;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 0;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.faq-answer p strong {
    color: var(--white);
    font-weight: 500;
}
.faq-answer a {
    color: var(--copper);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s var(--ease);
}
.faq-answer a:hover {
    color: var(--copper-light);
}

/* ========= CTA ========= */
.cta-section {
    padding: clamp(100px, 14vh, 180px) 0;
    text-align: center;
    position: relative;
}
.cta-section::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--copper-dim), transparent 65%);
    opacity: 0.5; pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.cta-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400; line-height: 1.15; margin-bottom: 1rem;
}
.cta-heading em { font-style: italic; color: var(--copper); }
.cta-desc { font-size: 1.08rem; color: var(--white-dim); margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ========= FOOTER ========= */
.footer {
    padding: 40px 0 24px;
    border-top: 1px solid var(--border);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); text-decoration: none; }
.footer-links a:hover { color: var(--copper); }
.footer-copy { font-size: 0.78rem; color: var(--gray-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 24px; text-align: center; padding-top: 20px; border-top: 1px solid var(--border); }

/* ========= ANIMATIONS ========= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ========= FORMS / CONTACT ========= */
.contact-section { position: relative; z-index: 1; }
.contact-warning {
    display: flex; gap: 20px; align-items: flex-start;
    background: rgba(184, 43, 43, 0.05);
    border: 1px solid rgba(184, 43, 43, 0.3);
    padding: 30px; margin-bottom: 40px;
    border-radius: 4px;
}
.warning-icon { font-size: 2rem; color: #b82b2b; }
.warning-text h3 {
    color: #b82b2b; font-family: var(--sans);
    font-size: 0.95rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 10px;
}
.warning-text p { color: var(--white-dim); font-size: 0.9rem; margin-bottom: 0; line-height: 1.6; }
.warning-text a { color: #b82b2b; font-weight: 500; }
.warning-text a:hover { color: #d63c3c; }

.contact-form {
    background: var(--black-elevated);
    padding: 45px 50px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.form-group { margin-bottom: 25px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white-dim); margin-bottom: 10px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-family: var(--sans);
    font-size: 1rem;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    border-radius: 4px;
    appearance: none;
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8ada3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 15px rgba(201, 149, 109, 0.15);
}

.form-success, .form-error {
    padding: 20px; margin-bottom: 30px;
    font-size: 0.95rem; font-weight: 500; border-left: 3px solid;
    border-radius: 0 4px 4px 0;
}
.form-success { background: rgba(74, 222, 128, 0.1); border-color: #4ade80; color: #4ade80; }
.form-error { background: rgba(239, 68, 68, 0.1); border-color: #ef4444; color: #ef4444; }

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; max-width: 80vw; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { padding: 140px 24px 60px; max-width: 100%; margin: 0; }
    .hero-image { height: 50vh; }
    .hero-image::after { background: linear-gradient(180deg, var(--black) 0%, transparent 30%); }

    .pricing-grid { grid-template-columns: 1fr; }
    .mistress-grid { grid-template-columns: 1fr; gap: 32px; }
    .mistress-image { order: -1; width: 100%; min-height: 350px; height: 55vw; max-height: 500px; position: relative; overflow: hidden; }
    .mistress-image img { position: static !important; top: auto !important; left: auto !important; width: 100% !important; height: 100% !important; object-fit: cover; object-position: top center; }
    .rules-grid { grid-template-columns: 1fr; }
    .redemption-grid { grid-template-columns: 1fr; }
    .explainer-grid { grid-template-columns: 1fr; gap: 32px; }
    .explainer-image { max-width: 400px; margin: 0 auto; }
    .protocole-grid { grid-template-columns: 1fr; min-height: auto; }
    .protocole-visual { position: relative; height: 50vh; }
    .protocole-visual-overlay { background: linear-gradient(180deg, transparent 50%, var(--black) 100%); }
    .protocole-content { padding: 60px 24px; max-width: 100%; }
    .protocole-timeline { padding-left: 44px; }
    .step-marker { left: -44px; width: 33px; height: 33px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .protocole-ambient { width: 100%; max-width: 100vw; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
}
