/*
Theme Name: Brian Camera Guy
Theme URI: https://briancameraguy.com
Author: Brian Camera Guy
Description: Custom Neo-Brutalist photography theme for Brian Camera Guy. Integrates automatically with BCG Photo Manager plugin.
Version: 1.0.0
*/

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

:root {
    --black:   #080808;
    --amber:   #C8621A;
    --amber2:  #E8831F;
    --amber-d: #7a3a0f;
    --steel:   #3d6e8f;
    --steel2:  #4d7ea0;
    --cream:   #EDE0CC;
    --sage:    #6a7c5e;
    --off:     #121212;
    --card:    #0e0e0e;
    --line:    #1e1e1e;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Barlow Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* ── CUSTOM CURSOR ───────────────────────────────────────────────────────── */
#bcg-cursor {
    position: fixed; width: 26px; height: 26px;
    border: 2px solid var(--amber); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s, background .15s;
    mix-blend-mode: difference;
}
#bcg-cursor.click { width: 12px; height: 12px; background: var(--amber); }
#bcg-dot {
    position: fixed; width: 4px; height: 4px;
    background: var(--amber); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%);
}

/* ── GRAIN OVERLAY ───────────────────────────────────────────────────────── */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none; z-index: 9998; opacity: .45;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap');

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; line-height: .95; }
p { line-height: 1.65; font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
#bcg-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 64px;
    background: rgba(8,8,8,.97);
    border-bottom: 1px solid rgba(200,98,26,.2);
}
.nav-brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
.nav-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--amber); }
.nav-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .12em; color: var(--cream); line-height: 1; }
.nav-name em { color: var(--amber); font-style: normal; }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a {
    font-family: 'Space Mono', monospace; font-size: .56rem;
    text-transform: uppercase; letter-spacing: .12em;
    color: rgba(237,224,204,.5); padding: .4rem .85rem;
    position: relative; transition: color .2s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: .85rem; right: .85rem;
    height: 1px; background: var(--amber);
    transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    font-family: 'Space Mono', monospace; font-size: .56rem;
    text-transform: uppercase; letter-spacing: .12em;
    border: 1px solid var(--amber); color: var(--amber) !important;
    padding: .4rem 1rem !important; margin-left: .5rem;
    transition: background .2s, color .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber) !important; color: var(--black) !important; }

