/* ============================================
   WeDo Films - Cinematic Dark Theme
   Curvy, movie-style design
   ============================================ */

:root {
    --wedo-bg: #0b0b12;
    --wedo-bg-card: #111119;
    --wedo-bg-surface: #17171f;
    --wedo-bg-elevated: #1e1e28;
    --wedo-gold: #d4a843;
    --wedo-gold-light: #edc96a;
    --wedo-gold-dim: rgba(212, 168, 67, 0.15);
    --wedo-text: #dddde4;
    --wedo-text-muted: #888899;
    --wedo-border: rgba(255,255,255,0.06);
    --wedo-radius: 16px;
    --wedo-radius-lg: 24px;
    --wedo-radius-sm: 10px;
    --wedo-font-heading: 'Playfair Display', Georgia, serif;
    --wedo-font-body: 'Poppins', -apple-system, sans-serif;
    --wedo-shadow: 0 8px 32px rgba(0,0,0,0.4);
    --wedo-shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --wedo-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   Global Resets & Utilities
   ============================================ */

.wedo-label {
    display: inline-block;
    font-family: var(--wedo-font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--wedo-gold);
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}

.wedo-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--wedo-gold);
    border-radius: 2px;
}

.wedo-heading {
    font-family: var(--wedo-font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.wedo-text {
    font-family: var(--wedo-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--wedo-text-muted);
    margin: 0 0 18px 0;
}

.wedo-text--highlight {
    color: var(--wedo-gold-light);
    font-style: italic;
    border-left: 3px solid var(--wedo-gold);
    padding-left: 16px;
    margin: 24px 0;
}

/* Buttons */
.wedo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--wedo-font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--wedo-transition);
    white-space: nowrap;
}

.wedo-btn--gold {
    padding: 16px 34px;
    background: linear-gradient(135deg, var(--wedo-gold), #b8912e);
    color: #0b0b12;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}

.wedo-btn--gold:hover {
    background: linear-gradient(135deg, var(--wedo-gold-light), var(--wedo-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
    color: #0b0b12;
}

.wedo-btn--outline {
    padding: 16px 34px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50px;
}

.wedo-btn--outline:hover {
    border-color: var(--wedo-gold);
    color: var(--wedo-gold);
    background: rgba(212, 168, 67, 0.05);
}

.wedo-btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HEADER
   ============================================ */

.wedo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(11, 11, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wedo-border);
    font-family: var(--wedo-font-body);
}

.wedo-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.wedo-header__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.wedo-header__logo img {
    height: 40px;
    width: auto;
}

.wedo-header__logo-text {
    font-family: var(--wedo-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.wedo-header__logo-text::after {
    content: '.';
    color: var(--wedo-gold);
}

.wedo-header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wedo-header__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--wedo-text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--wedo-transition);
}

.wedo-header__link:hover,
.wedo-header__link.is-active {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.wedo-header__link.is-active {
    color: var(--wedo-gold);
}

/* Burger */
.wedo-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.wedo-header__burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--wedo-transition);
}

/* ============================================
   HERO SECTION - Centered brand focus
   ============================================ */

.wedo-hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--wedo-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: var(--wedo-font-body);
}

.wedo-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(11, 11, 18, 0.6) 0%,
        rgba(11, 11, 18, 0.85) 50%,
        rgba(11, 11, 18, 0.97) 100%
    );
}

.wedo-hero__deco {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.5;
    z-index: 1;
    animation: wedo-spin 60s linear infinite;
}

@keyframes wedo-spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.wedo-hero__reel {
    width: 100%;
    height: 100%;
}

.wedo-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px 80px;
    width: 100%;
}

.wedo-hero__center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.wedo-hero__tagline {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--wedo-gold);
    margin-bottom: 24px;
    padding: 8px 28px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50px;
}

.wedo-hero__title {
    font-family: var(--wedo-font-heading);
    font-size: clamp(44px, 7vw, 78px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 28px 0;
    letter-spacing: -1px;
}

.wedo-hero__title-line {
    display: block;
}

.wedo-hero__title-line--italic {
    font-style: italic;
    color: var(--wedo-gold-light);
}

.wedo-hero__subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wedo-text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
}

