/* ============================================
   MARAHUYO - Elegant Rose Gold Theme
   Premium Aesthetic with Modern Interactions
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Rose Gold & Blush Palette */
    --base-cream: #FFFBF7;
    --soft-blush: #FFF0F0;
    --rose-gold: #B76E79;
    --deep-rose: #8B3A4C;
    --charcoal: #2C2C2C;
    --muted-taupe: #9A8C82;
    --champagne: #F7E7CE;
    --glass-white: rgba(255, 255, 255, 0.75);
    --glass-rose: rgba(183, 110, 121, 0.08);

    /* Typography */
    --font-header: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Animation Curves */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.25s ease;
    --transition-tab: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Effects */
    --frame-shadow: 0 8px 32px rgba(139, 58, 76, 0.08);
    --frame-shadow-hover: 0 20px 60px rgba(139, 58, 76, 0.15);
    --frame-border: 1px solid rgba(183, 110, 121, 0.15);
    --glow-rose: 0 0 40px rgba(183, 110, 121, 0.25);
    --blur-glass: blur(12px);
}

/* ============================================
   BASE RESET & GLOBAL STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--base-cream);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
}

/* Hide default cursor on desktop */
@media (min-width: 769px) {

    a,
    button,
    input,
    textarea,
    select,
    .service-card,
    .nav-link {
        cursor: none;
    }
}

/* Show default cursor on touch devices */
@media (max-width: 768px) {

    body,
    a,
    button,
    input,
    textarea,
    select {
        cursor: auto;
    }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--rose-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot.cursor-hover {
    width: 50px;
    height: 50px;
    background: var(--champagne);
    mix-blend-mode: normal;
    opacity: 0.8;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--rose-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.6;
}

.cursor-ring.cursor-hover {
    width: 70px;
    height: 70px;
    border-color: var(--deep-rose);
    opacity: 0.4;
}

/* ============================================
   FLOATING GRADIENT ORBS BACKGROUND
   ============================================ */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--champagne) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--soft-blush) 0%, transparent 70%);
    bottom: 200px;
    left: -200px;
    animation-delay: -7s;
}

.gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 10px) rotate(3deg);
    }
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */
#gold-thread {
    position: fixed;
    top: 0;
    left: 20px;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--rose-gold), var(--champagne));
    z-index: 10000;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--rose-gold);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Children Animation */
.reveal.active .stagger-child:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.active .stagger-child:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.active .stagger-child:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.active .stagger-child:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active .stagger-child {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TAB PANEL SYSTEM
   ============================================ */
.tab-content-wrapper {
    position: relative;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
}

/* Hide inactive tab panels */
.tab-panel {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

/* Show active tab panel */
.tab-panel.active {
    display: flex !important;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    animation: fadeInTab 0.5s ease forwards;
}

@keyframes fadeInTab {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab transition effect */
.tab-panel.fade-out {
    animation: fadeOutTab 0.3s ease forwards;
}

@keyframes fadeOutTab {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
    }
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   NAVIGATION - Glassmorphism Header
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
    transition: var(--transition-smooth);
}

header:hover {
    background: rgba(255, 255, 255, 0.9);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-logo {
    font-family: var(--font-header);
    font-size: 1.6rem;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    color: var(--rose-gold);
}

.lotus-icon {
    color: var(--rose-gold);
    font-size: 1.2rem;
    transition: transform 0.5s ease;
}

.nav-logo:hover .lotus-icon {
    transform: rotate(180deg) scale(1.1);
}

.nav-link {
    text-decoration: none;
    color: var(--muted-taupe);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--champagne));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--charcoal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION - Editorial Layout
   ============================================ */
.hero-section {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: var(--base-cream);
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-frame-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 1100px;
    height: 75vh;
}

.photo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--soft-blush);
    border: var(--frame-border);
    box-shadow: var(--frame-shadow);
    overflow: hidden;
    border-radius: 4px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(1.02);
    transition: transform 1.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.photo-frame:hover img {
    transform: scale(1.05);
}

.frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(139, 58, 76, 0.2) 100%);
    pointer-events: none;
}

.hero-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.accent-frame {
    position: absolute;
    border: 1px solid rgba(183, 110, 121, 0.2);
    background: var(--glass-rose);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.accent-frame.f1 {
    top: 15%;
    right: 10%;
    width: 200px;
    height: 260px;
    transform: rotate(5deg);
}

.accent-frame.f2 {
    bottom: 15%;
    left: 8%;
    width: 180px;
    height: 240px;
    transform: rotate(-8deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    background: var(--glass-white);
    padding: 4rem 5rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--frame-shadow);
    border-radius: 8px;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-family: var(--font-header);
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--muted-taupe);
    max-width: 550px;
    margin-inline: auto;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Proof Badges */
.proof-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.2rem 2rem;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-radius: 50px;
    border: 1px solid rgba(183, 110, 121, 0.15);
    box-shadow: var(--frame-shadow);
}