/* mobile hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: none; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 4px 0; transition: all .25s; }

/* ── PAGE OFFSET ─────────────────────────────────────────────────────────── */
.bcg-page { padding-top: 64px; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.bcg-hero {
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: 55vh 35vh;
    gap: 2px; background: var(--black); min-height: 90vh;
}
.hero-cell { position: relative; overflow: hidden; background: var(--card); }
.hero-cell:hover .hero-glitch { opacity: 1; }
.hero-cell:hover .hero-img { transform: scale(1.03); filter: brightness(.65) saturate(1.3); }
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s; filter: brightness(.72) saturate(1.1); }
.hero-placeholder { width: 100%; height: 100%; }
.hero-glitch { position: absolute; inset: 0; opacity: 0; transition: opacity .2s; pointer-events: none; }
.hero-glitch::before { content: ''; position: absolute; inset: 0; background: rgba(200,98,26,.14); transform: translate(-3px,0); mix-blend-mode: screen; }
.hero-glitch::after  { content: ''; position: absolute; inset: 0; background: rgba(61,110,143,.14); transform: translate(3px,0);  mix-blend-mode: screen; }
.hero-label { position: absolute; bottom: 1.4rem; left: 1.4rem; font-family: 'Space Mono', monospace; font-size: .58rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(237,224,204,.7); opacity: 0; transition: opacity .3s; }
.hero-cell:hover .hero-label { opacity: 1; }
.hero-main { grid-column: 1; grid-row: 1 / 3; }
.hero-title {
    position: absolute; bottom: 2.5rem; left: 2rem; z-index: 10; pointer-events: none;
}
.hero-title-line { font-family: 'Bebas Neue', sans-serif; font-size: 5.5rem; line-height: .88; letter-spacing: .04em; color: var(--cream); display: block; animation: slideUp .8s cubic-bezier(.16,1,.3,1) both; }
.hero-title-line:nth-child(2) { animation-delay: .1s; color: var(--amber); }
.hero-title-line:nth-child(3) { animation-delay: .2s; }
.hero-sub { font-family: 'Space Mono', monospace; font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(237,224,204,.45); margin-top: 1rem; animation: slideUp .8s cubic-bezier(.16,1,.3,1) .35s both; }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── TICKER ──────────────────────────────────────────────────────────────── */
.bcg-ticker { background: var(--amber); padding: .55rem 0; overflow: hidden; white-space: nowrap; }
.bcg-ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: .92rem; letter-spacing: .2em; color: var(--black); padding: 0 2.5rem; }
.ticker-sep { color: rgba(8,8,8,.35); padding: 0 .3rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT STRIP ─────────────────────────────────────────────────────────── */
.bcg-about { display: grid; grid-template-columns: 300px 1fr; background: var(--off); position: relative; overflow: visible; }
.about-left { background: var(--amber); padding: 3rem 2.5rem 3rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; justify-content: center; position: relative; }
.about-logo-break { width: 115px; height: 115px; border-radius: 50%; object-fit: cover; border: 4px solid var(--black); position: absolute; right: -57px; top: 50%; transform: translateY(-50%); z-index: 10; box-shadow: 0 0 0 8px var(--amber); }
.about-eyebrow { font-family: 'Space Mono', monospace; font-size: .57rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(8,8,8,.55); }
.about-name { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: .9; color: var(--black); }
.about-right { padding: 3rem 3rem 3rem 5rem; display: flex; flex-direction: column; gap: 1.75rem; justify-content: center; }
.about-bio { font-size: 1.1rem; line-height: 1.65; color: rgba(237,224,204,.75); font-weight: 300; max-width: 520px; }
.about-bio strong { color: var(--amber); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.bcg-tag { font-family: 'Space Mono', monospace; font-size: .54rem; text-transform: uppercase; letter-spacing: .12em; border: 1px solid rgba(106,124,94,.35); color: var(--sage); padding: .22rem .6rem; }

/* ── STATS ───────────────────────────────────────────────────────────────── */
.bcg-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--card); border-top: 1px solid var(--line); }
.stat-cell { padding: 2rem 1.75rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: .3rem; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem; color: var(--amber); line-height: 1; letter-spacing: .04em; }
.stat-label { font-family: 'Space Mono', monospace; font-size: .54rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.3); }

/* ── FILM STRIP ──────────────────────────────────────────────────────────── */
.bcg-film-section { background: var(--black); padding: 4rem 0; }
.bcg-section-header { display: flex; align-items: baseline; justify-content: space-between; padding: 0 2rem 1.5rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.bcg-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--cream); }
.bcg-section-title span { color: var(--amber); }
.bcg-section-sub { font-family: 'Space Mono', monospace; font-size: .54rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.25); }
.film-strip-wrap { position: relative; padding: 1.4rem 0; overflow: hidden; margin-bottom: 1.5rem; }
.film-strip-wrap::before, .film-strip-wrap::after { content: ''; position: absolute; left: 0; right: 0; height: 1.3rem; background: repeating-linear-gradient(90deg, transparent 0, transparent 12px, rgba(122,58,15,.4) 12px, rgba(122,58,15,.4) 14px, transparent 14px, transparent 32px); }
.film-strip-wrap::before { top: 0; }
.film-strip-wrap::after  { bottom: 0; }
.film-strip { display: flex; gap: 3px; padding: 0 2rem; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.film-strip::-webkit-scrollbar { display: none; }
.film-card { flex: 0 0 270px; height: 195px; position: relative; overflow: hidden; background: var(--card); border: 1px solid rgba(255,255,255,.03); text-decoration: none; }
.film-card:hover .film-glitch { opacity: 1; }
.film-card:hover .film-img { transform: scale(1.07); filter: brightness(.6) saturate(1.4); }
.film-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s; filter: brightness(.78) saturate(1.1); }
.film-ph { width: 100%; height: 100%; }
.film-glitch { position: absolute; inset: 0; opacity: 0; transition: opacity .2s; background: linear-gradient(to bottom, rgba(200,98,26,.07) 0%, transparent 40%, rgba(61,110,143,.07) 100%); }
.film-label { position: absolute; bottom: 0; left: 0; right: 0; padding: .7rem 1rem; background: linear-gradient(to top, rgba(8,8,8,.9) 0%, transparent 100%); font-family: 'Space Mono', monospace; font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream); opacity: 0; transition: opacity .25s; }
.film-card:hover .film-label { opacity: 1; }