.wedo-hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stats */
.wedo-hero__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 0;
    border-top: 1px solid var(--wedo-border);
}

.wedo-hero__stat {
    text-align: center;
    min-width: 120px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--wedo-radius);
    border: 1px solid var(--wedo-border);
}

.wedo-hero__stat-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.wedo-counter {
    font-family: var(--wedo-font-heading);
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.wedo-hero__stat-plus {
    font-size: 24px;
    font-weight: 300;
    color: var(--wedo-gold);
}

.wedo-hero__stat-label {
    display: block;
    font-size: 12px;
    color: var(--wedo-text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PAGE HEADER / BREADCRUMB
   ============================================ */

.wedo-page-header {
    position: relative;
    min-height: 320px;
    background-color: var(--wedo-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: var(--wedo-font-body);
}

.wedo-page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,18,0.85) 0%, rgba(11,11,18,0.95) 100%);
}

.wedo-page-header__content {
    position: relative;
    z-index: 2;
    padding: 100px 30px 60px;
}

.wedo-page-header__title {
    font-family: var(--wedo-font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
}

.wedo-page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.wedo-page-header__breadcrumb a {
    color: var(--wedo-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.wedo-page-header__breadcrumb a:hover {
    color: var(--wedo-gold);
}

.wedo-page-header__breadcrumb .is-current {
    color: var(--wedo-gold);
}

.wedo-page-header__sep {
    color: var(--wedo-text-muted);
    opacity: 0.4;
}

/* ============================================
   HOME INTRO
   ============================================ */

.wedo-home-intro {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 100px 0;
}

.wedo-home-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-home-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wedo-home-intro__text .wedo-heading {
    font-size: clamp(28px, 4vw, 40px);
}

.wedo-home-intro__text .wedo-text {
    margin-bottom: 32px;
}

.wedo-home-intro__image-wrap {
    position: relative;
}

.wedo-home-intro__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--wedo-radius-lg);
    display: block;
}

.wedo-home-intro__image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--wedo-radius-lg);
    z-index: -1;
}

/* ============================================
   SLATE INTRO
   ============================================ */

.wedo-slate-intro {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 80px 0 20px;
    text-align: center;
}

.wedo-slate-intro__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-slate-intro__container .wedo-heading {
    font-size: clamp(28px, 4vw, 40px);
}

.wedo-slate-intro__container .wedo-text {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.wedo-slate-intro__container .wedo-label {
    padding-left: 0;
}

.wedo-slate-intro__container .wedo-label::before {
    display: none;
}

.wedo-slate-intro__divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--wedo-gold), transparent);
    border-radius: 3px;
    margin: 10px auto 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.wedo-about {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 80px 0;
}

.wedo-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wedo-about__image-wrap {
    position: relative;
    border-radius: var(--wedo-radius-lg);
    overflow: hidden;
}

.wedo-about__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--wedo-radius-lg);
    display: block;
}

.wedo-about__image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--wedo-gold);
    border-radius: var(--wedo-radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.wedo-about__stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.wedo-about__stat {
    text-align: center;
    background: var(--wedo-bg-surface);
    padding: 20px 10px;
    border-radius: var(--wedo-radius);
    border: 1px solid var(--wedo-border);
}

.wedo-about__stat .wedo-counter {
    font-size: 32px;
}

.wedo-about__stat-plus {
    font-size: 20px;
    color: var(--wedo-gold);
}

.wedo-about__stat-label {
    display: block;
    font-size: 11px;
    color: var(--wedo-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================
   OBJECTIVES
   ============================================ */

.wedo-objectives {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 0 0 80px;
}

.wedo-objectives__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-objectives__intro {
    font-size: 16px;
    color: var(--wedo-text);
    font-weight: 500;
    margin-bottom: 32px;
    font-style: italic;
    font-family: var(--wedo-font-heading);
}

.wedo-objectives__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.wedo-objectives__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--wedo-bg-surface);
    border-radius: var(--wedo-radius);
    border: 1px solid var(--wedo-border);
    transition: var(--wedo-transition);
}

.wedo-objectives__item:hover {
    border-color: rgba(212, 168, 67, 0.2);
    transform: translateX(4px);
}

.wedo-objectives__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wedo-gold-dim);
    border-radius: 50%;
    color: var(--wedo-gold);
}

