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

:root {
    --color-primary:    #E8572A;
    --color-primary-dark: #c94520;
    --color-dark:       #111111;
    --color-gray-900:   #1a1a1a;
    --color-gray-700:   #374151;
    --color-gray-500:   #6b7280;
    --color-gray-200:   #e5e7eb;
    --color-gray-100:   #f3f4f6;
    --color-white:      #ffffff;

    --font-main:  'Inter', system-ui, -apple-system, sans-serif;
    --radius:     8px;
    --radius-lg:  14px;
    --shadow:     0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--color-dark); background: var(--color-white); line-height: 1.6; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.site-main  { min-height: 70vh; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: var(--radius); font-size: 14px;
    font-weight: 600; cursor: pointer; border: 2px solid transparent;
    transition: all .2s ease; white-space: nowrap;
}
.btn-primary  { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.btn-outline  { background: transparent; color: var(--color-dark); border-color: var(--color-gray-200); }
.btn-outline:hover { border-color: var(--color-dark); }
.btn-ghost    { background: transparent; color: var(--color-gray-500); border-color: transparent; }
.btn-ghost:hover  { color: var(--color-dark); }
.btn-lg       { padding: 13px 28px; font-size: 16px; }
.btn-fb-share {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
    background: #1877f2; color: #fff; text-decoration: none; cursor: pointer;
    border: none; transition: background .2s; white-space: nowrap;
}
.btn-fb-share:hover { background: #1558b0; color: #fff; }

/* ===== HEADER ===== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-gray-200);
    margin-top: 0;
}
.header-inner {
    display: flex; align-items: center; gap: 16px;
    height: 64px;
}
.logo { font-size: 22px; font-weight: 800; color: var(--color-primary); letter-spacing: -.5px; flex-shrink: 0; }
.main-nav { display: flex; gap: 16px; margin: 0 auto; align-items: center; }
.main-nav a { font-size: 14px; font-weight: 700; color: var(--color-gray-700); transition: color .2s; white-space: nowrap; font-family: 'BPG Nino Mtavruli', sans-serif; }
.main-nav a:hover { color: var(--color-primary); }
html[lang="en"] .main-nav a { font-size: 16px; }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown-wrap { position: relative; }

.nav-dropdown-btn {
    display: flex; align-items: center; gap: 5px;
    font-size: 14px; font-weight: 700; color: var(--color-gray-700);
    background: none; border: none; cursor: pointer; padding: 0; white-space: nowrap;
    font-family: 'BPG Nino Mtavruli', sans-serif; transition: color .2s;
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.open { color: var(--color-primary); }
.nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown-btn.open svg { transform: rotate(180deg); }

/* ── Two-panel mega dropdown ── */
.nav-dropdown-panel {
    display: none;
    position: absolute; top: calc(100% + 14px); left: -20px;
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.07);
    border: 1px solid var(--color-gray-200);
    width: 640px; z-index: 200; overflow: hidden;
    flex-direction: row;
}
.nav-dropdown-panel.open { display: flex; }

/* Left panel — parent list */
.ndp-left {
    width: 195px; flex-shrink: 0;
    background: var(--color-gray-100);
    border-right: 1px solid var(--color-gray-200);
    padding: 8px 0;
    display: flex; flex-direction: column;
}
.ndp-parent-item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; cursor: pointer;
    transition: background .12s, color .12s, border-left-color .12s;
    border-left: 3px solid transparent;
    font-size: 14px; font-weight: 500; color: var(--color-gray-700);
    user-select: none;
}
.ndp-parent-item:hover,
.ndp-parent-item.active {
    background: #fff;
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}
.ndp-pi-icon  { font-size: 19px; flex-shrink: 0; }
.ndp-pi-name  { flex: 1; }
.ndp-pi-arrow { width: 13px; height: 13px; flex-shrink: 0; opacity: .3; transition: opacity .12s; }
.ndp-parent-item:hover .ndp-pi-arrow,
.ndp-parent-item.active .ndp-pi-arrow { opacity: .8; }