/* ── CATEGORIES GRID ─────────────────────────────────────────────────────── */
.bcg-cats-section { background: var(--off); padding: 4.5rem 2rem; }
.bcg-cat-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; grid-template-rows: 300px 210px; gap: 4px; margin-top: 2rem; }
.cat-item { position: relative; overflow: hidden; cursor: pointer; background: var(--card); text-decoration: none; display: block; }
.cat-item:hover .cat-img { transform: scale(1.05); filter: brightness(.55) saturate(1.4); }
.cat-item:hover .cat-glitch { opacity: 1; }
.cat-item:hover .cat-info { opacity: 1; transform: translateY(0); }
.cat-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s; filter: brightness(.75); }
.cat-ph { width: 100%; height: 100%; }
.cat-glitch { position: absolute; inset: 0; opacity: 0; transition: opacity .2s; pointer-events: none; }
.cat-glitch::before { content: ''; position: absolute; inset: 0; background: rgba(200,98,26,.12); transform: translate(-2px,1px); mix-blend-mode: screen; }
.cat-glitch::after  { content: ''; position: absolute; inset: 0; background: rgba(61,110,143,.12); transform: translate(2px,-1px); mix-blend-mode: screen; }
.cat-always { position: absolute; bottom: 1rem; left: 1.2rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: .08em; color: var(--cream); }
.cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.2rem 1rem; background: linear-gradient(to top, rgba(8,8,8,.93) 0%, transparent 100%); opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.cat-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: .06em; color: var(--cream); display: block; }
.cat-link  { font-family: 'Space Mono', monospace; font-size: .56rem; text-transform: uppercase; letter-spacing: .15em; color: var(--amber); display: block; margin-top: .2rem; }
.cat-large { grid-column: 1; grid-row: 1 / 3; }

/* overflow cats as smaller grid */
.bcg-cat-overflow { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 4px; margin-top: 4px; }
.cat-item-sm { height: 220px; }

