/* Voyage — Tema 14 Turizm */
:root {
  --vg-primary: #0b1f2a;
  --vg-accent: #e85d4c;
  --vg-teal: #1fa7a0;
  --vg-sand: #e8eef2;
  --vg-ink: #0f1c24;
  --vg-mist: rgba(15, 28, 36, 0.62);
  --vg-card: #fff;
  --vg-line: rgba(11, 31, 42, 0.1);
  --vg-font: "DM Sans", system-ui, sans-serif;
  --vg-display: "Syne", system-ui, sans-serif;
  --vg-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.vg-body {
  margin: 0;
  font-family: var(--vg-font);
  color: var(--vg-ink);
  background: var(--vg-sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button,
input,
textarea,
select {
  font: inherit;
}

.vg-skip {
  position: absolute;
  left: -9999px;
  background: var(--vg-primary);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.vg-skip:focus {
  left: 1rem;
  top: 1rem;
}
.vg-main {
  overflow-x: clip;
}

/* Header */
.vg-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background 0.35s,
    border-color 0.35s,
    backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.vg-header.is-scrolled,
.vg-header.is-solid {
  background: rgba(232, 238, 242, 0.94);
  backdrop-filter: blur(12px);
  border-color: var(--vg-line);
}
.vg-header__shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vg-brand {
  font-family: var(--vg-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color 0.3s;
}
.vg-brand span {
  color: var(--vg-accent);
}
.vg-header.is-scrolled .vg-brand,
.vg-header.is-solid .vg-brand {
  color: var(--vg-primary);
}
.vg-nav {
  margin-left: auto;
}
.vg-nav__list,
.vg-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  align-items: center;
}
.vg-nav a {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: white;
  transition: color 0.25s;
}
.vg-header.is-scrolled .vg-nav a,
.vg-header.is-solid .vg-nav a {
  color: var(--vg-mist);
}
.vg-nav a:hover,
.vg-nav .is-active > a {
  color: var(--vg-accent);
}
.vg-header__cta {
  flex-shrink: 0;
}
/* toggle → integ */

.vg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform 0.25s var(--vg-ease),
    box-shadow 0.25s,
    background 0.25s;
}
.vg-btn:hover {
  transform: translateY(-2px);
}
.vg-btn--accent {
  background: var(--vg-accent);
  color: #fff;
  box-shadow: 0 14px 32px rgba(232, 93, 76, 0.35);
}
.vg-btn--teal {
  background: var(--vg-teal);
  color: #fff;
  box-shadow: 0 14px 32px rgba(31, 167, 160, 0.3);
}
.vg-btn--dark {
  background: var(--vg-primary);
  color: #fff;
}
.vg-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(6px);
}
.vg-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}
.vg-btn--ghost-dark {
  background: transparent;
  border-color: rgba(11, 31, 42, 0.2);
  color: var(--vg-primary);
}

/* Cinematic hero — centered "flight route" composition */
.vg-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  color: #fff;
  overflow: hidden;
}
.vg-hero__media {
  position: absolute;
  inset: 0;
  background: #0b1f2a;
}
.vg-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: vgKen 22s ease-in-out infinite alternate;
}
@keyframes vgKen {
  from {
    transform: scale(1.06) translate(0, 0);
  }
  to {
    transform: scale(1.13) translate(-1.2%, -1%);
  }
}
.vg-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 44%,
      rgba(6, 16, 22, 0.72) 0%,
      rgba(6, 16, 22, 0.32) 55%,
      rgba(6, 16, 22, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 16, 22, 0.55) 0%,
      rgba(6, 16, 22, 0.1) 22%,
      rgba(6, 16, 22, 0.15) 70%,
      rgba(6, 16, 22, 0.75) 100%
    );
}
.vg-hero__content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  width: 100%;
  margin: 0 auto;
  padding: 8rem 1.5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vg-hero__route {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: vgUp 0.7s var(--vg-ease) 0.1s forwards;
}
.vg-hero__route::before,
.vg-hero__route::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55));
}
.vg-hero__route::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent);
}
.vg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.vg-hero__title {
  margin: 0 0 1.25rem;
  max-width: 17ch;
  font-family: var(--vg-display);
  font-size: clamp(2.75rem, 6.2vw, 5rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-shadow:
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.5);
}
.vg-hero__title em {
  font-style: normal;
  color: var(--vg-accent);
}
.vg-hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.2rem);
  animation: vgUp 0.7s var(--vg-ease) forwards;
}
@keyframes vgUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.vg-hero__text {
  margin: 0 0 2.25rem;
  max-width: 30rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: vgUp 0.7s var(--vg-ease) 0.4s forwards;
}
.vg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: vgUp 0.7s var(--vg-ease) 0.5s forwards;
}
.vg-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0;
  animation: vgUp 0.7s var(--vg-ease) 0.6s forwards;
}
.vg-hero__stats > div {
  padding: 0 0.75rem;
  margin: 0 0.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  flex: 1;
}
.vg-hero__stats > div:last-child {
  border-right: 0;
}
.vg-hero__stats strong {
  display: inline-flex;
  white-space: nowrap;
  font-family: var(--vg-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.vg-hero__stats span {
  display: block;
  margin-top: 0.4rem;
  white-space: nowrap;
  font-size: 1.28rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* Destination strip — folded into the hero, not a separate block */
.vg-chips {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7rem;
  z-index: 4;
  display: flex;
  justify-content: center;
}
.vg-chips__inner {
  max-width: calc(100% - 3rem);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  border-radius: 999px;
  background: rgba(8, 20, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  overflow-x: auto;
  scrollbar-width: none;
}
.vg-chips__inner::-webkit-scrollbar {
  display: none;
}
.vg-chips__label {
  flex-shrink: 0;
  padding: 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.vg-chip {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.vg-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Marquee */
.vg-marquee {
  margin-top: 2rem;
  padding: 0.95rem 0;
  background: var(--vg-primary);
  color: #d7e4ea;
  overflow: hidden;
  white-space: nowrap;
}
.vg-marquee__track {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  width: max-content;
  animation: vgMarquee 30s linear infinite;
  font-family: var(--vg-display);
  font-weight: 700;
  font-size: 1.05rem;
  will-change: transform;
}
.vg-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.vg-marquee__track span::after {
  content: "✦";
  color: var(--vg-accent);
  font-size: 0.7rem;
}
@keyframes vgMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.vg-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.vg-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vg-accent);
}
.vg-section__title {
  margin: 0 0 0.7rem;
  font-family: var(--vg-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.vg-section__text {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--vg-mist);
  font-size: 1.05rem;
}
.vg-section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.vg-section__head .vg-section__text {
  margin-bottom: 0;
}

/* Tours */
.vg-tours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.vg-tour {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 260px;
  background: var(--vg-card);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--vg-line);
  transition:
    transform 0.35s var(--vg-ease),
    box-shadow 0.35s;
}
.vg-tour:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(11, 31, 42, 0.12);
}
.vg-tour__media {
  position: relative;
  overflow: hidden;
  background: #1a3340;
}
.vg-tour__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--vg-ease);
}
.vg-tour:hover .vg-tour__media img {
  transform: scale(1.06);
}
.vg-tour__badge {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--vg-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.vg-tour__body {
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
}
.vg-tour__place {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vg-teal);
}
.vg-tour__title {
  margin: 0 0 0.5rem;
  font-family: var(--vg-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
}
.vg-tour__text {
  margin: 0 0 auto;
  color: var(--vg-mist);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vg-tour__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--vg-line);
}
.vg-tour__price {
  font-family: var(--vg-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vg-primary);
}
.vg-tour__more {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--vg-accent);
}

