:root {
    /* Color System */
    --primary: #1a1a1a;
    --secondary: #6c757d;
    --accent: #FF5733; /* Modern Orange/Red */
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --text-secondary: #555555;
    --card-bg: #f8f9fa;
    --border-color: #e9ecef;
    --nav-bg: rgba(255, 255, 255, 0.85);
    --modal-bg: rgba(255, 255, 255, 0.95);
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 120px 0;
    --mobile-padding: 80px 0;
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animation */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode {
    --primary: #f8f9fa;
    --secondary: #adb5bd;
    --accent: #FF5733;
    --bg-color: #0f0f0f;
    --text-color: #f8f9fa;
    --text-secondary: #b0b0b0;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
    --nav-bg: rgba(15, 15, 15, 0.85);
    --modal-bg: rgba(15, 15, 15, 0.95);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.1;
    font-weight: 700;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.1rem; }

.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-color);
    border: 1px solid var(--primary);
}

.btn-primary::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}

.btn-primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: white;
    border-color: var(--accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--card-bg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: padding 0.3s ease, transform 0.35s ease, opacity 0.35s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar.hidden-during-results {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo-accent { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.mobile-nav-footer {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.theme-toggle:hover { transform: rotate(15deg); }
.moon-icon { display: none; }
body.dark-mode .sun-icon { display: none; }
body.dark-mode .moon-icon { display: block; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background-color: var(--primary);
    transform-origin: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
    background-color: white;
    transform: translateY(4.5px) rotate(45deg);
}

.mobile-menu-btn.active span:last-child {
    background-color: white;
    transform: translateY(-4.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -10%;
    right: -10%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #4facfe;
    bottom: 10%;
    left: -5%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title .highlight {
    color: var(--accent);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-intro-copy {
    position: relative;
    max-width: 690px;
    min-height: 152px;
    padding-right: 0;
}

.hero-subtitle {
    max-width: 560px;
}

.hero-portrait {
    position: absolute;
    top: -225px;
    right: -70px;
    width: 200px;
    margin: 0;
    z-index: 4;
    transform: rotate(2deg);
    filter: drop-shadow(0 20px 25px rgba(25, 19, 17, 0.18));
    animation: portrait-float 6s ease-in-out infinite;
}

.hero-portrait-mobile {
    display: none;
    animation: none;
}

.hero-portrait-desktop {
    position: relative;
    inset: auto;
    width: clamp(290px, 27vw, 370px);
    flex: 0 0 auto;
    transform: rotate(2deg);
    animation: none;
}

.hero-portrait-desktop .portrait-frame {
    width: 100%;
    padding: 9px;
    border-width: 3px;
}

.hero-portrait-desktop .portrait-accent {
    width: 78px;
    height: 78px;
    top: -18px;
    right: -16px;
}

.hero-portrait-desktop::after {
    display: none;
}

.hero-portrait-desktop figcaption {
    right: -14px;
    bottom: 12px;
    padding: 0.42rem 0.8rem;
    font-size: 0.72rem;
}

.showreel-cta {
    position: absolute;
    left: -22px;
    bottom: 18px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.38rem 0.95rem 0.38rem 0.38rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: var(--primary);
    color: var(--bg-color);
    box-shadow: 0 14px 28px rgba(20, 17, 16, 0.24);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.showreel-play {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    padding-left: 2px;
}

.showreel-cta:hover,
.showreel-cta:focus-visible {
    transform: translateY(-4px);
    background: var(--accent);
    outline: none;
}

.showreel-cta:hover .showreel-play,
.showreel-cta:focus-visible .showreel-play {
    background: white;
    color: var(--accent);
}

.showreel-placeholder {
    min-height: 280px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background:
        radial-gradient(circle at 75% 20%, rgba(255, 87, 51, 0.22), transparent 35%),
        var(--card-bg);
    text-align: center;
}

.showreel-placeholder-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-color);
    font-size: 1.4rem;
    padding-left: 4px;
}

.showreel-placeholder p {
    max-width: 22rem;
    margin: 0;
    font-size: 0.95rem;
}

.portrait-frame {
    position: relative;
    width: 200px;
    aspect-ratio: 0.86;
    padding: 6px;
    overflow: hidden;
    background: var(--bg-color);
    border: 2px solid var(--primary);
    border-radius: 36% 64% 71% 29% / 40% 31% 69% 60%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 34%;
    border-radius: 34% 66% 69% 31% / 38% 29% 71% 62%;
}

.portrait-accent {
    position: absolute;
    width: 55px;
    height: 55px;
    top: -12px;
    right: -12px;
    border-radius: 46% 54% 62% 38% / 44% 37% 63% 56%;
    background: var(--accent);
    z-index: -1;
}

.hero-portrait::after {
    content: '';
    position: absolute;
    left: -16px;
    bottom: 20px;
    width: 38px;
    height: 38px;
    border: 2px solid #4facfe;
    border-radius: 50%;
    z-index: -1;
}

.hero-portrait figcaption {
    position: absolute;
    right: -10px;
    bottom: 6px;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--bg-color);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-portrait:hover .portrait-frame {
    transform: rotate(-3deg) scale(1.035);
}

@keyframes portrait-float {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(0deg) translateY(-8px); }
}

@media (min-width: 769px) {
    .visual-card-stack {
        display: none;
    }

    .hero-visual {
        height: 470px;
    }
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.social-proof-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.card-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.layer-1 { top: 0; left: 0; transform: rotate(-6deg) scale(0.9); z-index: 1; background: #e0e0e0; }
.layer-2 { top: 0; left: 0; transform: rotate(-3deg) scale(0.95); z-index: 2; background: #f0f0f0; }
.layer-3 {
    top: 0; left: 0; z-index: 3;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.layer-content {
    text-align: center;
    color: white;
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.layer-3:hover .play-button { transform: scale(1.1); }

/* Services Section */
.services { padding: var(--section-padding); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-list {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li::before {
    content: '•';
    color: var(--accent);
}

/* Work / Portfolio Section */
.work { padding: var(--section-padding); background-color: var(--card-bg); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem 1.25rem;
    align-items: start;
}

.portfolio-item {
    cursor: pointer;
    appearance: none;
    width: 100%;
    padding: 0;
    color: inherit;
    text-align: left;
    font: inherit;
    background: transparent;
    border: 0;
}

.portfolio-thumb {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #171717;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.portfolio-item--square .portfolio-thumb {
    aspect-ratio: 1;
}

.portfolio-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.48) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item--square .portfolio-thumb img {
    object-fit: contain;
}

.play-badge {
    position: absolute;
    z-index: 1;
    left: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding-left: 2px;
    color: #171717;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.portfolio-item:hover .portfolio-thumb img,
.portfolio-item:focus-visible .portfolio-thumb img {
    transform: scale(1.045);
}

.portfolio-item:hover .portfolio-thumb::after,
.portfolio-item:focus-visible .portfolio-thumb::after {
    opacity: 0.42;
}

.portfolio-item:hover .play-badge,
.portfolio-item:focus-visible .play-badge {
    transform: scale(1.1);
    background: var(--accent);
}

.portfolio-item:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 6px;
    border-radius: 18px;
}

.portfolio-info h4 { margin-bottom: 0.25rem; }
.portfolio-info span { font-size: 0.9rem; color: var(--text-secondary); }

/* Results Section (Pinned) */
.results {
    height: 100vh; /* Will be pinned */
    background-color: var(--primary);
    color: white;
    overflow: hidden;
    position: relative;
}

.results-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.results-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    overflow: visible;
}

.results-intro { margin-bottom: 2rem; }
.results-intro h2 { color: white; }

.results-cards-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    height: 460px;
    width: max-content;
    will-change: transform;
}

.result-card {
    position: relative;
    flex: 0 0 clamp(420px, 68vw, 760px);
    min-height: 400px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

.result-card:nth-child(even) {
    margin-top: 2.5rem;
}

.result-metric {
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.result-card h3 { color: white; margin-bottom: 1rem; }
.result-card p { color: rgba(255,255,255,0.8); max-width: 600px; }

.badges { margin-top: 2rem; display: flex; gap: 0.5rem; }
.badge {
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* About Section */
.about { padding: var(--section-padding); }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-bio {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.process-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--border-color);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
}

.process-step:last-child { margin-bottom: 0; }

.step-num {
    position: absolute;
    left: -2.9rem;
    top: 0;
    background: var(--bg-color);
    padding: 0.2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.step-content h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }

.about-image {
    position: sticky;
    top: 100px;
}

.about-portrait {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
    object-position: 50% 22%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Pricing Section */
.pricing { padding: var(--section-padding); background-color: var(--card-bg); }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: var(--border-color);
    border-radius: 32px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.switch-handle {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggle-switch.active { background: var(--accent); }
.toggle-switch.active .switch-handle { transform: translateX(28px); }

.toggle-label {
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active { color: var(--primary); }
.toggle-label small { color: var(--accent); margin-left: 4px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 0.5rem 0;
    font-family: var(--font-heading);
}

.price span { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }

.features {
    text-align: left;
    margin: 2rem 0;
}

.features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

/* Testimonials */
.testimonials { padding: var(--section-padding); overflow: hidden; }

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    min-height: 300px; /* Reserve space */
}

.testimonial-track { position: relative; }

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: scale(0.95);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    position: relative;
}

.quote {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.avatar {
    width: 60px;
    height: 60px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
}

.author-info { text-align: left; }
.author-info h5 { margin: 0; }
.author-info span { font-size: 0.9rem; color: var(--text-secondary); }

.slider-controls {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.slider-controls button {
    background: none;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    color: var(--primary);
}

.slider-controls button:hover {
    background: var(--primary);
    color: var(--bg-color);
}

/* Contact Section */
.contact { padding: var(--section-padding); }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-email {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

.social-links { display: flex; gap: 1.5rem; }
.social-links a { font-weight: 500; transition: color 0.3s; }
.social-links a:hover { color: var(--accent); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

label { font-weight: 500; font-size: 0.9rem; }

input, textarea {
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-success-text { display: none; }

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links { display: flex; gap: 2rem; }

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--modal-bg);
    width: 90%;
    max-width: 600px;
    max-height: 90dvh;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
    transform: translateY(50px) scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.modal-backdrop.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-subtitle { color: var(--accent); font-weight: 600; margin-bottom: 2rem; }

.detail-item { margin-bottom: 1.5rem; }
.detail-item h5 { font-size: 0.9rem; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.3rem; }

.campaign-player {
    overflow: hidden;
    background: #101010;
    border-radius: 14px;
}

.campaign-player video {
    display: block;
    width: 100%;
    max-height: 62dvh;
    background: #101010;
}

/* Full-screen campaign player */
.modal-backdrop.campaign-modal {
    align-items: stretch;
    background: #050505;
}

.campaign-modal .modal-content {
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    display: flex;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    color: #fff;
    background: #050505;
    border-radius: 0;
    overflow: hidden;
    backdrop-filter: none;
}

.campaign-modal .modal-body {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.campaign-modal #modalTitle {
    padding-right: 3rem;
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.campaign-modal .modal-subtitle {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

.campaign-modal .close-modal {
    top: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 1;
    color: #fff;
}

.campaign-modal .modal-details {
    flex: 1;
    min-height: 0;
    display: grid;
    place-items: center;
}

.campaign-modal .campaign-player {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: #000;
    border-radius: 0;
}

.campaign-modal .campaign-player video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100dvh - clamp(9rem, 18vw, 12rem));
    background: #000;
}

/* Responsive */
@media (max-width: 980px) and (min-width: 769px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px 0; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    
    .cursor-dot, .cursor-outline { display: none; } /* Disable custom cursor */
    body { cursor: auto; }

    body.menu-open {
        overflow: hidden;
    }

    .navbar,
    .navbar.hidden-during-results {
        padding: 0.85rem 0;
        background: var(--nav-bg);
        border-bottom: 1px solid rgba(128, 128, 128, 0.14);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition: padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar.scrolled {
        padding: 0.7rem 0;
    }

    .navbar.menu-open {
        background: transparent;
        border-bottom: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navbar.menu-open .logo,
    .navbar.menu-open .theme-toggle {
        color: white;
    }

    .navbar.menu-open .logo,
    .navbar.menu-open .nav-actions,
    .navbar.menu-open .mobile-menu-btn {
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        inset: 0;
        height: 100vh;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.2rem;
        padding: 7.5rem 1.25rem 2rem;
        background:
            radial-gradient(circle at 15% 20%, rgba(255, 87, 51, 0.22), transparent 26rem),
            linear-gradient(135deg, #111111 0%, #181818 52%, #0f0f0f 100%);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-100%);
        transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        overflow: hidden;
    }

    .nav-links::before {
        content: 'Menu';
        position: absolute;
        top: 7rem;
        right: 1.25rem;
        color: rgba(255,255,255,0.35);
        font-size: 0.75rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 0.35rem 0;
        color: white;
        font-family: var(--font-heading);
        font-size: clamp(2.8rem, 13vw, 5.2rem);
        font-weight: 700;
        line-height: 0.95;
        opacity: 0;
        transform: translateY(36px);
        transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
    }

    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.08s; }
    .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.14s; }
    .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.26s; }
    .nav-links.active .nav-link:nth-child(5) { transition-delay: 0.32s; }

    .nav-link::before {
        content: attr(data-index);
        display: inline-block;
        width: 2.2rem;
        margin-right: 0.55rem;
        color: var(--accent);
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 700;
        vertical-align: 1.5rem;
    }

    .nav-link:hover {
        color: var(--accent);
    }

    .nav-link::after { display: none; }

    .mobile-nav-footer {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        margin-top: auto;
        color: rgba(255,255,255,0.62);
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.55s ease;
    }

    .nav-links.active .mobile-nav-footer {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.42s;
    }

    .mobile-nav-footer span {
        max-width: 14rem;
    }

    .mobile-nav-cta {
        flex: 0 0 auto;
        color: white;
        background: var(--accent);
        padding: 0.85rem 1rem;
        border-radius: 999px;
        font-weight: 700;
    }

    .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-portrait-desktop { display: none; }
    .hero-portrait-mobile { display: block; }
    .hero-intro-copy {
        min-height: 190px;
        padding-right: 124px;
    }
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }
    .hero-portrait {
        top: 18px;
        right: -4px;
        width: 124px;
        transform: rotate(4deg);
        filter: drop-shadow(0 14px 18px rgba(25, 19, 17, 0.16));
    }
    .portrait-frame { width: 124px; padding: 4px; }
    .portrait-accent { width: 42px; height: 42px; top: -9px; right: -8px; }
    .hero-portrait::after { width: 30px; height: 30px; left: -12px; bottom: 14px; }
    .hero-portrait figcaption {
        right: -4px;
        bottom: 2px;
        padding: 0.22rem 0.42rem;
        font-size: 0.45rem;
    }
    .hero-portrait-mobile::after { display: none; }
    .hero-portrait-mobile .showreel-cta {
        left: -13px;
        bottom: 1px;
        gap: 0.38rem;
        padding: 0.24rem 0.58rem 0.24rem 0.24rem;
        font-size: 0.5rem;
        letter-spacing: 0.06em;
        box-shadow: 0 9px 18px rgba(20, 17, 16, 0.22);
    }
    .hero-portrait-mobile .showreel-play {
        width: 27px;
        height: 27px;
        font-size: 0.5rem;
    }
    .hero-visual { display: none; }
    
    .about-layout, .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { display: none; } /* Simplify for mobile */

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 0.85rem;
    }

    .portfolio-thumb { border-radius: 14px; }
    .play-badge {
        left: 0.7rem;
        bottom: 0.7rem;
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }
    .portfolio-info h4 { font-size: 1rem; }
    .portfolio-info span { font-size: 0.78rem; }

    .modal-content {
        width: calc(100% - 2rem);
        padding: 2.75rem 1.25rem 1.5rem;
        border-radius: 16px;
    }
    .close-modal { top: 0.65rem; right: 0.9rem; }

    .campaign-modal .modal-content {
        width: 100%;
        padding: 1.25rem;
        border-radius: 0;
    }
    .campaign-modal .close-modal { top: 0.75rem; right: 0.9rem; }
    .campaign-modal .modal-subtitle { margin-bottom: 0.85rem; }
    .campaign-modal .campaign-player video {
        max-height: calc(100dvh - 8.5rem);
    }

    .contact { padding-bottom: 3rem; }

    .contact-email {
        max-width: 100%;
        font-size: clamp(0.95rem, 4vw, 1.15rem);
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    footer {
        margin-top: 0;
        padding: 2.25rem 0 calc(2.25rem + env(safe-area-inset-bottom));
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        font-size: 0.85rem;
    }

    .footer-content p {
        margin: 0;
        max-width: 22rem;
        font-size: inherit;
        line-height: 1.5;
    }

    .footer-links {
        width: 100%;
        justify-content: flex-start;
        gap: 1.5rem;
        line-height: 1.4;
    }

    .footer-links a {
        white-space: nowrap;
    }
    
    .results { height: auto; padding: var(--section-padding); }
    .results-cards-container { display: block; height: auto; width: 100%; }
    .result-card { position: relative; margin-bottom: 2rem; opacity: 1; transform: none; height: auto; min-height: 0; padding: 2rem; }
    .result-card:nth-child(even) { margin-top: 0; }
}