.wedo-objectives__item p {
    margin: 0;
    font-size: 15px;
    color: var(--wedo-text);
    line-height: 1.6;
    padding-top: 6px;
}

.wedo-objectives__closing {
    font-size: 15px;
    line-height: 1.8;
    color: var(--wedo-text-muted);
    padding: 24px;
    background: var(--wedo-bg-card);
    border-radius: var(--wedo-radius);
    border-left: 3px solid var(--wedo-gold);
}

/* ============================================
   MOVIE TILES (Home page)
   ============================================ */

/* (Old movie grid removed in v3.0 - replaced by featured projects) */

/* ============================================
   FEATURED PROJECTS (Home - cinematic cards)
   ============================================ */

.wedo-featured {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 0 0 80px;
}

.wedo-featured__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-featured__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.wedo-featured__card {
    position: relative;
    min-height: 480px;
    background-color: var(--wedo-bg-surface);
    background-size: cover;
    background-position: center;
    border-radius: var(--wedo-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: var(--wedo-transition);
}

.wedo-featured__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wedo-shadow-lg);
}

.wedo-featured__card-overlay {
    position: relative;
    width: 100%;
    padding: 40px 32px;
    background: linear-gradient(0deg, rgba(11,11,18,0.95) 0%, rgba(11,11,18,0.7) 60%, transparent 100%);
}

.wedo-featured__card-sub {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--wedo-gold);
    margin-bottom: 10px;
}

.wedo-featured__card-title {
    font-family: var(--wedo-font-heading);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.wedo-featured__card-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--wedo-text-muted);
    margin: 0 0 18px 0;
    max-width: 440px;
}

.wedo-featured__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wedo-gold);
    transition: var(--wedo-transition);
}

.wedo-featured__card:hover .wedo-featured__card-cta {
    gap: 14px;
}

/* Additional Dev Slate (shared between home and slate pages) */
.wedo-featured__dev {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--wedo-bg-surface);
    border-radius: var(--wedo-radius-lg);
    border: 1px solid var(--wedo-border);
}

.wedo-featured__dev-heading {
    font-family: var(--wedo-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--wedo-text-muted);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.wedo-featured__dev-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wedo-featured__dev-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--wedo-bg-card);
    border-radius: var(--wedo-radius-sm);
    border: 1px solid var(--wedo-border);
}

.wedo-featured__dev-title {
    font-family: var(--wedo-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.wedo-featured__dev-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wedo-gold);
    padding: 4px 14px;
    background: var(--wedo-gold-dim);
    border-radius: 50px;
}

/* ============================================
   SLATE PAGE - Full project detail layout
   ============================================ */

.wedo-slate-page {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 0 0 80px;
}

/* Slate Hero */
.wedo-slate-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

.wedo-slate-hero__headline {
    font-family: var(--wedo-font-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.wedo-slate-hero__subline {
    font-size: 16px;
    color: var(--wedo-text-muted);
    font-style: italic;
    margin: 0;
}

/* Project Block */
.wedo-project {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-project__hero {
    position: relative;
    height: 420px;
    background-color: var(--wedo-bg-surface);
    background-size: cover;
    background-position: center;
    border-radius: var(--wedo-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.wedo-project__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11,11,18,0.95) 0%, rgba(11,11,18,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.wedo-project__label {
    font-size: 14px;
    color: var(--wedo-gold-light);
    font-style: italic;
    margin-bottom: 8px;
    font-family: var(--wedo-font-heading);
}

.wedo-project__title {
    font-family: var(--wedo-font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.wedo-project__content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    margin-bottom: 20px;
}

.wedo-project__block {
    margin-bottom: 28px;
}

.wedo-project__block h4 {
    font-family: var(--wedo-font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wedo-gold);
    margin: 0 0 12px 0;
}

.wedo-project__block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--wedo-text-muted);
    margin: 0;
}

.wedo-project__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wedo-project__tags li {
    padding: 6px 16px;
    background: var(--wedo-bg-surface);
    border: 1px solid var(--wedo-border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--wedo-text);
}

.wedo-project__status {
    display: inline-block;
    padding: 8px 20px;
    background: var(--wedo-gold-dim);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wedo-gold);
    letter-spacing: 1px;
}

.wedo-project__divider {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wedo-border), transparent);
}

/* Strategic Positioning */
.wedo-positioning {
    max-width: 900px;
    margin: 60px auto 60px;
    padding: 48px;
    background: var(--wedo-bg-surface);
    border-radius: var(--wedo-radius-lg);
    border: 1px solid var(--wedo-border);
}

.wedo-positioning__heading {
    font-family: var(--wedo-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 28px 0;
    text-align: center;
}

.wedo-positioning__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wedo-positioning__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--wedo-bg-card);
    border-radius: var(--wedo-radius-sm);
    border: 1px solid var(--wedo-border);
}