/* Hotels */
.vg-hotels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.vg-hotel {
  background: var(--vg-card);
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--vg-line);
  transition:
    transform 0.35s var(--vg-ease),
    box-shadow 0.35s;
}
.vg-hotel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 31, 42, 0.1);
}
.vg-hotel__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #d5e0e6;
}
.vg-hotel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--vg-ease);
}
.vg-hotel:hover .vg-hotel__media img {
  transform: scale(1.05);
}
.vg-hotel__body {
  padding: 1rem 1.1rem 1.2rem;
}
.vg-hotel__stars {
  color: var(--vg-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.vg-hotel__title {
  margin: 0.25rem 0 0.3rem;
  font-family: var(--vg-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.vg-hotel__loc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--vg-mist);
  font-weight: 600;
}
.vg-hotel__price {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--vg-teal);
}

/* Campaigns */
.vg-campaigns {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}
.vg-campaign {
  position: relative;
  min-height: 280px;
  border-radius: 1.25rem;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: end;
}
.vg-campaign__media {
  position: absolute;
  inset: 0;
}
.vg-campaign__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vg-campaign__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(11, 31, 42, 0.9) 100%
  );
}
.vg-campaign__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.vg-campaign__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--vg-accent);
  font-size: 0.72rem;
  font-weight: 800;
}
.vg-campaign__title {
  margin: 0 0 0.4rem;
  font-family: var(--vg-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.vg-campaign__text {
  margin: 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Perks */
.vg-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.vg-perk {
  padding: 1.35rem 1.2rem;
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: 1.1rem;
}
.vg-perk__num {
  font-family: var(--vg-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vg-teal);
  margin-bottom: 0.5rem;
}
.vg-perk__title {
  margin: 0 0 0.35rem;
  font-family: var(--vg-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.vg-perk__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--vg-mist);
}

/* Blog */
.vg-blog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.vg-post {
  background: var(--vg-card);
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--vg-line);
  transition:
    transform 0.35s var(--vg-ease),
    box-shadow 0.35s;
}
.vg-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 31, 42, 0.1);
}
.vg-post__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #d5e0e6;
}
.vg-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--vg-ease);
}
.vg-post:hover .vg-post__media img {
  transform: scale(1.05);
}
.vg-post__body {
  padding: 1.15rem 1.2rem 1.35rem;
}
.vg-post__title {
  margin: 0 0 0.4rem;
  font-family: var(--vg-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.vg-post__text {
  margin: 0;
  color: var(--vg-mist);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vg-post__more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--vg-accent);
}

.vg-cta {
  max-width: 1220px;
  margin: 0 auto 3.5rem;
  padding: 2.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(120deg, #0b1f2a, #163a4a 55%, #1fa7a0);
  color: #fff;
  border-radius: 1.5rem;
}
.vg-cta__title {
  margin: 0 0 0.4rem;
  font-family: var(--vg-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
}
.vg-cta__text {
  margin: 0;
  opacity: 0.85;
  max-width: 32rem;
}

.vg-page-head {
  max-width: 1220px;
  margin: 0 auto;
  padding: 7rem 1.25rem 1.5rem;
}
.vg-page-head__title {
  margin: 0 0 0.55rem;
  font-family: var(--vg-display);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.vg-page-head__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--vg-mist);
  font-size: 1.08rem;
}
.vg-breadcrumb {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vg-accent);
}

.vg-detail {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.vg-detail--wide {
  max-width: 1000px;
}
.vg-cover {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
  background: #d5e0e6;
}
.vg-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vg-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
}
.vg-pill {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 167, 160, 0.12);
  color: var(--vg-teal);
  font-size: 0.82rem;
  font-weight: 800;
}
.vg-pill--accent {
  background: rgba(232, 93, 76, 0.12);
  color: var(--vg-accent);
}
.vg-summary {
  font-size: 1.15rem;
  color: var(--vg-mist);
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--vg-line);
}
.vg-prose {
  font-size: 1.05rem;
}
.vg-prose p {
  margin: 0 0 1rem;
}
.vg-prose h2,
.vg-prose h3 {
  font-family: var(--vg-display);
  font-weight: 700;
  margin: 1.75rem 0 0.65rem;
}
.vg-prose ul,
.vg-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.vg-prose a {
  color: var(--vg-accent);
  font-weight: 800;
  text-decoration: underline;
}