.proof-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.badge-number {
    font-family: var(--font-header);
    font-size: 1.4rem;
    color: var(--rose-gold);
    font-weight: 600;
}

.badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-taupe);
}

.proof-divider {
    color: rgba(183, 110, 121, 0.3);
    font-size: 1.2rem;
}

/* ============================================
   BUTTONS - With Magnetic Hover Effect
   ============================================ */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--rose-gold);
    color: var(--base-cream);
    border: 2px solid var(--rose-gold);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: var(--deep-rose);
    border-color: var(--deep-rose);
    transform: translateY(-3px);
    box-shadow: var(--glow-rose);
}

.cta-secondary {
    background: transparent;
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
}

.cta-secondary:hover {
    background: var(--rose-gold);
    color: var(--base-cream);
    transform: translateY(-3px);
    box-shadow: var(--glow-rose);
}

/* ============================================
   OPERATIONAL SECTION
   ============================================ */
.operational-section {
    padding: 4rem 0;
    background: var(--soft-blush);
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.operations-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.operations-content {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    box-shadow: var(--frame-shadow);
}

.operations-title {
    font-family: var(--font-header);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.operations-subtitle {
    font-size: 1.05rem;
    color: var(--muted-taupe);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.operations-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Trust Microline */
.trust-microline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    background: rgba(255, 251, 247, 0.8);
    border-radius: 50px;
    border: 1px solid rgba(183, 110, 121, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-item.platforms {
    flex-direction: row;
    gap: 0.6rem;
}

.trust-value {
    font-family: var(--font-header);
    font-size: 1.3rem;
    color: var(--rose-gold);
    font-weight: 600;
}

.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted-taupe);
}

.trust-divider {
    color: rgba(183, 110, 121, 0.4);
    font-size: 0.8rem;
}

.platform-logos {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.platform-badge {
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.platform-badge.tiktok {
    background: #1a1a1a;
    color: #fff;
}

.platform-badge.shopee {
    background: #ee4d2d;
    color: #fff;
}

.platform-badge.lazada {
    background: #0f146d;
    color: #fff;
}

.platform-badge:hover {
    transform: scale(1.05);
}

/* Operations Detail Sections */
.ops-detail-section {
    padding: 4rem 0;
    background: var(--base-cream);
}

.ops-detail-section:nth-child(even) {
    background: var(--soft-blush);
}

.ops-detail-headline {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
}

.ops-detail-body {
    font-size: 1rem;
    color: var(--muted-taupe);
    line-height: 1.8;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.ops-bullets-container {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    max-width: 600px;
    margin: 0 auto;
}

.ops-bullets-title {
    font-family: var(--font-header);
    font-size: 1.1rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.ops-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ops-bullets li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
}

.ops-bullets li:last-child {
    border-bottom: none;
}

.ops-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-weight: 600;
}

/* Two Tracks Grid */
.two-tracks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.track-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    text-align: center;
    transition: var(--transition-smooth);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--frame-shadow-hover);
}

.track-title {
    font-family: var(--font-header);
    font-size: 1.4rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.track-body {
    font-size: 0.95rem;
    color: var(--muted-taupe);
    line-height: 1.7;
}

/* Principles List */
.ops-detail-section.principles {
    background: var(--charcoal);
    color: var(--base-cream);
}

.principles .ops-detail-headline {
    color: var(--base-cream);
}

.principles-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.2rem;
}

.principles-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 251, 247, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 251, 247, 0.1);
}

.principle-name {
    font-family: var(--font-header);
    color: var(--rose-gold);
    font-size: 1rem;
    white-space: nowrap;
}

.principle-desc {
    color: rgba(255, 251, 247, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .two-tracks-grid {
        grid-template-columns: 1fr;
    }

    .principles-list li {
        flex-direction: column;
        gap: 0.4rem;
    }
}

/* ============================================
   CREATORS SECTION
   ============================================ */
.creators-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-blush) 0%, var(--base-cream) 100%);
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.creators-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.creators-content {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    box-shadow: var(--frame-shadow);
}

