:root {
  --vri-shell-bg: #070918;
  --vri-shell-surface: #0a0c16;
  --vri-shell-text: #f2f0f7;
  --vri-shell-muted: #b9b7c2;
  --vri-shell-cyan: #19f4e5;
  --vri-shell-pink: #f24791;
  --vri-shell-line: rgba(25, 244, 229, .22);
}

html.vri-menu-open { overflow: hidden; }
body.vri-global-shell { overflow-x: hidden; background: #08090d; color: var(--vri-shell-text); }
body.vri-global-shell #page { overflow: visible; }

#vri-global-top {
  position: relative;
  z-index: 1000;
  min-height: 108px;
  background: var(--vri-shell-bg);
  border-top: 2px solid var(--vri-shell-cyan);
  border-bottom: 1px solid var(--vri-shell-line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.vri-global-header {
  width: min(1320px, calc(100% - 48px));
  min-height: 106px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: "Chakra Petch", Arial, sans-serif;
}

.vri-global-brand { flex: 0 0 auto; display: block; }
.vri-global-brand img { display: block; width: 108px; height: 78px; object-fit: contain; }

#vri-global-nav { margin-left: auto; }
#vri-global-nav ul { display: flex; align-items: center; gap: clamp(24px, 3vw, 54px); margin: 0; padding: 0; list-style: none; }
#vri-global-nav li { margin: 0; padding: 0; }
#vri-global-nav a {
  position: relative;
  display: block;
  padding: 16px 0;
  color: var(--vri-shell-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}
#vri-global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--vri-shell-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s cubic-bezier(.22, 1, .36, 1);
}
#vri-global-nav a:hover,
#vri-global-nav a:focus-visible,
#vri-global-nav a[aria-current="page"] { color: var(--vri-shell-cyan); }
#vri-global-nav a:hover::after,
#vri-global-nav a:focus-visible::after,
#vri-global-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
#vri-global-nav a:focus-visible,
.vri-menu-toggle:focus-visible { outline: 2px solid var(--vri-shell-pink); outline-offset: 5px; }

.vri-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(25, 244, 229, .55);
  background: transparent;
  cursor: pointer;
}
.vri-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--vri-shell-cyan);
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), opacity .18s ease;
}
.vri-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vri-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vri-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vri-service-notice {
  margin: 0;
  padding: 0 24px;
  background: #0a0c16;
  border-bottom: 1px solid rgba(242, 71, 145, .35);
  color: var(--vri-shell-text);
  font-family: Manrope, Arial, sans-serif;
}
.vri-service-notice__inner {
  width: min(1180px, 100%);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.vri-service-notice__inner div { max-width: 850px; font-size: 14px; line-height: 1.55; }
.vri-service-notice strong { display: block; margin-bottom: 2px; color: var(--vri-shell-cyan); font-family: "Chakra Petch", Arial, sans-serif; font-size: 16px; }
.vri-service-notice span { color: var(--vri-shell-muted); }
.vri-service-notice a {
  flex: 0 0 auto;
  padding: 11px 20px;
  background: var(--vri-shell-pink);
  color: #090a12;
  font: 800 13px/1.2 Manrope, Arial, sans-serif;
  text-decoration: none;
}
.vri-service-notice a:hover,
.vri-service-notice a:focus-visible { background: var(--vri-shell-cyan); color: #090a12; }

.vri-global-footer { padding: 42px 24px; background: var(--vri-shell-bg); border-top: 1px solid var(--vri-shell-line); }
.vri-global-footer__inner { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px 54px; }
.vri-global-footer__brand img { width: 88px; height: 68px; object-fit: contain; }
.vri-global-footer nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 28px; }
.vri-global-footer a { color: var(--vri-shell-text); font-family: Manrope, Arial, sans-serif; font-size: 13px; text-decoration: none; }
.vri-global-footer a:hover,
.vri-global-footer a:focus-visible { color: var(--vri-shell-cyan); }
.vri-global-footer p { grid-column: 1 / -1; margin: 0; color: var(--vri-shell-muted); font: 400 12px/1.6 Manrope, Arial, sans-serif; text-align: center; }
.vri-global-footer__cities { grid-column: 1 / -1; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--vri-shell-line); display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 6px 14px; }
.vri-global-footer__cities-label { color: var(--vri-shell-muted); font: 700 11px/1.6 Manrope, Arial, sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.vri-global-footer__cities a { color: var(--vri-shell-muted); font-size: 12px; }
.vri-global-footer__cities a:hover,
.vri-global-footer__cities a:focus-visible { color: var(--vri-shell-cyan); }

@media (max-width: 1100px) {
  #vri-global-top { min-height: 92px; }
  .vri-global-header { width: calc(100% - 36px); min-height: 90px; }
  .vri-global-brand img { width: 96px; height: 66px; }
  .vri-menu-toggle { display: block; }
  #vri-global-nav {
    position: fixed;
    inset: 92px 0 0;
    margin: 0;
    padding: 28px 22px 44px;
    background: rgba(7, 9, 24, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    overflow-y: auto;
    transition: opacity .2s ease, transform .24s cubic-bezier(.22, 1, .36, 1), visibility .2s;
  }
  #vri-global-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  #vri-global-nav ul { display: grid; gap: 0; width: min(560px, 100%); margin: 0 auto; }
  #vri-global-nav li { border-bottom: 1px solid rgba(25, 244, 229, .16); }
  #vri-global-nav a { padding: 20px 8px; font-size: 18px; text-align: center; }
  #vri-global-nav a::after { bottom: 12px; left: 35%; right: 35%; }
}

@media (max-width: 640px) {
  .vri-global-header { width: calc(100% - 28px); }
  .vri-global-footer__inner { grid-template-columns: 1fr; justify-items: center; }
  .vri-global-footer nav { justify-content: center; }
  .vri-service-notice { padding: 18px 20px; }
  .vri-service-notice__inner { min-height: 0; align-items: stretch; flex-direction: column; gap: 14px; }
  .vri-service-notice__inner div { font-size: 13px; }
  .vri-service-notice a { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  #vri-global-nav,
  #vri-global-nav a::after,
  .vri-menu-toggle span { transition: none; }
}

/* Keep legacy Bootstrap rows and positioned content inside the page shell. */
#page { max-width: 100%; overflow-x: clip; }

@media (max-width: 640px) {
  .vri-cat { gap: 10px; min-width: 0; }
  .vri-cat__line { min-width: 12px; }
  .vri-cat__label {
    min-width: 0;
    max-width: calc(100% - 44px);
    padding: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.45;
  }
}
