    :root {
      --black: #0d0d0d;
      --ink: #17110c;
      --cream: #f3f1ed;
      --white: #ffffff;
      --gold: #d9b35f;
      --gold-dark: #b98d37;
      --neon: #ff5bd6;
      --violet: #7d47ff;
      --muted: #6f665c;
      --line: rgba(23, 17, 12, 0.14);
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: "Manrope", Tahoma, sans-serif;
      font-weight: 600;
      line-height: 1.55;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .space-page {
      overflow: hidden;
      background:
        radial-gradient(circle at 84% 10%, rgba(255, 91, 214, 0.11), transparent 22rem),
        radial-gradient(circle at 14% 28%, rgba(217, 179, 95, 0.14), transparent 23rem),
        var(--cream);
    }

    .space-shell {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .space-nav {
      position: sticky;
      top: 0;
      z-index: 30;
      color: var(--white);
      background: rgba(13, 13, 13, 0.96);
      border-bottom: 1px solid rgba(217, 179, 95, 0.18);
      backdrop-filter: blur(14px);
    }

    .space-nav-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .space-brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 300px;
    }

    .space-mark {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border: 3px solid var(--gold);
      color: #ffffff;
      background: rgba(255, 255, 255, 0.03);
    }

    .space-mark svg {
      width: 34px;
      height: 34px;
    }

    .space-brand strong,
    .space-section-title,
    .space-hero h1,
    .space-card-title,
    .space-final h2 {
      font-family: "Montserrat", "Manrope", sans-serif;
      font-weight: 900;
      letter-spacing: 0;
      word-break: normal;
      overflow-wrap: normal;
      hyphens: none;
    }

    .space-brand strong {
      display: block;
      font-size: 20px;
      line-height: 1;
      text-transform: uppercase;
    }

    .space-brand-copy span {
      display: block;
      margin-top: 5px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .space-menu {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .space-menu a {
      transition: color 0.2s ease;
    }

    .space-menu a:hover {
      color: var(--gold);
    }

    .space-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
    }

    .space-phone {
      font-size: 18px;
      font-weight: 900;
    }

    .space-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 24px;
      border: 1px solid rgba(217, 179, 95, 0.72);
      border-radius: 8px;
      color: var(--ink);
      background: var(--gold);
      box-shadow:
        0 0 0 8px rgba(217, 179, 95, 0.08),
        0 20px 42px rgba(217, 179, 95, 0.26);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .space-button:hover {
      transform: translateY(-2px);
      background: #e7c572;
      box-shadow:
        0 0 0 8px rgba(217, 179, 95, 0.12),
        0 24px 54px rgba(217, 179, 95, 0.36);
    }

    .space-button svg {
      width: 18px;
      height: 18px;
    }

    .space-button-secondary {
      color: var(--white);
      background: rgba(13, 13, 13, 0.62);
      border-color: rgba(255, 255, 255, 0.26);
      box-shadow: none;
    }

    .space-button-secondary:hover {
      background: rgba(255, 255, 255, 0.10);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    }

    .space-hero {
      position: relative;
      min-height: 790px;
      display: grid;
      align-items: center;
      color: var(--white);
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.94) 0%, rgba(9, 9, 9, 0.82) 38%, rgba(9, 9, 9, 0.42) 72%, rgba(9, 9, 9, 0.68) 100%),
        linear-gradient(0deg, rgba(9, 9, 9, 0.34), rgba(9, 9, 9, 0.34)),
        url("/assets/images/hero-hall.jpg") center 46% / cover no-repeat;
    }

    .space-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image:
        linear-gradient(rgba(217, 179, 95, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 179, 95, 0.08) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(90deg, #000, transparent 74%);
    }

    .space-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
      gap: 56px;
      align-items: center;
      padding: 96px 0 92px;
    }

    .space-hero-grid > *,
    .space-section-head > *,
    .space-roof-grid > *,
    .space-terms > *,
    .space-final-grid > * {
      min-width: 0;
    }

    .space-hero h1 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(48px, 6vw, 86px);
      line-height: 0.96;
      text-transform: uppercase;
    }

    .space-lead {
      max-width: 680px;
      margin: 26px 0 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: clamp(18px, 2vw, 23px);
      font-weight: 700;
    }

    .space-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .space-hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      width: min(760px, 100%);
      margin-top: 52px;
      border: 1px solid rgba(217, 179, 95, 0.32);
      border-radius: 8px;
      overflow: hidden;
      background: rgba(217, 179, 95, 0.18);
      box-shadow: var(--shadow);
    }

    .space-stat {
      min-height: 120px;
      padding: 24px 22px;
      background: rgba(13, 13, 13, 0.72);
    }

    .space-stat strong {
      display: block;
      color: #ffffff;
      font-family: "Montserrat", "Manrope", sans-serif;
      font-size: 28px;
      line-height: 1;
      text-transform: uppercase;
    }

    .space-stat span {
      display: block;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
      font-weight: 800;
    }

    .space-neon-stack {
      display: grid;
      gap: 28px;
      justify-items: end;
    }

    .space-neon {
      width: min(360px, 100%);
      padding: 26px 28px;
      border: 2px solid rgba(255, 91, 214, 0.85);
      border-radius: 8px;
      color: #ffffff;
      background: rgba(13, 13, 13, 0.34);
      box-shadow:
        0 0 18px rgba(255, 91, 214, 0.45),
        inset 0 0 18px rgba(255, 91, 214, 0.18);
      font-size: 18px;
      font-weight: 900;
      text-align: center;
      transform: rotate(-2deg);
    }

    .space-neon:nth-child(2) {
      margin-right: 34px;
      border-color: rgba(217, 179, 95, 0.9);
      box-shadow:
        0 0 18px rgba(217, 179, 95, 0.38),
        inset 0 0 18px rgba(217, 179, 95, 0.16);
      transform: rotate(1.6deg);
    }

    .space-section {
      padding: 96px 0;
    }

    .space-section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
      gap: 46px;
      align-items: end;
      margin-bottom: 42px;
    }

    .space-kicker {
      margin: 0 0 14px;
      color: var(--gold-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .space-section-title {
      max-width: 780px;
      margin: 0;
      color: var(--ink);
      font-size: clamp(34px, 4.9vw, 62px);
      line-height: 1.02;
    }

    .space-section-note {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      font-weight: 700;
    }

    .space-feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .space-feature {
      min-height: 300px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 18px 54px rgba(23, 17, 12, 0.08);
    }

    .space-feature-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      color: var(--ink);
      background: var(--gold);
      border-radius: 50%;
    }

    .space-feature-icon svg {
      width: 25px;
      height: 25px;
    }

    .space-card-title {
      display: block;
      margin: 0;
      color: var(--ink);
      font-size: 21px;
      line-height: 1.16;
    }

    .space-feature p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .space-gallery-strip {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 18px;
      margin-top: 46px;
    }

    .space-gallery-strip figure {
      margin: 0;
      min-height: 420px;
      overflow: hidden;
      border-radius: 8px;
      background: #ded8cf;
      box-shadow: var(--shadow);
    }

    .space-gallery-strip figure:nth-child(2),
    .space-gallery-strip figure:nth-child(3) {
      min-height: 420px;
    }

    .space-gallery-strip img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .space-gallery-strip figure:nth-child(1) img {
      object-position: 52% center;
    }

    .space-gallery-strip figure:nth-child(2) img {
      object-position: center 42%;
    }

    .space-gallery-strip figure:nth-child(3) img {
      object-position: center 45%;
    }

    .space-dark {
      color: #ffffff;
      background:
        linear-gradient(90deg, rgba(13, 13, 13, 0.95), rgba(13, 13, 13, 0.76)),
        url("/assets/images/roof-night.jpg") center center / cover no-repeat;
    }

    .space-dark .space-kicker {
      color: var(--gold);
    }

    .space-dark .space-section-title {
      color: #ffffff;
    }

    .space-dark .space-section-note {
      color: rgba(255, 255, 255, 0.72);
    }

    .space-roof-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
      gap: 18px;
      align-items: stretch;
    }

    .space-roof-copy {
      padding: clamp(34px, 4vw, 56px);
      border: 1px solid rgba(217, 179, 95, 0.26);
      border-radius: 8px;
      background: rgba(13, 13, 13, 0.72);
      backdrop-filter: blur(16px);
    }

    .space-roof-copy p {
      margin: 22px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 18px;
      font-weight: 700;
    }

    .space-roof-media {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .space-roof-media figure {
      margin: 0;
      min-height: 560px;
      overflow: hidden;
      border-radius: 8px;
      background: #201a17;
      box-shadow: var(--shadow);
    }

    .space-roof-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .space-roof-media figure:first-child img {
      object-position: 38% center;
    }

    .space-roof-media figure:last-child img {
      object-position: center center;
    }

    .space-events {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .space-event {
      position: relative;
      min-height: 260px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      border-radius: 8px;
      color: #ffffff;
      background: #15110f;
      box-shadow: 0 18px 54px rgba(23, 17, 12, 0.12);
    }

    .space-event::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--event-image) center / cover no-repeat;
      transition: transform 0.55s ease;
    }

    .space-event::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(0deg, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0.2) 68%),
        linear-gradient(135deg, rgba(217, 179, 95, 0.22), transparent 42%);
    }

    .space-event:hover::before {
      transform: scale(1.06);
    }

    .space-event-content {
      position: relative;
      z-index: 1;
      padding: 24px;
    }

    .space-event h3 {
      margin: 0;
      color: #ffffff;
      font-family: "Montserrat", "Manrope", sans-serif;
      font-size: 22px;
      line-height: 1.1;
    }

    .space-event p {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.74);
      font-size: 14px;
      font-weight: 700;
    }

    .space-terms {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 22px;
      align-items: start;
    }

    .space-terms-photo {
      min-height: 660px;
      overflow: hidden;
      border-radius: 8px;
      background: #ded8cf;
      box-shadow: var(--shadow);
    }

    .space-terms-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 44%;
    }

    .space-terms-list {
      display: grid;
      gap: 14px;
    }

    .space-term {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 18px 54px rgba(23, 17, 12, 0.08);
    }

    .space-term-num {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--ink);
      background: var(--gold);
      font-family: "Montserrat", "Manrope", sans-serif;
      font-weight: 900;
    }

    .space-term h3 {
      margin: 0;
      font-family: "Montserrat", "Manrope", sans-serif;
      font-size: 22px;
      line-height: 1.18;
    }

    .space-term p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .space-final {
      padding: 92px 0;
      color: #ffffff;
      background:
        linear-gradient(120deg, rgba(13, 13, 13, 0.96), rgba(45, 29, 12, 0.88)),
        url("/assets/images/banquet-wide.jpg") center center / cover no-repeat;
    }

    .space-final-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
      gap: 48px;
      align-items: center;
    }

    .space-final h2 {
      max-width: 800px;
      margin: 0;
      color: #ffffff;
      font-size: clamp(36px, 5vw, 68px);
      line-height: 1.02;
      text-transform: uppercase;
    }

    .space-final p {
      max-width: 660px;
      margin: 22px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 20px;
      font-weight: 700;
    }

    .space-contact-list {
      display: grid;
      gap: 12px;
    }

    .space-contact {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 78px;
      padding: 18px;
      border: 1px solid rgba(217, 179, 95, 0.26);
      border-radius: 8px;
      background: rgba(13, 13, 13, 0.66);
      backdrop-filter: blur(14px);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .space-contact:hover {
      transform: translateY(-2px);
      background: rgba(13, 13, 13, 0.82);
    }

    .space-contact svg {
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
      color: var(--gold);
    }

    .space-contact strong {
      display: block;
      color: #ffffff;
      font-size: 18px;
      font-weight: 900;
    }

    .space-contact span {
      display: block;
      color: rgba(255, 255, 255, 0.64);
      font-size: 13px;
      font-weight: 800;
    }

    .space-footer {
      padding: 28px 0;
      color: rgba(255, 255, 255, 0.62);
      background: var(--black);
      font-size: 13px;
      font-weight: 800;
    }

    .space-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    @media (max-width: 1120px) {
      .space-menu {
        display: none;
      }

      .space-feature-grid,
      .space-events {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .space-shell {
        width: calc(100% - 28px);
        max-width: 700px;
      }

      .space-nav-inner {
        min-height: 68px;
      }

      .space-brand {
        min-width: 0;
      }

      .space-brand-copy span,
      .space-actions .space-phone {
        display: none;
      }

      .space-mark {
        width: 44px;
        height: 44px;
      }

      .space-brand strong {
        font-size: 16px;
      }

      .space-actions .space-button {
        min-height: 42px;
        padding: 0 14px;
        font-size: 12px;
      }

      .space-hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(9, 9, 9, 0.90), rgba(9, 9, 9, 0.74)),
          url("/assets/images/hero-hall.jpg") center center / cover no-repeat;
      }

      .space-hero-grid,
      .space-section-head,
      .space-roof-grid,
      .space-terms,
      .space-final-grid,
      .space-gallery-strip {
        grid-template-columns: 1fr;
      }

      .space-hero-grid {
        gap: 34px;
        padding: 76px 0 58px;
      }

      .space-hero h1 {
        font-size: clamp(36px, 10vw, 56px);
        line-height: 1.04;
      }

      .space-neon-stack {
        justify-items: start;
      }

      .space-neon:nth-child(2) {
        margin-right: 0;
      }

      .space-section {
        padding: 72px 0;
      }

      .space-gallery-strip figure,
      .space-gallery-strip figure:nth-child(2),
      .space-gallery-strip figure:nth-child(3) {
        min-height: 360px;
      }

      .space-roof-media {
        grid-template-columns: 1fr;
      }

      .space-roof-media figure {
        min-height: 420px;
      }

      .space-terms-photo {
        min-height: 440px;
      }
    }

    @media (max-width: 560px) {
      .space-actions .space-button {
        display: none;
      }

      .space-actions {
        display: none;
      }

      .space-hero h1 {
        max-width: 350px;
        font-size: clamp(32px, 10vw, 39px);
      }

      .space-section-title,
      .space-final h2 {
        max-width: 340px;
        font-size: clamp(27px, 7.8vw, 34px);
        line-height: 1.08;
      }

      .space-lead,
      .space-section-note,
      .space-roof-copy p,
      .space-final p {
        max-width: 340px;
        font-size: 16px;
      }

      .space-hero-actions {
        flex-direction: column;
      }

      .space-button {
        width: 100%;
      }

      .space-hero-stats,
      .space-feature-grid,
      .space-events {
        grid-template-columns: 1fr;
      }

      .space-stat {
        min-height: 100px;
      }

      .space-feature {
        min-height: auto;
      }

      .space-event {
        min-height: 300px;
      }

      .space-term {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px;
      }

      .space-term-num {
        width: 44px;
        height: 44px;
      }

      .space-footer-inner {
        display: block;
      }
    }
