/* ═══════════════════════════════════════════════
   CHANNING TATUM OFFICIAL — style.css
   Aesthetic: Cinematic · Dark · Gold · Editorial
   ✨ FULLY ENHANCED v2.2 — Professional + Motion + Contrast Fixed
   ✨ FIXED: News section headlines were showing default blue link color
        • Now forced to luxurious cream (matches hero/tagline/about text)
        • Categories stay rich gold
        • Hover still glows + lifts
   ✨ 100% content & HTML untouched
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow+Condensed:wght@300;400;600;700&display=swap');
:root {
    --ink: #0b0904;
    --ink2: #13100a;
    --ink3: #1c1812;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dim: #7a6430;
    --cream: #f0e8d5;
    --muted: #a0947f;
    --border: rgba(201, 168, 76, 0.15);
    --border-dim: rgba(255, 255, 255, 0.06);
    --radius: 2px;
    --ff-title: 'Anton', sans-serif;
    --ff-body: 'Cormorant Garamond', serif;
    --ff-ui: 'Barlow Condensed', sans-serif;
    --easing: cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.25s var(--easing);
    --transition-medium: all 0.4s var(--easing);
    --transition-slow: all 0.6s var(--easing);
    --glow-gold: 0 0 25px -5px var(--gold);
    --glow-gold-strong: 0 0 40px -10px var(--gold);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-x: hidden;
    cursor: auto;
    text-shadow: 0 1px 3px rgba(11, 9, 4, 0.35);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
    background: radial-gradient(circle at 50% 30%, transparent 60%, rgba(11, 9, 4, 0.45) 100%);
    opacity: 0.12;
    animation: vignettePulse 25s ease infinite alternate;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}


/* ── SCROLLBAR ── */

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
    box-shadow: var(--glow-gold);
}


/* ── GRAIN OVERLAY ── */

.grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: grainDrift 30s linear infinite;
}

@keyframes grainDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 200px 200px;
    }
}


/* ── CURSOR ── 

.cursor,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-fast);
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    box-shadow: var(--glow-gold);
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 168, 76, .5);
    transition: width .2s var(--easing), height .2s var(--easing), border-color .2s var(--easing), box-shadow .2s var(--easing);
}

a:hover .cursor-ring,
button:hover .cursor-ring,
.btn:hover .cursor-ring,
.nav-links a:hover .cursor-ring,
.film-card:hover .cursor-ring,
.gallery-item:hover .cursor-ring,
.news-card:hover .cursor-ring,
.footer-socials a:hover .cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
    box-shadow: var(--glow-gold-strong);
}

body:hover .cursor {
    opacity: 1;
}*/

/* ── CURSOR ── */
/* REMOVED custom round cursor - using default browser cursor */

/* Ensure all interactive elements show pointer cursor */
a, button, .btn, .floating-button, 
.film-card, .news-card, .gallery-item,
.nav-links a, .footer-nav a, .footer-socials a,
[onclick], [href], input[type="submit"], 
input[type="button"], select, .film-icon {
    cursor: pointer;
}

/* Text cursor for text elements */
p, h1, h2, h3, h4, span, li, .about-text, 
.hero-tagline, .film-desc, .news-card p {
    cursor: auto;
}

/* Text selection cursor for inputs */
input, textarea, [contenteditable="true"] {
    cursor: text;
}


/* ── BUTTONS ── */

.btn {
    display: inline-block;
    font-family: var(--ff-ui);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .85rem 2.2rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px -4px rgba(201, 168, 76, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 40%;
    height: 300%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s linear infinite;
    opacity: 0;
    transition: opacity .3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-strong);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .08);
    box-shadow: var(--glow-gold);
}

@keyframes shimmer {
    100% {
        transform: translateX(300%);
    }
}


