/* ==================== CSS CUSTOM PROPERTIES ==================== */

:root {
    --color-bg: #F5F0E8;
    --color-bg-alt: #EDE6D9;
    --color-text: #2C1810;
    --color-text-secondary: #5C4033;
    --color-accent: #B87333;
    --color-accent-2: #D4A855;
    --color-border: #D5CCBD;
    --color-card-bg: #FFFDF8;
    --color-dropdown-bg: #FAF7F2;
    --color-nav-bg: rgba(245, 240, 232, 0.92);
    --color-bio-bg: rgba(44, 24, 16, 0.95);
    --color-bio-text: #F5F0E8;
    --color-hover: #9A5E28;
    --color-highlight: rgba(184, 115, 51, 0.12);
    --color-highlight-strong: rgba(184, 115, 51, 0.25);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
}

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

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

/* ==================== TYPOGRAPHY ==================== */
.brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.brand-the {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--color-accent);
    margin-bottom: 0.15em;
}

.brand-word-wrap {
    display: block;
    position: relative;
}

.brand-word {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
    font-size: clamp(2.2rem, 6.2vw, 6.5rem);
    cursor: pointer;
    position: relative;
    padding-bottom: 0.06em;
    transition: color 0.3s ease;
}

.brand-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-word:hover::after,
.brand-word.active::after {
    transform: scaleX(1);
}

.brand-word:hover,
.brand-word.active {
    color: var(--color-accent);
}

.brand-word-text {
    position: relative;
}

.dropdown-arrow {
    width: clamp(18px, 2.5vw, 30px);
    height: clamp(18px, 2.5vw, 30px);
    color: var(--color-accent);
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    align-self: center;
}

