
    :root {
      --bg: #030303;
      --panel: rgba(255,255,255,.055);
      --panel-strong: rgba(255,255,255,.09);
      --text: #f7f1e7;
      --muted: rgba(247,241,231,.68);
      --line: rgba(255,255,255,.16);
      --accent: #c99b58;
      --accent-2: #7f5cff;
      --green: #25d366;
      --radius: 26px;
      --shadow: 0 30px 90px rgba(0,0,0,.55);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 12% 10%, rgba(201,155,88,.18), transparent 28%),
        radial-gradient(circle at 86% 28%, rgba(127,92,255,.16), transparent 26%),
        linear-gradient(135deg, #050505 0%, #0b0b0b 45%, #020202 100%);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .35;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 70px 70px;
      mask-image: linear-gradient(to bottom, black, transparent 85%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .page {
      width: min(1480px, calc(100% - 40px));
      margin: 0 auto;
    }
	
	
	.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch img {
  display: block;
  width: 26px;
  height: auto;
  border-radius: 2px;
}
	

 header {
  position: sticky;
  top: 0;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;

  border-bottom: 1px solid var(--line);

  background: rgba(3,3,3,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 54px;
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

    footer {
      border-top: 1px solid var(--line);
      border-bottom: 0;
      margin-top: 54px;
      padding: 34px 0 44px;
      color: var(--muted);
      font-size: 14px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .lang-switch {
      display: flex;
      gap: 8px;
    }

    .lang-switch a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 46px;
      height: 38px;
      padding: 0 14px;
      background: rgba(255,255,255,.08);
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: 999px;
      text-decoration: none;
      font-size: 12px;
      letter-spacing: .08em;
      transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
    }

    .lang-switch a:hover {
      border-color: var(--accent);
      transform: translateY(-1px);
    }

  

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(201,155,88,.72);
      display: grid;
      place-items: center;
      color: var(--accent);
      box-shadow: 0 0 28px rgba(201,155,88,.2);
    }

    .socials {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .social {
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.035);
      color: var(--text);
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
    }

    .social:hover {
      transform: translateY(-3px);
      border-color: rgba(201,155,88,.72);
      background: rgba(201,155,88,.1);
    }

    .main {
      display: grid;
      grid-template-columns: minmax(260px, 30%) minmax(0, 70%);
      gap: 34px;
      padding: 34px 0 0;
      align-items: start;
    }

    .left-column, .right-column {
      min-width: 0;
    }

    .hero-card {
      position: sticky;
      top: 24px;
      border-radius: 34px;
      padding: 1px;
      background:
        linear-gradient(135deg, rgba(201,155,88,.95), rgba(255,255,255,.08) 38%, rgba(127,92,255,.55));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-inner {
      border-radius: 33px 33px 0 0;
      overflow: hidden;
      background: #050505;
    }

    .hero-inner img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center;
      background: #050505;
      filter: contrast(1.06) saturate(1.04) brightness(.92);
    }

    .hero-caption {
      padding: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      border-top: 1px solid rgba(255,255,255,.12);
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      background: rgba(0,0,0,.28);
      backdrop-filter: blur(16px);
      color: rgba(255,255,255,.82);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 11px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 18px var(--green);
    }

    .caption-title {
      margin: 0;
      font-size: 16px;
      line-height: 1.45;
      letter-spacing: .01em;
      font-weight: 400;
      color: rgba(255,255,255,.88);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .pill {
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(14px);
      color: rgba(255,255,255,.82);
      font-size: 13px;
      font-weight: 700;
    }

    .copy-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      padding: 34px;
      box-shadow: 0 20px 70px rgba(0,0,0,.28);
      backdrop-filter: blur(20px);
    }

    .copy-panel h2 {
      margin: 0 0 22px;
      font-size: clamp(42px, 4.4vw, 76px);
      line-height: .92;
      letter-spacing: -.07em;
      font-weight: 300;
      color: rgba(247,241,231,.96);
      font-family: "Cormorant Garamond", Georgia, serif;
      text-wrap: balance;
    }

    .lead {
      font-size: 19px;
      color: var(--muted);
      margin: 0 0 26px;
    }

    .venue-bullets {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: grid;
      gap: 12px;
      color: rgba(247,241,231,.78);
      font-size: 15px;
      line-height: 1.45;
    }

    .venue-bullets li {
      position: relative;
      padding-left: 24px;
    }

    .venue-bullets li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 16px rgba(201,155,88,.45);
    }

    .rate-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border-radius: 22px;
      background: rgba(0,0,0,.34);
      border: 1px solid rgba(201,155,88,.34);
      margin: 26px 0;
    }

    .rate-label {
      color: var(--muted);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 800;
    }

    .rate {
      font-size: 54px;
      line-height: .9;
      font-weight: 300;
      letter-spacing: -.05em;
      color: var(--accent);
    }

    .rate small {
      font-size: 16px;
      color: var(--muted);
      letter-spacing: 0;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 500;
      border: 1px solid rgba(255,255,255,.16);
      transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
    }

    .button.primary {
      background: var(--green);
      color: #031a0c;
      border-color: transparent;
      box-shadow: 0 18px 44px rgba(37,211,102,.18);
    }

    .button.secondary {
      background: rgba(255,255,255,.06);
      color: var(--text);
    }

    .button:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 55px rgba(0,0,0,.24);
    }

    .cards {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .use-card {
      position: relative;
      min-height: 220px;
      border-radius: 24px;
      overflow: hidden;
      background: #111;
      border: 1px solid rgba(255,255,255,.12);
      isolation: isolate;
    }

    .use-card img {
      width: 100%;
      height: 100%;
      min-height: 220px;
      object-fit: cover;
      filter: brightness(.92) saturate(1.08) contrast(1.07);
      transition: transform .5s ease, filter .5s ease;
    }

  .use-card::after {
  background:
    linear-gradient(to top, rgba(0,0,0,.22), rgba(0,0,0,0) 45%);
}

    .use-card-content {
      position: absolute;
      inset: auto 18px 18px 18px;
      z-index: 2;
    }

    .use-card h3 {
      margin: 0 0 6px;
      font-size: 20px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -.02em;
    }

    .use-card p {
      margin: 0;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.35;
    }

    .use-card:hover img {
      transform: scale(1.06);
      filter: brightness(.76) saturate(1.16) contrast(1.08);
    }

    .micro-gallery {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .micro-gallery img {
      width: 100%;
      height: 138px;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      opacity: .9;
    }

    .footer-left strong {
      display: block;
      color: var(--text);
      margin-bottom: 6px;
    }

    @media (max-width: 900px) {
      .page {
        width: min(100% - 24px, 1480px);
      }

      header, footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .brand {
        align-items: flex-start;
        gap: 12px;
        line-height: 1.25;
      }

      .brand img {
        width: 72px;
        height: auto;
        flex: 0 0 auto;
      }

      .main {
        display: block !important;
        grid-template-columns: 1fr !important;
      }

      .left-column,
      .right-column {
        width: 100%;
        max-width: 100%;
      }

      .hero-card {
        position: relative;
        top: auto;
        margin-bottom: 24px;
      }

      .hero-inner img {
        width: 100%;
        height: auto;
      }

      .hero-caption {
        padding: 20px;
      }

      .copy-panel {
        padding: 22px;
      }

      .copy-panel h2 {
        font-size: clamp(36px, 12vw, 58px);
      }

      .cards,
      .micro-gallery {
        grid-template-columns: 1fr;
      }

      .micro-gallery img {
        height: 220px;
      }

      .rate-box {
        grid-template-columns: 1fr;
      }
    }
  