/* ── NAV ── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 4rem;
    background: transparent;
    transition: background .4s var(--easing), padding .4s var(--easing), backdrop-filter .4s var(--easing);
}

.nav.scrolled {
    background: rgba(11, 9, 4, .95);
    backdrop-filter: blur(24px);
    padding: 1.1rem 4rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.6);
}

.nav-logo {
    font-family: var(--ff-title);
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: var(--gold);
    transition: var(--transition-fast);
}

.nav-logo:hover {
    text-shadow: var(--glow-gold);
}

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

.nav-links a {
    font-family: var(--ff-ui);
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s var(--easing);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s var(--easing);
}

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

.nav-links a:hover {
    color: var(--cream);
}

.nav-links .nav-blog-link {
    color: var(--gold-light);
}

.nav-links .nav-cta {
    background: var(--gold);
    color: var(--ink);
    padding: .5rem 1.4rem;
    font-weight: 700;
    transition: background .2s var(--easing);
}

.nav-links .nav-cta:hover {
    background: var(--gold-light);
    color: var(--ink);
    box-shadow: var(--glow-gold);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 950;
    transition: var(--transition-medium);
}

.nav-burger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--cream);
    transition: .3s var(--easing);
}

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

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* ── HERO ── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10rem 4rem 6rem;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 60% 40%, #2a1f0a 0%, #0b0904 60%);
    animation: heroBgBreath 30s ease infinite alternate;
}

@keyframes heroBgBreath {
    from {
        background-position: 60% 40%;
    }
    to {
        background-position: 40% 60%;
    }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #0b0904 100%);
    z-index: 1;
}

.hero-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    z-index: 2;
}

.hero-lines span {
    display: block;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, .12), transparent);
    height: 100%;
    animation: linePulse 8s ease-in-out infinite;
}

.hero-lines span:nth-child(even) {
    animation-delay: 1.2s;
}

@keyframes linePulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-family: var(--ff-ui);
    font-size: .75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    animation: eyebrowReveal 1.2s var(--easing) both;
}

.eyebrow-line {
    display: block;
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold-dim);
    transition: width .8s var(--easing);
}

.hero-name {
    display: flex;
    flex-direction: column;
    line-height: .88;
    margin-bottom: 2.5rem;
    position: relative;
}

.name-first,
.name-last {
    font-family: var(--ff-title);
    font-size: clamp(5rem, 14vw, 12rem);
    letter-spacing: -2px;
    color: var(--cream);
    display: block;
    text-shadow: 0 0 30px var(--gold), 0 0 60px rgba(201, 168, 76, 0.4);
    animation: namePop 1.4s var(--easing) both;
}

.name-last {
    color: var(--gold);
    animation-delay: 0.3s;
}

@keyframes namePop {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-tagline {
    font-family: var(--ff-body);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 3rem;
    animation: fadeUp 1.1s var(--easing) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s var(--easing) 0.9s both;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-ui);
    font-size: .65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dim);
}

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

@keyframes scrollPulse {
    0%,
    100% {
        opacity: .5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.hero-year {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    font-family: var(--ff-ui);
    font-size: .65rem;
    letter-spacing: 3px;
    color: var(--gold-dim);
    animation: fadeUp 1.2s var(--easing) 1.2s both;
}


/* ── REVEAL ANIMATIONS ── */

.reveal-up {
    animation: revealUp .9s var(--easing) both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── TICKER ── */

.ticker-bar {
    background: var(--gold);
    overflow: hidden;
    padding: .7rem 0;
    border-top: 1px solid var(--gold-dim);
}

.ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    white-space: nowrap;
    font-family: var(--ff-ui);
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    animation: ticker 25s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ── ABOUT ── */

.about {
    padding: 8rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 6rem;
    align-items: start;
}

.portrait-frame {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--border);
    background: var(--ink2);
    transition: var(--transition-slow);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.portrait-frame:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold-strong);
    border-color: var(--gold);
}

.portrait-svg image {
    filter: contrast(1.05) brightness(0.95);
    transition: transform 0.8s var(--easing);
}

.portrait-frame:hover image {
    transform: scale(1.08);
}

.portrait-fill {
    aspect-ratio: 4/5.2;
    overflow: hidden;
}

.portrait-deco-tl,
.portrait-deco-br {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    transition: var(--transition-medium);
}