.creators-title {
    font-family: var(--font-header);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.creators-subtitle {
    font-size: 1.05rem;
    color: var(--muted-taupe);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.creators-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Creator Detail Sections */
.creator-detail-section {
    padding: 4rem 0;
    background: var(--base-cream);
}

.creator-detail-section.alt-bg {
    background: var(--soft-blush);
}

.creator-detail-headline {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
}

.creator-detail-body {
    font-size: 1rem;
    color: var(--muted-taupe);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Creator Checklist */
.creator-checklist-container {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    max-width: 650px;
    margin: 0 auto;
}

.creator-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.creator-checklist li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
}

.creator-checklist li:last-child {
    border-bottom: none;
}

.creator-checklist li::before {
    content: '☐';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-size: 1.1rem;
}

.creator-micro-note {
    font-size: 0.85rem;
    color: var(--muted-taupe);
    font-style: italic;
    padding: 1rem;
    background: rgba(183, 110, 121, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--rose-gold);
    margin: 0;
}



/* Creator Benefits */
.creator-benefits-grid {
    max-width: 650px;
    margin: 0 auto;
}

.creator-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.creator-benefits li {
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    position: relative;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-radius: 10px;
    border: 1px solid rgba(183, 110, 121, 0.1);
    color: var(--charcoal);
    font-size: 0.95rem;
}

.creator-benefits li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Expectations */
.expectations-container {
    max-width: 650px;
    margin: 0 auto;
}

.creator-expectations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.creator-expectations li {
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    position: relative;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-radius: 10px;
    border: 1px solid rgba(183, 110, 121, 0.1);
    color: var(--charcoal);
    font-size: 0.95rem;
}

.creator-expectations li::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--rose-gold);
    font-weight: 600;
}

/* Communication */
.communication-container {
    max-width: 600px;
    margin: 0 auto;
}

.communication-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.12);
}

.communication-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
}

.communication-list li:last-child {
    border-bottom: none;
}

.communication-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-size: 1.2rem;
}

/* FAQ Section */
.creator-faq-section {
    background: var(--charcoal);
}

.creator-faq-section .creator-detail-headline {
    color: var(--base-cream);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(255, 251, 247, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 251, 247, 0.1);
}

.faq-question {
    font-family: var(--font-header);
    font-size: 1.1rem;
    color: var(--rose-gold);
    margin-bottom: 0.8rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: rgba(255, 251, 247, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    padding: 0;
    background: var(--base-cream);
    color: var(--charcoal);
    position: relative;
}

.brands-hero {
    text-align: center;
    max-width: 100%;
    padding: 6rem 0;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-hero .brands-content {
    max-width: 800px;
    margin: 0 auto;
}

.brands-title {
    font-family: var(--font-header);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--base-cream);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.brands-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 251, 247, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.brands-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Brand Detail Sections */
.brand-detail-section {
    padding: 4rem 0;
    background: var(--base-cream);
}

.brand-detail-section.alt-bg {
    background: var(--soft-blush);
}

.brand-detail-headline {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
}

.brand-detail-body {
    font-size: 1rem;
    color: var(--muted-taupe);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Brand Outputs */
.brand-outputs-grid {
    max-width: 650px;
    margin: 0 auto;
}

.brand-outputs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.brand-outputs li {
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    position: relative;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-radius: 10px;
    border: 1px solid rgba(183, 110, 121, 0.1);
    color: var(--charcoal);
    font-size: 0.95rem;
}

.brand-outputs li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 1.1rem;
}



/* Brand Policy */
.brand-policy-container {
    max-width: 600px;
    margin: 0 auto;
}

.brand-policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.12);
}

.brand-policy-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
}

.brand-policy-list li:last-child {
    border-bottom: none;
}

.brand-policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-size: 1.2rem;
}

/* Rights Cards */
.brand-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.rights-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    text-align: center;
}

.rights-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.rights-card h3 {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* CTA Sections */
.brand-cta-section {
    background: var(--rose-gold);
}

.brand-cta-section .brand-detail-headline,
.brand-cta-section .brand-detail-body {
    color: white;
}

.brand-final-cta {
    background: var(--charcoal);
}

.brand-final-cta .brand-detail-headline,
.brand-final-cta .brand-detail-body {
    color: var(--base-cream);
}

/* Reporting Styles */
.reporting-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    padding: 5rem 0;
}

.reporting-title {
    font-family: var(--font-header);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--base-cream);
    text-align: center;
    margin-bottom: 1rem;
}

.reporting-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 251, 247, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.metrics-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.12);
}

.metrics-card h3 {
    font-family: var(--font-header);
    font-size: 1.1rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.metrics-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.metrics-card li {
    padding: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(183, 110, 121, 0.06);
}

.metrics-card li:last-child {
    border-bottom: none;
}

.metrics-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-size: 0.8rem;
}

