/* ==========================================================================
   VN Supermarket — theme layer on top of Tabler CSS
   Load AFTER tabler.min.css
   Served by Saltcorn from /files/serve/vn-theme.css
   ========================================================================== */

:root {
  /* Brand palette, pulled from the logo gradient */
  --vn-pink: #d93384;
  --vn-magenta: #c0246e;
  --vn-plum: #7e1247;
  --vn-ink: #1b1016;
  --vn-slate: #63555c;
  --vn-line: #ece0e6;
  --vn-cream: #fdf8f6;
  --vn-jade: #1f7a62;

  --vn-gradient: linear-gradient(135deg, #d93384 0%, #a6175a 100%);
  --vn-radius: 20px;
  --vn-radius-sm: 12px;
  --vn-shadow: 0 18px 44px -26px rgba(27, 16, 22, 0.5);
  --vn-shadow-lg: 0 30px 70px -34px rgba(27, 16, 22, 0.55);

  --vn-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --vn-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --vn-header-h: 68px;

  /* Re-point Tabler tokens at the brand */
  --tblr-primary: #c0246e;
  --tblr-primary-rgb: 192, 36, 110;
  --tblr-body-color: #1b1016;
  --tblr-body-font-family: "Inter", system-ui, -apple-system, sans-serif;
  --tblr-link-color: #c0246e;
  --tblr-link-hover-color: #7e1247;
  --tblr-border-radius: 12px;
}

/* --------------------------------------------------------- base ---------- */

html { scroll-behavior: smooth; }

body.vn-body {
  font-family: var(--vn-body);
  color: var(--vn-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.vn-body h1, .vn-body h2, .vn-body h3, .vn-body .vn-display {
  font-family: var(--vn-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--vn-ink);
}

.vn-body h1 { font-size: clamp(2.1rem, 7.2vw, 4.1rem); }
.vn-body h2 { font-size: clamp(1.65rem, 5vw, 2.7rem); }
.vn-body h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); letter-spacing: -0.01em; }

.vn-lead {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--vn-slate);
  max-width: 60ch;
}

.vn-prose p { color: var(--vn-slate); line-height: 1.72; margin-bottom: 1rem; }
.vn-prose p:last-child { margin-bottom: 0; }
.vn-prose strong { color: var(--vn-ink); font-weight: 600; }

a { text-decoration: none; }
img { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--vn-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

.vn-skip {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--vn-ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.vn-skip:focus { left: 0; }

/* --------------------------------------------------------- header -------- */

.vn-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--vn-line);
  transition: box-shadow .25s ease;
}
.vn-header.is-scrolled { box-shadow: 0 10px 30px -22px rgba(27, 16, 22, .55); }

.vn-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--vn-header-h);
}

.vn-brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.vn-brand__mark { width: 38px; height: 38px; border-radius: 50%; display: block; }
.vn-brand__text { display: flex; flex-direction: column; line-height: 1; }
.vn-brand__name {
  font-family: var(--vn-display); font-weight: 800; font-size: 1.02rem;
  letter-spacing: .02em; color: var(--vn-ink); text-transform: uppercase;
}
.vn-brand__sub {
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--vn-slate); margin-top: .28rem;
}

.vn-nav { display: none; align-items: center; gap: .35rem; }
.vn-nav a {
  font-size: .93rem; font-weight: 500; color: var(--vn-ink);
  padding: .5rem .7rem; border-radius: 999px; white-space: nowrap;
}
.vn-nav a:hover { color: var(--vn-magenta); background: #fbeff5; }
.vn-nav a.is-active { color: var(--vn-magenta); font-weight: 600; }
.vn-nav a.is-active::after {
  content: ""; display: block; height: 2px; width: 18px; margin: .2rem auto 0;
  background: var(--vn-gradient); border-radius: 2px;
}
.vn-nav .vn-btn.is-active::after { display: none; }

.vn-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--vn-line);
  background: #fff; border-radius: 12px; color: var(--vn-ink); cursor: pointer;
}
.vn-burger svg { width: 22px; height: 22px; }
.vn-burger .vn-burger__close { display: none; }
.vn-burger[aria-expanded="true"] .vn-burger__open { display: none; }
.vn-burger[aria-expanded="true"] .vn-burger__close { display: block; }