.portrait-deco-tl {
    top: -10px;
    left: -10px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.portrait-deco-br {
    bottom: -10px;
    right: -10px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.portrait-frame:hover .portrait-deco-tl,
.portrait-frame:hover .portrait-deco-br {
    border-color: var(--gold-light);
    width: 52px;
    height: 52px;
}

.about-stat-col {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    flex: 1;
    transition: var(--transition-medium);
}

.about-stat:hover {
    transform: translateY(-4px);
}

.about-stat .stat-num {
    font-family: var(--ff-title);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.about-stat .stat-plus {
    font-family: var(--ff-ui);
    font-size: 1.1rem;
    color: var(--gold);
}

.about-stat p {
    font-family: var(--ff-ui);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .4rem;
}

.about-heading {
    font-family: var(--ff-title);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: .95;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-quote {
    margin-top: 2.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.about-quote blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: .5rem;
}

.about-quote cite {
    font-family: var(--ff-ui);
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
}


/* ── FILMS ── */

.films {
    padding: 8rem 4rem;
    background: var(--ink2);
    border-top: 1px solid var(--border-dim);
}

.films-header {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.films-title {
    font-family: var(--ff-title);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .9;
    letter-spacing: -1px;
}

.films-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid var(--border-dim);
}

.film-card {
    background: var(--ink);
    border: 1px solid var(--border-dim);
    overflow: hidden;
    position: relative;
    transition: var(--transition-medium);
}

.film-card:hover {
    background: var(--ink3);
    transform: translateY(-14px);
    box-shadow: var(--glow-gold-strong);
    border-color: var(--gold);
}

.film-poster {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height .5s var(--easing);
}

.film-card:hover .film-poster {
    height: 230px;
}

.film-icon {
    font-size: 2rem;
    color: rgba(201, 168, 76, .3);
    transition: all .4s var(--easing);
}

.film-card:hover .film-icon {
    color: var(--gold);
    transform: scale(1.2);
}

.film-info {
    padding: 1.8rem;
}

.film-year {
    font-family: var(--ff-ui);
    font-size: .7rem;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: .4rem;
}

.film-info h3 {
    font-family: var(--ff-title);
    font-size: 1.8rem;
    letter-spacing: .5px;
    margin-bottom: .2rem;
    transition: var(--transition-fast);
}

.film-card:hover h3 {
    color: var(--gold-light);
}

.film-role {
    font-family: var(--ff-ui);
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
    display: block;
    margin-bottom: .8rem;
}

.film-desc {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: .9rem;
    line-height: 1.6;
}

.film-genre {
    font-family: var(--ff-ui);
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
    padding: .25rem .7rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: var(--transition-fast);
}

.film-card:hover .film-genre {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.film-card.featured {
    grid-row: span 1;
    border-color: rgba(201, 168, 76, .2);
}

.film-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--ff-ui);
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .25rem .6rem;
    transition: var(--transition-fast);
}

.film-card:hover .film-badge {
    transform: scale(1.15) rotate(6deg);
    box-shadow: var(--glow-gold);
}


/* ── GALLERY ── */

.gallery {
    padding: 8rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-title {
    font-family: var(--ff-title);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
    line-height: .95;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-dim);
    cursor: pointer;
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: var(--glow-gold);
}

.gallery-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: transform 0.7s var(--easing);
}

.gallery-item:hover .gallery-inner {
    transform: scale(1.12);
}

.gallery-caption {
    font-family: var(--ff-ui);
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.g1,
.g2,
.g3,
.g4,
.g5,
.g6 {
    background: none;
}

.g1 .gallery-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 3px solid #f1c40f;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(241, 196, 15, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.g1 .gallery-inner::before::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #f1c40f;
    border-radius: 50%;
}


/* ── NEWS — BLUE FIX APPLIED HERE ✨ ── */

.news {
    padding: 8rem 4rem;
    background: var(--ink2);
    border-top: 1px solid var(--border-dim);
}

.news-header {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
}

.news-grid a {
    color: var(--cream);
    /* ← FIX: ensures all links in news cards are cream, not default blue */
    text-decoration: none;
    /* transition: color .2s var(--easing); */
}

.news-card {
    display: block;
    background: var(--ink);
    border: 1px solid var(--border-dim);
    padding: 2.5rem;
    transition: var(--transition-medium);
    color: var(--cream);
    /* ← FIX: overrides default blue link color */
}

.news-card:hover {
    background: var(--ink3);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: var(--glow-gold);
}

.news-card h3 {
    color: var(--cream);
    /* ← Explicit cream for headlines */
    font-family: var(--ff-ui);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .3px;
    margin: .7rem 0 .8rem;
}

.news-card p {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 1rem;
}

.nc-large {
    grid-column: span 1;
    grid-row: span 2;
}

.nc-large h3 {
    font-family: var(--ff-title);
    font-size: 2rem;
    letter-spacing: .3px;
    line-height: 1.1;
    margin: .8rem 0 1rem;
}

.news-cat {
    font-family: var(--ff-ui);
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    /* ← Stays gold (correct) */
    display: block;
}

.news-date {
    font-family: var(--ff-ui);
    font-size: .68rem;
    letter-spacing: 1px;
    color: var(--muted);
    display: block;
}


/* ── QUOTE BAND ── */

.quote-band {
    background: var(--gold);
    padding: 5rem 4rem;
    text-align: center;
}

.qb-inner {
    max-width: 800px;
    margin: 0 auto;
}

.qb-mark {
    display: block;
    font-family: var(--ff-body);
    font-size: 5rem;
    color: var(--ink);
    opacity: .25;
    line-height: .6;
    margin-bottom: 1rem;
    animation: qbMarkPulse 6s ease-in-out infinite;
}

@keyframes qbMarkPulse {
    0%,
    100% {
        opacity: .2;
        transform: scale(0.95);
    }
    50% {
        opacity: .35;
        transform: scale(1.05);
    }
}

.quote-band blockquote {
    font-family: var(--ff-body);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.quote-band cite {
    font-family: var(--ff-ui);
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink);
    opacity: .6;
}


/* ── CONTACT ── */

.contact {
    padding: 8rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--ff-title);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: .9;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-sub {
    text-align: center;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 3.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: var(--ff-ui);
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--ink2);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 1rem;
    outline: none;
    resize: vertical;
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25);
}

