    :root {
      --purple: #2f1b54;
      --purple-deep: #211140;
      --purple-ink: #170b2e;
      --gold: #c6a35a;
      --gold-bright: #e0bc6d;
      --gold-dark: #ab8a41;
      --accent: #45209b;
      --accent-dark: #35167a;
      --ink: #221a30;
      --muted: #6b6377;
      --line: #eae7ee;
      --white: #ffffff;

      --serif: "Plus Jakarta Sans", system-ui, sans-serif;
      --sans: "Figtree", system-ui, sans-serif;

      --container: 1120px;
      --r-lg: 24px;
      --r-md: 16px;
      --r-sm: 10px;
      --shadow-card: 0 24px 48px -24px rgba(23, 11, 46, 0.35);
      --shadow-soft: 0 16px 40px -28px rgba(23, 11, 46, 0.45);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--ink);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    .wrap { width: min(var(--container), calc(100% - 44px)); margin: 0 auto; }

    ::selection { background: rgba(198, 163, 90, 0.35); }

    /* ---------- header ---------- */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #ffffff;
      transition: box-shadow 250ms ease;
    }
    .site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 24px -20px rgba(23, 11, 46, 0.4); }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 10px 0;
    }
    .brand { display: inline-flex; align-items: center; text-decoration: none; }
    .brand img { height: 78px; width: auto; object-fit: contain; }
    .site-nav { display: flex; align-items: center; gap: 30px; margin-top: 10px; }
    .site-nav > a:not(.btn) {
      text-decoration: none;
      font-size: 0.93rem;
      font-weight: 600;
      color: var(--muted);
      transition: color 150ms ease;
    }
    .site-nav > a:not(.btn):hover { color: var(--purple); }
    .venue-langs { display: inline-flex; align-items: center; gap: 8px; margin-left: 6px; }
    .venue-langs a {
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: var(--muted);
    }
    .venue-langs a[aria-current="true"] { color: var(--purple); }

    /* ---------- buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0.78rem 1.45rem;
      border-radius: 8px;
      font: inherit;
      font-weight: 700;
      font-size: 0.94rem;
      letter-spacing: 0.01em;
      text-decoration: none;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn:active { transform: translateY(0); }
    .btn svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .btn-primary { background: var(--accent); color: #fff; }
    .btn-primary:hover { background: var(--accent-dark); }
    .btn-light { background: #fff; color: var(--purple-ink); }
    .btn-light:hover { background: #ece7f3; }
    .btn-ghost { background: #fff; color: var(--purple-ink); }
    .btn-ghost:hover { background: #ece7f3; }
    .btn-outline { background: var(--purple); color: #fff; }
    .btn-outline:hover { background: var(--purple-ink); }
    .btn-sm { padding: 0.58rem 1.1rem; font-size: 0.87rem; }

    /* ---------- hero ---------- */
    .hero { padding: 14px 0 0; }
    .hero-card {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      min-height: min(62vh, 520px);
      display: flex;
      align-items: flex-end;
      color: #fff;
      isolation: isolate;
      box-shadow: var(--shadow-card);
    }
    .hero-card .bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      background: url("/images/venue-museum.jpg") center 45% / cover no-repeat;
    }
    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, rgba(0,0,0,0.55) 100%),
        linear-gradient(100deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    }
    .hero-inner {
      width: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      padding: clamp(28px, 5vw, 56px);
    }
    .hero-copy { max-width: 36rem; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-bright);
      margin-bottom: 1rem;
    }
    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1.5px;
      background: var(--gold-bright);
    }
    .hero-copy h1 {
      font-family: var(--serif);
      font-weight: 800;
      font-size: clamp(2.1rem, 4.6vw, 3.3rem);
      line-height: 1.08;
      letter-spacing: -0.025em;
      margin-bottom: 1.05rem;
      text-wrap: balance;
      text-shadow: 0 2px 24px rgba(23, 11, 46, 0.45);
    }
    .hero-copy h1 em { font-style: normal; color: var(--gold-bright); }
    .hero-copy p {
      font-size: clamp(1rem, 1.6vw, 1.12rem);
      color: rgba(255,255,255,0.88);
      max-width: 46ch;
      margin-bottom: 1.8rem;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

    /* ---------- shared section bits ---------- */
    section { padding: clamp(64px, 9vw, 108px) 0 0; }
    .sec-head { max-width: 44rem; margin-bottom: clamp(32px, 5vw, 52px); }
    .sec-head.center { margin-inline: auto; text-align: center; }
    .kicker {
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 0.75rem;
    }
    h2 {
      font-family: var(--serif);
      font-weight: 800;
      font-size: clamp(1.7rem, 3.4vw, 2.4rem);
      line-height: 1.16;
      letter-spacing: -0.02em;
      color: var(--purple);
      text-wrap: balance;
    }
    .lead {
      margin-top: 0.85rem;
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 52ch;
    }
    .sec-head.center .lead { margin-inline: auto; }

    /* ---------- benefit cards ---------- */
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(18px, 2.4vw, 28px);
    }
    .benefit {
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: #fff;
      padding: 28px 26px 30px;
    }
    .benefit .ico {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(198,163,90,0.16);
      display: grid;
      place-items: center;
      margin-bottom: 16px;
    }
    .benefit .ico svg {
      width: 20px; height: 20px;
      stroke: var(--gold-dark);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .benefit h3 {
      font-family: var(--serif);
      font-weight: 700;
      font-size: 1.08rem;
      color: var(--purple);
      margin-bottom: 0.35rem;
    }
    .benefit p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

    /* ---------- feature rows ---------- */
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(36px, 6vw, 72px);
      align-items: center;
    }
    .feature-visual {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .feature-visual > img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
    .feature-grid.flip .feature-visual { order: -1; }
    .quest-float {
      position: absolute;
      left: 18px;
      bottom: 18px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(6px);
      border-radius: var(--r-md);
      padding: 14px 18px;
      box-shadow: 0 18px 40px -16px rgba(23,11,46,0.5);
      max-width: 76%;
    }
    .quest-float .qk {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 3px;
    }
    .quest-float .qt {
      font-family: var(--serif);
      color: var(--purple);
      font-size: 1.02rem;
      line-height: 1.3;
    }
    .quest-float .qm { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

    .check-list { list-style: none; display: grid; gap: 16px; margin-top: 1.4rem; }
    .check-list li {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 12px;
      align-items: start;
      color: var(--muted);
      font-size: 0.99rem;
    }
    .check-list b { color: var(--ink); font-weight: 700; }
    .check-list .dot {
      width: 22px;
      height: 22px;
      margin-top: 2px;
      border-radius: 50%;
      background: rgba(198,163,90,0.16);
      display: grid;
      place-items: center;
    }
    .check-list .dot svg { width: 12px; height: 12px; stroke: var(--gold-dark); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }

    /* ---------- venue types ---------- */
    .type-section .wrap {
      background: #faf8f4;
      border-radius: var(--r-lg);
      padding: clamp(38px, 5vw, 60px) clamp(24px, 4vw, 52px);
    }
    .type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(18px, 2.4vw, 28px);
      margin-top: 30px;
    }
    .type-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }
    .type-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
    .type-card figcaption { padding: 18px 20px 22px; }
    .type-card h3 {
      font-family: var(--serif);
      font-weight: 700;
      font-size: 1.06rem;
      color: var(--purple);
      margin-bottom: 0.35rem;
    }
    .type-card p { font-size: 0.94rem; color: var(--muted); line-height: 1.55; }
    .type-more {
      list-style: none;
      margin-top: clamp(26px, 3.4vw, 36px);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .type-more li {
      padding: 9px 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--purple);
    }

    /* ---------- steps ---------- */
    .step-list { list-style: none; display: grid; gap: 0; max-width: 46rem; margin: 0 auto; }
    .step-item { position: relative; padding: 26px 0 26px 66px; }
    .step-item + .step-item { border-top: 1px solid var(--line); }
    .step-item .n {
      position: absolute;
      left: 0;
      top: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--serif);
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--purple);
      background: #fff;
      border: 1.5px solid var(--gold);
      box-shadow: 0 6px 16px -8px rgba(198,163,90,0.6);
    }
    .step-item h3 {
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-bottom: 0.25rem;
      color: var(--purple);
    }
    .step-item p { color: var(--muted); font-size: 0.98rem; max-width: 52ch; }

    /* ---------- cost band ---------- */
    .cost-band {
      border-radius: var(--r-lg);
      overflow: hidden;
      background: radial-gradient(90% 120% at 15% 10%, #3b2566 0%, var(--purple-deep) 60%, var(--purple-ink) 100%);
      color: #fff;
      padding: clamp(38px, 5.5vw, 68px) clamp(26px, 5vw, 64px);
      box-shadow: var(--shadow-card);
    }
    .cost-band .kicker { color: var(--gold-bright); }
    .cost-band h2 { color: #fff; }
    .cost-band .lead { color: rgba(255,255,255,0.78); }
    .cost-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: clamp(28px, 4vw, 44px);
    }
    .cost-cols article { border-top: 1.5px solid rgba(198,163,90,0.55); padding-top: 16px; }
    .cost-cols h3 {
      font-family: var(--serif);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--gold-bright);
      margin-bottom: 0.3rem;
    }
    .cost-cols p { font-size: 0.94rem; color: rgba(255,255,255,0.75); }

    /* ---------- FAQ ---------- */
    .faq-list { max-width: 46rem; margin: 0 auto; display: grid; gap: 12px; }
    .faq-list details {
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      background: #fff;
      overflow: hidden;
      transition: border-color 200ms ease;
    }
    .faq-list details[open] { border-color: rgba(198,163,90,0.65); }
    .faq-list summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      font-family: var(--serif);
      font-weight: 700;
      font-size: 1.02rem;
      color: var(--purple);
    }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after {
      content: "+";
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--gold-dark);
      transition: transform 200ms ease;
      flex: none;
    }
    .faq-list details[open] summary::after { transform: rotate(45deg); }
    .faq-list .a { padding: 0 22px 18px; color: var(--muted); font-size: 0.97rem; max-width: 60ch; }

    /* ---------- enquiry ---------- */
    .form-card {
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: #faf8f4;
      padding: clamp(30px, 4.5vw, 56px) clamp(24px, 4vw, 52px);
      box-shadow: var(--shadow-soft);
    }
    .form-foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px 22px;
      margin-top: clamp(24px, 3vw, 34px);
    }

    /* ---------- footer ---------- */
    footer { padding: clamp(48px, 7vw, 72px) 0 36px; }
    .footer-inner {
      border-top: 1px solid var(--line);
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.9rem;
    }
    .footer-inner a { text-decoration: none; }
    .footer-inner a:hover { color: var(--purple); }

    /* ---------- responsive ---------- */
    @media (max-width: 980px) {
      .benefit-grid { grid-template-columns: 1fr; }
      .type-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
      .feature-grid { grid-template-columns: 1fr; }
      .feature-grid.flip .feature-visual { order: 0; }
      .cost-cols { grid-template-columns: 1fr; gap: 20px; }
      .brand img { height: 58px; }
      .site-nav > a:not(.btn) { display: none; }
    }
    @media (max-width: 560px) {
      .hero-card { min-height: 66vh; }
    }