.vg-contact {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}
.vg-contact__card {
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: 1.25rem;
  padding: 1.75rem;
}
.vg-contact__card h2 {
  margin: 0 0 1rem;
  font-family: var(--vg-display);
  font-size: 1.45rem;
  font-weight: 700;
}
.vg-contact__list {
  display: grid;
  gap: 0.9rem;
}
.vg-contact__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--vg-mist);
  font-size: 0.95rem;
}
.vg-contact__list svg {
  flex-shrink: 0;
  color: var(--vg-accent);
  margin-top: 0.15rem;
}
.vg-contact__list a {
  color: var(--vg-primary);
  font-weight: 800;
}
.vg-form {
  display: grid;
  gap: 0.9rem;
}
.vg-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vg-field input,
.vg-field textarea,
.vg-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--vg-line);
  border-radius: 0.85rem;
  background: var(--vg-sand);
  color: var(--vg-ink);
}
.vg-field input:focus,
.vg-field textarea:focus,
.vg-field select:focus {
  outline: none;
  border-color: var(--vg-teal);
  box-shadow: 0 0 0 3px rgba(31, 167, 160, 0.2);
}
.vg-alert {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}
.vg-alert--ok {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
}
.vg-alert--error {
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
}

.vg-footer {
  background: var(--vg-primary);
  color: #b7c9d2;
  padding: 3.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
}
.vg-footer__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.vg-footer__brand {
  font-family: var(--vg-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}
.vg-footer__tag {
  margin: 0.5rem 0 0;
  opacity: 0.85;
  max-width: 22rem;
}
.vg-footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vg-accent);
}
.vg-footer a {
  color: #b7c9d2;
}
.vg-footer a:hover {
  color: #fff;
}
.vg-footer ul {
  display: grid;
  gap: 0.45rem;
}
.vg-footer__copy {
  max-width: 1220px;
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.65;
}
.vg-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.vg-wa svg {
  width: 28px;
  height: 28px;
}
.vg-empty {
  color: var(--vg-mist);
  padding: 2rem 0;
}