.vn-mobile-nav {
  display: none; border-top: 1px solid var(--vn-line); background: #fff;
  padding: .6rem 0 1.1rem;
}
.vn-mobile-nav.is-open { display: block; }
.vn-mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem .25rem; font-size: 1.05rem; font-weight: 500;
  color: var(--vn-ink); border-bottom: 1px solid var(--vn-line);
}
.vn-mobile-nav a.is-active { color: var(--vn-magenta); font-weight: 700; }
.vn-mobile-nav .vn-mobile-nav__cta { border-bottom: 0; margin-top: 1rem; }

@media (min-width: 992px) {
  .vn-nav { display: flex; }
  .vn-burger { display: none; }
  .vn-mobile-nav { display: none !important; }
}

/* --------------------------------------------------------- buttons ------- */

.vn-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--vn-body); font-weight: 600; font-size: .97rem;
  padding: .78rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1.2; text-align: center;
}
.vn-btn--primary { background: var(--vn-gradient); color: #fff; box-shadow: 0 12px 26px -14px rgba(192, 36, 110, .8); }
.vn-btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(192, 36, 110, .85); }
.vn-btn--outline { border-color: var(--vn-line); color: var(--vn-ink); background: #fff; }
.vn-btn--outline:hover { border-color: var(--vn-magenta); color: var(--vn-magenta); }
.vn-btn--light { background: rgba(255, 255, 255, .16); color: #fff; border-color: rgba(255, 255, 255, .5); }
.vn-btn--light:hover { background: #fff; color: var(--vn-plum); }
.vn-btn--sm { padding: .5rem 1.05rem; font-size: .88rem; }
.vn-btn--block { width: 100%; }
.vn-btn svg { width: 18px; height: 18px; }

/* Tabler .btn-primary re-skin, for form submit buttons */
.btn-primary {
  --tblr-btn-bg: var(--vn-magenta);
  --tblr-btn-border-color: var(--vn-magenta);
  --tblr-btn-hover-bg: var(--vn-plum);
  --tblr-btn-hover-border-color: var(--vn-plum);
  --tblr-btn-active-bg: var(--vn-plum);
  --tblr-btn-active-border-color: var(--vn-plum);
  --tblr-btn-focus-shadow-rgb: 192, 36, 110;
}

/* --------------------------------------------------------- sections ------ */

.vn-section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.vn-section--tight { padding: clamp(2.2rem, 5vw, 3.5rem) 0; }
.vn-section--cream { background: var(--vn-cream); }
.vn-section--ink { background: var(--vn-ink); color: #fff; }
.vn-section--ink h2, .vn-section--ink h3 { color: #fff; }
.vn-section--ink .vn-lead, .vn-section--ink .vn-prose p { color: rgba(255, 255, 255, .74); }

.vn-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--vn-magenta); margin-bottom: .9rem;
}
.vn-eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--vn-gradient); border-radius: 2px;
}
.vn-section--ink .vn-eyebrow { color: var(--vn-pink); }

.vn-section__head { max-width: 720px; margin-bottom: 2.4rem; }

/* --------------------------------------------------------- hero ---------- */

.vn-hero { position: relative; overflow: hidden; background: var(--vn-ink); }
.vn-hero__media { position: absolute; inset: 0; }
.vn-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.vn-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27, 16, 22, .82) 0%, rgba(126, 18, 71, .78) 55%, rgba(166, 23, 90, .86) 100%);
}
@media (min-width: 768px) {
  .vn-hero__media::after {
    background: linear-gradient(100deg, rgba(27, 16, 22, .93) 12%, rgba(126, 18, 71, .8) 58%, rgba(217, 51, 132, .55) 100%);
  }
}
.vn-hero__inner {
  position: relative; z-index: 1;
  padding: clamp(3.4rem, 12vw, 7rem) 0 clamp(2.6rem, 8vw, 5rem);
  color: #fff; max-width: 780px;
}
.vn-hero h1 { color: #fff; margin-bottom: 1.1rem; }
.vn-hero .vn-lead { color: rgba(255, 255, 255, .84); }
.vn-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.2rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28);
  padding: .42rem .9rem; border-radius: 999px;
}
.vn-hero__eyebrow .vn-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff; display: inline-block;
}
.vn-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.vn-hero--page .vn-hero__inner { padding: clamp(2.6rem, 8vw, 4.4rem) 0; max-width: 720px; }