.ndp-all-link {
    display: block; margin-top: auto;
    padding: 10px 14px;
    border-top: 1px solid var(--color-gray-200);
    font-size: 12px; font-weight: 700; color: var(--color-primary);
    text-align: center; transition: background .12s;
}
.ndp-all-link:hover { background: #fef2ee; text-decoration: underline; }

/* Right panel — subcategories */
.ndp-right {
    flex: 1; padding: 16px 18px; min-height: 220px;
}
.ndp-sub-panel {
    display: none; flex-direction: column;
    animation: ndpFadeIn .15s ease;
}
.ndp-sub-panel.active { display: flex; }
@keyframes ndpFadeIn { from { opacity: 0; transform: translateX(4px); } to { opacity: 1; transform: none; } }

.ndp-sub-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; color: var(--color-gray-500);
    margin-bottom: 12px;
}
.ndp-sub-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px;
}
.ndp-sub-item {
    display: flex; align-items: center; justify-content: space-between; gap: 6px;
    padding: 7px 12px;
    background: var(--color-gray-100); color: var(--color-gray-700);
    border-radius: 8px; font-size: 13px; font-weight: 500;
    transition: all .13s; border: 1.5px solid transparent;
    min-width: 0;
}
.ndp-sub-name {
    flex: 1 1 auto; min-width: 0;
    word-break: break-word; overflow-wrap: break-word; white-space: normal;
    line-height: 1.25;
}
.ndp-sub-item:hover {
    background: #fef2ee; color: var(--color-primary);
    border-color: var(--color-primary);
}
.ndp-count {
    font-size: 11px; font-weight: 600; color: var(--color-gray-400);
    white-space: nowrap; flex-shrink: 0;
}
.ndp-sub-item:hover .ndp-count { color: var(--color-primary); opacity: .7; }
.ndp-sub-item--empty { opacity: .45; cursor: default; pointer-events: none; }
.ndp-sub-item--empty:hover { background: var(--color-gray-100); color: var(--color-gray-700); border-color: transparent; }

/* Language Switcher */
.lang-switcher { display: flex; gap: 4px; margin-right: 8px; }
.lang-switcher a {
    padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 600;
    color: var(--color-gray-500); transition: all .2s;
}
.lang-switcher a.active, .lang-switcher a:hover { color: var(--color-primary); background: #fef2ee; }

/* ===== HERO ===== */
.hero { padding: 100px 0; text-align: center; background: var(--color-gray-100); }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero p  { font-size: 18px; color: var(--color-gray-500); margin-bottom: 36px; }
.hero .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-gray-900); color: var(--color-gray-200); margin-top: 80px; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { color: var(--color-white); font-size: 20px; margin-bottom: 8px; }
.footer-brand p { color: var(--color-gray-500); font-size: 14px; }
.footer-links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-gray-500); margin-bottom: 14px; }
.footer-links a { display: block; font-size: 14px; color: var(--color-gray-200); margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--color-gray-500); }

/* ===== FLASH MESSAGES ===== */
.flash { padding: 14px 20px; border-radius: var(--radius); margin: 16px 0; font-size: 14px; font-weight: 500; }
.flash-success { background: #d1fae5; color: #065f46; }
.flash-error   { background: #fee2e2; color: #991b1b; }
.flash-info    { background: #dbeafe; color: #1e40af; }

/* ===== ERROR PAGE ===== */
.error-page { text-align: center; padding: 120px 0; }
.error-page h1 { font-size: 96px; font-weight: 800; color: var(--color-primary); }
.error-page p  { font-size: 20px; color: var(--color-gray-500); margin: 12px 0 32px; }

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    min-height: calc(100vh - 64px);
    display: flex; align-items: center; justify-content: center;
    padding: 40px 16px; background: var(--color-gray-100);
}
.auth-card {
    background: var(--color-white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: 40px; width: 100%; max-width: 440px;
}
.auth-card--wide  { max-width: 620px; }
.auth-card--center { text-align: center; }

.auth-header { margin-bottom: 28px; }
.auth-header .logo { display: inline-block; margin-bottom: 20px; }
.auth-header h1 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.auth-header p  { font-size: 14px; color: var(--color-gray-500); }
.auth-header a  { color: var(--color-primary); font-weight: 600; }

/* Social login buttons */
.btn-social {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; width: 100%; padding: 11px 16px;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: opacity .18s, transform .1s;
}
.btn-social:hover { opacity: .88; transform: translateY(-1px); }
.btn-social:active { transform: translateY(0); }

.btn-facebook {
    background: #1877F2; color: #fff;
}

/* auth divider — "ან" separator */
.auth-divider {
    display: flex; align-items: center; gap: 12px;
    color: var(--color-gray-400); font-size: 13px; margin: 4px 0;
}
.auth-divider::before,
.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--color-gray-200); }

.auth-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 13px; font-weight: 600; color: var(--color-gray-700);
    display: flex; justify-content: space-between; align-items: center;
}
.form-label-link { font-weight: 500; color: var(--color-primary); font-size: 12px; }
.optional { font-weight: 400; color: var(--color-gray-500); }