.vg-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--vg-ease),
    transform 0.7s var(--vg-ease);
}
.vg-reveal.is-in,
.vg-reveal.is-inview,
html.vg-motion-off .vg-reveal,
html:not(.vg-js) .vg-reveal {
  opacity: 1;
  transform: none;
}
html[data-motion="low"] .vg-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
html[data-motion="low"] .vg-hero__media img,
html[data-motion="low"] .vg-marquee__track,
html[data-motion="low"] .vg-hero__word,
html[data-motion="low"] .vg-hero__eyebrow,
html[data-motion="low"] .vg-hero__text,
html[data-motion="low"] .vg-hero__actions,
html[data-motion="low"] .vg-hero__stats {
  animation: none;
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .vg-tours,
  .vg-campaigns,
  .vg-contact {
    grid-template-columns: 1fr;
  }
  .vg-hotels {
    grid-template-columns: 1fr 1fr;
  }
  .vg-perks,
  .vg-blog {
    grid-template-columns: 1fr 1fr;
  }
  .vg-tour {
    grid-template-columns: 1fr;
  }
  .vg-tour__media {
    aspect-ratio: 16/10;
  }
  .vg-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .vg-hotels,
  .vg-perks,
  .vg-blog {
    grid-template-columns: 1fr;
  }
  .vg-footer__inner {
    grid-template-columns: 1fr;
  }
  .vg-cta {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .vg-hero__content {
    padding: 6rem 1.1rem 9.5rem;
  }
  .vg-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.5rem;
    padding-top: 1rem;
  }
  .vg-hero__stats > div {
    border-right: 0;
    padding: 0;
    margin: 0;
  }
  .vg-chips {
    bottom: 5.4rem;
  }
  .vg-chips__inner {
    max-width: calc(100% - 2rem);
  }
  .vg-hero__controls {
    bottom: 1rem;
  }
  .vg-hero__nav {
    width: 2.15rem;
    height: 2.15rem;
  }
}

/* Zar Yazılım credit logo (footer) */
.vg-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.vg-footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.vg-footer__cms {
  display: inline-flex;
  align-items: center;
  opacity: 0.88;
  transition: opacity 0.2s ease;
  line-height: 0;
}
.vg-footer__cms:hover {
  opacity: 1;
}
.vg-footer__cms img {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
/* ——— Integration: boarding-stub lang, drawer, slider, faq, nl, captcha, map ——— */
.vg-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--vg-ink);
}
.vg-brand__logo {
  height: 2.2rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
}
.vg-brand__text {
  font-family: Syne, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vg-ink);
}
.vg-brand__text span {
  color: var(--vg-accent);
}

