/* ============================================
   Isabella Biricik - Actor Website
   Premium Cinematic Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-surface: #1a1a1a;
    --color-text: #f2f0ed;
    --color-text-muted: #8a8680;
    --color-accent: #c9a96e;
    --color-accent-light: #dfc291;
    --color-white: #ffffff;
    --color-light-bg: #f8f6f3;
    --color-light-text: #1a1a1a;
    --color-light-muted: #6b6660;
    --color-border: rgba(201, 169, 110, 0.2);
    --color-border-light: rgba(0, 0, 0, 0.08);

    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-max: 1200px;
    --section-padding: 120px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-light-text);
    background: var(--color-light-bg);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-name {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Section Defaults --- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--color-bg);
    color: var(--color-text);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.section-label-light {
    color: var(--color-accent);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 60px;
    max-width: 600px;
}

.section-heading-light {
    color: var(--color-text);
}

/* --- Scroll Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 40px;
}

#navbar.hidden {
    transform: translateY(-100%);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid var(--color-accent) !important;
    padding: 8px 24px !important;
    border-radius: 0;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-accent) !important;
    color: var(--color-bg) !important;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transform: scale(1);
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.25) 0%,
        rgba(10, 10, 10, 0.05) 25%,
        rgba(10, 10, 10, 0.05) 50%,
        rgba(10, 10, 10, 0.5) 75%,
        rgba(10, 10, 10, 0.92) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px 100px;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 1s;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(40px);
}

.title-line:nth-child(1) {
    animation: fadeUp 0.8s ease forwards 1.2s;
}

.title-line:nth-child(2) {
    animation: fadeUp 0.8s ease forwards 1.4s;
    color: var(--color-accent-light);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 1.6s;
}

.hero-cta {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 1.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Desktop Portrait Column (hidden on mobile) --- */
.hero-portrait-col {
    display: none;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn.sent {
    background: #2d6a4f;
    color: white;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent);
    z-index: -1;
    transition: transform var(--transition);
}

.about-image-wrapper:hover::before {
    transform: translate(5px, 5px);
}

.about-image-wrapper img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.image-caption {
    margin-top: 12px;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--color-light-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.about-text-col .section-heading {
    font-style: italic;
    color: var(--color-light-text);
}

.about-bio p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--color-light-muted);
    line-height: 1.8;
}

.about-bio strong {
    color: var(--color-light-text);
    font-weight: 500;
}

.about-stats {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.stat-value {
    display: block;
    font-size: 0.85rem;
    color: var(--color-light-text);
}

/* --- Quote Section --- */
.quote-section {
    padding: 100px 0;
    background: var(--color-bg);
    overflow: hidden;
}

.pull-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pull-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-text);
}

.pull-quote cite {
    display: block;
    margin-top: 30px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* --- Credits Section --- */
.credits-category {
    margin-bottom: 60px;
}

.credits-heading {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.credit-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.credit-row.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.credit-row:hover {
    background: rgba(201, 169, 110, 0.03);
}

.credit-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
}

.credit-type {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-left: 8px;
}

.credit-role {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-accent-light);
}

.credit-detail {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.credit-year {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Training */
.training-grid {
    display: grid;
    gap: 30px;
    margin-top: 20px;
}

.training-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.training-degree {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
}

.training-school {
    font-size: 0.9rem;
    color: var(--color-accent-light);
    margin-bottom: 4px;
}

.training-detail {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.resume-download {
    text-align: center;
    margin-top: 60px;
}

/* --- Gallery Section --- */
#gallery {
    padding-bottom: 80px;
}

.gallery-carousel {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 40px;
    cursor: grab;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-carousel.grabbing {
    cursor: grabbing;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    flex: 0 0 auto;
    height: clamp(350px, 45vh, 600px);
}

.gallery-item:not(.gallery-item-land) {
    aspect-ratio: 3/4;
}

.gallery-item-land {
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-white);
}

/* Gallery scroll hint - mobile only */
.gallery-scroll-hint {
    display: none;
}

@media (max-width: 768px) {
    .gallery-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 0 0;
        color: var(--color-text-muted);
        font-size: 0.6rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-family: var(--font-body);
    }

    .gallery-scroll-hint svg {
        animation: nudgeRight 1.5s ease-in-out infinite;
    }

    @keyframes nudgeRight {
        0%, 100% { transform: translateX(0); opacity: 0.4; }
        50% { transform: translateX(6px); opacity: 1; }
    }
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: color var(--transition);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-accent);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* --- Press Section --- */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.press-card {
    padding: 40px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
}

.press-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-accent);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.press-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.press-quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 24px;
}