.form-group input {
    padding: 10px 14px; border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius); font-size: 14px; font-family: var(--font-main);
    transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232,87,42,.12);
}

.input-password-wrap { position: relative; }
.input-password-wrap input { padding-right: 44px; }
.toggle-password {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; color: var(--color-gray-500);
    padding: 0; display: flex; align-items: center;
}
.toggle-password svg { width: 18px; height: 18px; }
.toggle-password:hover { color: var(--color-dark); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-block { width: 100%; }

.auth-terms {
    font-size: 12px; color: var(--color-gray-500);
    text-align: center; line-height: 1.6;
}
.auth-terms a { color: var(--color-primary); }

/* Account type switch */
.account-type-switch {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px;
}
.type-option {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 16px 12px; border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg); cursor: pointer; transition: all .2s;
}
.type-option input[type="radio"] { display: none; }
.type-option.active, .type-option:hover {
    border-color: var(--color-primary); background: #fef2ee;
}
.type-icon  { font-size: 28px; }
.type-label { font-size: 13px; font-weight: 600; text-align: center; }

/* Verify / Dev notice */
.verify-icon { font-size: 56px; margin-bottom: 16px; }
.dev-notice {
    background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius);
    padding: 12px 16px; font-size: 13px; margin-top: 16px; word-break: break-all;
}
.dev-notice a { color: var(--color-primary); font-weight: 600; }