.vn-crumb { font-size: .8rem; color: rgba(255, 255, 255, .7); margin-bottom: .9rem; }
.vn-crumb a { color: rgba(255, 255, 255, .9); }
.vn-crumb a:hover { color: #fff; text-decoration: underline; }

/* --------------------------------------------------- signature ticker ---- */

.vn-ticker {
  background: var(--vn-gradient); color: #fff; overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .15);
  padding: .72rem 0;
}
.vn-ticker__track {
  display: flex; width: max-content; gap: 0;
  animation: vn-scroll 48s linear infinite;
}
.vn-ticker__group { display: flex; flex: 0 0 auto; }
.vn-ticker__item {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 0 1.1rem; font-size: .84rem; font-weight: 500;
  white-space: nowrap; letter-spacing: .01em;
}
.vn-ticker__item::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255, 255, 255, .55); margin-left: .5rem;
}
.vn-ticker__item span { opacity: .72; font-size: .78rem; }
.vn-ticker:hover .vn-ticker__track { animation-play-state: paused; }
@keyframes vn-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------- cards --------- */

.vn-grid { display: grid; gap: 1.25rem; }
.vn-grid--2 { grid-template-columns: 1fr; }
.vn-grid--3 { grid-template-columns: 1fr; }
.vn-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) {
  .vn-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .vn-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .vn-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .vn-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .vn-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.vn-card {
  background: #fff; border: 1px solid var(--vn-line); border-radius: var(--vn-radius);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
a.vn-card:hover, .vn-card--hover:hover {
  transform: translateY(-4px); box-shadow: var(--vn-shadow); border-color: transparent;
}
.vn-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--vn-cream); }
.vn-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
a.vn-card:hover .vn-card__media img, .vn-card--hover:hover .vn-card__media img { transform: scale(1.05); }
.vn-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.vn-card__body h3 { margin: 0; }
.vn-card__body p { color: var(--vn-slate); font-size: .93rem; line-height: 1.6; margin: 0; }
.vn-card__tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 1;
  background: rgba(27, 16, 22, .72); color: #fff; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: .32rem .7rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.vn-card__link {
  margin-top: auto; padding-top: .4rem; font-weight: 600; font-size: .9rem;
  color: var(--vn-magenta); display: inline-flex; align-items: center; gap: .35rem;
}