/* ── HIRE SECTION ────────────────────────────────────────────────────────── */
.bcg-hire { background: var(--black); border-top: 2px solid var(--steel); display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.bcg-hire::before { content: 'COMMISSION'; position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: 10rem; letter-spacing: .02em; color: rgba(255,255,255,.018); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; }
.hire-left { padding: 4rem 3rem; display: flex; flex-direction: column; gap: 1.75rem; border-right: 1px solid var(--line); position: relative; z-index: 1; }
.hire-eyebrow { font-family: 'Space Mono', monospace; font-size: .57rem; text-transform: uppercase; letter-spacing: .2em; color: var(--steel); }
.hire-title { font-family: 'Bebas Neue', sans-serif; font-size: 3.8rem; line-height: .9; color: var(--cream); }
.hire-title em { color: var(--steel); font-style: normal; }
.hire-body { font-size: 1rem; line-height: 1.65; color: rgba(237,224,204,.6); font-weight: 300; max-width: 380px; }
.hire-right { padding: 4rem 3rem; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.service-row { display: flex; align-items: flex-start; gap: 1.4rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row:hover .svc-num { color: var(--steel); }
.svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: rgba(61,110,143,.4); line-height: 1; min-width: 2.2rem; transition: color .2s; }
.svc-name { font-family: 'Space Mono', monospace; font-size: .63rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream); display: block; margin-bottom: .25rem; }
.svc-desc { font-size: .9rem; color: rgba(237,224,204,.4); font-weight: 300; line-height: 1.5; }

/* ── CTA BAND ────────────────────────────────────────────────────────────── */
.bcg-cta { background: var(--amber); padding: 3.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%); margin: 1.5rem 0; }
.cta-heading { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--black); line-height: 1; }
.cta-sub { font-family: 'Space Mono', monospace; font-size: .58rem; color: rgba(8,8,8,.6); text-transform: uppercase; letter-spacing: .12em; margin-top: .4rem; }
.btn-dark { font-family: 'Space Mono', monospace; font-size: .6rem; text-transform: uppercase; letter-spacing: .15em; background: var(--black); color: var(--cream); border: none; padding: .95rem 2.1rem; cursor: none; font-weight: 700; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-dark:hover { background: var(--off); }
.btn-ghost { font-family: 'Space Mono', monospace; font-size: .6rem; text-transform: uppercase; letter-spacing: .15em; background: transparent; color: var(--black); border: 1.5px solid var(--black); padding: .95rem 2.1rem; cursor: none; font-weight: 400; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-ghost:hover { background: var(--black); color: var(--amber); }
.btn-amber { font-family: 'Space Mono', monospace; font-size: .6rem; text-transform: uppercase; letter-spacing: .15em; background: var(--amber); color: var(--black); border: none; padding: .95rem 2.1rem; cursor: none; font-weight: 700; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-amber:hover { background: var(--amber2); }
.btn-steel { font-family: 'Space Mono', monospace; font-size: .6rem; text-transform: uppercase; letter-spacing: .15em; background: var(--steel); color: var(--cream); border: none; padding: .95rem 2.1rem; cursor: none; font-weight: 700; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-steel:hover { background: var(--steel2); }
.btn-row { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
#bcg-footer { background: #040404; padding: 2.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(200,98,26,.15); }
.foot-brand { display: flex; align-items: center; gap: .7rem; }
.foot-logo { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; opacity: .65; border: 1px solid var(--amber-d); }
.foot-name { font-family: 'Bebas Neue', sans-serif; font-size: .95rem; letter-spacing: .1em; color: rgba(237,224,204,.35); }
.foot-name em { color: var(--amber); font-style: normal; }
.foot-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.foot-links a { font-family: 'Space Mono', monospace; font-size: .5rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(237,224,204,.28); transition: color .2s; }
.foot-links a:hover { color: var(--amber); }
.foot-copy { font-family: 'Space Mono', monospace; font-size: .48rem; color: rgba(237,224,204,.18); text-transform: uppercase; letter-spacing: .1em; }

/* ── GALLERY PAGE ────────────────────────────────────────────────────────── */
.bcg-gallery-header { background: var(--off); border-bottom: 2px solid var(--amber); padding: 3rem 2rem 2.5rem; }
.gallery-breadcrumb { font-family: 'Space Mono', monospace; font-size: .58rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.35); margin-bottom: .75rem; }
.gallery-breadcrumb a { color: rgba(237,224,204,.35); transition: color .2s; }
.gallery-breadcrumb a:hover { color: var(--amber); }
.gallery-breadcrumb span { color: var(--amber); }
.gallery-page-title { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; color: var(--cream); line-height: .9; }
.gallery-page-title span { color: var(--amber); }
.gallery-page-sub { font-family: 'Space Mono', monospace; font-size: .6rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.3); margin-top: .75rem; }

/* subcategory nav */
.bcg-subcat-nav { background: var(--card); border-bottom: 1px solid var(--line); padding: 0 2rem; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.bcg-subcat-nav::-webkit-scrollbar { display: none; }
.subcat-link { font-family: 'Space Mono', monospace; font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(237,224,204,.4); padding: .9rem 1.1rem; border-bottom: 2px solid transparent; transition: all .2s; white-space: nowrap; }
.subcat-link:hover, .subcat-link.active { color: var(--amber); border-bottom-color: var(--amber); }

/* gallery grid */
.bcg-gallery-body { background: var(--black); padding: 2.5rem 2rem; }
.bcg-masonry { columns: 3; column-gap: 4px; }
.masonry-item { break-inside: avoid; margin-bottom: 4px; position: relative; overflow: hidden; background: var(--card); cursor: pointer; }
.masonry-item:hover .masonry-glitch { opacity: 1; }
.masonry-item:hover .masonry-img { transform: scale(1.03); filter: brightness(.65) saturate(1.3); }
.masonry-img { width: 100%; display: block; transition: transform .45s ease, filter .3s; filter: brightness(.82) saturate(1.1); }
.masonry-glitch { position: absolute; inset: 0; opacity: 0; transition: opacity .2s; pointer-events: none; }
.masonry-glitch::before { content: ''; position: absolute; inset: 0; background: rgba(200,98,26,.1); transform: translate(-2px,0); mix-blend-mode: screen; }
.masonry-glitch::after  { content: ''; position: absolute; inset: 0; background: rgba(61,110,143,.1); transform: translate(2px,0); mix-blend-mode: screen; }
.masonry-overlay { position: absolute; inset: 0; background: rgba(8,8,8,.7); opacity: 0; transition: opacity .25s; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 1.1rem; gap: .3rem; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-title { font-family: 'Space Mono', monospace; font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream); }
.masonry-action { font-family: 'Space Mono', monospace; font-size: .58rem; color: var(--amber); letter-spacing: .1em; text-transform: uppercase; }

/* session grid */
.bcg-sessions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 4px; }
.session-card { position: relative; overflow: hidden; background: var(--card); aspect-ratio: 4/3; text-decoration: none; display: block; }
.session-card:hover .session-img { transform: scale(1.05); filter: brightness(.55); }
.session-card:hover .session-glitch { opacity: 1; }
.session-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .3s; filter: brightness(.75); }
.session-ph { width: 100%; height: 100%; }
.session-glitch { position: absolute; inset: 0; opacity: 0; transition: opacity .2s; }
.session-glitch::before { content: ''; position: absolute; inset: 0; background: rgba(200,98,26,.1); transform: translate(-2px,0); mix-blend-mode: screen; }
.session-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem 1rem .9rem; background: linear-gradient(to top, rgba(8,8,8,.9) 0%, transparent 100%); }
.session-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--cream); display: block; }
.session-count { font-family: 'Space Mono', monospace; font-size: .55rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(237,224,204,.45); margin-top: .2rem; display: block; }