.press-publication {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.press-context {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* --- Reel Section --- */
.reel-container {
    text-align: center;
}

.reel-placeholder {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 40px;
    border: 1px dashed var(--color-border-light);
    border-radius: 4px;
}

.reel-icon {
    color: var(--color-accent);
    margin-bottom: 20px;
    opacity: 0.5;
}

.reel-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-light-muted);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: border-color var(--transition);
}

.contact-item a:hover {
    border-color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--color-text-muted);
    transition: color var(--transition), transform var(--transition);
}

.social-links a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* --- Contact Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-accent);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 400px;
    }

    .credit-row {
        grid-template-columns: 1.2fr 1fr auto;
    }

    .credit-detail {
        display: none;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 24px;
    }

    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.2em;
        color: var(--color-white);
    }

    /* Hero */
    .hero-image {
        object-position: center 10%;
    }

    .hero-content {
        padding: 0 24px 40px;
    }

    .hero-eyebrow,
    .hero-tagline {
        white-space: nowrap;
        letter-spacing: 0.1em;
        font-size: 0.6rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

    /* Gallery */
    .gallery-carousel {
        padding: 0 16px;
    }

    /* Credits */
    .credit-row {
        grid-template-columns: 1fr auto;
        gap: 8px;
    }

    .credit-role {
        grid-column: 1;
    }

    .credit-year {
        grid-row: 1;
        grid-column: 2;
    }

    .credit-detail {
        display: none;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* --- Desktop Split Hero Layout --- */
@media (min-width: 769px) {
    #hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        background: var(--color-bg);
    }

    #hero .hero-bg {
        display: none;
    }

    #hero .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 clamp(40px, 4vw, 200px) 0 clamp(60px, 5vw, 200px);
        max-width: none;
        height: 100%;
    }

    #hero .title-line {
        font-size: clamp(3.5rem, 6vw, 18rem);
    }

    #hero .hero-eyebrow {
        font-size: clamp(0.65rem, 0.7vw, 1.4rem);
        letter-spacing: clamp(0.2em, 0.4vw, 0.4em);
        margin-bottom: clamp(12px, 1vw, 24px);
    }

    #hero .hero-tagline {
        font-size: clamp(0.9rem, 1vw, 2rem);
        margin-bottom: clamp(30px, 3vw, 70px);
    }

    #hero .btn {
        font-size: clamp(0.65rem, 0.6vw, 1.2rem);
        padding: clamp(14px, 1.2vw, 30px) clamp(32px, 3vw, 70px);
    }

    .hero-portrait-col {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }

    .hero-portrait {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    #hero .scroll-indicator {
        position: absolute;
        bottom: 40px;
        right: 40px;
    }
}

/* --- Scaled Nav for larger screens --- */
@media (min-width: 769px) {
    #navbar {
        padding: clamp(20px, 2vw, 50px) clamp(40px, 4vw, 100px);
    }

    #navbar.scrolled {
        padding: clamp(14px, 1vw, 30px) clamp(40px, 4vw, 100px);
    }

    .nav-logo {
        font-size: clamp(1.5rem, 1.5vw, 3rem);
    }

    .nav-links a {
        font-size: clamp(0.7rem, 0.6vw, 1.2rem);
    }

    .nav-links {
        gap: clamp(30px, 3vw, 70px);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: clamp(280px, 40vh, 400px);
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .press-card {
        padding: 30px 24px;
    }
}