/* ===== HOMEPAGE ===== */
.hero-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    padding: 80px 0 70px; color: #fff; overflow: hidden;
}
.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-switch {
    display: inline-flex; background: rgba(255,255,255,.08);
    border-radius: 30px; padding: 4px; margin-bottom: 28px;
}
.hs-btn {
    padding: 8px 22px; border-radius: 26px; font-size: 13px; font-weight: 700;
    background: none; border: none; color: rgba(255,255,255,.6);
    cursor: pointer; transition: all .2s;
}
.hs-btn.active { background: var(--color-primary); color: #fff; }
.hero-text h1 { font-size: 52px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.hero-text p  { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 28px; line-height: 1.7; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-text.hidden { display: none; }

.hero-content { }
.hero-stats {
    display: flex; gap: 32px; margin-top: 40px;
    padding-top: 28px; padding-bottom: 0;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat strong { display: block; font-size: 26px; font-weight: 900; color: var(--color-primary); }
.hero-stat span   { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

/* Outline button override inside dark hero */
.hero-section .btn-outline {
    color: #fff; border-color: rgba(255,255,255,.4); background: transparent;
}
.hero-section .btn-outline:hover {
    border-color: #fff; background: rgba(255,255,255,.08);
}

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-cards-preview { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }

/* Header user dropdown */
.hdr-user-wrap { position: relative; }
.hdr-user-btn { display:flex; align-items:center; gap:6px; background:none; border:none; cursor:pointer; padding:2px; color:var(--color-gray-600); }
.hdr-user-avatar { width:34px; height:34px; border-radius:50%; object-fit:cover; border:2px solid var(--color-gray-200); }
.hdr-user-avatar--ph { display:flex; align-items:center; justify-content:center; background:var(--color-primary); color:#fff; font-weight:700; font-size:14px; }
.hdr-user-dropdown { display:none; position:absolute; right:0; top:calc(100% + 10px); background:#fff; border:1px solid var(--color-gray-200); border-radius:12px; box-shadow:0 8px 32px rgba(0,0,0,.12); min-width:220px; padding:6px; z-index:1000; }
.hdr-user-wrap.open .hdr-user-dropdown { display:block; }
.hdr-user-dropdown a { display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:8px; font-size:13px; color:var(--color-gray-700); transition:background .15s; }
.hdr-user-dropdown a:hover { background:var(--color-gray-50); color:var(--color-primary); }
.hdr-user-dropdown a svg { width:16px; height:16px; flex-shrink:0; opacity:.6; }
.hdr-drop-divider { height:1px; background:var(--color-gray-100); margin:4px 0; }
.hdr-drop-logout { color:#ef4444 !important; }
.hdr-drop-logout:hover { background:#fef2f2 !important; color:#ef4444 !important; }

/* Hero media (image / video) */
.hero-media-wrap {
    width: 100%; overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
    max-height: 370px;
    transform: translateY(-67px);
}
.hero-media-wrap img {
    width: 100%; height: 370px; object-fit: cover; object-position: center; display: block;
}
.hero-media-wrap--video { border-radius: 16px; width: 658px; height: 370px; max-height: none; aspect-ratio: unset; }
.hero-media-wrap--video iframe { width: 100%; height: 100%; display: block; }
.hcp-card {
    display: flex; align-items: center; gap: 12px; padding: 14px 16px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg); backdrop-filter: blur(10px);
    transition: transform .2s;
}
.hcp-card:hover { transform: translateX(6px); background: rgba(255,255,255,.09); }
.hcp-avatar img, .hcp-avatar .avatar-placeholder {
    width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.hcp-card > div { flex: 1; }
.hcp-card strong { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hcp-card span   { font-size: 11px; color: rgba(255,255,255,.5); }
.hcp-badge { background: var(--color-primary); color: #fff; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }

/* Sections */
.home-section { padding: 70px 0; }
.home-section--gray { background: var(--color-gray-100); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.section-header.center { justify-content: center; }
.section-header h2 { font-size: 26px; font-weight: 800; }
.section-link { font-size: 13px; font-weight: 700; color: var(--color-primary); }
.section-link:hover { text-decoration: underline; }

/* Homepage castings — 4 col */
.home-section .castings-grid {
    grid-template-columns: repeat(4, 1fr);
}
.home-section .casting-card {
    padding: 16px; gap: 8px;
}
.home-section .cc-title { font-size: 13px; }
.home-section .cc-footer { padding-top: 8px; }

/* Categories chips */
.cats-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-chip {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; background: #fff; border: 1.5px solid var(--color-gray-200);
    border-radius: 30px; font-size: 14px; font-weight: 600;
    transition: all .2s; color: var(--color-dark);
}
.cat-chip:hover { border-color: var(--color-primary); color: var(--color-primary); background: #fef2ee; }
.cat-chip-icon { font-size: 18px; }
.cat-chip-count { background: var(--color-gray-100); color: var(--color-gray-500); font-size: 11px; padding: 2px 7px; border-radius: 10px; margin-left: 2px; }

/* ===== STATIC PAGES ===== */
.simple-page, .categories-page { padding: 60px 0 80px; }

.page-header { text-align: center; margin-bottom: 48px; }
.page-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.page-header p  { font-size: 16px; color: var(--color-gray-500); }

.simple-content { max-width: 720px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: var(--color-gray-700); }
.simple-content p  { margin-bottom: 16px; }
.simple-content a  { color: var(--color-primary); }
.simple-content h2 { font-size: 20px; font-weight: 700; color: var(--color-gray-900); margin: 36px 0 12px; }
.simple-content ul { padding-left: 20px; margin-bottom: 16px; }
.simple-content ul li { margin-bottom: 6px; }

/* Categories page */
.cat-groups-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cat-group-card  { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.cgc-header { display: flex; align-items: center; gap: 12px; padding: 20px 24px; background: var(--color-gray-100); border-bottom: 1px solid var(--color-gray-200); }
.cgc-icon   { font-size: 24px; }
.cgc-header h2 { font-size: 16px; font-weight: 700; }
.cgc-list   { padding: 8px 0; }
.cgc-item   { display: flex; justify-content: space-between; align-items: center; padding: 11px 24px; font-size: 14px; color: var(--color-gray-700); transition: all .15s; }
.cgc-item:hover { background: #fef2ee; color: var(--color-primary); }
.cgc-item svg { width: 14px; height: 14px; opacity: .5; }
.cgc-item--empty { opacity: .45; cursor: default; pointer-events: none; }
.cgc-item--empty:hover { background: transparent; color: var(--color-gray-700); }

/* Critical fallback for talent profile cards (talent.css loads async) */
.profile-card { background:#fff; border-radius:12px; overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow); }
.pc-avatar { position:relative; height:250px; width:210px; margin:0 auto; background:var(--color-gray-100); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pc-avatar img { width:100%; height:100%; object-fit:cover; }
.talent-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width: 1024px) { .talent-grid { grid-template-columns:repeat(2,1fr); } }

/* How it works */
.how-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.how-card  { background: #fff; border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; }
.how-step  { font-size: 40px; font-weight: 900; color: #fef2ee; -webkit-text-stroke: 2px var(--color-primary); margin-bottom: 16px; line-height: 1; }
.how-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.how-card p  { font-size: 14px; color: var(--color-gray-500); line-height: 1.6; }
.how-cta { display: flex; gap: 12px; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .how-grid   { grid-template-columns: 1fr; gap: 16px; }
    .cat-groups-grid { grid-template-columns: 1fr; }
}
/* ===== HAMBURGER & MOBILE NAV ===== */
.hamburger {
    flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 4px;
    display: none;
}
@media (min-width: 769px) {
    .hamburger { display: none !important; }
}
.hamburger span {
    display: block; height: 2px; border-radius: 2px;
    background: var(--color-dark); transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--color-gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 9999;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 20px 24px; }
.mobile-nav-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--color-gray-500); margin-bottom: 12px; }
.mobile-cats-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--color-gray-200); padding-top: 16px; }
.mobile-nav-links a { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--color-dark); border-bottom: 1px solid var(--color-gray-100); }
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { color: var(--color-primary); }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex !important; }
    .header-auth-btns { display: none !important; }
    .hero h1  { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 36px; }
    .hero-section { padding: 60px 0 70px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat strong { font-size: 20px; }
    .home-section { padding: 48px 0; }
    .section-header h2 { font-size: 20px; }
    /* dropdown panel full width on mobile */
    .nav-dropdown-panel { width: 100vw; left: -24px; }
    /* castings & talent grid — 1 col on mobile */
    .home-section .castings-grid { grid-template-columns: 1fr; }
    .talent-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hero-text h1 { font-size: 28px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===== NEWS ===== */
.news-card {
    display: flex; flex-direction: column;
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    overflow: hidden; text-decoration: none; color: inherit;
    transition: box-shadow .2s, transform .15s;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.news-card--featured { flex-direction: row; }
.news-card--featured .news-card-cover { flex: 0 0 55%; max-height: 320px; }
.news-card--featured .news-card-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }

.news-card-cover { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--color-gray-100); }
.news-card--featured .news-card-cover { aspect-ratio: unset; }
.news-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-cover-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 32px; color: var(--color-gray-300); }
.news-cat-badge { position: absolute; top: 10px; left: 10px; background: var(--color-primary); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }

.news-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-card-title { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--color-gray-900); }
.news-card--featured .news-card-title { font-size: 22px; }
.news-card-excerpt { font-size: 13px; color: var(--color-gray-600); line-height: 1.55; flex: 1; }
.news-card-meta { display: flex; gap: 10px; font-size: 12px; color: var(--color-gray-400); flex-wrap: wrap; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--color-gray-100); }

/* Homepage news grid */
.home-news-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.home-news-grid .news-card--featured { grid-column: 1 / -1; flex-direction: row; }
.home-news-grid .news-card--featured .news-card-cover { flex: 0 0 50%; max-height: 280px; }

/* News list page */
.news-cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.news-cat-tab { padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; background: var(--color-gray-100); color: var(--color-gray-600); text-decoration: none; transition: all .15s; }
.news-cat-tab.active, .news-cat-tab:hover { background: var(--color-primary); color: #fff; }
.news-search-form { display: flex; gap: 10px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.news-search-form input { flex: 1; min-width: 200px; padding: 9px 14px; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius); font-size: 14px; outline: none; }
.news-search-form input:focus { border-color: var(--color-primary); }

.news-layout { display: flex; flex-direction: column; gap: 24px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* News article view */
.news-cover-full { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; max-height: 460px; }
.news-cover-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-body { font-size: 17px; line-height: 1.8; color: var(--color-gray-800); font-style: normal; }
.news-body h2 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.news-body h3 { font-size: 18px; font-weight: 700; margin: 22px 0 10px; }
.news-body p { margin-bottom: 16px; }
.news-body blockquote { border-left: 4px solid var(--color-primary); padding: 12px 20px; margin: 20px 0; background: var(--color-gray-50); border-radius: 0 8px 8px 0; font-style: italic; color: var(--color-gray-700); }
.news-body ul, .news-body ol { padding-left: 24px; margin-bottom: 16px; }
.news-body li { margin-bottom: 6px; }
.news-body img { max-width: 100%; border-radius: var(--radius-lg); margin: 16px 0; }
.news-body iframe { max-width: 100%; }

@media (max-width: 768px) {
    .home-news-grid { grid-template-columns: 1fr; }
    .home-news-grid .news-card--featured { flex-direction: column; }
    .home-news-grid .news-card--featured .news-card-cover { flex: none; max-height: 200px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card--featured { flex-direction: column !important; }
}