/* lightbox */
.bcg-lightbox { position: fixed; inset: 0; background: rgba(8,8,8,.96); z-index: 9990; display: none; align-items: center; justify-content: center; }
.bcg-lightbox.open { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 90vh; object-fit: contain; display: block; cursor: zoom-in; transition: transform .25s ease; user-select: none; }
.lightbox-img.lb-zoomed { cursor: zoom-out; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--cream); font-size: 1.8rem; cursor: none; opacity: .6; transition: opacity .2s; font-family: 'Bebas Neue', sans-serif; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(200,98,26,.2); border: 1px solid var(--amber); color: var(--cream); font-size: 1.2rem; padding: 1rem .75rem; cursor: none; transition: background .2s; font-family: 'Bebas Neue', sans-serif; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--amber); color: var(--black); }
.lightbox-caption { font-family: 'Space Mono', monospace; font-size: .6rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.5); }
.lb-action-bar { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.5rem; background: linear-gradient(transparent, rgba(0,0,0,.9)); z-index: 10; }
#lb-buy-area { display: flex; align-items: center; }
#lb-buy-area { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; }
.lb-buy-trigger, .lb-free-trigger { display: inline-block !important; visibility: visible !important; opacity: 1 !important; position: static !important; border: none; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: .12em; padding: .8rem 2.5rem; border-radius: 6px; cursor: pointer; font-weight: 400; transition: background .2s; white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.lb-buy-trigger { background: #C8621A !important; color: #000 !important; }
.lb-buy-trigger:hover { background: #E8831F !important; }
.lb-free-trigger { background: #4CAF50 !important; color: #000 !important; }
.lb-free-trigger:hover { background: #45a049 !important; }

/* ── BLOG ────────────────────────────────────────────────────────────────── */
.bcg-blog-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 2rem; }
.blog-post-card { background: var(--card); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem; display: grid; grid-template-columns: 280px 1fr; }
.blog-thumb { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85); transition: filter .3s; }
.blog-thumb:hover { filter: brightness(1); }
.blog-body { padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.blog-date { font-family: 'Space Mono', monospace; font-size: .55rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.35); }
.blog-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--cream); line-height: 1; }
.blog-title a { transition: color .2s; }
.blog-title a:hover { color: var(--amber); }
.blog-excerpt { font-size: .9rem; color: rgba(237,224,204,.55); font-weight: 300; line-height: 1.6; }
.blog-read-more { font-family: 'Space Mono', monospace; font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--amber); margin-top: auto; transition: letter-spacing .2s; }
.blog-read-more:hover { letter-spacing: .2em; }