/* Cadence */
.cadence-container {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.cadence-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-radius: 10px;
    border: 1px solid rgba(183, 110, 121, 0.1);
}

.cadence-label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.cadence-value {
    color: var(--rose-gold);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Learnings */
.learnings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.learning-tag {
    padding: 0.7rem 1.2rem;
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-radius: 25px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    font-size: 0.85rem;
    color: var(--charcoal);
}

.learnings-output {
    text-align: center;
    padding: 1.5rem;
    background: var(--charcoal);
    color: var(--base-cream);
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.learnings-output strong {
    color: var(--rose-gold);
}

/* Data Requirements */
.data-requirements {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {

    .brand-rights-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .cadence-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ============================================
   MCN STRATEGY / FAQ SECTION
   ============================================ */
.mcn-section {
    padding: 0;
    background: var(--base-cream);
    color: var(--charcoal);
    position: relative;
}

/* FAQ Hero */
.faq-hero-section {
    padding: 5rem 0;
    background: var(--charcoal);
    text-align: center;
}

/* Playbook Hero */
.playbook-hero-section {
    padding: 6rem 0;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.playbook-hero-title {
    font-family: var(--font-header);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--base-cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.playbook-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 251, 247, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.playbook-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Campaign System */
.campaign-system-section {
    padding: 5rem 0;
    background: var(--base-cream);
}

.campaign-system-headline {
    font-family: var(--font-header);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 4rem;
}

.campaign-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.campaign-step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(183, 110, 121, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.campaign-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.15);
    border-color: var(--rose-gold);
}

.step-badge {
    width: 40px;
    height: 40px;
    background: var(--rose-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-title {
    font-family: var(--font-header);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.step-desc {
    font-size: 1rem;
    color: var(--muted-taupe);
    line-height: 1.6;
    margin: 0;
}

.faq-hero-title {
    font-family: var(--font-header);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--base-cream);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 251, 247, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.faq-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--base-cream);
    color: var(--base-cream);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.cta-outline-light:hover {
    background: var(--base-cream);
    color: var(--charcoal);
}

/* FAQ Category Section */
.faq-category-section {
    padding: 4rem 0;
    background: var(--base-cream);
}

.faq-category-section.alt-bg {
    background: var(--soft-blush);
}

.faq-category-title {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 800px;
}

/* FAQ Card */
.faq-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    transition: var(--transition-smooth);
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--rose-gold);
}

.faq-q {
    font-family: var(--font-header);
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--muted-taupe);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Final CTA */
.faq-final-cta {
    padding: 4rem 0;
    background: var(--rose-gold);
    text-align: center;
}

.faq-cta-headline {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: white;
    margin-bottom: 1rem;
}

.faq-cta-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-buttons .cta-primary {
    background: var(--charcoal);
    color: var(--base-cream);
}

.faq-cta-buttons .cta-primary:hover {
    background: var(--base-cream);
    color: var(--charcoal);
}

.faq-cta-buttons .cta-outline-light {
    border-color: white;
    color: white;
}

.faq-cta-buttons .cta-outline-light:hover {
    background: white;
    color: var(--rose-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid-compact {
        grid-template-columns: 1fr;
    }

    .faq-hero-ctas,
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 4rem 0;
    background: var(--base-cream);
    min-height: calc(100vh - 70px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    border: var(--frame-border);
    background: var(--base-cream);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(183, 110, 121, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 8px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--frame-shadow-hover);
    border-color: rgba(183, 110, 121, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    height: 260px;
    overflow: hidden;
    border-bottom: var(--frame-border);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    filter: saturate(0.9);
}

.service-card:hover .service-img {
    transform: scale(1.1);
    filter: saturate(1);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-family: var(--font-header);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--rose-gold);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--muted-taupe);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep-rose) 0%, var(--charcoal) 100%);
    color: var(--base-cream);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 231, 206, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.contact-header {
    font-family: var(--font-header);
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-copy {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.9;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--base-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.4s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--base-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--rose-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-wrap .cta-primary {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--charcoal);
    color: var(--base-cream);
    padding: 3rem 0;
    border-top: 1px solid rgba(183, 110, 121, 0.2);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {

    .operational-grid,
    .mcn-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 3rem;
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    header {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-white);
        backdrop-filter: var(--blur-glass);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: var(--frame-border);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .hero-frame-main {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 50vh;
        margin-bottom: 2rem;
    }

    .hero-content {
        position: relative;
        margin: 1rem;
    }

    .accent-frame {
        display: none;
    }

    .photo-grid {
        grid-template-rows: 150px 150px;
    }

    .section-header,
    .operational-header {
        font-size: 2rem;
    }

    .contact-form-wrap {
        padding: 2rem;
    }

    .gradient-orb {
        opacity: 0.25;
    }
}

/* ============================================
   SELECTION STYLES
   ============================================ */
::selection {
    background: var(--rose-gold);
    color: var(--base-cream);
}

::-moz-selection {
    background: var(--rose-gold);
    color: var(--base-cream);
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--base-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--rose-gold), var(--deep-rose));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-rose);
}

/* ============================================
   SERVICES TAB
   ============================================ */

/* Services Hero */
.services-hero-section {
    padding: 6rem 0;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-hero-title {
    font-family: var(--font-header);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--base-cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.services-hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.services-proof {
    font-size: 0.9rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Services Detail Sections */
.services-detail-section {
    padding: 5rem 0;
}

.services-section-headline {
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-section-body {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--muted-taupe);
    line-height: 1.6;
}

/* Audience Split */
.audience-split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(183, 110, 121, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.audience-title {
    font-family: var(--font-header);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.audience-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--rose-gold);
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--muted-taupe);
    line-height: 1.5;
}

.audience-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Core Services */
.core-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.core-service-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(183, 110, 121, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.core-service-title {
    font-family: var(--font-header);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.core-service-desc {
    font-size: 0.95rem;
    color: var(--muted-taupe);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.core-service-best-for {
    background: rgba(183, 110, 121, 0.08);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.core-service-best-for strong {
    color: var(--rose-gold);
    display: block;
    margin-bottom: 0.3rem;
}

.core-service-card .cta-text-link {
    color: var(--charcoal);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.core-service-card .cta-text-link:hover {
    color: var(--rose-gold);
    transform: translateX(5px);
}

/* Workflow Steps */
.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.workflow-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.workflow-step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-header);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.2);
    position: relative;
    z-index: 2;
}

.workflow-step-content h3 {
    font-family: var(--font-header);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.workflow-step-content p {
    font-size: 0.9rem;
    color: var(--muted-taupe);
}

/* Services Final CTA */
.services-final-cta {
    padding: 6rem 0;
    background: var(--charcoal);
    text-align: center;
    color: var(--base-cream);
}

.services-cta-headline {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-cta-body {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-section-headline {
        font-size: 1.8rem;
    }

    .audience-split-grid {
        grid-template-columns: 1fr;
    }

    .workflow-steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .workflow-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        padding: 1rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .workflow-step-number {
        margin: 0 1.5rem 0 0;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        min-width: 40px;
    }
}

/* ============================================
   PHOTO SECTIONS & VISUAL MOOD
   ============================================ */

/* Full Width Parallax/Static Banner */
.photo-section-full {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-section-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight dim for mood */
    z-index: 1;
}

/* Photo Break (Slimmer) */
.photo-break {
    width: 100%;
    height: 40vh;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Photo Grids */
.photo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 5%;
}

.photo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 5%;
}

.photo-frame-simple {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Softer look */
    height: 400px;
}

.photo-frame-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-frame-simple:hover img {
    transform: scale(1.03);
}

/* Caption/Label Overlay */
.photo-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
    font-family: var(--font-header);
    font-size: 1.2rem;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .photo-section-full {
        height: 40vh;
    }

    .photo-break {
        height: 30vh;
        margin: 2rem 0;
    }

    .photo-grid-2,
    .photo-grid-3 {
        grid-template-columns: 1fr;
        height: auto;
        padding: 0 1rem;
    }

    .photo-frame-simple {
        height: 300px;
    }
}

/* Contact Link Styling */
.direct-link-item a {
    color: var(--base-cream);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.direct-link-item a:hover {
    color: var(--gold-crayola);
    border-bottom: 1px solid var(--gold-crayola);
}

/* CTA Outline (Dark for Light Backgrounds) */
.cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.cta-outline:hover {
    background: var(--charcoal);
    color: var(--base-cream);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--base-cream);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-crayola);
    color: var(--gold-crayola);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 120px;
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--base-cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-crayola);
}

/* Hide Google Translate Toolbar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Inline Language Options */
.language-options {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--muted-taupe);
}

.lang-opt {
    text-decoration: none;
    color: var(--muted-taupe);
    transition: color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
}

.lang-opt:hover,
.lang-opt.active {
    color: var(--charcoal);
}

.lang-divider {
    color: var(--muted-taupe);
    opacity: 0.5;
    font-size: 0.8rem;
}