/* Dil: boarding-stub — poliçe klipsi + mint köşe */
.vg-lang--boarding {
  display: inline-flex;
  align-items: stretch;
  gap: 0.3rem;
}
.vg-lang--header a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 999px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.vg-lang--header a .vg-lang__stub {
  display: none;
}
.vg-lang--header a:hover {
  border-color: var(--vg-accent);
  color: #fff;
}
.vg-lang--header a.is-active {
  color: #fff;
  background: var(--vg-accent);
  border-color: var(--vg-accent);
}
.vg-header.is-scrolled .vg-lang--header a,
.vg-header.is-solid .vg-lang--header a {
  border-color: rgba(11, 29, 54, 0.18);
  color: var(--vg-mist);
}
.vg-header.is-scrolled .vg-lang--header a:hover,
.vg-header.is-solid .vg-lang--header a:hover {
  color: var(--vg-primary);
  border-color: var(--vg-accent);
}
.vg-header.is-scrolled .vg-lang--header a.is-active,
.vg-header.is-solid .vg-lang--header a.is-active {
  color: #fff;
}

.vg-lang--drawer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
}
.vg-nav__foot .vg-lang--drawer a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(11, 29, 54, 0.12);
  background: #fff;
  color: var(--vg-ink);
  text-decoration: none;
  border-radius: 0.65rem;
}
.vg-nav__foot .vg-lang--drawer a.is-active {
  border-color: var(--vg-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--vg-accent) 25%, transparent);
}
.vg-nav__foot .vg-lang--drawer .vg-lang__stub {
  width: 0.5rem;
  height: 1.4rem;
  border-radius: 0.15rem;
  background: var(--vg-accent);
}
.vg-nav__foot .vg-lang--drawer .vg-lang__code {
  font-size: 0.8rem;
  font-weight: 800;
}
.vg-nav__foot .vg-lang--drawer .vg-lang__name {
  font-size: 0.88rem;
  font-weight: 600;
}

.vg-nav--desktop {
  margin-left: auto;
}
.vg-header__cta {
  order: 4;
}
.vg-lang--header {
  order: 3;
}

.vg-nav-toggle {
  display: none;
  order: 5;
  margin-left: auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.55rem;
  padding: 0.5rem 0.9rem 0.5rem 0.8rem;
  border: 1.5px solid rgba(11, 29, 54, 0.12);
  background: #fff;
  color: var(--vg-ink);
  cursor: pointer;
  font: inherit;
  border-radius: 999px;
  -webkit-appearance: none;
  appearance: none;
}
.vg-nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.vg-nav-toggle__bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--vg-ink);
  position: static !important;
  transition:
    transform 0.25s,
    opacity 0.2s;
}
.vg-nav-toggle__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.vg-nav-toggle[aria-expanded="true"] .vg-nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vg-nav-toggle[aria-expanded="true"] .vg-nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.vg-nav-toggle[aria-expanded="true"] .vg-nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .vg-nav--desktop,
  .vg-header__cta,
  .vg-lang--header {
    display: none !important;
  }
  .vg-nav-toggle {
    display: inline-flex !important;
  }
}

