/* ===========================
   Julia – The Identity Game™
   Dark Feminine Luxury
   =========================== */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-black:       #0D0D0D;
    --color-grey:        #8A8A8A;
    --color-offwhite:    #F5F0EB;
    --color-sand:        #C4A882;
    --color-crimson:     #C1121F;
    --color-gold:        #B8963E;
    --color-deepred:     #8B0000;
    --color-white:       #FAF9F6;
    --color-text-dark:   #1A1A1A;
    --color-text-light:  rgba(245,240,235,0.7);
    --color-border:      rgba(255,255,255,0.12);
    --color-border-light: rgba(13,13,13,0.08);
    --font-heading:      'Cormorant Garamond', Georgia, serif;
    --font-body:         'Montserrat', sans-serif;
    --font-accent:       'Playfair Display', Georgia, serif;
    --max-width:         1160px;
    --radius-card:       0px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ======================
   TYPOGRAPHY
   ====================== */
.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}
.section-label-dark {
    color: var(--color-deepred);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.0;
    letter-spacing: -1px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 24px;
}
.section-title-dark {
    color: var(--color-text-dark);
}
.section-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 580px;
    line-height: 1.75;
}
.section-sub-dark {
    color: var(--color-grey);
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ======================
   BUTTONS
   ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.btn-crimson {
    background-color: var(--color-crimson);
    border-color: var(--color-crimson);
    color: var(--color-white);
}
.btn-crimson:hover {
    background-color: var(--color-deepred);
    border-color: var(--color-deepred);
}

.btn-gold {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}
.btn-gold:hover {
    background-color: #9a7a2e;
    border-color: #9a7a2e;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--color-white);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-white);
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-dark);
}
.btn-outline-dark:hover {
    background: var(--color-text-dark);
    color: var(--color-white);
}

.btn-lg { padding: 18px 52px; font-size: 11px; }

/* ======================
   NAVIGATION
   ====================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background-color: transparent;
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background-color: rgba(13,13,13,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 76px;
    gap: 32px;
}
.nav-logo {
    grid-column: 2;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-white);
    white-space: nowrap;
    line-height: 1.4;
}
.nav-logo small {
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 2px;
}
.nav-logo .accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: var(--color-crimson);
    letter-spacing: 1px;
    text-transform: none;
    display: block;
}
.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}
.nav-links.nav-left { justify-content: flex-start; }
.nav-links.nav-right { justify-content: flex-end; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--color-white); }
.nav-links > li > a .arrow { font-size: 8px; transition: transform 0.2s; opacity: 0.5; }
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }
.nav-links .nav-cta {
    padding: 9px 20px;
    font-size: 10px;
    letter-spacing: 2px;
    margin-left: 12px;
    background-color: var(--color-crimson);
    border-color: var(--color-crimson);
    color: var(--color-white);
}
.nav-links .nav-cta:hover {
    background-color: var(--color-deepred);
    border-color: var(--color-deepred);
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    list-style: none;
    padding: 8px;
    padding-top: 14px;
    z-index: 300;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px;
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: background 0.15s;
}
.dropdown li a:hover { background: var(--color-offwhite); }

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    grid-column: 3;
    justify-self: end;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background-color: var(--color-white); transition: all 0.3s; }

@media (max-width: 960px) {
    .nav-inner { grid-template-columns: 1fr auto 1fr; }
    .nav-links {
        display: none;
        position: absolute;
        top: 76px; left: 0; right: 0;
        background-color: rgba(13,13,13,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-links.nav-left,
    .nav-links.nav-right { grid-column: unset; }
    .dropdown {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.04);
        margin-top: 4px;
        padding-top: 8px;
    }
    .dropdown li a { color: rgba(255,255,255,0.75); }
    .dropdown li a:hover { background: rgba(255,255,255,0.08); color: var(--color-crimson); }
    .nav-links > li:hover .dropdown { display: none; }
    .nav-links > li.open .dropdown { display: block; }
    .nav-links > li > a { color: rgba(255,255,255,0.8); }
    .nav-links .nav-cta { margin-left: 0; text-align: center; }
}

/* ======================
   HOME HERO
   ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-deepred);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 70% 75%;
    background-repeat: no-repeat;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(139,0,0,0.85) 0%,
        rgba(139,0,0,0.55) 35%,
        rgba(139,0,0,0.2) 55%,
        rgba(139,0,0,0.0) 100%
    );
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 148px 0 100px;
    width: 100%;
}
.hero-inner {
    max-width: 640px;
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
    opacity: 0.9;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(44px, 6vw, 88px);
    line-height: 1.0;
    letter-spacing: -2px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: italic;
    color: var(--color-gold);
}
.hero-sub {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
    margin-top: 16px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* ======================
   MARQUEE / PROOF BAR
   ====================== */
.marquee-bar {
    padding: 14px 0;
    background-color: var(--color-black);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
}
.marquee-track span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}
.marquee-track span.gold { color: var(--color-gold); }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======================
   SECTIONS – general
   ====================== */
section { padding: 96px 0; }

/* Dark section */
.section-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Light section */
.section-light {
    background-color: var(--color-offwhite);
    color: var(--color-text-dark);
}
.section-light .section-label { color: var(--color-deepred); }
.section-light .section-title { color: var(--color-text-dark); }
.section-light .section-sub { color: var(--color-grey); }

/* Crimson section */
.section-crimson {
    background-color: var(--color-deepred);
    color: var(--color-white);
}

/* ======================
   INTRO / PROBLEM
   ====================== */