/* Big split feature panel */
.vn-split { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 900px) {
  .vn-split { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
  .vn-split--flip .vn-split__media { order: 2; }
}
.vn-split__media {
  border-radius: var(--vn-radius); overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: var(--vn-shadow);
}
.vn-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Feature list */
.vn-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .85rem; }
.vn-list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--vn-slate); line-height: 1.55; }
.vn-list li strong { color: var(--vn-ink); display: block; font-weight: 600; }
.vn-section--ink .vn-list li { color: rgba(255, 255, 255, .74); }
.vn-section--ink .vn-list li strong { color: #fff; }
.vn-list__tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; margin-top: .12rem;
  background: var(--vn-gradient); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.vn-list__tick svg { width: 13px; height: 13px; }

/* Cuisine chips */
.vn-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.vn-chip {
  font-size: .82rem; font-weight: 500; color: var(--vn-ink);
  border: 1px solid var(--vn-line); background: #fff;
  padding: .42rem .85rem; border-radius: 999px;
}
.vn-chip em { font-style: normal; color: var(--vn-magenta); font-weight: 600; }
.vn-section--ink .vn-chip { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); color: #fff; }

/* Stat strip */
.vn-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--vn-line); border-radius: var(--vn-radius); overflow: hidden; }
@media (min-width: 800px) { .vn-stats { grid-template-columns: repeat(4, 1fr); } }
.vn-stat { background: #fff; padding: 1.4rem 1.1rem; }
.vn-stat__num { font-family: var(--vn-display); font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; color: var(--vn-magenta); line-height: 1; }
.vn-stat__label { font-size: .82rem; color: var(--vn-slate); margin-top: .45rem; line-height: 1.4; }

/* Info / contact rows */
.vn-info { display: grid; gap: 1rem; }
.vn-info__row {
  display: flex; gap: .95rem; align-items: flex-start;
  padding: 1rem 1.1rem; border: 1px solid var(--vn-line); border-radius: var(--vn-radius-sm); background: #fff;
}
.vn-info__icon {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  background: #fbeff5; color: var(--vn-magenta);
  display: inline-flex; align-items: center; justify-content: center;
}
.vn-info__icon svg { width: 19px; height: 19px; }
.vn-info__label { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--vn-slate); font-weight: 600; }
.vn-info__value { font-size: 1.02rem; font-weight: 600; color: var(--vn-ink); margin-top: .2rem; line-height: 1.45; }
.vn-info__value a { color: var(--vn-ink); }
.vn-info__value a:hover { color: var(--vn-magenta); }
.vn-info__note { font-size: .84rem; color: var(--vn-slate); margin-top: .25rem; }

/* Hours table */
.vn-hours { width: 100%; border-collapse: collapse; }
.vn-hours th, .vn-hours td { padding: .62rem 0; border-bottom: 1px dashed var(--vn-line); font-size: .95rem; text-align: left; }
.vn-hours th { font-weight: 500; color: var(--vn-slate); }
.vn-hours td { text-align: right; font-weight: 600; }
.vn-hours tr:last-child th, .vn-hours tr:last-child td { border-bottom: 0; }

/* Notice panel */
.vn-notice {
  border: 1px solid var(--vn-line); border-left: 4px solid var(--vn-magenta);
  background: var(--vn-cream); border-radius: var(--vn-radius-sm);
  padding: 1.1rem 1.2rem;
}
.vn-notice h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.vn-notice p { margin: 0; color: var(--vn-slate); font-size: .94rem; line-height: 1.6; }

/* Under-construction badge */
.vn-build {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3);
  color: #fff; border-radius: 999px; padding: .5rem 1rem; font-size: .84rem; font-weight: 500;
}
.vn-build__pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #fff;
  animation: vn-pulse 1.9s ease-in-out infinite;
}
@keyframes vn-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

/* Progress bar for shop build */
.vn-progress { height: 8px; background: var(--vn-line); border-radius: 999px; overflow: hidden; }
.vn-progress__bar { height: 100%; background: var(--vn-gradient); border-radius: 999px; width: 45%; }

/* --------------------------------------------------------- forms --------- */

.vn-form-card {
  background: #fff; border: 1px solid var(--vn-line); border-radius: var(--vn-radius);
  padding: clamp(1.25rem, 4vw, 2.2rem); box-shadow: var(--vn-shadow);
}
.vn-body .form-label { font-weight: 600; font-size: .87rem; color: var(--vn-ink); margin-bottom: .35rem; }
.vn-body .form-control, .vn-body .form-select {
  border-color: var(--vn-line); border-radius: 12px; padding: .68rem .85rem; font-size: .97rem;
  background-color: #fff; color: var(--vn-ink);
}
.vn-body .form-control:focus, .vn-body .form-select:focus {
  border-color: var(--vn-pink); box-shadow: 0 0 0 .22rem rgba(217, 51, 132, .16);
}
.vn-body .form-hint { font-size: .8rem; color: var(--vn-slate); }
.vn-body .form-check-input:checked { background-color: var(--vn-magenta); border-color: var(--vn-magenta); }
.vn-req { color: var(--vn-magenta); }

.vn-checkgrid { display: grid; grid-template-columns: 1fr; gap: .55rem .9rem; }
@media (min-width: 560px) { .vn-checkgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .vn-checkgrid { grid-template-columns: repeat(3, 1fr); } }