.vg-nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(11, 29, 54, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.vg-nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}
.vg-nav--mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: min(22rem, 92vw);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.vg-nav--mobile.is-open {
  transform: none;
  pointer-events: auto;
}
.vg-nav__panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--vg-sand, #e8eef2);
  padding: 1.1rem 1.15rem 1.35rem;
  box-shadow: -16px 0 40px rgba(11, 29, 54, 0.2);
}
.vg-nav__mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.vg-nav__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vg-accent);
}
.vg-nav__close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1.5px solid rgba(11, 29, 54, 0.12);
  background: #fff;
  cursor: pointer;
  position: relative;
  border-radius: 999px;
}
.vg-nav__close span,
.vg-nav__close span::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--vg-ink);
}
.vg-nav__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}
.vg-nav__close span::before {
  content: "";
  transform: rotate(90deg);
  left: 0;
  top: 0;
}
.vg-nav--mobile .vg-nav__list,
.vg-nav--mobile .vg-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  counter-reset: vg-nav;
  flex: 1;
  overflow: auto;
}
.vg-nav--mobile .vg-nav__list > li,
.vg-nav--mobile .site-nav__item {
  counter-increment: vg-nav;
  list-style: none;
}
.vg-nav--mobile .vg-nav__list > li > a,
.vg-nav--mobile .site-nav__item > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--vg-ink);
  border-bottom: 1px solid rgba(11, 29, 54, 0.08);
}
.vg-nav--mobile .vg-nav__list > li > a::before,
.vg-nav--mobile .site-nav__item > a::before {
  content: counter(vg-nav, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--vg-accent);
  letter-spacing: 0.06em;
}
.vg-nav__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1.5px solid rgba(11, 29, 54, 0.1);
  display: grid;
  gap: 0.75rem;
}
.vg-nav__cta {
  width: 100%;
  text-align: center;
}
.vg-nav__meta {
  display: grid;
  gap: 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.vg-nav__meta a {
  color: black;
}
body.vg-nav-open {
  overflow: hidden;
}

.vg-nav--desktop .has-children {
  position: relative;
}
.vg-nav--desktop .has-children > .sub-menu,
.vg-nav--desktop .has-children > ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 12rem;
  padding: 0.55rem 0 0.45rem;
  margin: 0;
  background: #fff;
  border: 1.5px solid rgba(11, 29, 54, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(11, 29, 54, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  transition-delay: 0.12s;
}
.vg-nav--desktop .has-children::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.vg-nav--desktop .has-children:hover > .sub-menu,
.vg-nav--desktop .has-children:hover > ul,
.vg-nav--desktop .has-children:focus-within > .sub-menu,
.vg-nav--desktop .has-children:focus-within > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.vg-faq--boarding {
  display: grid;
  gap: 0;
  max-width: 760px;
  border: 1.5px solid rgba(11, 29, 54, 0.1);
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
.vg-faq__item {
  border-bottom: 1.5px solid rgba(11, 29, 54, 0.08);
}
.vg-faq__item:last-child {
  border-bottom: 0;
}
.vg-faq__item summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 800;
  color: var(--vg-ink);
}
.vg-faq__item summary::-webkit-details-marker {
  display: none;
}
.vg-faq__idx {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--vg-accent);
  min-width: 1.5rem;
}
.vg-faq__body {
  padding: 0 1.1rem 1.1rem 3.45rem;
  color: rgba(11, 29, 54, 0.7);
  line-height: 1.65;
}
.vg-faq__item[open] {
  background: color-mix(in srgb, var(--vg-accent) 6%, #fff);
}

.vg-legal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.vg-legal__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1.5px solid rgba(11, 29, 54, 0.1);
  background: #fff;
  text-decoration: none;
  color: inherit;
  border-radius: 1rem;
}
.vg-legal__mark {
  width: 2rem;
  height: 0.3rem;
  background: var(--vg-accent);
  border-radius: 2px;
}
.vg-legal__title {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.vg-legal__more {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--vg-accent);
}
@media (max-width: 900px) {
  .vg-legal {
    grid-template-columns: 1fr;
  }
}

/* Generic listing grid — Turlar (with icon), Oteller, Blog */
.vg-grid,
.vg-coverages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.vg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: 1.15rem;
  overflow: hidden;
  color: inherit;
  transition:
    transform 0.35s var(--vg-ease),
    box-shadow 0.35s;
}
.vg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 31, 42, 0.12);
}
.vg-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #d5e0e6;
}
.vg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--vg-ease);
}
.vg-card:hover .vg-card__media img {
  transform: scale(1.06);
}
.vg-card__icon {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vg-accent);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(232, 93, 76, 0.35);
}
.vg-card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}
.vg-card__title {
  margin: 1.1rem 1.25rem 0.4rem;
  font-family: var(--vg-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.vg-card__text {
  margin: 0 1.25rem;
  color: var(--vg-mist);
  font-size: 0.92rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vg-card__link {
  margin: 1rem 1.25rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--vg-accent);
}
@media (max-width: 1000px) {
  .vg-grid,
  .vg-coverages {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .vg-grid,
  .vg-coverages {
    grid-template-columns: 1fr;
  }
}

.vg-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
}
.vg-pager__page,
.vg-pager__nav {
  min-width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(11, 29, 54, 0.12);
  background: #fff;
  color: var(--vg-ink);
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
}
.vg-pager__page.is-active {
  background: var(--vg-accent);
  color: #fff;
  border-color: var(--vg-accent);
}
.vg-pager__nav.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.vg-captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}
.vg-captcha img {
  border: 1.5px solid rgba(11, 29, 54, 0.12);
  height: 44px;
  border-radius: 0.5rem;
}
.vg-captcha__refresh {
  width: 2.4rem;
  height: 2.4rem;
  border: 1.5px solid rgba(11, 29, 54, 0.12);
  background: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}
.vg-captcha__refresh.is-spin svg {
  animation: vgSpin 0.6s linear;
}
.vg-captcha input {
  flex: 1;
  min-width: 8rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid rgba(11, 29, 54, 0.12);
  border-radius: 0.65rem;
}
@keyframes vgSpin {
  to {
    transform: rotate(360deg);
  }
}

.vg-map {
  margin: 0 1.25rem 2.5rem;
  border: 1.5px solid rgba(11, 29, 54, 0.1);
  overflow: hidden;
  border-radius: 1rem;
}
.vg-map__frame {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
}

.vg-footer__nl {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: end;
  max-width: 1220px;
  margin: 0 auto 2rem;
  padding: 0 0.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vg-footer__nl-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vg-accent);
}
.vg-footer__nl-title {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #fff;
}
.vg-footer__nl-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}
.vg-footer__nl-tab {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  border-radius: 999px;
}
.vg-footer__nl-tab.is-active {
  background: var(--vg-accent);
  color: #fff;
  border-color: var(--vg-accent);
}
.vg-footer__nl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.vg-footer__nl-input {
  flex: 1;
  min-width: 12rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
}
.vg-footer__nl-msg {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.vg-footer__nl-msg.is-ok {
  color: #9be7b2;
}
.vg-footer__nl-msg.is-err {
  color: #ffb4a8;
}
.vg-footer__pair {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
.vg-footer__brand {
  color: #fff;
  text-decoration: none;
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.vg-footer__logo {
  height: 2rem;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.vg-footer__addr {
  margin: 1rem 0 0;
  white-space: pre-line;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}
.vg-hp,
.vg-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 800px) {
  .vg-footer__nl {
    grid-template-columns: 1fr;
  }
  .vg-footer__nl-row {
    flex-direction: column;
  }
  .vg-footer__nl-btn {
    width: 100%;
  }
  .vg-footer__pair {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vg-reveal,
  .vg-hero__word,
  .vg-hero__mesh {
    animation: none !important;
    transition: none !important;
  }
}

.vg-hero {
  position: relative;
}
.vg-hero__slide {
  display: block;
  width: 100%;
  min-height: inherit;
}
.vg-hero__slide[hidden] {
  display: none !important;
}
.vg-hero__slide .vg-hero__media {
  position: absolute;
  inset: 0;
}
.vg-hero__slide .vg-hero__veil {
  position: absolute;
  inset: 0;
}
.vg-hero__slide .vg-hero__content {
  position: relative;
  z-index: 2;
}
.vg-hero__controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(8, 20, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.vg-hero__nav {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.vg-hero__nav svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}
.vg-hero__nav:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.vg-hero__nav:active {
  background: var(--vg-accent);
  color: #fff;
}
.vg-hero__dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0 0.3rem;
}
.vg-hero__dot {
  width: 0.45rem;
  height: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    width 0.25s,
    background 0.25s;
}
.vg-hero__dot.is-active {
  width: 1.6rem;
  background: var(--vg-accent);
}
.vg-brand__logo {
  height: 2.1rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
}
.vg-brand__text {
  font-family: Syne, sans-serif;
  font-weight: 800;
  color: inherit;
}
.vg-lang--boarding a .vg-lang__stub {
  display: inline-block;
  width: 0.9rem;
  height: 1.15rem;
  background: repeating-linear-gradient(
    90deg,
    var(--vg-accent) 0 2px,
    transparent 2px 4px
  );
  border-radius: 0.15rem 0.4rem 0.4rem 0.15rem;
  opacity: 0.85;
  display: none;
}
