    :root {
      --ink: #111;
      --muted: #666;
      --line: #d9d9d9;
      --bg: #fff;
      --maxw: 1120px;
    }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      letter-spacing: .2px;
    }

    /* Top header line (as in design) */
    .topbar-wrap {
      border-bottom: 1px solid var(--line);
    }

    .container-max {
      max-width: var(--maxw);
    }

    .brand {
      display: flex;
      align-items: flex-end;
      gap: .35rem;
      text-decoration: none;
      color: var(--ink);
      line-height: 1;
      user-select: none;
    }

    .brand .brand-title {
      font-size: 2.05rem;
      letter-spacing: .42rem;
      font-weight: 300;
    }

    .brand .brand-sub {
      font-size: .72rem;
      letter-spacing: .28rem;
      color: var(--muted);
      margin-bottom: .25rem;
    }

    /* Navbar links like thin uppercase */
    .nav-link.clean {
      color: var(--ink);
      font-size: .78rem;
      letter-spacing: .08rem;
      text-transform: uppercase;
      padding: .4rem .65rem;
    }

    .nav-link.clean:hover {
      opacity: .7;
    }

    .lang-pill {
      font-size: .72rem;
      letter-spacing: .08rem;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      padding: .15rem .35rem;
      border-radius: 6px;
    }

    .lang-pill.active {
      color: var(--ink);
      font-weight: 600;
    }

    /* Search icon */
    .icon-btn {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      background: transparent;
      color: var(--ink);
    }

    .icon-btn:hover {
      opacity: .7;
    }

    /* HERO slider look */
    .hero {
      padding-top: 18px;
      padding-bottom: 6px;
    }

    .hero-frame {
      /* border: 1px solid var(--line); */
      padding: 14px;
      background: #ccc;
    }

    .hero-img {
      width: 100%;
      aspect-ratio: 21 / 9;
      /* wide banner */
      object-fit: cover;
      background: #eaeaea;
      display: block;
    }

    @media (max-width: 576px) {
      .hero-img {
        aspect-ratio: 16 / 10;
      }
    }

    /* Carousel controls: subtle arrows outside-ish */
    .carousel-control-prev,
    .carousel-control-next {
      width: 8%;
      opacity: .9;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1) grayscale(1);
      opacity: .55;
    }

    /* Section title like design */
    .section-title {
      font-size: 1.15rem;
      letter-spacing: .22rem;
      text-transform: uppercase;
      margin: 18px 0 12px;
      font-weight: 500;
    }

    /* Exhibitions row carousel */
    .exhibitions {
      padding: 0 0 18px;
    }

    .exh-item {
      border: 1px solid transparent;
    }

    .exh-date {
      font-size: .72rem;
      color: var(--muted);
      letter-spacing: .02rem;
      margin-bottom: .35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .exh-card {
      background: #fff;
      border: 1px solid var(--line);
      padding: 0;
      overflow: hidden;
    }

    .exh-thumb {
      width: 100%;
      aspect-ratio: 1 / 1;
      /* square like posters */
      object-fit: cover;
      background: #f0f0f0;
      display: block;
    }

    /* bottom line above footer */
    .page-divider {
      border-top: 1px solid var(--line);
      margin-top: 10px;
    }

    footer {
      padding: 14px 0 22px;
      color: var(--muted);
      font-size: .75rem;
    }

    .social a {
      color: var(--ink);
      opacity: .7;
      text-decoration: none;
      display: inline-flex;
      width: 28px;
      height: 28px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
    }

    .social a:hover {
      opacity: 1;
    }

    /* Make exhibitions carousel show 4 items on lg, 2 on sm, 1 on xs */
    .exh-slide .row {
      --bs-gutter-x: 18px;
      --bs-gutter-y: 18px;
    }

    /* Optional: keep navbar right aligned like mock */
    .nav-compact {
      gap: 2px;
    }