:root {
      --bg: #070805;
      --bg-card: #11140f;
      --gold: #d6aa5d;
      --gold-light: #f0d28c;
      --cream: #f6ead0;
      --text: #e9ddc3;
      --muted: #a99c84;
      --line: rgba(214, 170, 93, 0.28);
      --white-line: rgba(255, 255, 255, 0.1);
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
      --ease: all 0.3s ease;
      --serif: Georgia, "Times New Roman", serif;
      --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      --container: 1240px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { background: var(--bg); }
    body {
      font-family: var(--sans);
      color: var(--text);
      background:
        radial-gradient(circle at 20% 0%, rgba(214, 170, 93, 0.13), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(39, 71, 88, 0.22), transparent 34%),
        linear-gradient(180deg, #060706 0%, #0b0d0b 48%, #060706 100%);
      overflow-x: hidden;
      line-height: 1.6;
    }

    body.locked { overflow: hidden; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    .container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }

    .eyebrow {
      display: inline-block;
      margin-bottom: 18px;
      font-size: 12px;
      line-height: 1.2;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .section-title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 0.98;
      letter-spacing: -0.04em;
      color: var(--cream);
    }

    .section-text {
      max-width: 620px;
      margin-top: 24px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 24px;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--ease);
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--gold-light), #b98530);
      transform: translateY(105%);
      transition: transform 0.3s ease;
      z-index: -1;
    }

    .btn:hover {
      color: #0b0b08;
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(214, 170, 93, 0.22);
      border-color: rgba(240, 210, 140, 0.65);
    }

    .btn:hover::before { transform: translateY(0); }
    .btn:active { transform: translateY(-1px) scale(0.98); box-shadow: 0 8px 20px rgba(214, 170, 93, 0.16); }
    .btn-primary { background: linear-gradient(135deg, var(--gold-light), #b98530); color: #080906; border-color: rgba(240, 210, 140, 0.75); }
    .btn-primary::before { background: rgba(255, 255, 255, 0.22); }
    .btn-primary:hover { color: #080906; }

    .media {
      position: relative;
      overflow: hidden;
      background: #111;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .media img {
      transition: transform 0.55s ease, filter 0.55s ease;
      filter: saturate(0.82) contrast(1.08) brightness(0.82);
    }

    .media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 20%, rgba(240, 210, 140, 0.17), transparent 34%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
      z-index: 1;
      pointer-events: none;
    }

    .media::after {
      content: "View";
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      transform: translate(-50%, -50%) scale(0.92);
      display: grid;
      place-items: center;
      width: 76px;
      height: 76px;
      border: 1px solid rgba(240, 210, 140, 0.62);
      border-radius: 50%;
      background: rgba(7, 8, 5, 0.56);
      color: var(--gold-light);
      font-family: var(--serif);
      opacity: 0;
      transition: var(--ease);
      backdrop-filter: blur(5px);
    }

    .media:hover img { transform: scale(1.06); filter: saturate(0.95) contrast(1.12) brightness(0.95); }
    .media:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(214, 170, 93, 0.18);
      background: rgba(7, 8, 5, 0.72);
      backdrop-filter: blur(16px);
      transition: var(--ease);
    }

    .site-header.is-scrolled { background: rgba(7, 8, 5, 0.92); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 28px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
    .logo-mark {
      width: 42px; height: 42px;
      display: grid; place-items: center;
      border: 1px solid rgba(240, 210, 140, 0.45);
      border-radius: 50%;
      color: var(--gold-light);
      font-family: var(--serif);
      font-size: 15px;
    }

    .logo-text {
      font-family: var(--serif);
      font-size: 27px;
      line-height: 1;
      letter-spacing: 0.03em;
      color: var(--gold-light);
      text-transform: uppercase;
    }

    .main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 27px; margin-left: auto; }
    .main-nav a {
      position: relative;
      color: var(--cream);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      opacity: 0.86;
      transition: var(--ease);
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 1px;
      background: var(--gold-light);
      transition: width 0.3s ease;
    }

    .main-nav a:hover { color: var(--gold-light); opacity: 1; }
    .main-nav a:hover::after { width: 100%; }
    .lang { color: var(--gold-light); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }

    .burger {
      display: none;
      width: 44px; height: 44px;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
      position: relative;
    }

    .burger span {
      position: absolute;
      left: 11px;
      width: 20px; height: 1px;
      background: var(--gold-light);
      transition: var(--ease);
    }

    .burger span:nth-child(1) { top: 15px; }
    .burger span:nth-child(2) { top: 22px; }
    .burger span:nth-child(3) { top: 29px; }
    .burger.is-active span:nth-child(1) { transform: rotate(45deg); top: 22px; }
    .burger.is-active span:nth-child(2) { opacity: 0; }
    .burger.is-active span:nth-child(3) { transform: rotate(-45deg); top: 22px; }

    .hero {
      position: relative;
      min-height: 100vh;
      padding-top: 72px;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }

    .hero-slider { position: absolute; inset: 0; z-index: 0; background: #030403; }
    .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
    .hero-slide.is-active { opacity: 1; }
    .hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75) contrast(1.12) brightness(0.63); transform: scale(1.02); }
    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 72% 32%, rgba(240, 210, 140, 0.42), transparent 24%),
        linear-gradient(90deg, rgba(7, 8, 5, 0.96) 0%, rgba(7, 8, 5, 0.72) 35%, rgba(7, 8, 5, 0.2) 68%, rgba(7, 8, 5, 0.45) 100%),
        linear-gradient(180deg, rgba(7, 8, 5, 0.4), rgba(7, 8, 5, 0.94));
      z-index: 1;
    }

    .hero-content { position: relative; z-index: 2; min-height: calc(100vh - 72px); display: flex; align-items: center; padding: 80px 0 64px; }
    .hero-copy { max-width: 650px; }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 9px 14px;
      border: 1px solid rgba(214, 170, 93, 0.35);
      color: var(--gold-light);
      background: rgba(214, 170, 93, 0.08);
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }

    .hero-label::before { content: ""; width: 24px; height: 1px; background: var(--gold-light); }
    .hero h1 {
      font-family: var(--serif);
      font-weight: 400;
      color: var(--gold-light);
      font-size: clamp(58px, 8.7vw, 132px);
      line-height: 0.88;
      letter-spacing: -0.07em;
      text-shadow: 0 20px 65px rgba(0, 0, 0, 0.65);
    }

    .hero-subtitle {
      max-width: 580px;
      margin-top: 30px;
      color: var(--cream);
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 30px);
      line-height: 1.36;
    }

    .hero-note { max-width: 540px; margin-top: 18px; color: var(--muted); font-size: 16px; line-height: 1.85; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; }
    .hero-stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 46px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); width: fit-content; }
    .hero-stat { text-align: center; min-width: 152px; padding: 20px 28px 18px; border-right: 1px solid var(--line); }
    .hero-stat:last-child { border-right: 0; }
    .hero-stat strong { display: block; font-family: var(--serif); font-weight: 400; color: var(--gold-light); font-size: 48px; line-height: 1; }
    .hero-stat span { display: block; margin-top: 8px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

    .slider-controls {
      position: absolute;
      right: max(24px, calc((100vw - var(--container)) / 2));
      bottom: 34px;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .slider-arrow {
      width: 44px; height: 44px;
      border: 1px solid var(--line);
      background: rgba(7, 8, 5, 0.5);
      color: var(--gold-light);
      cursor: pointer;
      transition: var(--ease);
    }

    .slider-arrow:hover { background: var(--gold-light); color: #070805; transform: translateY(-2px); }
    .slider-dots { display: flex; align-items: center; gap: 8px; }
    .slider-dot {
      width: 8px; height: 8px;
      border: 1px solid var(--gold-light);
      border-radius: 50%;
      background: transparent;
      opacity: 0.55;
      cursor: pointer;
      transition: var(--ease);
    }

    .slider-dot.is-active { width: 28px; border-radius: 99px; background: var(--gold-light); opacity: 1; }

    .vision { padding: 96px 0; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), rgba(7,8,5,.42); }
    .vision-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 58px; align-items: center; }
    .feature-list { display: grid; gap: 18px; margin-top: 32px; }
    .feature-item { display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 16px; color: var(--cream); }
    .feature-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); color: var(--gold-light); font-size: 21px; }
    .vision-gallery { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; }
    .vision-gallery .media { min-height: 520px; }
    .vision-stack { display: grid; gap: 16px; }
    .vision-stack .media { min-height: 252px; }

    .dore { padding: 0 0 98px; border-bottom: 1px solid var(--line); }
    .dore-card {
      display: grid;
      grid-template-columns: 260px 1fr 360px;
      gap: 42px;
      align-items: center;
      padding: 34px;
      border: 1px solid rgba(214, 170, 93, 0.46);
      background: radial-gradient(circle at 18% 40%, rgba(214, 170, 93, 0.12), transparent 24%), linear-gradient(135deg, rgba(17, 20, 15, 0.96), rgba(7, 8, 5, 0.9));
      box-shadow: var(--shadow);
    }

    .dore-portrait { width: 220px; height: 220px; border-radius: 50%; border: 1px solid rgba(240, 210, 140, 0.7); overflow: hidden; margin: 0 auto; background: #222; }
    .dore-portrait img { filter: grayscale(1) contrast(1.08) brightness(0.82); }
    .dore h2 { font-family: var(--serif); font-size: clamp(36px, 4.6vw, 66px); font-weight: 400; line-height: 0.98; letter-spacing: -0.04em; color: var(--gold-light); }
    .dore p { margin-top: 22px; max-width: 620px; color: var(--text); font-size: 17px; line-height: 1.8; }
    .dore-side { height: 260px; }

    .artists { padding: 0; border-bottom: 1px solid var(--line); background: #080a09; }
    .artists-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 590px; align-items: stretch; }
    .artists-image { min-height: 590px; border-left: 0; border-top: 0; border-bottom: 0; }
    .artists-content { display: flex; flex-direction: column; justify-content: center; padding: 72px 0 72px 72px; }
    .mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
    .mini-item { border-left: 1px solid var(--line); padding-left: 18px; }
    .mini-icon { display: block; margin-bottom: 12px; color: var(--gold-light); font-size: 27px; }
    .mini-item strong { display: block; color: var(--cream); font-size: 12px; line-height: 1.45; letter-spacing: 0.08em; text-transform: uppercase; }

    .investors { padding: 96px 0; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 15% 40%, rgba(214, 170, 93, 0.08), transparent 26%), linear-gradient(180deg, #090a08, #060706); }
    .investors-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; }
    .investors-media { min-height: 520px; }
    .investor-points { display: grid; gap: 14px; margin-top: 30px; color: var(--cream); }
    .investor-points li { display: flex; gap: 13px; list-style: none; }
    .investor-points li span { color: var(--gold-light); }

    .partner { padding: 96px 0; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.025); }
    .tabs { margin-top: 40px; border: 1px solid var(--line); background: rgba(17, 20, 15, 0.72); box-shadow: var(--shadow); }
    .tab-buttons { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
    .tab-btn { padding: 20px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: var(--ease); }
    .tab-btn:last-child { border-right: 0; }
    .tab-btn:hover, .tab-btn.is-active { background: rgba(214, 170, 93, 0.1); color: var(--gold-light); }
    .tab-panel { display: none; grid-template-columns: 0.8fr 1.2fr; gap: 42px; padding: 42px; align-items: center; }
    .tab-panel.is-active { display: grid; }
    .tab-panel h3 { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.05; color: var(--cream); }
    .tab-panel p { margin-top: 18px; color: var(--muted); }
    .tab-panel ul { display: grid; gap: 12px; color: var(--cream); }
    .tab-panel li { list-style: none; border-bottom: 1px solid var(--white-line); padding-bottom: 12px; }

    .catalog { padding: 96px 0; border-bottom: 1px solid var(--line); text-align: center; }
    .catalog .section-text { margin-left: auto; margin-right: auto; }
    .catalog-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 48px; }
    .catalog-card { position: relative; display: flex; min-height: 430px; flex-direction: column; border: 1px solid rgba(214, 170, 93, 0.36); background: #0f110d; overflow: hidden; text-align: left; transition: var(--ease); }
    .catalog-card:hover { transform: translateY(-6px); border-color: rgba(240, 210, 140, 0.72); box-shadow: 0 26px 50px rgba(0, 0, 0, 0.46); }
    .catalog-card .media { height: 285px; border: 0; box-shadow: none; }
    .catalog-card-body { padding: 20px; background: linear-gradient(180deg, rgba(17, 20, 15, 0.92), rgba(7, 8, 5, 0.98)); flex: 1; }
    .catalog-number { color: var(--gold); font-family: var(--serif); font-size: 26px; line-height: 1; }
    .catalog-card h3 { margin-top: 12px; font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.12; color: var(--cream); }
    .catalog-card p { margin-top: 8px; color: var(--muted); font-size: 13px; }
    .catalog-actions { margin-top: 36px; }

    .author { border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 35%, rgba(214, 170, 93, 0.12), transparent 26%), #090806; }
    .author-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; padding: 96px 0; }
    .quote { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.04em; color: var(--gold-light); }
    .author-media { min-height: 520px; }

    .site-footer { padding: 58px 0; background: #050605; }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr 0.8fr; gap: 48px; align-items: center; }
    .footer-logo { font-family: var(--serif); font-size: 54px; line-height: 0.9; color: var(--gold-light); }
    .footer-logo span { display: block; font-size: 86px; letter-spacing: -0.08em; }
    .footer-list { display: grid; gap: 10px; color: var(--muted); font-size: 15px; font-style: normal; }
    .footer-list strong { color: var(--cream); margin-bottom: 8px; }
    .footer-emblem { width: 178px; height: 178px; margin-left: auto; }

    .modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(10px); }
    .modal.is-open { display: flex; }
    .modal-card { position: relative; width: min(620px, 100%); border: 1px solid rgba(214, 170, 93, 0.5); background: radial-gradient(circle at 80% 0%, rgba(214, 170, 93, 0.14), transparent 32%), #0b0d0a; box-shadow: var(--shadow); padding: 42px; }
    .modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: var(--gold-light); cursor: pointer; transition: var(--ease); }
    .modal-close:hover { background: var(--gold-light); color: #070805; }
    .modal-card h3 { font-family: var(--serif); font-size: 42px; line-height: 1; font-weight: 400; color: var(--cream); }
    .modal-card p { margin-top: 16px; color: var(--muted); }
    .form { display: grid; gap: 14px; margin-top: 28px; }
    .form input, .form textarea { width: 100%; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); color: var(--cream); padding: 14px 15px; outline: 0; transition: var(--ease); }
    .form textarea { min-height: 120px; resize: vertical; }
    .form input:focus, .form textarea:focus { border-color: rgba(240, 210, 140, 0.76); box-shadow: 0 0 0 4px rgba(214, 170, 93, 0.08); }

    .to-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 48px; height: 48px; display: none; border: 1px solid var(--line); background: rgba(7, 8, 5, 0.82); color: var(--gold-light); cursor: pointer; transition: var(--ease); backdrop-filter: blur(10px); }
    .to-top:hover { background: var(--gold-light); color: #070805; transform: translateY(-3px); }

    @media (max-width: 1160px) {
      .main-nav { gap: 18px; }
      .catalog-grid { grid-template-columns: repeat(3, 1fr); }
      .dore-card { grid-template-columns: 220px 1fr; }
      .dore-side { grid-column: 1 / -1; height: 280px; }
    }

    @media (max-width: 940px) {
      .container { width: min(100% - 32px, var(--container)); }
      .burger { display: block; }
      .main-nav {
        position: fixed;
        left: 16px; right: 16px; top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        background: rgba(7, 8, 5, 0.96);
        box-shadow: var(--shadow);
      }

      .main-nav.is-open { display: flex; }
      .main-nav a { padding: 16px; border-bottom: 1px solid var(--white-line); }
      .main-nav a:last-child { border-bottom: 0; }
      .lang { display: none; }
      .hero-content { align-items: flex-end; padding: 110px 0 86px; }
      .hero-stats { width: 100%; }
      .hero-stat { flex: 1; min-width: 0; padding-left: 16px; padding-right: 16px; }
      .hero-stat strong { font-size: 38px; }
      .slider-controls { left: 16px; right: auto; bottom: 22px; }
      .vision-grid, .investors-grid, .author-grid, .artists-grid, .tab-panel { grid-template-columns: 1fr; }
      .vision-gallery { grid-template-columns: 1fr; }
      .vision-gallery .media, .vision-stack .media, .artists-image, .investors-media, .author-media { min-height: 360px; }
      .artists-content { padding: 56px 0; }
      .mini-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-emblem { margin-left: 0; }
    }

    /* ================================================ */
    /* Active nav link                                  */
    /* ================================================ */
    .main-nav a.nav-active { color: var(--gold-light); opacity: 1; }
    .main-nav a.nav-active::after { width: 100%; }

    /* ================================================ */
    /* Footer copyright row                             */
    /* ================================================ */
    .footer-copy { border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
    .footer-copy a { color: var(--muted); transition: var(--ease); }
    .footer-copy a:hover { color: var(--gold-light); }

    /* ================================================ */
    /* Page: /catalog                                   */
    /* ================================================ */

    .page-hero {
      padding: 144px 0 72px;
      border-bottom: 1px solid var(--line);
      background: radial-gradient(circle at 50% 90%, rgba(214,170,93,0.09), transparent 40%);
    }

    .catalog-controls {
      position: sticky;
      top: 72px;
      z-index: 40;
      border-bottom: 1px solid var(--line);
      background: rgba(7, 8, 5, 0.9);
      backdrop-filter: blur(16px);
    }

    .catalog-input,
    .catalog-select {
      background: rgba(255, 255, 255, 0.04) !important;
      border: 1px solid var(--line) !important;
      border-radius: 0 !important;
      color: var(--cream) !important;
      height: 46px !important;
      font-size: 13px !important;
      letter-spacing: 0.04em;
      transition: var(--ease);
    }

    .catalog-input::placeholder { color: var(--muted); }

    .catalog-input:focus,
    .catalog-select:focus {
      border-color: rgba(240, 210, 140, 0.76) !important;
      box-shadow: 0 0 0 4px rgba(214, 170, 93, 0.08) !important;
      color: var(--cream) !important;
      background: rgba(255, 255, 255, 0.06) !important;
    }

    .catalog-select option,
    .catalog-select optgroup { background: #11140f; color: var(--cream); }

    .catalog-search-wrap { max-width: 300px; }

    .results-count {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      border-top: 1px solid var(--white-line);
      padding: 10px 0 12px;
    }

    .results-count strong { color: var(--gold-light); font-weight: 700; }

    /* Card without painting yet */
    .catalog-placeholder {
      height: 285px;
      background: linear-gradient(160deg, #0d0f0c, #141710);
      border-bottom: 1px solid rgba(214, 170, 93, 0.14);
      display: grid;
      place-items: center;
    }

    .ph-number {
      font-family: var(--serif);
      font-size: 56px;
      line-height: 1;
      letter-spacing: -0.06em;
      color: rgba(214, 170, 93, 0.18);
    }

    /* Empty search result */
    .catalog-empty { padding: 80px 0; text-align: center; }
    .catalog-empty p { font-family: var(--serif); font-size: clamp(22px, 4vw, 36px); color: var(--gold); margin-bottom: 14px; }
    .catalog-empty span { color: var(--muted); font-size: 15px; }

    /* Pagination — override Bootstrap with gold theme */
    .pagination .page-link {
      background: transparent !important;
      border: 1px solid var(--line) !important;
      color: var(--gold-light) !important;
      border-radius: 0 !important;
      font-size: 13px;
      letter-spacing: 0.06em;
      min-width: 44px;
      text-align: center;
      padding: 10px 14px;
      transition: var(--ease);
    }

    .pagination .page-link:hover {
      background: rgba(214, 170, 93, 0.1) !important;
      border-color: rgba(240, 210, 140, 0.5) !important;
    }

    .pagination .page-item.active .page-link {
      background: linear-gradient(135deg, var(--gold-light), #b98530) !important;
      border-color: rgba(240, 210, 140, 0.75) !important;
      color: #080906 !important;
      font-weight: 700;
    }

    .pagination .page-item.disabled .page-link {
      border-color: rgba(214, 170, 93, 0.1) !important;
      color: var(--muted) !important;
      opacity: 0.4;
      pointer-events: none;
    }

    @media (max-width: 940px) {
      .catalog-controls { top: 66px; }
      .catalog-search-wrap { max-width: 100%; width: 100%; }
      .page-hero { padding: 110px 0 56px; }
    }

    @media (max-width: 680px) {
      .header-inner { min-height: 66px; }
      .logo-text { font-size: 22px; }
      .logo-mark { width: 38px; height: 38px; }
      .hero { padding-top: 66px; }
      .hero h1 { font-size: clamp(52px, 17vw, 88px); }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .hero-stats { display: grid; grid-template-columns: 1fr; }
      .hero-stat { border-right: 0; border-bottom: 1px solid var(--line); }
      .hero-stat:last-child { border-bottom: 0; }
      .vision, .investors, .partner, .catalog { padding: 72px 0; }
      .dore { padding-bottom: 72px; }
      .dore-card { grid-template-columns: 1fr; padding: 24px; }
      .dore-portrait { width: 180px; height: 180px; }
      .tab-buttons { grid-template-columns: 1fr; }
      .tab-btn { border-right: 0; border-bottom: 1px solid var(--line); }
      .tab-btn:last-child { border-bottom: 0; }
      .tab-panel { padding: 26px; }
      .catalog-grid { grid-template-columns: 1fr; }
      .catalog-card { min-height: auto; }
      .catalog-card .media { height: 340px; }
      .author-grid { padding: 72px 0; }
      .modal-card { padding: 32px 22px; }
    }

    /* ================================================ */
    /* Page: Scene Detail (/catalog/NNN)                */
    /* ================================================ */

    .scene-content {
      padding: 120px 0 72px;
    }

    .scene-viewer {
      position: relative;
      border: 1px solid var(--line);
      background: #0a0b08;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .scene-viewer-item {
      display: none;
    }

    .scene-viewer-item.is-active {
      display: block;
    }

    .scene-viewer-item > a {
      display: block;
      cursor: zoom-in;
      overflow: hidden;
    }

    .scene-viewer-item > a > img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }

    .scene-viewer-item > a:hover > img {
      transform: scale(1.03);
    }

    .scene-media-video {
      background: #000;
    }

    .scene-thumb {
      position: relative;
      border: 1px solid var(--line);
      overflow: hidden;
      cursor: pointer;
      opacity: 0.55;
      transition: var(--ease);
    }

    .scene-thumb:hover {
      opacity: 0.85;
      border-color: rgba(240, 210, 140, 0.5);
    }

    .scene-thumb.is-active {
      opacity: 1;
      border-color: var(--gold-light);
      box-shadow: 0 0 0 1px var(--gold-light);
    }

    .scene-thumb img {
      aspect-ratio: 1;
      object-fit: cover;
    }

    .scene-thumb-play {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      background: rgba(0, 0, 0, 0.4);
      color: #fff;
      font-size: 24px;
      pointer-events: none;
      transition: var(--ease);
    }

    .scene-thumb:hover .scene-thumb-play {
      background: rgba(0, 0, 0, 0.2);
    }

    .scene-ref {
      color: var(--muted);
      font-size: 15px;
      font-style: italic;
    }

    .scene-divider {
      border-color: var(--line);
      margin: 24px 0;
    }

    .scene-subtitle {
      font-family: var(--serif);
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 400;
      line-height: 1.3;
      color: var(--cream);
    }

    .scene-text {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
    }

    .scene-text p + p {
      margin-top: 16px;
    }

    .scene-author-card {
      border: 1px solid var(--line);
      padding: 28px;
      background: rgba(17, 20, 15, 0.72);
    }

    .scene-author-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--gold-light);
      font-size: 22px;
      flex-shrink: 0;
    }

    .scene-author-name {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      color: var(--cream);
      margin: 0;
    }

    .scene-author-meta {
      color: var(--muted);
      font-size: 13px;
      margin: 2px 0 0;
    }

    .scene-author-bio {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      margin-top: 18px;
    }

    .scene-nav-link {
      display: block;
      padding: 24px;
      transition: var(--ease);
    }

    .scene-nav-link:hover {
      background: rgba(214, 170, 93, 0.06);
    }

    .scene-nav-label {
      display: block;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .scene-nav-title {
      display: block;
      margin-top: 6px;
      font-family: var(--serif);
      font-size: 16px;
      color: var(--cream);
    }

    .scene-nav-disabled {
      opacity: 0.3;
      pointer-events: none;
    }

    .scene-placeholder {
      aspect-ratio: 2/3;
      display: grid;
      place-items: center;
      background: linear-gradient(160deg, #0d0f0c, #141710);
      border: 1px solid var(--line);
    }

    .scene-placeholder-number {
      font-family: var(--serif);
      font-size: 72px;
      color: rgba(214, 170, 93, 0.18);
      line-height: 1;
    }

    .scene-placeholder-text {
      color: var(--muted);
      font-size: 14px;
      margin-top: 12px;
    }

    /* GLightbox dark theme overrides */
    .glightbox-clean .gclose,
    .glightbox-clean .gnext,
    .glightbox-clean .gprev {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(214, 170, 93, 0.3);
    }

    .glightbox-clean .gclose:hover,
    .glightbox-clean .gnext:hover,
    .glightbox-clean .gprev:hover {
      background: rgba(214, 170, 93, 0.2);
    }

    @media (max-width: 940px) {
      .scene-content { padding: 96px 0 56px; }
    }

    @media (max-width: 680px) {
      .scene-content { padding: 82px 0 48px; }
      .scene-author-card { padding: 20px; }
    }

    /* ================================================ */
    /* Page: Investors                                  */
    /* ================================================ */

    /* ── Hero ── */
    .inv-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 72px;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }

    .inv-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .inv-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.6) contrast(1.15) brightness(0.45);
    }

    .inv-hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 40%, rgba(214, 170, 93, 0.25), transparent 45%),
        linear-gradient(90deg, rgba(7, 8, 5, 0.94) 0%, rgba(7, 8, 5, 0.7) 40%, rgba(7, 8, 5, 0.35) 70%, rgba(7, 8, 5, 0.6) 100%),
        linear-gradient(180deg, rgba(7, 8, 5, 0.5) 0%, rgba(7, 8, 5, 0.88) 100%);
    }

    .inv-hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 0 64px;
      max-width: 720px;
    }

    .inv-hero-title {
      font-family: var(--serif);
      font-weight: 400;
      color: var(--gold-light);
      font-size: clamp(48px, 7vw, 100px);
      line-height: 0.92;
      letter-spacing: -0.05em;
      text-shadow: 0 20px 65px rgba(0, 0, 0, 0.6);
    }

    .inv-hero-subtitle {
      max-width: 560px;
      margin-top: 28px;
      color: var(--cream);
      font-family: var(--serif);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.4;
    }

    /* ── Sections ── */
    .inv-section {
      padding: 96px 0;
      border-bottom: 1px solid var(--line);
    }

    .inv-section--dark {
      background:
        radial-gradient(circle at 15% 40%, rgba(214, 170, 93, 0.06), transparent 30%),
        linear-gradient(180deg, #080a08, #060706);
    }

    /* ── Two-column grid ── */
    .inv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 58px;
      align-items: center;
    }

    .inv-grid--reverse {
      direction: rtl;
    }

    .inv-grid--reverse > * {
      direction: ltr;
    }

    .inv-media-tall {
      min-height: 520px;
    }

    /* ── Highlights (checkmarks) ── */
    .inv-highlights {
      display: grid;
      gap: 14px;
    }

    .inv-highlight {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--cream);
      font-size: 15px;
    }

    .inv-highlight-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      color: var(--gold-light);
      font-size: 18px;
    }

    /* ── Revenue cards ── */
    .inv-revenue-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .inv-revenue-card {
      display: block;
      border: 1px solid var(--line);
      padding: 34px 28px;
      background:
        radial-gradient(circle at 20% 10%, rgba(214, 170, 93, 0.07), transparent 50%),
        rgba(17, 20, 15, 0.6);
      transition: var(--ease);
      cursor: default;
    }

    a.inv-revenue-card,
    button.inv-revenue-card {
      width: 100%;
      text-align: left;
      cursor: pointer;
    }

    .inv-revenue-card:hover {
      transform: translateY(-5px);
      border-color: rgba(240, 210, 140, 0.55);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    }

    .inv-revenue-card--accent {
      grid-column: 2;
      border-color: rgba(214, 170, 93, 0.45);
      background:
        radial-gradient(circle at 50% 20%, rgba(214, 170, 93, 0.14), transparent 50%),
        linear-gradient(135deg, rgba(17, 20, 15, 0.95), rgba(7, 8, 5, 0.9));
    }

    .inv-revenue-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(240, 210, 140, 0.45);
      border-radius: 50%;
      color: var(--gold-light);
      font-size: 24px;
      margin-bottom: 22px;
    }

    .inv-revenue-card h3 {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      line-height: 1.15;
      color: var(--cream);
    }

    .inv-revenue-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    /* ── Founder card ── */
    .inv-founder-card {
      display: grid;
      grid-template-columns: 240px 1fr 340px;
      gap: 42px;
      align-items: center;
      padding: 42px;
      border: 1px solid rgba(214, 170, 93, 0.4);
      background:
        radial-gradient(circle at 18% 40%, rgba(214, 170, 93, 0.1), transparent 30%),
        linear-gradient(135deg, rgba(17, 20, 15, 0.96), rgba(7, 8, 5, 0.9));
      box-shadow: var(--shadow);
    }

    .inv-founder-title {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--gold-light);
    }

    .inv-founder-quote {
      font-family: var(--serif);
      font-size: clamp(20px, 2.2vw, 28px);
      line-height: 1.3;
      color: var(--cream);
      margin-top: 18px;
      padding-left: 20px;
      border-left: 2px solid var(--gold);
    }

    .inv-founder-text {
      margin-top: 20px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
    }

    .inv-founder-media {
      height: 300px;
    }

    /* ── Collection grid ── */
    .inv-collection-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .inv-collection-item {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #0a0b08;
      aspect-ratio: 3/4;
      cursor: pointer;
      transition: var(--ease);
    }

    .inv-collection-item--wide {
      grid-column: span 2;
      aspect-ratio: 3/2;
    }

    .inv-collection-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.8) contrast(1.08) brightness(0.8);
      transition: transform 0.55s ease, filter 0.55s ease;
    }

    .inv-collection-item:hover {
      border-color: rgba(240, 210, 140, 0.6);
      box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
      transform: translateY(-4px);
    }

    .inv-collection-item:hover img {
      transform: scale(1.06);
      filter: saturate(0.95) contrast(1.1) brightness(0.9);
    }

    .inv-collection-item figcaption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 40px 18px 16px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
      z-index: 1;
    }

    .inv-collection-num {
      display: block;
      font-family: var(--serif);
      font-size: 28px;
      color: var(--gold-light);
      line-height: 1;
    }

    .inv-collection-name {
      display: block;
      margin-top: 4px;
      color: var(--cream);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* ── Why invest (reasons list) ── */
    .inv-reasons {
      display: grid;
      gap: 24px;
      margin-top: 32px;
      list-style: none;
    }

    .inv-reasons li {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .inv-reasons-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      color: var(--gold-light);
      font-size: 20px;
    }

    .inv-reasons li strong {
      display: block;
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .inv-reasons li p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      margin: 0;
    }

    /* ── Cities tags ── */
    .inv-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }

    .inv-city {
      display: inline-flex;
      align-items: center;
      padding: 10px 18px;
      border: 1px solid var(--line);
      color: var(--gold-light);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: var(--ease);
    }

    .inv-city:hover {
      background: rgba(214, 170, 93, 0.1);
      border-color: rgba(240, 210, 140, 0.5);
    }

    /* ── Contact page: addresses ── */
    .contact-address-text {
      white-space: pre-line;
    }

    /* ── Contact page: social icons ── */
    .contact-socials {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 36px;
    }

    .contact-social-link {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--gold-light);
      font-size: 22px;
      transition: var(--ease);
    }

    .contact-social-link:hover {
      background: var(--gold-light);
      color: #070805;
      border-color: rgba(240, 210, 140, 0.65);
      transform: translateY(-3px);
    }

    /* ── CTA ── */
    .inv-cta {
      padding: 120px 0;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 60%, rgba(214, 170, 93, 0.12), transparent 40%),
        linear-gradient(180deg, #070805, #0a0c09);
    }

    .inv-cta-inner {
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }

    .inv-cta-title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(36px, 5vw, 68px);
      line-height: 0.98;
      letter-spacing: -0.04em;
      color: var(--gold-light);
    }

    .inv-cta-text {
      max-width: 520px;
      margin: 24px auto 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    .inv-cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 36px;
    }

    /* ── Investors responsive ── */
    @media (max-width: 1160px) {
      .inv-revenue-grid { grid-template-columns: repeat(2, 1fr); }
      .inv-revenue-card--accent { grid-column: auto; }
      .inv-founder-card { grid-template-columns: 200px 1fr; }
      .inv-founder-media { grid-column: 1 / -1; height: 280px; }
      .inv-collection-grid { grid-template-columns: repeat(3, 1fr); }
      .inv-collection-item--wide { grid-column: auto; aspect-ratio: 3/4; }
    }

    @media (max-width: 940px) {
      .inv-hero-content { padding: 64px 0 80px; }
      .inv-grid { grid-template-columns: 1fr; gap: 40px; }
      .inv-grid--reverse { direction: ltr; }
      .inv-media-tall { min-height: 360px; }
      .inv-section { padding: 72px 0; }
      .inv-collection-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 680px) {
      .inv-hero { min-height: auto; padding-top: 66px; }
      .inv-hero-content { padding: 80px 0 60px; }
      .inv-hero-title { font-size: clamp(40px, 12vw, 64px); }
      .inv-revenue-grid { grid-template-columns: 1fr; }
      .inv-founder-card { grid-template-columns: 1fr; padding: 24px; text-align: center; }
      .inv-founder-card .dore-portrait { margin: 0 auto; }
      .inv-founder-quote { border-left: 0; padding-left: 0; border-top: 2px solid var(--gold); padding-top: 16px; }
      .inv-collection-grid { grid-template-columns: 1fr; }
      .inv-collection-item--wide { aspect-ratio: 3/2; }
      .inv-section { padding: 56px 0; }
      .inv-cta { padding: 72px 0; }
      .inv-cta-actions { flex-direction: column; align-items: stretch; }
    }

    /* ================================================ */
    /* RTL Support (Hebrew)                             */
    /* ================================================ */

    [dir="rtl"] { text-align: right; }

    /* Header */
    [dir="rtl"] .main-nav { margin-left: 0; margin-right: auto; }
    [dir="rtl"] .main-nav a::after { left: auto; right: 0; }

    /* Hero */
    [dir="rtl"] .hero-slide::before {
      background:
        radial-gradient(circle at 28% 32%, rgba(240, 210, 140, 0.42), transparent 24%),
        linear-gradient(270deg, rgba(7, 8, 5, 0.96) 0%, rgba(7, 8, 5, 0.72) 35%, rgba(7, 8, 5, 0.2) 68%, rgba(7, 8, 5, 0.45) 100%),
        linear-gradient(180deg, rgba(7, 8, 5, 0.4), rgba(7, 8, 5, 0.94));
    }
    [dir="rtl"] .hero-label::before { display: none; }
    [dir="rtl"] .hero-label::after { content: ""; width: 24px; height: 1px; background: var(--gold-light); }
    [dir="rtl"] .slider-controls { right: auto; left: max(24px, calc((100vw - var(--container)) / 2)); }
    [dir="rtl"] .hero-stat { border-right: 0; border-left: 1px solid var(--line); }
    [dir="rtl"] .hero-stat:last-child { border-left: 0; }

    /* Feature items */
    [dir="rtl"] .feature-item { grid-template-columns: 1fr 44px; }
    [dir="rtl"] .feature-item .feature-icon { order: 1; }

    /* Mini items */
    [dir="rtl"] .mini-item { border-left: 0; padding-left: 0; border-right: 1px solid var(--line); padding-right: 18px; }

    /* Artists */
    [dir="rtl"] .artists-content { padding: 72px 72px 72px 0; }

    /* Investor points */
    [dir="rtl"] .investor-points li { flex-direction: row-reverse; }

    /* Tabs */
    [dir="rtl"] .tab-btn { border-right: 0; border-left: 1px solid var(--line); }
    [dir="rtl"] .tab-btn:last-child { border-left: 0; }

    /* Doré card */
    [dir="rtl"] .dore-card { direction: rtl; }

    /* Footer */
    [dir="rtl"] .footer-emblem { margin-left: 0; margin-right: auto; }
    [dir="rtl"] .footer-bottom { text-align: right; }

    /* Back to top */
    [dir="rtl"] .to-top { right: auto; left: 22px; }

    /* Burger */
    [dir="rtl"] .burger span { left: auto; right: 11px; }

    /* Scene detail */
    [dir="rtl"] .scene-nav-next { text-align: left; }
    [dir="rtl"] .scene-nav-prev { text-align: right; }

    /* Catalog page */
    [dir="rtl"] .catalog-card-body { text-align: right; }

    /* Investor page */
    [dir="rtl"] .inv-founder-quote { border-left: 0; padding-left: 0; border-right: 2px solid var(--gold); padding-right: 20px; }
    [dir="rtl"] .inv-reasons li { flex-direction: row-reverse; }
    [dir="rtl"] .inv-highlight { flex-direction: row-reverse; }

    @media (max-width: 940px) {
      [dir="rtl"] .main-nav { left: 16px; right: 16px; }
      [dir="rtl"] .artists-content { padding: 56px 0; }
      [dir="rtl"] .slider-controls { left: 16px; right: auto; }
    }

    @media (max-width: 680px) {
      [dir="rtl"] .hero-stat { border-left: 0; border-bottom: 1px solid var(--line); }
      [dir="rtl"] .hero-stat:last-child { border-bottom: 0; }
      [dir="rtl"] .tab-btn { border-left: 0; border-bottom: 1px solid var(--line); }
      [dir="rtl"] .tab-btn:last-child { border-bottom: 0; }
      [dir="rtl"] .inv-founder-quote { border-right: 0; padding-right: 0; border-top: 2px solid var(--gold); padding-top: 16px; }
    }