.wedo-positioning__item svg {
    flex-shrink: 0;
    color: var(--wedo-gold);
    margin-top: 2px;
}

.wedo-positioning__item span {
    font-size: 14px;
    color: var(--wedo-text);
    line-height: 1.5;
}

/* ============================================
   POPUP / MODAL
   ============================================ */

.wedo-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    font-family: var(--wedo-font-body);
}

.wedo-popup.is-active {
    opacity: 1;
    visibility: visible;
}

.wedo-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wedo-popup__card {
    position: relative;
    width: 92%;
    max-width: 680px;
    max-height: 88vh;
    background: var(--wedo-bg-card);
    border: 1px solid var(--wedo-border);
    border-radius: var(--wedo-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(40px) scale(0.94);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--wedo-shadow-lg);
}

.wedo-popup.is-active .wedo-popup__card {
    transform: translateY(0) scale(1);
}

.wedo-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(11, 11, 18, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--wedo-transition);
    line-height: 1;
}

.wedo-popup__close:hover {
    background: var(--wedo-gold);
    color: #0b0b12;
    border-color: var(--wedo-gold);
}

.wedo-popup__poster {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-color: var(--wedo-bg-surface);
    flex-shrink: 0;
    position: relative;
}

.wedo-popup__poster::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--wedo-bg-card));
}

/* (Popup icon header removed in v3.0)

.wedo-popup__body {
    padding: 28px 32px 36px;
    overflow-y: auto;
}

.wedo-popup__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.wedo-popup__genre {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wedo-gold);
    padding: 5px 14px;
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 50px;
}

.wedo-popup__status {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wedo-text-muted);
    padding: 5px 14px;
    background: var(--wedo-bg-surface);
    border-radius: 50px;
}

.wedo-popup__title {
    font-family: var(--wedo-font-heading);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.wedo-popup__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--wedo-text-muted);
    margin: 0 0 20px 0;
}

.wedo-popup__note {
    display: inline-block;
    padding: 10px 22px;
    background: var(--wedo-bg-surface);
    border: 1px solid var(--wedo-border);
    color: var(--wedo-gold-light);
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
    border-radius: 50px;
}

/* ============================================
   STOP PRESS
   ============================================ */

.wedo-stoppress {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 60px 0 80px;
}

.wedo-stoppress__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-stoppress__intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--wedo-text);
    margin-bottom: 40px;
}

.wedo-stoppress__intro p {
    margin: 0 0 16px 0;
    color: var(--wedo-text-muted);
}

.wedo-stoppress__block {
    margin-bottom: 36px;
    padding: 28px;
    background: var(--wedo-bg-surface);
    border-radius: var(--wedo-radius);
    border: 1px solid var(--wedo-border);
}

.wedo-stoppress__subheading {
    font-family: var(--wedo-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.wedo-stoppress__content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--wedo-text-muted);
}

.wedo-stoppress__content p {
    margin: 0 0 14px 0;
}

.wedo-stoppress__content ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.wedo-stoppress__content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--wedo-text);
}

.wedo-stoppress__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--wedo-gold);
    border-radius: 50%;
}

.wedo-stoppress__cta {
    margin-top: 40px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--wedo-bg-surface), var(--wedo-bg-card));
    border-radius: var(--wedo-radius-lg);
    border: 1px solid var(--wedo-border);
}