.single-post-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 2rem; }
.single-post-title { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--cream); margin-bottom: 1rem; }
.single-post-meta { font-family: 'Space Mono', monospace; font-size: .58rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.35); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.single-post-content { font-size: 1rem; line-height: 1.8; color: rgba(237,224,204,.8); font-weight: 300; }
.single-post-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--cream); margin: 2rem 0 .75rem; }
.single-post-content p { margin-bottom: 1.2rem; }
.single-post-content a { color: var(--amber); border-bottom: 1px solid rgba(200,98,26,.3); transition: border-color .2s; }
.single-post-content a:hover { border-bottom-color: var(--amber); }
.single-post-content img { border-radius: 4px; margin: 1.5rem 0; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.bcg-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem; gap: 1.5rem; }
.bcg-404-num { font-family: 'Bebas Neue', sans-serif; font-size: 12rem; color: var(--amber); line-height: 1; opacity: .2; }
.bcg-404-msg { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--cream); }
.bcg-404-sub { font-family: 'Space Mono', monospace; font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.35); }

/* ── UTILITY ─────────────────────────────────────────────────────────────── */
.hr { height: 1px; background: var(--line); margin: 0; }
.no-photos { font-family: 'Space Mono', monospace; font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(237,224,204,.25); text-align: center; padding: 3rem; grid-column: 1/-1; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(8,8,8,.98); padding: 1rem 0; border-bottom: 1px solid var(--line); z-index: 999; }
    .nav-links.open a { padding: .75rem 2rem; border-bottom: 1px solid var(--line); }
    .nav-toggle { display: block; }
    .bcg-hero { grid-template-columns: 1fr; grid-template-rows: 60vw 35vw 35vw; min-height: auto; }
    .hero-main { grid-column: 1; grid-row: 1; }
    .hero-title-line { font-size: 3.5rem; }
    .bcg-about { grid-template-columns: 1fr; }
    .about-logo-break { display: none; }
    .about-right { padding: 2rem; }
    .bcg-stats { grid-template-columns: repeat(2,1fr); }
    .bcg-cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .cat-large { grid-column: 1 / 3; grid-row: auto; }
    .bcg-hire { grid-template-columns: 1fr; }
    .hire-left, .hire-right { padding: 2.5rem 2rem; }
    .hire-left { border-right: none; border-bottom: 1px solid var(--line); }
    .bcg-cta { flex-direction: column; align-items: flex-start; clip-path: none; }
    #bcg-footer { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
    .bcg-masonry { columns: 2; }
    .blog-post-card { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .bcg-masonry { columns: 1; }
    .bcg-stats { grid-template-columns: repeat(2,1fr); }
    .hero-title-line { font-size: 2.8rem; }
}