.vn-field-error { display: none; color: #c02640; font-size: .82rem; margin-top: .3rem; }
.is-invalid-vn .form-control, .is-invalid-vn .form-select { border-color: #c02640; }
.is-invalid-vn .vn-field-error { display: block; }

.vn-form-status { display: none; border-radius: var(--vn-radius-sm); padding: 1rem 1.15rem; margin-bottom: 1.2rem; font-size: .95rem; }
.vn-form-status.is-visible { display: block; }
.vn-form-status--ok { background: #eaf7f2; color: #14614c; border: 1px solid #bfe6d8; }
.vn-form-status--err { background: #fdeef1; color: #96162f; border: 1px solid #f4ccd5; }

.vn-form-done { display: none; text-align: center; padding: 1.5rem .5rem; }
.vn-form-done.is-visible { display: block; }
.vn-form-done__mark {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--vn-gradient); color: #fff; display: flex; align-items: center; justify-content: center;
}
.vn-form-done__mark svg { width: 28px; height: 28px; }

/* --------------------------------------------------------- CTA band ------ */

.vn-cta {
  background: var(--vn-gradient); color: #fff; border-radius: var(--vn-radius);
  padding: clamp(1.8rem, 6vw, 3.2rem); text-align: center;
}
.vn-cta h2 { color: #fff; margin-bottom: .8rem; }
.vn-cta p { color: rgba(255, 255, 255, .85); max-width: 54ch; margin: 0 auto; line-height: 1.65; }
.vn-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.7rem; }

/* --------------------------------------------------------- map ----------- */

.vn-map {
  border-radius: var(--vn-radius); overflow: hidden; border: 1px solid var(--vn-line);
  aspect-ratio: 16 / 11; background: var(--vn-cream);
}
.vn-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 768px) { .vn-map { aspect-ratio: 16 / 9; } }

/* --------------------------------------------------------- footer -------- */

.vn-footer { background: var(--vn-ink); color: rgba(255, 255, 255, .68); padding: 3.2rem 0 1.6rem; }
.vn-footer a { color: rgba(255, 255, 255, .68); }
.vn-footer a:hover { color: #fff; }
.vn-footer__grid { display: grid; gap: 2.2rem; }
@media (min-width: 700px) { .vn-footer__grid { grid-template-columns: 1.4fr 1fr 1.3fr; } }
@media (min-width: 1100px) { .vn-footer__grid { grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; } }
.vn-footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.vn-footer__brand img { width: 42px; height: 42px; border-radius: 50%; }
.vn-footer__brand strong { font-family: var(--vn-display); color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; }
.vn-footer__blurb { font-size: .92rem; line-height: 1.65; max-width: 34ch; }
.vn-footer h4 {
  color: #fff; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 1rem;
}
.vn-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .93rem; }
.vn-footer__bottom {
  margin-top: 2.6rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .82rem; color: rgba(255, 255, 255, .5);
}
.vn-footer__cuisines { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.1rem; }
.vn-footer__cuisines span {
  font-size: .72rem; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px;
  padding: .25rem .65rem; color: rgba(255, 255, 255, .72);
}

/* --------------------------------------------------------- motion -------- */

.vn-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.vn-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vn-ticker__track { animation: none; }
  .vn-build__pulse { animation: none; }
  .vn-reveal { opacity: 1; transform: none; transition: none; }
  .vn-card, .vn-card__media img, .vn-btn { transition: none; }
}

/* --------------------------------------------------------- utils --------- */

.vn-mt-0 { margin-top: 0; }
.vn-mt-1 { margin-top: .5rem; }
.vn-mt-2 { margin-top: 1rem; }
.vn-mt-3 { margin-top: 1.5rem; }
.vn-mt-4 { margin-top: 2rem; }
.vn-mb-2 { margin-bottom: 1rem; }
.vn-mb-3 { margin-bottom: 1.5rem; }
.vn-text-center { text-align: center; }
.vn-muted { color: var(--vn-slate); }