.wedo-stoppress__cta-label {
    display: block;
    font-family: var(--wedo-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--wedo-gold);
    margin-bottom: 20px;
}

/* ============================================
   TERMINOLOGY / ACCORDION
   ============================================ */

.wedo-terminology {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 60px 0 80px;
}

.wedo-terminology__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 30px;
}

.wedo-terminology__group {
    margin-bottom: 40px;
}

.wedo-terminology__group-title {
    font-family: var(--wedo-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wedo-gold-dim);
}

.wedo-accordion__item {
    border: 1px solid var(--wedo-border);
    border-radius: var(--wedo-radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--wedo-bg-card);
    transition: var(--wedo-transition);
}

.wedo-accordion__item.is-open {
    border-color: rgba(212, 168, 67, 0.15);
}

.wedo-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--wedo-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--wedo-text);
    text-align: left;
    transition: color 0.3s;
}

.wedo-accordion__trigger:hover {
    color: var(--wedo-gold);
}

.wedo-accordion__icon {
    flex-shrink: 0;
    color: var(--wedo-gold);
    transition: transform 0.3s;
}

.wedo-accordion__item.is-open .wedo-accordion__icon {
    transform: rotate(180deg);
}

.wedo-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.wedo-accordion__panel p {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--wedo-text-muted);
    margin: 0;
}

/* ============================================
   SUBMISSION / CONTACT FORMS
   ============================================ */

.wedo-submission,
.wedo-contact {
    background: var(--wedo-bg);
    font-family: var(--wedo-font-body);
    padding: 60px 0 80px;
}

.wedo-submission__container,
.wedo-contact__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wedo-submission__list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.wedo-submission__list li {
    position: relative;
    padding: 12px 0 12px 28px;
    font-size: 14px;
    color: var(--wedo-text);
    border-bottom: 1px solid var(--wedo-border);
}

.wedo-submission__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--wedo-gold);
    border-radius: 50%;
}

.wedo-submission__disclaimer {
    padding: 20px;
    background: var(--wedo-bg-surface);
    border-radius: var(--wedo-radius-sm);
    border-left: 3px solid var(--wedo-gold);
    margin: 20px 0;
}

.wedo-submission__disclaimer p {
    margin: 0;
    font-size: 13px;
    color: var(--wedo-text-muted);
    line-height: 1.7;
    font-style: italic;
}

.wedo-submission__email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--wedo-gold-dim);
    border-radius: var(--wedo-radius-sm);
    color: var(--wedo-gold);
}

.wedo-submission__email a {
    color: var(--wedo-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* Contact Info */
.wedo-contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--wedo-bg-surface);
    border-radius: var(--wedo-radius);
    border: 1px solid var(--wedo-border);
}

.wedo-contact__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wedo-gold-dim);
    border-radius: 50%;
    color: var(--wedo-gold);
}

.wedo-contact__detail-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wedo-text-muted);
    margin-bottom: 4px;
}

.wedo-contact__detail-value {
    color: var(--wedo-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.wedo-contact__locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.wedo-contact__location {
    padding: 4px 14px;
    background: var(--wedo-bg-elevated);
    border-radius: 50px;
    font-size: 13px;
    color: var(--wedo-text);
    border: 1px solid var(--wedo-border);
}

/* Form Styles */
.wedo-form {
    background: var(--wedo-bg-surface);
    padding: 36px;
    border-radius: var(--wedo-radius-lg);
    border: 1px solid var(--wedo-border);
}

.wedo-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wedo-form__group {
    margin-bottom: 20px;
}

.wedo-form__group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--wedo-text-muted);
    margin-bottom: 8px;
}

.wedo-form__group input,
.wedo-form__group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--wedo-bg-card);
    border: 1px solid var(--wedo-border);
    border-radius: var(--wedo-radius-sm);
    color: var(--wedo-text);
    font-family: var(--wedo-font-body);
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
    box-sizing: border-box;
}

.wedo-form__group input:focus,
.wedo-form__group textarea:focus {
    border-color: var(--wedo-gold);
}