/* Peanut Memorial nav link */
.nav-links a[href*="peanut"] {
    font-size: .72rem;
    color: #C8621A;
    letter-spacing: .15em;
}
.nav-links a[href*="peanut"]:hover {
    color: var(--cream);
}
.nav-links a[href*="peanut"]::after {
    background: #C8621A;
}

/* Nav spacing fix */
.nav-links a { padding: .4rem .6rem; }
.nav-cta { margin-left: .25rem !important; }

/* ── GALLERY DROPDOWN ────────────────────────────────────────────────────── */
.nav-peanut-link { color: #C8621A !important; }
.nav-peanut-link:hover { color: var(--cream) !important; }

.nav-has-dropdown { position: relative; }
.nav-caret { font-size: .45rem; vertical-align: middle; margin-left: .2rem; display: inline-block; transition: transform .2s; }
.nav-gallery-toggle { cursor: pointer; }
.nav-has-dropdown:hover .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(8,8,8,.97);
    border: 1px solid rgba(200,98,26,.25);
    border-top: 2px solid var(--amber);
    border-radius: 0 0 4px 4px;
    list-style: none;
    z-index: 1001;
    padding: .4rem 0;
}
.nav-has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
    display: block;
    padding: .5rem 1.25rem !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
    white-space: nowrap;
}
.nav-dropdown li:last-child a { border-bottom: none !important; }
.nav-dropdown li a::after { display: none !important; }

/* Mobile dropdown inside hamburger */
@media (max-width: 900px) {
    .nav-has-dropdown { width: 100%; }
    .nav-gallery-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; }
    .nav-dropdown {
        display: none;
        position: static;
        border: none;
        border-top: 1px solid rgba(200,98,26,.25);
        border-radius: 0;
        background: rgba(255,255,255,.03);
        padding: 0;
    }
    .nav-has-dropdown.open .nav-dropdown { display: block; }
    .nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }
    .nav-dropdown li a { padding-left: 3rem !important; }
}

/* ── PEANUT BRAND IN NAV ─────────────────────────────────────────────────── */
.nav-left { display: flex; align-items: center; gap: 1.5rem; }
.nav-peanut-brand {
    display: flex; align-items: center; gap: .6rem;
    text-decoration: none;
    border-left: 1px solid rgba(200,98,26,.3);
    padding-left: 1.5rem;
}
.nav-peanut-logo {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    border: 1.5px solid #C8621A;
}
.nav-peanut-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: .1em;
    color: #C8621A;
    line-height: 1;
    white-space: nowrap;
}
.nav-peanut-brand:hover .nav-peanut-name { color: var(--cream); }
.nav-peanut-brand:hover .nav-peanut-logo { border-color: var(--cream); }
@media (max-width: 900px) {
    .nav-peanut-brand { display: none; }
}

/* Show Peanut in mobile menu */
@media (max-width: 900px) {
    .nav-peanut-brand {
        display: flex;
        border-left: none;
        border-bottom: 1px solid var(--line);
        padding: .75rem 2rem;
        width: 100%;
    }
    .nav-links.open .nav-peanut-mobile {
        display: flex;
    }
}

/* Peanut mobile link - hidden on desktop, visible in mobile menu only */
.nav-peanut-mobile-link { color: #C8621A !important; }
.nav-peanut-mobile-link:hover { color: var(--cream) !important; }
li:has(.nav-peanut-mobile-link) { display: none; }
@media (max-width: 900px) {
    li:has(.nav-peanut-mobile-link) { display: block; }
}
