
    :root {
      --ink: #17201b;
      --muted: #637066;
      --line: rgba(23,32,27,.12);
      --cream: #f8f2e8;
      --paper: #fffaf1;
      --mint: #dff3e6;
      --sage: #b9d9c4;
      --gold: #d2ad68;
      --wine: #762f3b;
      --blue: #cde0ee;
      --shadow: 0 28px 80px rgba(33, 28, 21, .16);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background: var(--cream);
      letter-spacing: 0;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(248,242,232,.82);
      border-bottom: 1px solid var(--line);
    }
    .shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
    .nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
    .brand { font-weight: 900; font-size: 22px; line-height: 1; }
    .brand span { display: block; font-size: 11px; color: var(--muted); margin-top: 6px; font-weight: 700; text-transform: uppercase; }
    .navlinks { display: flex; align-items: center; gap: 18px; font-size: 14px; color: #314239; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--ink);
      color: white;
      font-weight: 800;
      box-shadow: 0 14px 28px rgba(23,32,27,.16);
    }
    .ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.6);
      font-weight: 800;
    }
    .portal-frame {
      width: min(1780px, calc(100% - 56px));
      margin: 0 auto;
      padding: 0 0 18px;
    }
    .hero-stage {
      position: relative;
      min-height: min(920px, calc(100vh - 36px));
      border-radius: 0 0 34px 34px;
      overflow: hidden;
      color: white;
      background:
        linear-gradient(90deg, rgba(22, 23, 15, .72), rgba(22, 23, 15, .34) 54%, rgba(22, 23, 15, .58)),
        var(--hero-image);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
      transition: background-image .45s ease, background-position .45s ease;
    }
    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.04) 34%, rgba(0,0,0,.42)),
        radial-gradient(circle at 25% 40%, rgba(255,255,255,.16), transparent 32%);
      pointer-events: none;
    }
    .hero-nav {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      min-height: 104px;
      padding: 0 82px;
      border-bottom: 1px solid rgba(255,255,255,.22);
    }
    .hero-logo {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 900;
      font-size: 24px;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .hero-menu {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 24px;
      font-weight: 800;
      color: rgba(255,255,255,.9);
    }
    .hero-tools {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .circle-btn, .menu-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.38);
      background: rgba(255,255,255,.08);
      color: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }
    .banquet-order {
      min-width: 230px;
      border: 1px solid rgba(255,255,255,.44);
      background: rgba(255,255,255,.08);
      color: white;
      min-height: 54px;
      border-radius: 999px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      backdrop-filter: blur(12px);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      min-height: calc(min(920px, calc(100vh - 36px)) - 104px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* Reserve breathing room above the glass navigation panel. */
      padding: 70px 86px 240px;
    }
    .hero-eyebrow {
      margin: 0 0 26px;
      color: rgba(255,255,255,.78);
      font-size: 18px;
      font-weight: 800;
      max-width: 620px;
    }
    .hero-title {
      margin: 0;
      max-width: 900px;
      font-size: clamp(58px, 7.4vw, 128px);
      line-height: .92;
      letter-spacing: 0;
      text-shadow: 0 18px 44px rgba(0,0,0,.24);
    }
    .hero-subtitle {
      margin: 34px 0 0;
      max-width: 760px;
      color: rgba(255,255,255,.82);
      font-size: clamp(24px, 2.2vw, 38px);
      line-height: 1.25;
      font-weight: 750;
    }
    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-top: 54px;
      flex-wrap: wrap;
      position: relative;
      z-index: 6;
    }
    .hero-primary {
      display: inline-grid;
      grid-template-columns: 1fr 64px;
      align-items: center;
      gap: 18px;
      min-width: 320px;
      min-height: 78px;
      padding-left: 38px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.35);
      background: rgba(255,255,255,.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
      backdrop-filter: blur(14px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .02em;
    }
    .hero-primary i {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.35);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-style: normal;
      font-size: 28px;
    }
    .hero-link {
      color: rgba(255,255,255,.86);
      font-size: 18px;
      font-weight: 850;
      border-bottom: 1px dotted rgba(255,255,255,.58);
      padding-bottom: 6px;
    }
    .hero-glass {
      position: absolute;
      z-index: 3;
      left: 86px;
      bottom: 72px;
      width: min(1110px, calc(100% - 172px));
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-radius: 24px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }
    .hero-glass article {
      min-height: 108px;
      padding: 24px 28px;
      border-left: 1px solid rgba(255,255,255,.22);
    }
    .hero-glass article:first-child { border-left: 0; }
    .hero-glass strong {
      display: block;
      font-size: 22px;
      margin-bottom: 9px;
    }
    .hero-glass span {
      color: rgba(255,255,255,.72);
      font-size: 17px;
      font-weight: 700;
    }
    .hero-slider {
      position: absolute;
      z-index: 6;
      right: 86px;
      bottom: 220px;
      display: flex;
      gap: 10px;
    }
    .hero-slider button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      padding: 0;
      border: 1px solid rgba(255,255,255,.7);
      background: transparent;
      cursor: pointer;
    }
    .hero-slider button.active { background: white; }
    .app-hero { padding: 54px 0 36px; overflow: hidden; }
    .phone-row {
      display: grid;
      grid-template-columns: .9fr 1.12fr .9fr;
      align-items: center;
      gap: 22px;
      width: min(1200px, calc(100% - 36px));
      margin: 0 auto;
    }
    .phone {
      min-height: 650px;
      border-radius: 38px;
      padding: 24px;
      background: var(--paper);
      border: 10px solid #171f1b;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }
    .phone-main {
      min-height: 720px;
      background:
        linear-gradient(rgba(16,22,18,.2), rgba(16,22,18,.64)),
        url("../rigarest-events/newlyweds-bouquet.jpg");
      background-size: cover;
      background-position: center;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .phone-top { display: flex; justify-content: space-between; font-weight: 800; font-size: 13px; opacity: .82; }
    .phone h1 { font-size: clamp(42px, 5vw, 78px); line-height: .92; margin: 28px 0 16px; letter-spacing: 0; }
    .phone-main p { font-size: 18px; line-height: 1.45; color: rgba(255,255,255,.84); max-width: 420px; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
    .hero-actions .ghost { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.12); }
    .metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
    .metric { padding: 16px; border-radius: 22px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.22); }
    .metric strong { display: block; font-size: 24px; }
    .metric span { font-size: 12px; opacity: .78; }
    .mini-title { display: flex; justify-content: space-between; align-items: center; margin: 24px 0 12px; }
    .mini-title h2 { margin: 0; font-size: 24px; }
    .event-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .event-chip {
      min-height: 116px;
      border-radius: 24px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-weight: 900;
      background: var(--mint);
    }
    .event-chip:nth-child(2) { background: var(--blue); }
    .event-chip:nth-child(3) { background: #f2d7db; }
    .event-chip:nth-child(4) { background: #f1dfb8; }
    .place-row {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.72);
      margin-bottom: 10px;
    }
    .place-row i { width: 36px; height: 36px; border-radius: 13px; background: var(--sage); display: block; font-style: normal; text-align: center; line-height: 36px; font-weight: 900; }
    .place-row strong { display: block; }
    .place-row small { color: var(--muted); }
    .kz-panel {
      background: #151d19;
      color: white;
    }
    .kz-badge {
      aspect-ratio: 1;
      border-radius: 32px;
      background:
        linear-gradient(rgba(18,24,20,.1), rgba(18,24,20,.72)),
        url("../rigarest-events/wedding-couple.jpg");
      background-size: cover;
      background-position: center;
      margin: 24px 0;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .kz-badge strong { font-size: 44px; }
    .dark-list .place-row { background: rgba(255,255,255,.1); }
    .section { padding: 70px 0; }
    .section:nth-of-type(even) { background: rgba(255,250,241,.72); }
    .section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
    .section-head h2 { font-size: clamp(34px, 4vw, 58px); line-height: .98; margin: 0; max-width: 780px; }
    .section-head p { color: var(--muted); max-width: 420px; line-height: 1.55; margin: 0; }
    .guide-dashboard-section {
      padding: 82px 0 70px;
      background: linear-gradient(180deg, #fffaf1, #f8f2e8);
    }
    .guide-dashboard {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
      gap: 24px;
      align-items: start;
    }
    .guide-phone {
      min-width: 0;
      width: 100%;
      border-radius: 42px;
      padding: 32px;
      background: #fffaf4;
      box-shadow: 0 24px 70px rgba(33,28,21,.1);
      border: 1px solid rgba(23,32,27,.08);
    }
    .guide-intro {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(260px, .75fr);
      gap: clamp(24px, 4vw, 52px);
      align-items: end;
      margin-bottom: 26px;
    }
    .guide-intro span {
      display: inline-flex;
      width: max-content;
      margin-bottom: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #e9ffc0;
      color: #7b9530;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .guide-intro h2 {
      margin: 0;
      max-width: 420px;
      font-size: clamp(32px, 3.1vw, 46px);
      line-height: 1;
    }
    .guide-intro p {
      margin: 0;
      max-width: 430px;
      color: #657168;
      font-size: clamp(15px, 1.35vw, 18px);
      line-height: 1.5;
      font-weight: 750;
    }
    .event-tile-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .event-tile {
      min-width: 0;
      min-height: 190px;
      border-radius: 32px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #152019;
      font-weight: 950;
      border: 1px solid rgba(23,32,27,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .event-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 46px rgba(33,28,21,.1);
    }
    .event-tile small {
      font-size: 24px;
      line-height: 1;
      font-weight: 950;
    }
    .event-tile strong {
      display: block;
      margin-top: 34px;
      font-size: 28px;
      line-height: 1;
      overflow-wrap: normal;
    }
    .event-tile em {
      display: block;
      margin-top: 10px;
      color: rgba(21,32,25,.58);
      font-size: 14px;
      line-height: 1.35;
      font-style: normal;
      font-weight: 800;
    }
    .event-tile b {
      margin-top: 18px;
      font-size: 15px;
      font-weight: 950;
    }
    .event-tile.mint { background: #dbf1e2; }
    .event-tile.blue { background: #cde2f1; }
    .event-tile.pink { background: #f2d5dc; }
    .event-tile.gold { background: #f2dfb6; }
    .top-sections-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin: 34px 0 18px;
    }
    .top-sections-head h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1;
    }
    .top-sections-head a {
      padding: 11px 15px;
      border-radius: 999px;
      background: #17201b;
      color: white;
      font-size: 16px;
      font-weight: 900;
    }
    .top-list {
      display: grid;
      gap: 18px;
    }
    .top-list-card {
      min-height: 104px;
      border-radius: 26px;
      background: white;
      display: grid;
      grid-template-columns: 58px 1fr auto;
      align-items: center;
      gap: 18px;
      padding: 18px;
      box-shadow: 0 18px 44px rgba(33,28,21,.06);
    }
    .top-list-card i {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #b9dcc6;
      color: #152019;
      font-size: 24px;
      font-weight: 950;
      font-style: normal;
    }
    .top-list-card strong {
      display: block;
      font-size: 23px;
      line-height: 1.12;
    }
    .top-list-card span {
      display: block;
      margin-top: 8px;
      color: #657168;
      font-size: 16px;
      line-height: 1.22;
      overflow-wrap: anywhere;
    }
    .top-list-card b {
      font-size: 30px;
    }
    .guide-editorial-panel {
      position: sticky;
      top: 96px;
      border-radius: 38px;
      padding: 36px;
      color: white;
      background:
        linear-gradient(180deg, rgba(18,24,20,.22), rgba(18,24,20,.78)),
        url("../rigarest-events/seafood.jpg");
      background-size: cover;
      background-position: center;
      min-height: 710px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .guide-editorial-panel h2 {
      margin: 0 0 18px;
      max-width: 560px;
      font-size: clamp(44px, 5vw, 72px);
      line-height: .96;
    }
    .guide-editorial-panel p {
      max-width: 520px;
      color: rgba(255,255,255,.78);
      font-size: 20px;
      line-height: 1.55;
    }
    .guide-editorial-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }
    .guide-editorial-tags a {
      padding: 11px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.24);
      color: white;
      font-weight: 800;
      backdrop-filter: blur(12px);
    }
    .guide-ribbon {
      padding: 78px 0;
      overflow: hidden;
      background:
        linear-gradient(102deg, transparent 0 47%, rgba(211,255,63,.18) 47% 55%, transparent 55%),
        #f5f0e7;
    }
    .route-scroll {
      display: flex;
      gap: 26px;
      overflow-x: auto;
      padding: 8px max(18px, calc((100vw - 1180px) / 2)) 28px;
      scroll-snap-type: x mandatory;
      align-items: stretch;
    }
    .route-scroll::-webkit-scrollbar { height: 10px; }
    .route-scroll::-webkit-scrollbar-thumb { background: rgba(23,32,27,.18); border-radius: 999px; }
    .route-stop {
      position: relative;
      min-height: 620px;
      border-radius: 36px;
      overflow: hidden;
      color: white;
      background:
        linear-gradient(180deg, rgba(16,22,18,.18), rgba(16,22,18,.74)),
        var(--stop-image);
      background-size: cover;
      background-position: center;
      border: 0;
      box-shadow: 0 22px 70px rgba(33,28,21,.14);
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 34px;
      flex: 0 0 min(390px, 86vw);
    }
    .route-stop.is-wide { flex-basis: min(680px, 88vw); }
    .route-code,
    .route-time {
      position: absolute;
      top: 52px;
      border-radius: 999px;
      padding: 14px 22px;
      background: rgba(255,255,255,.28);
      backdrop-filter: blur(12px);
      color: white;
      font-weight: 950;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .route-code { left: 44px; }
    .route-time { right: 44px; }
    .route-stop i {
      display: none;
    }
    .route-stop strong {
      max-width: 520px;
      font-size: clamp(42px, 5vw, 70px);
      line-height: .92;
      font-weight: 950;
    }
    .route-stop:not(.is-wide) strong {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      max-height: 360px;
      font-size: 58px;
    }
    .route-stop em {
      max-width: 560px;
      margin-top: 18px;
      color: rgba(255,255,255,.78);
      font-style: normal;
      font-size: 22px;
      line-height: 1.36;
    }
    .route-stop:not(.is-wide) em { display: none; }
    .route-stop b {
      width: fit-content;
      margin-top: 28px;
      padding: 16px 28px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.78);
      color: white;
      font-size: 20px;
      font-weight: 950;
      backdrop-filter: blur(10px);
    }
    .format-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }
    .format-card {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-radius: 30px;
      background: white;
      box-shadow: 0 18px 48px rgba(33,28,21,.08);
      overflow: hidden;
      border: 1px solid rgba(23,32,27,.08);
    }
    .format-card > span {
      display: block;
      min-height: 190px;
      padding: 30px;
      border-radius: 24px;
      margin: 16px;
    }
    .format-card.sky > span { background: #e3f3ff; }
    .format-card.peach > span { background: #f8dfc8; }
    .format-card.mint > span { background: #dff5ed; }
    .format-card.lavender > span { background: #e2d8ff; }
    .format-card strong {
      display: block;
      font-size: clamp(30px, 3.3vw, 46px);
      line-height: 1;
      font-weight: 950;
    }
    .format-card em {
      display: block;
      max-width: 640px;
      margin-top: 18px;
      color: #5f6872;
      font-size: 22px;
      line-height: 1.35;
      font-style: normal;
    }
    .format-card i {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
      font-style: normal;
    }
    .format-card i b {
      padding: 8px 13px;
      border-radius: 10px;
      background: rgba(255,255,255,.58);
      color: #4d5358;
      font-size: 17px;
      font-weight: 950;
    }
    .format-card small {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px 26px;
      color: #171b28;
      font-size: 25px;
      font-weight: 950;
    }
    .format-card small b { font-size: 34px; }
    .story-strip {
      padding: 72px 0;
      background:
        linear-gradient(102deg, transparent 0 7%, rgba(211,255,63,.2) 7% 15%, transparent 15%),
        #fffdf8;
      overflow: hidden;
    }
    .story-layout {
      display: grid;
      grid-template-columns: minmax(360px, 1.15fr) repeat(3, minmax(220px, .95fr));
      gap: 24px;
      align-items: start;
    }
    .story-copy { min-width: 0; max-width: 620px; }
    .story-copy h2 {
      margin: 0;
      font-size: clamp(34px, 3.2vw, 48px);
      line-height: 1.04;
      letter-spacing: 0;
      overflow-wrap: normal;
      text-wrap: balance;
    }
    .story-copy p {
      max-width: 540px;
      margin: 24px 0 0;
      color: #7a8190;
      font-size: 20px;
      line-height: 1.5;
      font-weight: 700;
    }
    .story-actions {
      display: grid;
      gap: 16px;
      max-width: 420px;
      margin-top: 32px;
    }
    .acid-btn {
      min-height: 58px;
      border-radius: 16px;
      background: #d7ff3e;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
      font-size: 18px;
      color: #141b17;
    }
    .line-btn {
      min-height: 58px;
      border-radius: 16px;
      border: 1px solid rgba(23,32,27,.14);
      background: rgba(255,255,255,.78);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
      font-size: 18px;
    }
    .story-card {
      position: relative;
      min-width: 0;
      color: #171b28;
    }
    .story-card img {
      width: 100%;
      aspect-ratio: 1.45 / 1;
      object-fit: cover;
      border-radius: 22px;
    }
    .story-card span {
      display: inline-flex;
      margin: 18px 0 12px;
      padding: 8px 13px;
      border-radius: 10px;
      background: #e9ffc0;
      color: #7b9530;
      text-transform: uppercase;
      font-weight: 950;
      letter-spacing: .04em;
    }
    .story-card h3 {
      margin: 0;
      font-size: clamp(24px, 2.2vw, 34px);
      line-height: 1.08;
      text-wrap: balance;
    }
    .story-card p {
      margin: 14px 0 0;
      color: #858b99;
      font-size: 17px;
      line-height: 1.4;
      font-weight: 700;
    }
    .story-card i {
      position: absolute;
      right: -14px;
      top: calc(100vw / 10);
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #d7ff3e;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-style: normal;
      font-size: 34px;
      box-shadow: 0 14px 34px rgba(109,147,0,.24);
    }
    .all-halls-section {
      padding: 86px 0;
      background: #fffaf1;
    }
    .all-halls-layout {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 28px;
      align-items: start;
    }
    .halls-verified {
      position: sticky;
      top: 94px;
      min-height: 640px;
      border-radius: 38px;
      padding: 34px;
      color: white;
      background:
        linear-gradient(180deg, rgba(18,24,20,.18), rgba(18,24,20,.78)),
        url("../rigarest-events/night-tent.jpg");
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }
    .halls-verified span,
    .hall-link span {
      width: fit-content;
      color: #7b3a43;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .12em;
    }
    .halls-verified span {
      color: #d7ff3e;
      background: rgba(23,32,27,.34);
      border-radius: 999px;
      padding: 10px 14px;
      margin-bottom: 18px;
    }
    .halls-verified h2 {
      margin: 0;
      font-size: clamp(42px, 5vw, 72px);
      line-height: .94;
    }
    .halls-verified p {
      max-width: 520px;
      color: rgba(255,255,255,.78);
      font-size: 20px;
      line-height: 1.5;
    }
    .halls-verified dl {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 26px 0 0;
    }
    .halls-verified div {
      padding: 16px;
      border-radius: 20px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(12px);
    }
    .halls-verified dt {
      color: rgba(255,255,255,.58);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
    }
    .halls-verified dd {
      margin: 7px 0 0;
      font-size: 18px;
      font-weight: 950;
    }
    .halls-list-panel {
      min-width: 0;
      display: grid;
      gap: 18px;
    }
    .halls-panel-head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: end;
      padding: 28px;
      border-radius: 34px;
      background: #f3f9e2;
      border: 1px solid rgba(23,32,27,.08);
    }
    .halls-panel-head h2 {
      margin: 0;
      font-size: clamp(34px, 4vw, 58px);
      line-height: .98;
    }
    .halls-panel-head p {
      margin: 12px 0 0;
      color: #657168;
      line-height: 1.5;
      max-width: 680px;
    }
    .halls-count {
      width: 114px;
      height: 114px;
      border-radius: 30px;
      background: #d7ff3e;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 950;
      color: #152019;
    }
    .halls-count strong { font-size: 38px; line-height: 1; }
    .halls-count small { font-size: 12px; text-transform: uppercase; }
    .halls-page-link {
      min-height: 92px;
      padding: 22px 24px;
      border-radius: 28px;
      background: #17201b;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      box-shadow: 0 18px 46px rgba(33,28,21,.12);
    }
    .halls-page-link strong {
      font-size: 24px;
      line-height: 1.1;
    }
    .halls-page-link span {
      color: #d7ff3e;
      font-weight: 950;
      white-space: nowrap;
    }
    .hall-link-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      max-height: 820px;
      overflow: auto;
      padding-right: 8px;
    }
    .hall-link-grid::-webkit-scrollbar { width: 10px; }
    .hall-link-grid::-webkit-scrollbar-thumb { background: rgba(23,32,27,.16); border-radius: 999px; }
    .venue-preview-card {
      min-height: 240px;
      overflow: hidden;
      border-radius: 28px;
      background: white;
      border: 1px solid rgba(23,32,27,.08);
      box-shadow: 0 14px 36px rgba(33,28,21,.06);
    }
    .venue-preview-card.verified { background: #17201b; color: white; }
    .venue-preview-body { min-height: 240px; padding: 22px; display: grid; gap: 10px; align-content: space-between; }
    .venue-preview-body > span {
      width: max-content;
      padding: 7px 10px;
      border-radius: 999px;
      background: #eef3ff;
      color: #4d69c8;
      font-size: 11px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .venue-preview-card.verified .venue-preview-body > span { background: var(--acid); color: #17201b; }
    .venue-preview-body strong { font-size: 26px; line-height: 1.02; }
    .venue-preview-card.verified .venue-preview-body small { color: rgba(255,255,255,.72); }
    .venue-preview-body b { color: #4d69c8; font-size: 16px; line-height: 1.1; }
    .venue-preview-card.verified .venue-preview-body b { color: var(--acid); }
    .venue-preview-body small { color: #69736b; font-weight: 850; overflow-wrap: anywhere; }
    .venue-preview-body em { display: flex; flex-wrap: wrap; gap: 8px; font-style: normal; }
    .venue-preview-body em a { padding: 7px 10px; border-radius: 999px; background: #f1f3f8; color: #737a87; font-size: 11px; font-style: normal; font-weight: 950; text-transform: uppercase; }
    .venue-preview-card.verified .venue-preview-body em a { background: rgba(255,255,255,.12); color: white; }
    .hall-link {
      min-height: 148px;
      padding: 20px;
      border-radius: 28px;
      background: white;
      border: 1px solid rgba(23,32,27,.08);
      box-shadow: 0 14px 36px rgba(33,28,21,.06);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }
    .hall-link strong {
      display: block;
      font-size: 23px;
      line-height: 1.08;
    }
    .hall-link small {
      color: #69736b;
      font-weight: 800;
      overflow-wrap: anywhere;
    }
    .service-grid, .venue-grid, .article-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      counter-reset: guide-card;
    }
    .visual-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }
    .visual-card {
      position: relative;
      min-height: 360px;
      padding: 24px;
      border-radius: 34px;
      overflow: hidden;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      isolation: isolate;
      background:
        linear-gradient(180deg, rgba(15,22,18,.1), rgba(15,22,18,.84)),
        var(--card-image);
      background-size: cover;
      background-position: center;
      border: 0;
      box-shadow: 0 24px 60px rgba(33,28,21,.12);
    }
    .visual-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(120deg, rgba(215,255,62,.16), transparent 42%);
      opacity: .78;
    }
    .visual-card.feature {
      grid-column: span 2;
      min-height: 430px;
    }
    .visual-card span {
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.24);
      backdrop-filter: blur(12px);
      color: white;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .1em;
    }
    .visual-card strong {
      display: block;
      max-width: 620px;
      margin-top: auto;
      font-size: clamp(30px, 3.2vw, 52px);
      line-height: .98;
      font-weight: 950;
      text-shadow: 0 8px 28px rgba(0,0,0,.22);
    }
    .visual-card:not(.feature) strong {
      font-size: clamp(26px, 2.2vw, 36px);
    }
    .visual-card em {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
      font-style: normal;
    }
    .visual-card em b {
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.86);
      color: #17201b;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }
    .visual-card i {
      width: fit-content;
      margin-top: 24px;
      padding: 12px 16px;
      border-radius: 999px;
      background: #d7ff3e;
      color: #17201b;
      font-style: normal;
      font-weight: 950;
    }
    .guide-card {
      display: flex;
      min-height: 238px;
      flex-direction: column;
      justify-content: space-between;
      padding: 22px;
      border-radius: 28px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 18px 42px rgba(33,28,21,.08);
    }
    .guide-card.feature { background: #17201b; color: #fff; grid-column: span 2; }
    .guide-card span { color: var(--wine); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
    .guide-card.feature span { color: var(--gold); }
    .guide-card h3 { margin: 14px 0 10px; font-size: 24px; line-height: 1.08; }
    .guide-card p { margin: 0; color: var(--muted); line-height: 1.5; }
    .guide-card.feature p { color: rgba(255,255,255,.72); }
    .guide-card b {
      margin-top: 18px;
      font-size: 12px;
      color: rgba(23,32,27,.55);
      overflow-wrap: anywhere;
    }
    .guide-card.feature b { color: rgba(255,255,255,.5); }
    .blog-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 42px;
    }
    .blog-tabs a {
      display: inline-flex;
      align-items: center;
      min-height: 54px;
      padding: 14px 22px;
      border-radius: 999px;
      background: #191d2a;
      color: white;
      font-size: 19px;
      font-weight: 950;
    }
    .blog-board {
      display: grid;
      grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
      gap: 22px;
      padding: 26px;
      border-radius: 34px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: 0 24px 60px rgba(33,28,21,.08);
    }
    .blog-board > * {
      min-width: 0;
    }
    .blog-intro-card {
      min-height: 520px;
      padding: 36px;
      border-radius: 28px;
      background: #dff0ff;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow: hidden;
    }
    .blog-intro-card span {
      color: #8bad35;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .blog-intro-card h2 {
      margin: 18px 0 24px;
      max-width: 100%;
      color: #1d2130;
      font-size: clamp(36px, 3.4vw, 52px);
      line-height: .98;
      overflow-wrap: normal;
    }
    .blog-intro-card p {
      color: #697080;
      font-size: clamp(17px, 1.35vw, 20px);
      line-height: 1.48;
    }
    .blog-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .blog-card {
      min-height: 154px;
      padding: 22px;
      border-radius: 24px;
      background: white;
      border: 1px solid rgba(29,33,48,.12);
      color: #1d2130;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-width: 0;
      overflow: hidden;
    }
    .blog-card.is-featured {
      background: #17201b;
      color: white;
    }
    .blog-card span {
      color: #8bad35;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .blog-card strong {
      display: block;
      margin: 12px 0 14px;
      font-size: clamp(20px, 1.7vw, 24px);
      line-height: 1.1;
      overflow-wrap: break-word;
    }
    .blog-card small {
      color: #818797;
      font-size: 15px;
      font-weight: 850;
    }
    .blog-card.is-featured small { color: rgba(255,255,255,.68); }
    .route-band {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
    }
    .editorial {
      min-height: 430px;
      border-radius: 34px;
      padding: 34px;
      color: white;
      background:
        linear-gradient(90deg, rgba(18,24,20,.78), rgba(18,24,20,.2)),
        url("../rigarest-events/floral-table.jpg");
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: end;
    }
    .editorial h2 { font-size: clamp(38px, 5vw, 70px); margin: 0 0 14px; line-height: .96; }
    .editorial p { max-width: 600px; color: rgba(255,255,255,.78); line-height: 1.55; }
    .route-list { display: grid; gap: 12px; }
    .route-item { padding: 20px; border-radius: 24px; background: var(--paper); border: 1px solid var(--line); }
    .route-item strong { display: block; font-size: 20px; margin-bottom: 7px; }
    .route-item span { color: var(--muted); }
    .pill-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
    .pill-cloud a {
      padding: 11px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.58);
      font-weight: 800;
      font-size: 14px;
    }
    .faq-section {
      padding: 78px 0;
      background: #f5f0e7;
    }
    .faq-section .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
      gap: 26px;
      align-items: end;
      margin-bottom: 30px;
    }
    .faq-section .section-head h2 {
      max-width: 900px;
      font-size: clamp(38px, 5vw, 74px);
      line-height: .95;
    }
    .faq-section .section-head p {
      display: block;
      margin: 0 0 8px;
      color: var(--muted);
      font-size: clamp(17px, 1.6vw, 22px);
      line-height: 1.45;
    }
    .faq-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .faq-list details {
      padding: 0;
      border-radius: 22px;
      background: #fffaf4;
      border: 1px solid rgba(23,32,27,.12);
      box-shadow: 0 12px 34px rgba(33,28,21,.04);
      overflow: hidden;
    }
    .faq-list summary {
      min-height: 74px;
      padding: 20px 22px;
      cursor: pointer;
      font-weight: 950;
      font-size: clamp(18px, 1.55vw, 22px);
      line-height: 1.18;
      color: #17201b;
      list-style: none;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::before {
      content: "+";
      display: inline-block;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #d7ff3e;
      color: #17201b;
      text-align: center;
      line-height: 28px;
      flex: 0 0 auto;
      font-size: 18px;
      transition: transform .2s ease;
    }
    .faq-list details[open] summary::before {
      content: "−";
    }
    .faq-list details p {
      margin: 0;
      padding: 0 22px 22px 62px;
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.55;
    }
    .celebration-footer {
      padding: 42px 0 28px;
      background:
        radial-gradient(circle at 16% 12%, rgba(215,255,62,.22), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(207,169,95,.24), transparent 32%),
        #17201b;
      color: white;
      overflow: hidden;
    }
    .footer-party {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
      gap: 20px;
      align-items: stretch;
    }
    .footer-hero,
    .footer-request,
    .footer-links,
    .footer-note {
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(16px);
      border-radius: 32px;
    }
    .footer-hero {
      min-height: 360px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .footer-kicker {
      width: max-content;
      padding: 9px 13px;
      border-radius: 999px;
      background: #d7ff3e;
      color: #17201b;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .footer-hero h2 {
      max-width: 780px;
      margin: 22px 0 18px;
      color: white;
      font-size: clamp(42px, 6vw, 92px);
      line-height: .9;
    }
    .footer-hero p {
      max-width: 760px;
      margin: 0;
      color: rgba(255,255,255,.72);
      font-size: 19px;
      line-height: 1.55;
    }
    .footer-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }
    .footer-actions a,
    .footer-request a {
      min-height: 54px;
      padding: 15px 20px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
    }
    .footer-actions a:first-child,
    .footer-request a {
      background: #d7ff3e;
      color: #17201b;
    }
    .footer-actions a:last-child {
      background: rgba(255,255,255,.12);
      color: white;
      border: 1px solid rgba(255,255,255,.18);
    }
    .footer-request {
      padding: 28px;
      display: grid;
      align-content: space-between;
      gap: 24px;
    }
    .footer-request strong {
      color: white;
      font-size: 32px;
      line-height: 1.02;
    }
    .footer-request ul {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
      color: rgba(255,255,255,.74);
      font-weight: 800;
    }
    .footer-links {
      grid-column: 1 / -1;
      padding: 26px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .footer-links h3 {
      margin: 0 0 14px;
      color: white;
      font-size: 22px;
    }
    .footer-links a {
      display: block;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-weight: 850;
    }

    .route-stop {
      transition: flex-basis .28s ease, transform .22s ease, box-shadow .22s ease, background-size .22s ease;
    }
    .route-scroll:hover .route-stop,
    .route-scroll:focus-within .route-stop {
      flex-basis: min(390px, 86vw);
    }
    .route-scroll:hover .route-stop strong,
    .route-scroll:focus-within .route-stop strong {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      max-height: 360px;
      max-width: none;
      font-size: 58px;
    }
    .route-scroll:hover .route-stop em,
    .route-scroll:focus-within .route-stop em {
      display: none;
    }
    .route-stop:hover,
    .route-stop:focus-visible {
      flex-basis: min(680px, 88vw) !important;
      transform: translateY(-2px);
      box-shadow: 0 30px 82px rgba(33,28,21,.2);
      background-size: cover;
      background-position: center;
      z-index: 4;
    }
    .route-stop:hover strong,
    .route-stop:focus-visible strong {
      writing-mode: horizontal-tb !important;
      transform: none !important;
      max-height: none !important;
      max-width: 520px;
      font-size: clamp(42px, 5vw, 70px) !important;
    }
    .route-stop:hover em,
    .route-stop:focus-visible em {
      display: block !important;
    }
    .visual-card:hover,
    .story-card:hover {
      transform: none;
    }
    .event-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 46px rgba(33,28,21,.1);
    }
    .footer-links a:hover { color: #d7ff3e; }
    .footer-note {
      grid-column: 1 / -1;
      padding: 18px 22px;
      color: rgba(255,255,255,.62);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
    }
    .footer-note b { color: white; }
    .floating-banquet-cta {
      position: fixed;
      z-index: 90;
      left: max(24px, calc((100vw - 1780px) / 2 + 24px));
      bottom: max(18px, env(safe-area-inset-bottom));
      transform: none;
      min-height: 64px;
      min-width: 340px;
      padding: 0 34px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: #d7ff3e;
      color: #17201b;
      box-shadow: 0 22px 62px rgba(23,32,27,.24);
      font-size: 18px;
      font-weight: 950;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .02em;
    }
    .floating-banquet-cta::after {
      content: "→";
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(23,32,27,.12);
      font-size: 22px;
      line-height: 1;
    }
    @media (max-width: 980px) {
      .portal-frame { width: min(100% - 24px, 1780px); }
      .hero-stage { min-height: 650px; border-radius: 0 0 24px 24px; }
      .hero-nav { grid-template-columns: 1fr auto; padding: 0 24px; min-height: 82px; }
      .hero-menu, .hero-tools .circle-btn, .banquet-order { display: none; }
      .hero-content { min-height: 590px; padding: 34px 22px 230px; justify-content: flex-start; }
      .hero-title { font-size: clamp(34px, 10.5vw, 52px); line-height: 1.03; max-width: 92%; }
      .hero-subtitle { margin-top: 24px; max-width: 88%; font-size: 18px; line-height: 1.28; }
      .hero-primary { min-width: 0; width: 100%; grid-template-columns: 1fr 58px; }
      .hero-glass { left: 16px; right: 16px; bottom: 42px; width: auto; grid-template-columns: 1fr; border-radius: 20px; }
      .hero-glass article { min-height: auto; padding: 13px 16px; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
      .hero-glass article:first-child { border-top: 0; }
      .hero-slider { right: 22px; bottom: 342px; gap: 8px; }
      .hero-eyebrow { margin-bottom: 18px; font-size: 15px; max-width: 82%; }
      .hero-glass strong { font-size: 21px; margin-bottom: 4px; }
      .hero-glass span { font-size: 14px; line-height: 1.25; }
      .hero-slider button { width: 10px; height: 10px; }
      .guide-dashboard { grid-template-columns: 1fr; }
      .guide-dashboard > * { min-width: 0; }
      .guide-phone { padding: 20px; border-radius: 32px; }
      .guide-intro { grid-template-columns: 1fr; align-items: start; gap: 10px; }
      .guide-intro h2 { font-size: 34px; }
      .guide-intro p { max-width: none; font-size: 16px; }
      .event-tile-grid { gap: 16px; }
      .event-tile { min-height: 168px; border-radius: 28px; padding: 20px; }
      .event-tile small { font-size: 20px; }
      .event-tile strong { margin-top: 24px; font-size: 24px; }
      .event-tile em { font-size: 13px; }
      .top-sections-head h2 { font-size: 42px; }
      .top-sections-head a { font-size: 15px; }
      .top-list-card { grid-template-columns: 56px 1fr auto; gap: 16px; padding: 18px; border-radius: 26px; }
      .top-list-card i { width: 56px; height: 56px; border-radius: 18px; font-size: 26px; }
      .top-list-card strong { font-size: 25px; }
      .top-list-card span { font-size: 19px; }
      .guide-editorial-panel { position: static; min-height: 520px; }
      .navlinks { display: none; }
      .phone-row { grid-template-columns: 1fr; }
      .phone { min-height: auto; }
      .phone-main { min-height: 620px; }
      .faq-section { padding: 52px 0; }
      .faq-section .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
      .faq-section .section-head h2 { font-size: clamp(34px, 9vw, 48px); }
      .faq-section .section-head p { font-size: 16px; }
      .service-grid, .venue-grid, .article-grid, .visual-grid, .faq-list, .blog-board, .blog-list { grid-template-columns: minmax(0, 1fr); }
      .faq-list summary { min-height: 62px; padding: 17px 18px; font-size: 18px; }
      .faq-list details p { padding: 0 18px 20px 58px; font-size: 16px; }
      .visual-card,
      .visual-card.feature {
        grid-column: auto;
        min-height: 360px;
        border-radius: 30px;
      }
      .visual-card strong,
      .visual-card:not(.feature) strong {
        font-size: 34px;
      }
      .blog-board { padding: 12px; border-radius: 28px; gap: 12px; }
      .blog-intro-card { min-height: 300px; padding: 22px; }
      .blog-intro-card h2 { font-size: 34px; line-height: 1; }
      .blog-intro-card p { font-size: 17px; }
      .blog-tabs { gap: 10px; margin-bottom: 26px; }
      .blog-tabs a { min-height: 42px; padding: 10px 15px; font-size: 15px; }
      .blog-board, .blog-intro-card, .blog-list, .blog-card { min-width: 0; max-width: 100%; }
      .guide-card.feature { grid-column: auto; }
      .guide-ribbon { padding: 56px 0; }
      .route-scroll {
        gap: 16px;
        padding-left: 18px;
        padding-right: 18px;
      }
      .route-stop,
      .route-stop.is-wide,
      .route-stop:hover {
        flex-basis: min(86vw, 680px);
        width: auto;
        min-height: 500px;
        border-radius: 30px;
        padding: 24px;
      }
      .route-code,
      .route-time {
        top: 30px;
        padding: 11px 15px;
        font-size: 16px;
      }
      .route-code { left: 28px; }
      .route-time { right: 28px; }
      .route-stop i { width: 58px; height: 58px; font-size: 22px; }
      .route-stop strong,
      .route-stop:not(.is-wide) strong {
        writing-mode: horizontal-tb;
        transform: none;
        max-height: none;
        font-size: 40px;
      }
      .route-stop em,
      .route-stop:not(.is-wide) em {
        display: block;
        font-size: 17px;
      }
      .route-stop b {
        padding: 13px 18px;
        font-size: 16px;
      }
      .format-grid { grid-template-columns: 1fr; }
      .format-card > span { min-height: 0; padding: 24px; }
      .story-strip { padding: 42px 0; }
      .story-layout { grid-template-columns: 1fr; gap: 22px; }
      .story-copy { max-width: none; }
      .story-copy h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.05; max-width: 760px; }
      .story-copy p { margin-top: 16px; font-size: 17px; line-height: 1.45; }
      .story-actions { max-width: none; }
      .story-card img { aspect-ratio: 1.6 / 1; border-radius: 28px; }
      .story-card p { font-size: 16px; }
      .story-card i { top: 34%; right: 18px; }
      .all-halls-section { padding: 56px 0; }
      .all-halls-layout { grid-template-columns: 1fr; }
      .halls-verified { position: static; min-height: 560px; border-radius: 32px; padding: 26px; }
      .halls-panel-head { grid-template-columns: 1fr; padding: 22px; border-radius: 28px; }
      .halls-count { width: 92px; height: 92px; border-radius: 24px; }
      .halls-page-link { align-items: flex-start; flex-direction: column; }
      .halls-page-link span { white-space: normal; }
      .hall-link-grid { grid-template-columns: 1fr; max-height: 760px; padding-right: 8px; }
      .route-band, .footer-party, .footer-links { grid-template-columns: 1fr; }
      .footer-hero { min-height: 0; padding: 26px; }
      .footer-hero h2 { font-size: 42px; }
      .footer-request strong { font-size: 28px; }
      .floating-banquet-cta {
        left: 16px;
        width: max-content;
        max-width: calc(100% - 32px);
        min-width: 0;
        min-height: 58px;
        padding: 0 18px 0 24px;
        bottom: max(14px, env(safe-area-inset-bottom));
        font-size: 15px;
      }
      .section-head { display: block; }
      .section-head p { margin-top: 12px; }
    }
    @media (max-width: 420px) {
      .event-tile-grid { grid-template-columns: 1fr; gap: 12px; }
      .event-tile { min-height: 156px; border-radius: 24px; padding: 16px; }
      .event-tile small { font-size: 18px; }
      .event-tile strong { margin-top: 20px; font-size: 21px; line-height: 1.08; }
      .event-tile em { font-size: 12px; }
      .event-tile b { font-size: 13px; }
      .top-list-card { grid-template-columns: 48px 1fr auto; gap: 12px; }
      .top-list-card i { width: 48px; height: 48px; border-radius: 16px; font-size: 22px; }
      .top-list-card strong { font-size: 22px; }
      .top-list-card span { font-size: 16px; }
      .blog-intro-card h2 { font-size: 30px; }
      .blog-card strong { font-size: 20px; }
      .route-stop { min-height: 440px; }
      .route-stop strong,
      .route-stop:not(.is-wide) strong { font-size: 34px; }
      .route-stop em,
      .route-stop:not(.is-wide) em { font-size: 15px; }
      .format-card strong { font-size: 28px; }
      .format-card em { font-size: 17px; }
      .format-card i b { font-size: 14px; padding: 8px 12px; }
      .format-card small { font-size: 20px; }
      .visual-card,
      .visual-card.feature { min-height: 320px; padding: 20px; border-radius: 26px; }
      .visual-card strong,
      .visual-card:not(.feature) strong { font-size: 28px; line-height: 1.02; }
      .visual-card em b { font-size: 11px; padding: 7px 9px; }
      .visual-card i { padding: 10px 14px; font-size: 14px; }
      .story-copy h2 { font-size: clamp(28px, 8vw, 38px); line-height: 1.06; font-weight: 900; overflow-wrap: normal; }
      .acid-btn, .line-btn { min-height: 60px; font-size: 18px; }
      .story-card h3 { font-size: 24px; line-height: 1.08; }
      .halls-verified { min-height: 520px; }
      .halls-verified h2 { font-size: 34px; }
      .halls-verified p { font-size: 16px; }
      .halls-verified dl { grid-template-columns: 1fr; }
      .halls-panel-head h2 { font-size: 30px; }
      .hall-link { min-height: 132px; border-radius: 24px; }
      .hall-link strong { font-size: 20px; }
    }

    .kz-site-footer {
      margin-top: 52px;
      padding: 54px 0 max(92px, env(safe-area-inset-bottom));
      background:
        linear-gradient(135deg, rgba(23,32,27,.98), rgba(49,55,39,.98)),
        #17201b;
      color: #fff;
    }
    .kz-footer-shell {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      gap: 18px;
    }
    .kz-footer-top {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
      gap: 18px;
      align-items: stretch;
    }
    .kz-footer-cta,
    .kz-footer-brief,
    .kz-footer-nav,
    .kz-footer-bottom {
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.07);
      border-radius: 24px;
      box-shadow: 0 26px 70px rgba(0,0,0,.18);
    }
    .kz-footer-cta {
      min-height: 300px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .kz-footer-badge {
      width: fit-content;
      padding: 9px 13px;
      border-radius: 999px;
      background: #d7ff3e;
      color: #17201b;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .kz-footer-cta h2 {
      margin: 24px 0 14px;
      max-width: 760px;
      color: #fff;
      font-size: clamp(34px, 5vw, 76px);
      line-height: .96;
      letter-spacing: 0;
    }
    .kz-footer-cta p,
    .kz-footer-brief p,
    .kz-footer-bottom span {
      margin: 0;
      color: rgba(255,255,255,.72);
      font-size: 17px;
      line-height: 1.55;
    }
    .kz-footer-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }
    .kz-footer-actions a,
    .kz-footer-brief a {
      min-height: 52px;
      padding: 0 20px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
      text-decoration: none;
    }
    .kz-footer-actions a:first-child,
    .kz-footer-brief a {
      background: #d7ff3e;
      color: #17201b;
    }
    .kz-footer-actions a:last-child {
      color: #fff;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
    }
    .kz-footer-brief {
      padding: 28px;
      display: grid;
      align-content: space-between;
      gap: 22px;
    }
    .kz-footer-brief h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.04;
    }
    .kz-footer-brief ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: rgba(255,255,255,.78);
      font-weight: 850;
    }
    .kz-footer-brief li {
      display: grid;
      grid-template-columns: 22px minmax(0,1fr);
      gap: 9px;
      align-items: start;
    }
    .kz-footer-brief li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(215,255,62,.18);
      color: #d7ff3e;
      font-size: 13px;
      font-weight: 950;
    }
    .kz-footer-nav {
      padding: 26px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .kz-footer-nav h3 {
      margin: 0 0 14px;
      color: #fff;
      font-size: 21px;
      line-height: 1.1;
    }
    .kz-footer-nav a {
      display: block;
      margin-top: 10px;
      color: rgba(255,255,255,.72);
      font-weight: 850;
      text-decoration: none;
      line-height: 1.3;
    }
    .kz-footer-nav a:hover { color: #d7ff3e; }
    .kz-footer-bottom {
      padding: 18px 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
    }
    .kz-footer-bottom b { color: #fff; }
    @media (max-width: 920px) {
      .kz-footer-top,
      .kz-footer-nav {
        grid-template-columns: 1fr;
      }
      .kz-footer-cta,
      .kz-footer-brief,
      .kz-footer-nav,
      .kz-footer-bottom {
        border-radius: 20px;
      }
      .kz-footer-cta,
      .kz-footer-brief {
        padding: 22px;
      }
      .kz-footer-actions a,
      .kz-footer-brief a {
        width: 100%;
      }
    }

    .mobile-menu-open {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .site-menu-toggle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.38);
      background: rgba(255,255,255,.08);
      color: white;
      display: none;
      align-items: center;
      justify-content: center;
      font: inherit;
      font-size: 22px;
      font-weight: 950;
    }
    .mobile-menu-backdrop {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: grid;
      justify-items: end;
      background: rgba(10, 14, 12, .52);
      opacity: 0;
      visibility: hidden;
      transition: opacity .22s ease, visibility .22s ease;
    }
    .mobile-menu-backdrop.is-open {
      opacity: 1;
      visibility: visible;
    }
    .mobile-menu-panel {
      width: min(420px, calc(100vw - 28px));
      height: 100%;
      padding: 22px;
      background: #fffdf7;
      color: #17201b;
      box-shadow: -24px 0 70px rgba(0,0,0,.24);
      transform: translateX(100%);
      transition: transform .24s ease;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .mobile-menu-backdrop.is-open .mobile-menu-panel {
      transform: translateX(0);
    }
    .mobile-menu-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(23,32,27,.12);
    }
    .mobile-menu-head strong {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 20px;
      font-weight: 950;
      text-transform: uppercase;
    }
    .mobile-menu-close {
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: #17201b;
      color: #fff;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }
    .mobile-menu-links {
      display: grid;
      gap: 12px;
    }
    .mobile-menu-links a {
      min-height: 58px;
      padding: 15px 18px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(23,32,27,.08);
      color: #17201b;
      box-shadow: 0 10px 30px rgba(23,32,27,.04);
      font-size: 17px;
      font-weight: 950;
    }
    .mobile-menu-links a:hover,
    .mobile-menu-links a:focus-visible {
      background: #eef9dc;
      border-color: rgba(139,51,69,.18);
    }
    .mobile-menu-cta {
      margin-top: auto;
      min-height: 58px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #d7ff3e;
      color: #17201b;
      font-size: 18px;
      font-weight: 950;
      text-transform: uppercase;
    }
    body.mobile-menu-lock {
      overflow: hidden;
    }
    @media (max-width: 900px) {
      .site-menu { display: none; }
      .site-menu-toggle { display: inline-flex; }
      .site-actions { gap: 8px; }
    }
    @media (max-width: 520px) {
      .mobile-menu-panel {
        width: 100%;
        padding: 18px;
      }
      .mobile-menu-links a {
        min-height: 54px;
        font-size: 16px;
      }
      .mobile-menu-cta {
        font-size: 16px;
      }
    }

  
    /* Text comfort fixes */
    .halls-panel-head {
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
    }
    .halls-count {
      width: clamp(150px, 13vw, 176px) !important;
      height: clamp(128px, 11vw, 150px) !important;
      padding: 16px 18px !important;
      border-radius: 32px !important;
      gap: 7px;
      text-align: center;
      overflow: hidden;
    }
    .halls-count strong {
      font-size: clamp(42px, 4.2vw, 56px) !important;
      line-height: .9 !important;
      letter-spacing: 0;
    }
    .halls-count small {
      max-width: 110px;
      font-size: clamp(9px, .72vw, 11px) !important;
      line-height: 1.12 !important;
      text-transform: uppercase;
      text-wrap: balance;
      overflow-wrap: normal;
      word-break: normal;
    }
    .mo-filter-panel {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
      align-items: end;
    }
    .mo-filter-panel label {
      min-width: 0;
    }
    .mo-filter-panel label:first-child {
      grid-column: span 2;
    }
    .mo-filter-panel input,
    .mo-filter-panel select {
      min-width: 0;
      font-size: 15px;
      line-height: 1.15;
      text-overflow: clip;
    }
    .mo-filter-panel select[data-sort] {
      min-width: 0;
    }
    .top-list-card strong,
    .visual-card strong,
    .event-tile strong,
    .mo-venue-card h3,
    .venue-preview-body strong,
    .hall-link strong {
      overflow-wrap: break-word;
      word-break: normal;
      hyphens: auto;
    }
    @media (max-width: 1280px) {
      .mo-filter-panel {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
      }
      .mo-filter-panel button {
        width: 100%;
      }
    }
    @media (max-width: 760px) {
      .halls-panel-head {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .halls-count {
        justify-self: start;
        width: 136px !important;
        height: 118px !important;
        border-radius: 28px !important;
      }
      .halls-count strong {
        font-size: 42px !important;
      }
      .halls-count small {
        max-width: 96px;
        font-size: 9px !important;
      }
      .mo-filter-panel {
        grid-template-columns: 1fr !important;
      }
      .mo-filter-panel label:first-child {
        grid-column: auto;
      }
      .mo-filter-panel select[data-sort] {
        min-width: 0;
      }
    }
    /* End text comfort fixes */

  
    /* Responsive QA guard */
    html,
    body {
      max-width: 100%;
      /* `hidden` creates a scroll container and breaks both sticky feature cards. */
      overflow-x: clip;
    }
    img,
    video,
    canvas,
    svg {
      max-width: 100%;
      height: auto;
    }
    .portal-frame,
    .shell,
    .kz-portal-page,
    .kz-footer-shell,
    .mo-full-registry,
    .guide-dashboard,
    .story-strip,
    .halls-panel,
    .faq-section .shell {
      max-width: 100%;
    }
    .site-menu,
    .site-actions,
    .hero-tools,
    .top-list-card,
    .halls-page-link,
    .mobile-menu-links a,
    .event-article-grid article,
    .mo-venue-card {
      min-width: 0;
    }
    table {
      max-width: 100%;
    }
    @media (max-width: 760px) {
      .portal-frame {
        width: 100% !important;
        padding-left: 0;
        padding-right: 0;
      }
      .hero-stage {
        border-radius: 0 0 24px 24px;
      }
      .shell,
      .kz-portal-page,
      .kz-footer-shell,
      .mo-full-registry {
        width: calc(100% - 28px) !important;
      }
      .floating-banquet-cta {
        max-width: calc(100% - 28px);
        white-space: normal;
        text-align: center;
      }
      .kz-footer-actions a,
      .kz-footer-brief a,
      .halls-page-link,
      .portal-hero-order {
        width: 100%;
      }
    }
    /* End responsive QA guard */

  
    /* Unified portal header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(18, 13, 10, .66), rgba(38, 29, 24, .44), rgba(18, 13, 10, .66));
      border-bottom: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .site-header-inner {
      width: min(1560px, calc(100% - 64px));
      min-height: 88px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
    }
    .site-logo {
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 900;
      font-size: clamp(20px, 1.75vw, 27px);
      letter-spacing: .04em;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .site-menu {
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(16px, 1.6vw, 26px);
    }
    .site-menu a {
      color: rgba(255,255,255,.94);
      font-size: clamp(15px, 1.05vw, 18px);
      font-weight: 950;
      line-height: 1;
      white-space: nowrap;
    }
    .site-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
    }
    .site-order {
      min-width: 220px;
      min-height: 54px;
      padding: 0 26px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.48);
      background: rgba(255,255,255,.08);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(15px, 1.05vw, 18px);
      font-weight: 950;
      line-height: 1;
      white-space: nowrap;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .site-menu-toggle {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.42);
      background: rgba(255,255,255,.12);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font: inherit;
      font-size: 21px;
      font-weight: 950;
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .hero-stage > .site-header {
      position: relative;
      background: rgba(18, 13, 10, .18);
    }
    @media (max-width: 980px) {
      .site-header-inner {
        width: min(100% - 28px, 1560px);
        min-height: 70px;
        grid-template-columns: 1fr auto;
        gap: 14px;
      }
      .site-logo { font-size: 20px; }
      .site-menu { display: none; }
      .site-order { display: none; }
      .site-menu-toggle { width: 48px; height: 48px; font-size: 20px; }
    }
    @media (max-width: 520px) {
      .site-header-inner { width: calc(100% - 22px); min-height: 64px; }
      .site-logo { font-size: 17px; letter-spacing: .03em; }
      .site-menu-toggle { width: 44px; height: 44px; }
    }
    /* End unified portal header */

  