.form-group select option {
    background: var(--ink2);
}

.contact-form .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: .9rem;
    margin-top: .5rem;
}

.form-msg {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: var(--gold);
    font-size: .95rem;
}


/* floating contact */

.floating-contact-wrapper {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 9999;
    cursor: inherit;
    /* ← This fixes the cursor problem */
}

.floating-button {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, #F97316, #14B8A6);
    color: white;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.5);
}

.contact-menu {
    display: none;
    position: absolute;
    bottom: 96px;
    left: 0;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    padding: 24px;
    width: 288px;
    flex-direction: column;
    gap: 8px;
    cursor: inherit;
}

.contact-menu.show {
    display: flex;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    background-color: rgba(249, 115, 22, 0.1);
}

.menu-item i {
    font-size: 36px;
}

.whatsapp-item i {
    color: #25D366;
}

.email-item i {
    color: #2563EB;
}

.menu-text {
    flex: 1;
}

.menu-title {
    font-weight: 600;
    font-size: 16px;
    color: #0F172A;
    margin: 0;
}

.menu-subtitle {
    font-size: 14px;
    color: #334155;
    margin: 0;
}


/* ── FOOTER ── */

.footer {
    border-top: 1px solid var(--border-dim);
    padding: 4rem 4rem 2rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--ff-title);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--gold);
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: var(--ff-ui);
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s var(--easing);
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--easing);
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: .8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-ui);
    font-size: .65rem;
    letter-spacing: 1px;
    color: var(--muted);
    transition: var(--transition-medium);
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(360deg) scale(1.2);
    box-shadow: var(--glow-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-dim);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--ff-ui);
    font-size: .72rem;
    letter-spacing: 1px;
    color: var(--muted);
}


/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 320px 1fr;
        gap: 3rem;
    }
    .films-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .nav {
        padding: 1.2rem 2rem;
    }
    .nav.scrolled {
        padding: .9rem 2rem;
    }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11, 9, 4, .97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        list-style: none;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .nav-burger {
        display: flex;
    }
    .hero {
        padding: 8rem 2rem 5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-stat-col {
        justify-content: center;
    }
    .films,
    .about,
    .gallery,
    .news,
    .contact {
        padding: 5rem 2rem;
    }
    .films-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    .g1,
    .g6 {
        grid-column: span 2;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .nc-large {
        grid-row: span 1;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer {
        padding: 3rem 2rem 2rem;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero-scroll,
    .hero-year {
        display: none;
    }
    .quote-band {
        padding: 4rem 2rem;
    }
    .quote-band blockquote {
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .name-first,
    .name-last {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    .g1,
    .g6 {
        grid-column: span 1;
    }
}