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

  :root {
    --black:   #0A0E14;
    --deep:    #0F1A24;
    --teal:    #1A4A5C;
    --teal2:   #246478;
    --ice:     #E8F0F2;
    --ochre:   #C4872A;
    --ochre2:  #D9A045;
    --white:   #FFFFFF;
    --muted:   rgba(232,240,242,0.55);
    --serif:   'Playfair Display', Georgia, serif;
    --sans:    'Inter', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--ice);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: linear-gradient(to bottom, rgba(10,14,20,0.95) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    transition: background 0.3s;
  }
  nav.scrolled { background: rgba(10,14,20,0.97); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-mark {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--ochre);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--black);
  }
  .nav-logo-text { font-family: var(--serif); font-size: 15px; color: var(--white); line-height: 1.2; }
  .nav-logo-sub { font-family: var(--sans); font-size: 10px; letter-spacing: 0.15em; color: var(--ochre); text-transform: uppercase; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 13px; letter-spacing: 0.06em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--ochre); color: var(--black); border: none;
    padding: 9px 22px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; cursor: pointer; text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--ochre2); }

  /* ── TICKER ── */
  .ticker-wrap {
    position: fixed; top: 0; left: 0; right: 0; z-index: 99;
    height: 28px;
    background: var(--ochre);
    overflow: hidden;
    display: flex; align-items: center;
  }
  .ticker-track {
    display: flex; gap: 60px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
  }
  .ticker-track span { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; color: var(--black); text-transform: uppercase; }
  .ticker-sep { color: rgba(0,0,0,0.35); }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  nav { top: 28px; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,74,92,0.45) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 20% 70%, rgba(196,135,42,0.12) 0%, transparent 60%),
      linear-gradient(160deg, #0A0E14 0%, #0F1E2C 40%, #0A1820 70%, #0A0E14 100%);
  }
  .hero-grain {
    position: absolute; inset: 0; z-index: 1; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }
  .hero-mountain {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    height: 38%;
    background: linear-gradient(to top, rgba(10,14,20,1) 0%, rgba(10,14,20,0.7) 40%, transparent 100%);
  }
  /* SVG mountain silhouette */
  .hero-peaks {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    height: 260px; opacity: 0.18;
  }
  .hero-content { position: relative; z-index: 3; max-width: 780px; }
  .hero-eyebrow {
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--ochre); margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--ochre); }
  .hero-title {
    font-family: var(--serif); font-size: clamp(42px, 6vw, 82px);
    font-weight: 700; line-height: 1.05; color: var(--white);
    margin-bottom: 28px;
  }
  .hero-title em { font-style: italic; color: var(--ochre2); }
  .hero-sub {
    font-size: 16px; color: var(--muted); max-width: 520px;
    line-height: 1.75; margin-bottom: 44px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--ochre); color: var(--black);
    padding: 14px 32px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--ochre2); }
  .btn-outline {
    border: 1px solid rgba(232,240,242,0.3); color: var(--ice);
    padding: 14px 32px; font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--ice); color: var(--white); }

  .hero-scroll {
    position: absolute; bottom: 32px; right: 48px; z-index: 3;
    display: flex; align-items: center; gap: 10px;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
    transform: rotate(90deg); transform-origin: right center;
  }
  .hero-scroll::after { content: ''; display: block; width: 48px; height: 1px; background: currentColor; }

  /* ── LOGOS BAR ── */
  .logos-bar {
    background: var(--deep);
    border-top: 1px solid rgba(26,74,92,0.4);
    border-bottom: 1px solid rgba(26,74,92,0.4);
    padding: 28px 48px;
    display: flex; align-items: center; gap: 0; overflow: hidden;
  }
  .logos-label {
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); white-space: nowrap; margin-right: 40px;
    padding-right: 40px; border-right: 1px solid rgba(232,240,242,0.15);
  }
  .logos-list { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
  .logos-list span {
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    color: rgba(232,240,242,0.4); transition: color 0.2s; white-space: nowrap;
  }
  .logos-list span:hover { color: var(--ice); }

  /* ── SECTION COMMON ── */
  section { padding: 100px 48px; }
  .section-eyebrow {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ochre); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--ochre); }
  .section-title {
    font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--ochre2); }
  .section-sub { font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.8; }

  /* ── IMPACT NUMBERS ── */
  .impact-section { background: var(--deep); }
  .impact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(26,74,92,0.3);
    margin-top: 60px; border: 1px solid rgba(26,74,92,0.3);
  }
  .impact-item {
    background: var(--deep); padding: 48px 36px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .impact-number {
    font-family: var(--serif); font-size: clamp(36px, 4vw, 56px);
    font-weight: 700; color: var(--ochre2); line-height: 1;
  }
  .impact-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  .impact-desc { font-size: 13px; color: rgba(232,240,242,0.5); margin-top: 4px; }

  /* ── PILLARS ── */
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
  .pillar {
    background: var(--deep); padding: 52px 40px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
  }
  .pillar:hover { background: #111D27; border-color: var(--ochre); }
  .pillar-icon { font-size: 28px; margin-bottom: 24px; }
  .pillar-title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .pillar-text { font-size: 14px; color: var(--muted); line-height: 1.8; }

  /* ── IP UNIVERSE ── */
  .universe-section { background: var(--black); }
  .universe-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
  .universe-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .ip-card {
    background: var(--deep); padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    text-decoration:none;
  }
  .ip-card:hover { background: #0F1E2C; }
  .ip-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .ip-card:hover::before { transform: scaleX(1); }
  .ip-num {
    font-size: 10px; letter-spacing: 0.2em; color: var(--teal2);
    text-transform: uppercase; margin-bottom: 20px;
  }
  .ip-format {
    display: inline-block; font-size: 9px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--black); background: var(--ochre);
    padding: 3px 10px; margin-bottom: 16px;
  }
  .ip-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
  .ip-desc { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
  .ip-tag { font-size: 10px; letter-spacing: 0.1em; color: var(--teal2); text-transform: uppercase; }
  .universe-cta-row { margin-top: 40px; text-align: center; }

  /* ── FILMS ── */
  .films-section { background: var(--deep); }
  .film-feature {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    margin-top: 64px;
  }
  .film-visual {
    aspect-ratio: 16/10; background: var(--teal);
    position: relative; overflow: hidden;
  }
  .film-visual-inner {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0F3040 0%, #1A4A5C 40%, #0A2030 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--white); cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .play-btn:hover { border-color: var(--ochre); background: rgba(196,135,42,0.2); }
  .film-label-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,14,20,0.95) 0%, transparent 100%);
    padding: 32px 28px 20px;
  }
  .film-label-overlay h3 { font-family: var(--serif); font-size: 20px; color: var(--white); }
  .film-label-overlay p { font-size: 11px; color: var(--muted); margin-top: 4px; }
  .awards-list { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; }
  .award-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px; background: rgba(26,74,92,0.2);
    border-left: 2px solid var(--ochre);
  }
  .award-icon { font-size: 16px; }
  .award-text { font-size: 13px; color: var(--muted); }
  .award-text strong { color: var(--white); font-weight: 500; }
  .coming-soon-card {
    margin-top: 20px; padding: 28px; background: rgba(10,14,20,0.5);
    border: 1px solid rgba(26,74,92,0.4);
  }
  .coming-badge { display: inline-block; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; background: var(--teal); color: var(--white); padding: 4px 12px; margin-bottom: 12px; }
  .coming-soon-card h4 { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 8px; }
  .coming-soon-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }

  /* ── FESTIVAL ── */
  .festival-section { background: var(--black); }
  .festival-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; margin-top: 64px; }
  .impact-pills { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
  .impact-pill {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 24px; background: var(--deep);
    border: 1px solid rgba(26,74,92,0.3);
  }
  .pill-number { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ochre2); white-space: nowrap; }
  .pill-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
  .cities-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ochre); margin-bottom: 20px; margin-top: 40px; }
  .cities-list { display: flex; flex-wrap: wrap; gap: 10px; }
  .city-tag {
    padding: 6px 16px; border: 1px solid rgba(26,74,92,0.5);
    font-size: 12px; color: var(--muted);
    transition: border-color 0.2s, color 0.2s;
  }
  .city-tag:hover { border-color: var(--teal2); color: var(--white); }
  .festival-right { padding-top: 40px; }
  .festival-quote {
    font-family: var(--serif); font-size: 22px; font-style: italic;
    color: var(--white); line-height: 1.5; margin-bottom: 28px;
    padding-left: 24px; border-left: 3px solid var(--ochre);
  }
  .festival-note { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

  /* ── ABOUT ── */
  .about-section { background: var(--deep); }
  .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
  
  .about-portrait {
    aspect-ratio: 4/5;
    position: relative; overflow: hidden;
  }
  .about-portrait-inner {
    /*position: absolute; inset: 0;*/
    /*background: linear-gradient(160deg, #1A4A5C 0%, #0F2E3C 50%, #0A1820 100%);*/
    /*display: flex; align-items: flex-end; padding: 32px;*/
  position: absolute;
  top:10%;
  }
  .portrait-info { }
  .portrait-name { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 4px; }
  .portrait-title { font-size: 11px; letter-spacing: 0.12em; color: var(--ochre); text-transform: uppercase; }
  .about-text { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
  .credentials { display: flex; flex-direction: column; gap: 10px; margin: 32px 0; }
  .cred-item {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 13px; color: var(--muted);
  }
  .cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ochre); margin-top: 7px; flex-shrink: 0; }
  .timeline { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
  .tl-item { display: flex; gap: 24px; padding-bottom: 28px; position: relative; }
  .tl-item::before {
    content: ''; position: absolute; left: 30px; top: 28px; bottom: 0;
    width: 1px; background: rgba(26,74,92,0.4);
  }
  .tl-item:last-child::before { display: none; }
  .tl-year {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--ochre);
    white-space: nowrap; padding-top: 2px; width: 40px; text-align: right;
  }
  .tl-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--teal2);
    margin-top: 5px; flex-shrink: 0;
  }
  .tl-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .tl-text strong { color: var(--white); }

  /* ── INVEST ── */
  .invest-section {
    background: linear-gradient(160deg, #0A0E14 0%, #0D2030 50%, #0A0E14 100%);
    text-align: center;
  }
  .invest-section .section-eyebrow { justify-content: center; }
  .invest-section .section-eyebrow::before { display: none; }
  .invest-section .section-title { margin-left: auto; margin-right: auto; }
  .invest-section .section-sub { margin: 0 auto 48px; }
  .raise-badge {
    display: inline-block; font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; color: var(--ochre2);
    border: 1px solid rgba(196,135,42,0.4); padding: 20px 48px;
    margin: 32px 0 8px;
  }
  .raise-sub { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 48px; }
  .invest-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 900px; margin: 0 auto 48px; }
  .invest-card {
    background: var(--deep); padding: 36px 28px; text-align: left;
    border-top: 2px solid var(--teal);
  }
  .invest-card h4 { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 10px; }
  .invest-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }
  .invest-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer {
    background: #060A0F; border-top: 1px solid rgba(26,74,92,0.3);
    padding: 64px 48px 40px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  .footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-top: 16px; max-width: 280px; }
  .footer-brand .trademarks { margin-top: 20px; font-size: 10px; letter-spacing: 0.08em; color: rgba(232,240,242,0.3); line-height: 1.8; }
  .footer-col h5 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ochre); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; border-top: 1px solid rgba(26,74,92,0.25);
    font-size: 11px; color: rgba(232,240,242,0.3);
  }
  .footer-social { display: flex; gap: 20px; }
  .footer-social a { color: rgba(232,240,242,0.35); text-decoration: none; font-size: 11px; transition: color 0.2s; }
  .footer-social a:hover { color: var(--ochre); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .hero { padding: 0 24px 64px; }
    .logos-bar { padding: 20px 24px; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: 1fr; }
    .universe-intro { grid-template-columns: 1fr; gap: 40px; }
    .universe-cards { grid-template-columns: 1fr; }
    .film-feature { grid-template-columns: 1fr; gap: 40px; }
    .festival-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .invest-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }
  @media (max-width: 600px) {
    .impact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
    .raise-badge { font-size: 26px; padding: 16px 28px; }
  }

  /* ── UTILS ── */
  .divider { height: 1px; background: rgba(26,74,92,0.3); margin: 0; }
  .text-ochre { color: var(--ochre2); }
  .mt-8 { margin-top: 8px; }
  .mt-32 { margin-top: 32px; }
  .highlight-bar {
    display: inline-block; background: rgba(196,135,42,0.12);
    border: 1px solid rgba(196,135,42,0.3);
    padding: 10px 20px; font-size: 13px; color: var(--ochre2);
    margin-bottom: 28px; letter-spacing: 0.04em;
  }
  /***/