.brand-word:hover .dropdown-arrow,
.brand-word.active .dropdown-arrow {
    opacity: 1;
    transform: translateY(3px);
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: var(--color-nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 2.5rem;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-name {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-name:hover {
    opacity: 1;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-social a {
    opacity: 0.5;
    transition: opacity 0.3s;
    display: flex;
}

.nav-social a:hover {
    opacity: 1;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.nav-mobile-toggle.open span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-mobile-toggle.open span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mobile-menu-link:hover {
    opacity: 1;
    color: var(--color-accent);
}

.mobile-menu-social {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.5;
}

.mobile-menu-social a:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* ==================== SCROLL INDICATORS ==================== */
.scroll-indicators {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text);
    opacity: 0.15;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.indicator.active::after {
    opacity: 1;
    background: var(--color-accent);
    width: 10px;
    height: 10px;
}

.indicator-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.indicator:hover .indicator-label {
    opacity: 0.7;
    transform: translateX(0);
}

/* ==================== BIO STRIP ==================== */
.bio-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: var(--color-bio-bg);
    color: var(--color-bio-text);
    padding: 0.75rem 2.5rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bio-strip.visible {
    transform: translateY(0);
}

.bio-strip p {
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 800px;
    font-style: normal;
    opacity: 1;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    flex: 1;
}

.bio-strip-subscribe {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--color-bio-text);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-bio-text);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.bio-strip-subscribe:hover {
    background: var(--color-bio-text);
    color: var(--color-text);
}

/* ==================== HERO SECTION ==================== */
.section {
    min-height: auto;
    position: relative;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2.5rem 4rem;
    min-height: 100vh;
    overflow: visible;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.hero-text {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-photos {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
}

.cutout {
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
    min-width: 0;
}

.cutout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cutout-1 {
    height: 220px;
    border-radius: 100px 100px 16px 16px;
}

.cutout-2 {
    height: 220px;
    border-radius: 16px 16px 100px 100px;
    margin-top: 1.5rem;
}

.cutout-3 {
    height: 220px;
    border-radius: 100px 100px 16px 16px;
    margin-top: -0.75rem;
}

/* Tighter crop on Truth Initiative photo */
.cutout-cropped img {
    object-position: center 20%;
    transform: scale(1.4);
}

.cutout:hover {
    transform: scale(1.03);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    animation: bobDown 2s ease-in-out infinite;
}

@keyframes bobDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==================== DROPDOWNS ==================== */
.dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 50;
    width: max(320px, 50%);
    max-width: 420px;
    background: var(--color-dropdown-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    cursor: default;
    text-transform: none;
    letter-spacing: normal;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-inner {
    padding: 1.5rem;
}

.dropdown-label {
    display: block;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.dropdown-desc {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.dropdown-films {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
}

.dropdown-film {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: color 0.2s;
}

.dropdown-film:last-child {
    border-bottom: none;
}

.dropdown-film:hover {
    color: var(--color-accent);
}

.dropdown-film-title {
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-film-year {
    font-size: 0.8rem;
    opacity: 0.5;
    font-variant-numeric: tabular-nums;
}

.dropdown-film.coming-soon {
    opacity: 0.5;
    font-style: italic;
}

.dropdown-cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: opacity 0.2s;
}

.dropdown-cta:hover {
    opacity: 0.7;
}

.dropdown-cta-secondary {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* ==================== SECTIONS COMMON ==================== */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 4rem;
}

/* ==================== FILMS SECTION ==================== */
.films {
    background: var(--color-bg-alt);
}

.film-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}

.film-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.film-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.film-video:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.coming-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.film-info {
    padding: 1.5rem;
}

.film-year {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.film-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.film-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.film-card-upcoming {
    display: flex;
    flex-direction: column;
}

.coming-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1.5px solid white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
}

/* Press Strip */
.press-strip {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.press-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.press-link {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.7;
    letter-spacing: -0.02em;
    transition: opacity 0.3s;
}

.press-link:hover {
    opacity: 1;
}

.press-divider {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.35;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.subscribe-box {
    background: var(--color-bio-bg);
    color: var(--color-bio-text);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.subscribe-icon {
    color: var(--color-bio-text);
    opacity: 0.7;
}

.subscribe-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-bio-text);
}

.subscribe-desc {
    font-size: 0.95rem;
    color: var(--color-bio-text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.65rem 1.5rem;
    background: var(--color-bio-text);
    color: var(--color-bio-bg);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.subscribe-btn:hover {
    opacity: 0.85;
}

.preview-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.preview-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.preview-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.preview-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.preview-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: opacity 0.2s;
}

.preview-link:hover {
    opacity: 0.7;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--color-bg-alt);
}

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

.about-photo {
    position: sticky;
    top: 8rem;
}

.about-photo img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--color-text-secondary);
}

.about-text strong {
    color: var(--color-text);
    font-weight: 600;
}

.about-quote {
    margin: 1.25rem 0 2rem 0;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 3px solid var(--color-accent);
}

.about-quote p {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--color-text);
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.about-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
}

.about-quote cite a {
    color: var(--color-accent);
    font-weight: 500;
    transition: opacity 0.2s;
}

.about-quote cite a:hover {
    opacity: 0.7;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    min-height: auto;
}

.contact .section-inner {
    padding-bottom: 6rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: color 0.2s;
}

.contact-link:first-child {
    border-top: 1px solid var(--color-border);
}

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

.contact-link-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    min-width: 100px;
}

.contact-link-handle {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    flex: 1;
}

.contact-link svg {
    opacity: 0.3;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.contact-link:hover svg {
    opacity: 1;
    transform: translate(2px, -2px);
}

.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
}

.footer-name {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(128,128,128,0.15);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.film-card,
.preview-card,
.about-content,
.about-photo,
.contact-link,
.section-header {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.film-card.animate-in,
.preview-card.animate-in,
.about-content.animate-in,
.about-photo.animate-in,
.contact-link.animate-in,
.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.film-card:nth-child(2) { transition-delay: 0.1s; }
.film-card:nth-child(3) { transition-delay: 0.2s; }
.contact-link:nth-child(2) { transition-delay: 0.1s; }
.contact-link:nth-child(3) { transition-delay: 0.15s; }
.contact-link:nth-child(4) { transition-delay: 0.2s; }


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-photos {
        max-width: 520px;
    }

    .cutout-1,
    .cutout-2,
    .cutout-3 {
        height: 160px;
    }

    .film-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
    }

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

    .about-photo {
        position: relative;
        top: 0;
        max-width: 250px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-social {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .nav {
        padding: 1rem 1.25rem;
    }

    .nav.scrolled {
        padding: 0.75rem 1.25rem;
    }

    .scroll-indicators {
        display: none;
    }

    .theme-switcher {
        right: 4rem;
        top: 1rem;
    }

    .hero {
        padding: 5rem 1.25rem 3rem;
    }

    .hero-photos {
        gap: 0.5rem;
        max-width: 100%;
    }

    .cutout-1,
    .cutout-2,
    .cutout-3 {
        height: 130px;
        margin-top: 0;
    }

    .brand-word {
        font-size: clamp(2.5rem, 11vw, 4.5rem);
    }

    .brand-the {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .brand-word-hint {
        font-size: 0.18em;
    }

    .dropdown {
        position: fixed;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: none;
    }

    .section-inner {
        padding: 5rem 1.25rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .film-card-upcoming {
        max-width: 100%;
    }

    .press-logos {
        gap: 1rem;
    }

    .press-link {
        font-size: 1.5rem;
    }

    .about-layout {
        gap: 2rem;
    }

    .about-quote p {
        font-size: 1rem;
    }

    .contact-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .bio-strip {
        padding: 0.6rem 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .bio-strip p {
        font-size: 0.9rem;
    }

    .bio-strip-subscribe {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .cutout-1,
    .cutout-2,
    .cutout-3 {
        height: 100px;
    }

    .cutout-1 {
        border-radius: 60px 60px 10px 10px;
    }

    .cutout-2 {
        border-radius: 10px 10px 60px 60px;
    }

    .cutout-3 {
        border-radius: 60px 60px 10px 10px;
    }
}

/* ==================== PRINT ==================== */
@media print {
    .nav, .scroll-indicators, .bio-strip, .theme-switcher, .scroll-hint {
        display: none !important;
    }

    .section {
        min-height: auto;
        break-inside: avoid;
    }
}