.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.intro-content p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}
.intro-quote {
    margin-top: 28px;
    padding: 20px 24px;
    border-left: 3px solid var(--color-crimson);
    background-color: rgba(255,255,255,0.04);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* Light intro variant */
.section-light .intro-content p { color: var(--color-grey); }
.section-light .intro-quote {
    border-left-color: var(--color-crimson);
    background-color: rgba(139,0,0,0.04);
    color: var(--color-text-dark);
}

/* ======================
   ABOUT
   ====================== */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.about-content p {
    margin-bottom: 16px;
}

/* ======================
   METHOD / STEPS
   ====================== */
.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 56px;
}
.method-step {
    text-align: center;
    position: relative;
}
.method-step-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 300;
    color: var(--color-crimson);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}
.method-step h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.method-step p {
    font-size: 14px;
    color: var(--color-grey);
    line-height: 1.75;
    max-width: 300px;
    margin: 0 auto;
}

/* Timeline connector */
.method-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
}
.method-timeline-line {
    height: 1px;
    flex: 1;
    max-width: 300px;
    background: rgba(13,13,13,0.12);
}
.method-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--color-crimson);
    background: var(--color-offwhite);
    flex-shrink: 0;
}

/* ======================
   FOR WHO / DOELGROEP
   ====================== */
.for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.for-who-card {
    padding: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.for-who-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}
.for-who-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
}
.for-who-card .icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}

/* ======================
   TESTIMONIALS
   ====================== */
.testimonial-featured {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.testimonial-stars {
    color: var(--color-crimson);
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 24px;
}
.testimonial-featured blockquote {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}
.testimonial-featured .testimonial-author {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-dark);
}
.testimonial-featured .testimonial-desc {
    font-size: 13px;
    color: var(--color-grey);
    margin-top: 4px;
}

/* ======================
   THREE COLUMNS (roles/identities)
   ====================== */
.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.three-col {
    text-align: center;
}
.three-col-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid rgba(255,255,255,0.1);
}
.three-col h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.three-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ======================
   STORY BLOCK
   ====================== */
.story-block {
    max-width: 700px;
    margin: 0 auto;
}
.story-block p {
    margin-bottom: 16px;
    line-height: 1.8;
}
.story-block .highlight {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 26px;
    line-height: 1.4;
    color: var(--color-crimson);
    margin-bottom: 24px;
}

/* ======================
   CTA SECTION
   ====================== */
.cta-section {
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.cta-inner .section-title {
    margin-bottom: 16px;
}
.cta-inner p {
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======================
   SERVICES OVERVIEW
   ====================== */
.service-card {
    padding: 40px 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: transform 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(193,18,31,0.3);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* ======================
   INSTAGRAM BANNER
   ====================== */
.instagram-banner {
    background-color: var(--color-black);
    padding: 0 0 40px;
}
.instagram-photos-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-bottom: 32px;
}
.instagram-photos-strip a { display: block; overflow: hidden; }
.instagram-photos-strip img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
}
.instagram-photos-strip a:hover img { transform: scale(1.05); opacity: 0.85; }
.instagram-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.instagram-banner-inner h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
}
.instagram-banner-inner p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.instagram-handle {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-crimson);
    transition: color 0.2s;
}
.instagram-handle:hover { color: var(--color-white); }

/* ======================
   FOOTER
   ====================== */
.footer {
    background-color: var(--color-black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 0 32px;
    text-align: center;
}
.footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    list-style: none;
    margin-bottom: 24px;
}
.footer-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-white); }

/* ======================
   SCROLL TO TOP
   ====================== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background-color: var(--color-crimson);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================
   PAGE HERO (inner pages)
   ====================== */
.page-hero {
    background-color: var(--color-deepred);
    color: var(--color-white);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero .section-label { color: var(--color-gold); }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 96px);
    letter-spacing: -2px;
    line-height: 1.0;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
}
.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 32px;
}

/* ======================
   HIGHLIGHT LINE
   ====================== */
.highlight-line {
    padding: 20px 24px;
    border-left: 3px solid var(--color-gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    margin: 32px 0;
}
.section-dark .highlight-line {
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.9);
}
.section-light .highlight-line {
    background: rgba(139,0,0,0.04);
    color: var(--color-text-dark);
}

/* ======================
   INNER VOICE CARDS
   ====================== */
.voice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}
.voice-card {
    padding: 24px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* ======================
   STATS
   ====================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1;
    margin-bottom: 8px;
    color: var(--color-crimson);
}
.stat-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-grey);
}

/* ======================
   FAQ
   ====================== */
.faq-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}
.faq-list li {
    border-bottom: 1px solid rgba(13,13,13,0.1);
}
.faq-list details summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    color: var(--color-text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-list details summary::after {
    content: '+';
    font-size: 20px;
    color: var(--color-crimson);
    font-weight: 300;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
    padding: 0 0 20px;
    color: var(--color-grey);
    line-height: 1.75;
}

/* Dark FAQ variant */
.faq-list-dark li {
    border-bottom-color: rgba(255,255,255,0.08);
}
.faq-list-dark details summary {
    color: var(--color-white);
}
.faq-list-dark details p {
    color: rgba(255,255,255,0.6);
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 768px) {
    .hero h1 { font-size: clamp(36px, 8vw, 56px); }
    .hero-content { padding: 120px 0 60px; }
    .intro-inner,
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .method-steps { grid-template-columns: 1fr; gap: 40px; }
    .method-timeline { display: none; }
    .three-cols { grid-template-columns: 1fr; gap: 40px; }
    .for-who-grid { grid-template-columns: 1fr; }
    .voice-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-photos-strip { grid-template-columns: repeat(3, 1fr); }
    .instagram-banner-inner { flex-direction: column; text-align: center; }
    section { padding: 64px 0; }
    .container { padding: 0 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 36px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ======================
   UTILITY
   ====================== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