.wedo-form__group input::placeholder,
.wedo-form__group textarea::placeholder {
    color: rgba(136, 136, 153, 0.5);
}

.wedo-form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.wedo-form__group input[type="file"] {
    padding: 12px 18px;
    background: var(--wedo-bg-card);
    border: 1px dashed var(--wedo-border);
    border-radius: var(--wedo-radius-sm);
    color: var(--wedo-text-muted);
    font-size: 13px;
    cursor: pointer;
}

.wedo-form__group input[type="file"]:hover {
    border-color: var(--wedo-gold);
}

.wedo-form__group input[type="file"]::file-selector-button {
    background: #e84393;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    font-family: var(--wedo-font-body);
}

.wedo-form__req {
    color: #e84393;
}

.wedo-form__message {
    margin-bottom: 16px;
    padding: 0;
    border-radius: var(--wedo-radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.wedo-form__message:empty {
    display: none;
}

.wedo-form__message.is-success {
    display: block;
    padding: 14px 20px;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.25);
    color: #81c784;
}

.wedo-form__message.is-error {
    display: block;
    padding: 14px 20px;
    background: rgba(244, 67, 54, 0.12);
    border: 1px solid rgba(244, 67, 54, 0.25);
    color: #e57373;
}

@media (max-width: 480px) {
    .wedo-form__row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.wedo-footer {
    background: var(--wedo-bg-card);
    font-family: var(--wedo-font-body);
    border-top: 1px solid var(--wedo-border);
}

.wedo-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 30px;
}

.wedo-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.wedo-footer__logo {
    font-family: var(--wedo-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 16px;
}

.wedo-footer__logo::after {
    content: '.';
    color: var(--wedo-gold);
}

.wedo-footer__logo-img {
    height: 44px;
    margin-bottom: 16px;
}

.wedo-footer__tagline {
    font-size: 14px;
    color: var(--wedo-text-muted);
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 340px;
}

.wedo-footer__email {
    font-size: 14px;
    color: var(--wedo-gold);
    text-decoration: none;
    font-weight: 500;
}

.wedo-footer__email:hover {
    color: var(--wedo-gold-light);
}

.wedo-footer__heading {
    font-family: var(--wedo-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.wedo-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wedo-footer__links li {
    margin-bottom: 10px;
}

.wedo-footer__links a,
.wedo-footer__links span {
    font-size: 14px;
    color: var(--wedo-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.wedo-footer__links a:hover {
    color: var(--wedo-gold);
}

.wedo-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--wedo-border);
    text-align: center;
}

.wedo-footer__bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--wedo-text-muted);
}

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

@media (max-width: 1024px) {
    .wedo-home-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wedo-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wedo-submission__container,
    .wedo-contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wedo-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .wedo-header__nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 11, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .wedo-header__nav.is-open {
        transform: translateX(0);
    }

    .wedo-header__burger {
        display: flex;
    }

    .wedo-header__link {
        font-size: 16px;
        padding: 12px 24px;
    }

    .wedo-hero__stats {
        gap: 20px;
    }

    .wedo-counter {
        font-size: 36px;
    }

    .wedo-hero__deco {
        display: none;
    }

    .wedo-home-intro__image {
        height: 350px;
    }

    .wedo-about__stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .wedo-featured__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wedo-project__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wedo-project__hero {
        height: 280px;
    }

    .wedo-positioning__grid {
        grid-template-columns: 1fr;
    }

    .wedo-popup__card {
        width: 95%;
        max-height: 90vh;
    }

    .wedo-popup__poster {
        height: 200px;
    }

    .wedo-popup__title {
        font-size: 24px;
    }

    .wedo-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .wedo-hero__content {
        padding: 100px 20px 60px;
    }

    .wedo-featured__card {
        min-height: 360px;
    }

    .wedo-project__hero {
        height: 220px;
    }

    .wedo-movie-card__info {
        padding: 12px 14px 16px;
    }

    .wedo-movie-card__title {
        font-size: 14px;
    }

    .wedo-form {
        padding: 24px 20px;
    }

    .wedo-popup__body {
        padding: 20px 24px 28px;
    }
}
