/* Velvet Pol — heavy luxury (dark + gold) */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  /* Safe areas (notch / home indicator) — used with max() in padding */
  --vn-safe-top: env(safe-area-inset-top, 0px);
  --vn-safe-right: env(safe-area-inset-right, 0px);
  --vn-safe-bottom: env(safe-area-inset-bottom, 0px);
  --vn-safe-left: env(safe-area-inset-left, 0px);
  /* Gold / brass — primary accent (legacy names kept for compatibility) */
  --vn-green: #c9a962;
  --vn-green-light: #dfc88a;
  --vn-green-soft: #a8945c;
  --vn-gold: #c9a962;
  --vn-gold-bright: #f0e6c8;
  --vn-gold-dim: rgba(201, 169, 98, 0.45);
  --vn-bg: #080809;
  --vn-bg-mid: #0e0e11;
  --vn-surface: #121218;
  --vn-surface-2: #18181f;
  --vn-white: #faf8f5;
  --vn-text: #e8e4de;
  --vn-muted: #9c9790;
  --vn-border: rgba(201, 169, 98, 0.14);
  --vn-border-strong: rgba(201, 169, 98, 0.28);
  --vn-font-sans: "Outfit", system-ui, sans-serif;
  --vn-font-serif: "Cormorant Garamond", Georgia, serif;
  --vn-font-display: "Cinzel", Georgia, serif;
  --vn-radius: 999px;
  --vn-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --vn-glow-gold: 0 0 60px rgba(201, 169, 98, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--vn-font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--vn-text);
  background-color: var(--vn-bg);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -15%, rgba(201, 169, 98, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 40% at 100% 10%, rgba(90, 70, 40, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 30%, rgba(40, 55, 45, 0.15), transparent 45%),
    linear-gradient(180deg, #060607 0%, #0c0c0e 35%, #080809 100%);
  background-attachment: fixed;
}

/* iOS/Android: fixed backgrounds hurt scroll & compositing */
@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }
}

body.vn-no-scroll {
  overflow: hidden;
  touch-action: none;
}

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

a {
  color: var(--vn-gold);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--vn-gold-bright);
  text-decoration: none;
}

.vn-container {
  width: min(1180px, 100%);
  max-width: 1180px;
  padding-left: max(1rem, var(--vn-safe-left));
  padding-right: max(1rem, var(--vn-safe-right));
  margin-inline: auto;
  box-sizing: border-box;
}

/* Header */
.vn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Padding for notch when address bar hides — subtle */
  padding-top: var(--vn-safe-top);
  background: linear-gradient(
    180deg,
    rgba(6, 6, 8, 0.97) 0%,
    rgba(10, 10, 12, 0.88) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--vn-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.vn-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.vn-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.vn-logo__name {
  font-family: var(--vn-font-serif);
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--vn-gold-bright) 0%, var(--vn-green) 50%, #8b7344 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}

.vn-logo__tag {
  font-size: 0.72rem;
  color: var(--vn-muted);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.vn-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.vn-nav__toggle {
  display: none;
  border: 1px solid var(--vn-border-strong);
  background: var(--vn-surface);
  color: var(--vn-text);
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

.vn-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
  align-items: center;
}

.vn-nav__item {
  position: relative;
}

.vn-nav__link {
  display: block;
  padding: 0.55rem 0.75rem;
  color: rgba(232, 228, 222, 0.88);
  font-family: var(--vn-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.vn-nav__link:hover,
.vn-nav__link--active {
  background: rgba(201, 169, 98, 0.1);
  text-decoration: none;
  color: var(--vn-gold-bright);
}

.vn-nav__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: linear-gradient(165deg, #16161c 0%, #0e0e12 100%);
  border: 1px solid var(--vn-border-strong);
  border-radius: 12px;
  box-shadow: var(--vn-shadow), var(--vn-glow-gold);
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
}

.vn-nav__item--has-sub:hover .vn-nav__sub,
.vn-nav__item--has-sub:focus-within .vn-nav__sub {
  display: block;
}

.vn-nav__sub a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--vn-font-sans);
  color: var(--vn-text);
  text-decoration: none;
}

.vn-nav__sub a:hover {
  background: rgba(201, 169, 98, 0.08);
  text-decoration: none;
  color: var(--vn-gold-bright);
}

.vn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--vn-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.vn-btn--primary {
  background: linear-gradient(145deg, #d4b76a 0%, #a88942 45%, #8a6f35 100%);
  color: #1a1510;
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.vn-btn--primary:hover {
  background: linear-gradient(145deg, #e4c77e 0%, #b89650 50%, #9a7a3a 100%);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #120f0c;
}

.vn-btn--ghost {
  background: transparent;
  color: var(--vn-gold);
  border: 1px solid var(--vn-border-strong);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.06);
}

.vn-btn--ghost:hover {
  background: rgba(201, 169, 98, 0.08);
  color: var(--vn-gold-bright);
  text-decoration: none;
  border-color: rgba(201, 169, 98, 0.45);
}

@media (max-width: 960px) {
  .vn-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.85rem;
    -webkit-tap-highlight-color: transparent;
  }

  .vn-nav__list {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1rem;
    gap: 0.15rem;
  }

  .vn-nav__list.is-open {
    display: flex;
  }

  .vn-nav__item--has-sub .vn-nav__sub {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0.35rem 0 0.5rem 0.75rem;
    background: transparent;
  }

  .vn-header__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .vn-header__inner > .vn-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 5rem);
    order: 1;
  }

  .vn-header__inner > .vn-nav__toggle {
    order: 2;
    flex-shrink: 0;
  }

  .vn-header__inner > .vn-btn {
    order: 3;
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
    box-sizing: border-box;
  }

  .vn-header__inner > .vn-nav {
    order: 4;
    width: 100%;
    flex-basis: 100%;
  }

  .vn-nav__link {
    padding: 0.85rem 0.85rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .vn-nav__sub a {
    padding: 0.75rem 1rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }
}

/* Hero */
.vn-hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 3.5rem;
  color: var(--vn-white);
}

.vn-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vn-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.vn-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 4, 6, 0.97) 0%, rgba(8, 8, 12, 0.55) 42%, rgba(12, 10, 8, 0.35) 100%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(201, 169, 98, 0.07), transparent 55%);
  z-index: 1;
}

.vn-hero .vn-container {
  position: relative;
  z-index: 2;
}

.vn-hero__label {
  font-family: var(--vn-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vn-gold);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.vn-hero h1 {
  font-family: var(--vn-font-serif);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  max-width: 16ch;
  margin: 0 0 1.15rem;
  color: var(--vn-white);
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.vn-hero__lead {
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 48ch;
  color: rgba(248, 245, 240, 0.88);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.vn-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.vn-section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.vn-section--white {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.97) 0%, rgba(10, 10, 12, 0.85) 100%);
  border-top: 1px solid var(--vn-border);
  border-bottom: 1px solid var(--vn-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.vn-section__title {
  font-family: var(--vn-font-serif);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 600;
  color: var(--vn-gold-bright);
  text-align: center;
  margin: 0 0 0.65rem;
  letter-spacing: 0.03em;
}

.vn-section__subtitle {
  text-align: center;
  color: var(--vn-muted);
  max-width: 58ch;
  margin: 0 auto 3rem;
  font-weight: 300;
  font-size: 1.05rem;
}

/* Split slider block */
.vn-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .vn-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.vn-split__media {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--vn-border-strong);
  box-shadow: var(--vn-shadow), 0 0 0 1px rgba(201, 169, 98, 0.06);
}

.vn-split__step {
  font-family: var(--vn-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--vn-green-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vn-split h2 {
  font-family: var(--vn-font-serif);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  margin: 0.65rem 0 1rem;
  color: var(--vn-text);
  font-weight: 600;
}

.vn-split__lead {
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--vn-gold);
}

.vn-slider-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.vn-slider-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--vn-border-strong);
  background: var(--vn-surface);
  color: var(--vn-gold);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vn-slider-nav button:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: var(--vn-gold);
  color: var(--vn-gold-bright);
}

/* Stats row */
.vn-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 800px) {
  .vn-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vn-stat {
  padding: 1.75rem 1.25rem;
  background: linear-gradient(165deg, var(--vn-surface-2) 0%, var(--vn-surface) 100%);
  border-radius: 4px;
  border: 1px solid var(--vn-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vn-stat:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: var(--vn-glow-gold);
}

.vn-stat__num {
  font-family: var(--vn-font-serif);
  font-size: 2.65rem;
  font-weight: 600;
  background: linear-gradient(180deg, var(--vn-gold-bright) 0%, var(--vn-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.vn-stat__label {
  font-size: 0.88rem;
  color: var(--vn-muted);
  margin-top: 0.65rem;
  font-weight: 300;
}

/* Informacja prawna przy statystykach (m.in. zgodność z polityką reklam) */
.vn-stats-disclaimer {
  margin: 1.5rem auto 0;
  max-width: 62ch;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--vn-muted);
  font-weight: 300;
  text-align: center;
}

/* Offer cards */
.vn-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .vn-grid-3 {
    grid-template-columns: 1fr;
  }
}

.vn-card {
  background: linear-gradient(165deg, #16161d 0%, #101014 100%);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--vn-border);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.vn-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--vn-shadow), var(--vn-glow-gold);
}

.vn-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.vn-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vn-card:hover .vn-card__img img {
  transform: scale(1.04);
}

.vn-card__body {
  padding: 1.5rem 1.6rem 1.75rem;
}

.vn-card__body h3 {
  font-family: var(--vn-font-serif);
  font-size: 1.4rem;
  margin: 0 0 0.65rem;
  color: var(--vn-gold-bright);
  font-weight: 600;
}

.vn-card__body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--vn-muted);
  font-weight: 300;
  line-height: 1.65;
}

.vn-card__body a {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--vn-font-display);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vn-gold);
}

.vn-card__body a:hover {
  color: var(--vn-gold-bright);
}

/* Case grid */
.vn-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .vn-grid-2 {
    grid-template-columns: 1fr;
  }
}

.vn-case {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 240px;
  color: var(--vn-white);
  border: 1px solid rgba(201, 169, 98, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vn-case:hover {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.vn-case img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.vn-case:hover img {
  transform: scale(1.05);
}

.vn-case__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 4, 6, 0.92) 0%,
    rgba(8, 8, 12, 0.25) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.4rem;
}

.vn-case__overlay h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: var(--vn-font-sans);
  letter-spacing: 0.02em;
}

.vn-case--clickable {
  cursor: pointer;
}

.vn-case--clickable:focus-visible {
  outline: 2px solid var(--vn-gold);
  outline-offset: 4px;
}

.vn-case__hint {
  display: block;
  font-family: var(--vn-font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vn-gold);
  margin-bottom: 0.45rem;
}

/* Modal — case study */
.vn-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.vn-modal[hidden] {
  display: none;
}

.vn-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 4, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.vn-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #14141a 0%, #0c0c10 100%);
  border: 1px solid var(--vn-border-strong);
  border-radius: 4px;
  box-shadow: var(--vn-shadow), 0 0 80px rgba(201, 169, 98, 0.06);
}

.vn-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--vn-border);
  border-radius: 2px;
  background: rgba(8, 8, 10, 0.92);
  color: var(--vn-gold);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vn-modal__close:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: var(--vn-gold);
  color: var(--vn-gold-bright);
}

.vn-modal__img-wrap {
  flex-shrink: 0;
  max-height: 42vh;
  overflow: hidden;
  background: #050506;
}

.vn-modal__img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 42vh;
  object-fit: cover;
  display: block;
}

.vn-modal__body {
  overflow-y: auto;
  padding: 1.75rem 2rem 2rem;
  -webkit-overflow-scrolling: touch;
}

.vn-case-detail h2 {
  font-family: var(--vn-font-serif);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--vn-gold-bright);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.vn-case-detail__meta {
  font-size: 0.86rem;
  color: var(--vn-muted);
  margin: 0 0 1.35rem;
  font-weight: 300;
}

.vn-case-detail h3 {
  font-family: var(--vn-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vn-gold);
  margin: 1.35rem 0 0.55rem;
}

.vn-case-detail p {
  margin: 0 0 0.9rem;
  font-size: 0.96rem;
  color: rgba(232, 228, 222, 0.92);
  font-weight: 300;
}

.vn-case-detail ul {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
  font-size: 0.96rem;
  color: rgba(232, 228, 222, 0.9);
}

.vn-case-detail li {
  margin-bottom: 0.4rem;
}

@media (max-width: 600px) {
  .vn-modal__panel {
    max-height: 95vh;
  }

  .vn-modal__img-wrap {
    max-height: 32vh;
  }

  .vn-modal__img-wrap img {
    max-height: 32vh;
  }
}

/* Blog */
.vn-blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .vn-blog-row {
    grid-template-columns: 1fr;
  }
}

.vn-post {
  background: linear-gradient(165deg, var(--vn-surface-2) 0%, var(--vn-surface) 100%);
  border-radius: 4px;
  border: 1px solid var(--vn-border);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.vn-post:hover {
  border-color: rgba(201, 169, 98, 0.35);
}

.vn-post .vn-card__img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.vn-post .vn-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vn-post__body {
  padding: 1.35rem 1.4rem;
}

.vn-post__meta {
  font-size: 0.75rem;
  font-family: var(--vn-font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vn-green-soft);
}

.vn-post h3 {
  font-size: 1.08rem;
  margin: 0.5rem 0 0;
  font-family: var(--vn-font-serif);
  font-weight: 600;
  color: var(--vn-text);
}

.vn-post h3 a {
  color: inherit;
  text-decoration: none;
}

.vn-post h3 a:hover {
  color: var(--vn-gold-bright);
}

/* Blog — layout (sidebar + grid + szukaj) */
.vn-blog-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

@media (max-width: 960px) {
  .vn-blog-layout {
    grid-template-columns: 1fr;
  }
}

.vn-blog-sidebar {
  position: sticky;
  top: 6.5rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(165deg, var(--vn-surface-2) 0%, var(--vn-surface) 100%);
  border: 1px solid var(--vn-border);
  border-radius: 4px;
}

.vn-blog-sidebar h2 {
  font-family: var(--vn-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vn-gold);
  margin: 0 0 1.1rem;
}

.vn-blog-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vn-blog-sidebar li {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.vn-blog-sidebar a {
  color: rgba(232, 228, 222, 0.88);
  font-weight: 400;
}

.vn-blog-sidebar a:hover {
  color: var(--vn-gold-bright);
}

.vn-blog-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.vn-blog-intro .vn-section__title {
  margin-bottom: 0.35rem;
}

.vn-blog-search-wrap {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.vn-blog-search-wrap label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.vn-blog-search {
  width: 100%;
  padding: 0.95rem 1.15rem 0.95rem 3rem;
  border: 1px solid var(--vn-border-strong);
  border-radius: 999px;
  background: var(--vn-surface);
  color: var(--vn-text);
  font: inherit;
  font-size: 0.92rem;
}

.vn-blog-search:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.vn-blog-search-wrap::before {
  content: "⌕";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.45;
  pointer-events: none;
}

.vn-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .vn-blog-grid {
    grid-template-columns: 1fr;
  }
}

.vn-blog-marketing {
  margin-top: 3.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid var(--vn-border);
  border-radius: 4px;
  background: rgba(201, 169, 98, 0.04);
}

.vn-blog-marketing h2 {
  font-family: var(--vn-font-serif);
  font-size: 1.45rem;
  color: var(--vn-gold-bright);
  margin: 0 0 1rem;
}

.vn-blog-marketing ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--vn-muted);
}

.vn-blog-marketing .vn-blog-marketing__lead {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(232, 228, 222, 0.92);
  margin: 0;
  line-height: 1.7;
}

.vn-blog-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .vn-blog-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vn-blog-gallery a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--vn-border);
  aspect-ratio: 4/3;
}

.vn-blog-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vn-blog-gallery a:hover img {
  transform: scale(1.05);
}

.vn-blog-attrib {
  font-size: 0.78rem;
  color: var(--vn-muted);
  margin-top: 2.5rem;
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
}

/* Footer */
.vn-footer {
  background: linear-gradient(180deg, #040405 0%, #020203 100%);
  color: rgba(240, 236, 230, 0.88);
  padding: 4rem 0 2.5rem;
  margin-top: 0;
  border-top: 1px solid var(--vn-border-strong);
  box-shadow: inset 0 1px 0 rgba(201, 169, 98, 0.06);
}

.vn-footer a {
  color: rgba(232, 228, 222, 0.85);
  transition: color 0.2s ease;
}

.vn-footer a:hover {
  color: var(--vn-gold-bright);
}

.vn-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 800px) {
  .vn-footer__grid {
    grid-template-columns: 1fr;
  }
}

.vn-footer h4 {
  font-family: var(--vn-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vn-gold);
  margin: 0 0 1.25rem;
}

.vn-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vn-footer li {
  margin-bottom: 0.55rem;
}

.vn-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  font-size: 0.82rem;
  opacity: 0.7;
  text-align: center;
  letter-spacing: 0.04em;
}

.vn-footer__bottom p {
  margin: 0;
}

/* Footer — pełny (logo, kontakt, KRS/NIP, menu, linki prawne) */
.vn-footer--full {
  padding-top: 3.5rem;
}

.vn-footer--full .vn-footer__brand {
  text-align: center;
  padding-bottom: 2.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.vn-logo--footer {
  align-items: center;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
}

.vn-logo--footer:hover {
  text-decoration: none;
}

.vn-footer__columns {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem 3rem;
  max-width: 960px;
  margin-inline: auto;
  align-items: start;
}

@media (max-width: 768px) {
  .vn-footer__columns {
    grid-template-columns: 1fr;
  }
}

.vn-footer__col--nav {
  border-left: 1px solid rgba(201, 169, 98, 0.15);
  padding-left: 2.5rem;
}

@media (max-width: 768px) {
  .vn-footer__col--nav {
    border-left: none;
    padding-left: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.12);
  }
}

.vn-footer__label {
  font-family: var(--vn-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vn-gold);
  margin: 0 0 0.85rem;
}

.vn-footer__lines {
  margin: 0 0 1.5rem;
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(240, 236, 230, 0.9);
}

.vn-footer__lines--company {
  font-size: 0.86rem;
  color: var(--vn-muted);
  line-height: 1.65;
}

.vn-footer__lines a {
  font-weight: 500;
}

.vn-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vn-footer__nav li {
  margin-bottom: 0.6rem;
}

.vn-footer__nav a {
  font-family: var(--vn-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vn-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 0.25rem;
}

.vn-footer__social-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
}

.vn-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  font-size: 0.76rem;
  max-width: 920px;
  margin-inline: auto;
}

.vn-footer__legal a {
  white-space: nowrap;
}

.vn-footer__dot {
  opacity: 0.35;
  user-select: none;
}

.vn-footer--full .vn-footer__bottom {
  margin-top: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 169, 98, 0.08);
}

/* Forms */
.vn-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--vn-muted);
  margin-bottom: 0.4rem;
}

.vn-form input,
.vn-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--vn-border);
  border-radius: 4px;
  font: inherit;
  margin-bottom: 1.1rem;
  background: var(--vn-surface);
  color: var(--vn-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vn-form input:focus,
.vn-form textarea:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.vn-form textarea {
  min-height: 140px;
  resize: vertical;
}

.vn-form__consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #2d3d34;
}

.vn-form__consent input[type="checkbox"] {
  width: auto;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  min-width: 1.1rem;
  min-height: 1.1rem;
  cursor: pointer;
}

.vn-form__consent label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.vn-contact-form-wrap .vn-form__consent a {
  color: #1b4332;
  font-weight: 600;
  text-decoration: underline;
}

/* Kontakt — split (lewa kolumna dane, prawa formularz) */
.vn-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  max-width: 1100px;
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--vn-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .vn-contact-split {
    grid-template-columns: 1fr;
  }
}

.vn-contact-info {
  position: relative;
  padding: 2.5rem 2rem 2.75rem;
  background-color: #142920;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 98, 0.08) 0%, transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 38px,
      rgba(255, 255, 255, 0.04) 38px,
      rgba(255, 255, 255, 0.04) 39px
    ),
    linear-gradient(165deg, #1b4332 0%, #0f2419 100%);
  color: rgba(255, 255, 255, 0.95);
}

.vn-contact-info__block {
  margin-bottom: 2rem;
}

.vn-contact-info__block:last-child {
  margin-bottom: 0;
}

.vn-contact-info__label {
  font-family: var(--vn-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, 0.85);
  margin: 0 0 1rem;
}

.vn-contact-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

.vn-contact-info a {
  color: #f0e6c8;
  font-weight: 500;
}

.vn-contact-info a:hover {
  color: #fff;
}

.vn-contact-info__muted {
  font-size: 0.86rem;
  opacity: 0.88;
  margin-top: 0.35rem;
}

.vn-contact-form-wrap {
  padding: 2.5rem 2.25rem 2.75rem;
  background: linear-gradient(180deg, #f7f2ea 0%, #efe8dd 100%);
  color: #1a2e24;
}

.vn-contact-form-wrap .vn-kicker {
  font-family: var(--vn-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin: 0 0 0.5rem;
}

.vn-contact-form-wrap h2 {
  font-family: var(--vn-font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: #142920;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vn-contact-form-wrap .vn-contact-form__lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3d4a42;
  margin: 0 0 1.75rem;
}

.vn-form--contact-light label {
  color: #1a2e24;
  font-weight: 600;
  font-size: 0.82rem;
}

.vn-form--contact-light input,
.vn-form--contact-light textarea {
  background: #fff;
  border: 1px solid #2d6a4f;
  color: #1a1a1a;
  border-radius: 8px;
}

.vn-form--contact-light input:focus,
.vn-form--contact-light textarea:focus {
  border-color: #1b4332;
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.15);
}

.vn-form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  .vn-form__row-2 {
    grid-template-columns: 1fr;
  }
}

.vn-contact-form-wrap .vn-btn--primary {
  width: 100%;
  margin-top: 0.25rem;
  background: linear-gradient(145deg, #1b4332 0%, #0f2419 100%);
  color: #faf8f5;
  letter-spacing: 0.14em;
}

.vn-contact-form-wrap .vn-btn--primary:hover {
  background: linear-gradient(145deg, #2d6a4f 0%, #1b4332 100%);
  color: #fff;
}

/* Page hero small */
.vn-page-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(
    165deg,
    rgba(201, 169, 98, 0.06) 0%,
    transparent 45%,
    rgba(8, 8, 10, 0.5) 100%
  );
  border-bottom: 1px solid var(--vn-border);
}

.vn-page-hero h1 {
  font-family: var(--vn-font-serif);
  font-size: clamp(2.15rem, 4vw, 3rem);
  color: var(--vn-gold-bright);
  margin: 0 0 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.vn-page-hero p {
  color: var(--vn-muted);
  margin: 0;
  max-width: 58ch;
  font-weight: 300;
  font-size: 1.05rem;
}

.vn-prose {
  max-width: 70ch;
}

.vn-prose h2 {
  font-family: var(--vn-font-serif);
  color: var(--vn-gold-bright);
  margin-top: 2.25rem;
  font-weight: 600;
}

.vn-prose ul {
  padding-left: 1.25rem;
}

.vn-prose p {
  color: rgba(232, 228, 222, 0.9);
  font-weight: 300;
}

/* O nas — rozbudowana strona */
.vn-about-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 68ch;
}

.vn-about-media {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--vn-border);
  margin: 2rem 0;
  box-shadow: var(--vn-shadow);
}

.vn-about-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.vn-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
  text-align: center;
}

@media (max-width: 700px) {
  .vn-about-stats {
    grid-template-columns: 1fr;
  }
}

.vn-about-stat {
  padding: 1.5rem 1rem;
  background: linear-gradient(165deg, var(--vn-surface-2) 0%, var(--vn-surface) 100%);
  border: 1px solid var(--vn-border);
  border-radius: 4px;
}

.vn-about-stat__num {
  font-family: var(--vn-font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--vn-gold-bright);
  line-height: 1.2;
}

.vn-about-stat__label {
  font-size: 0.82rem;
  color: var(--vn-muted);
  margin-top: 0.5rem;
}

.vn-about-steps {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.vn-about-steps li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.35rem;
  min-height: 2.5rem;
}

.vn-about-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vn-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--vn-green);
  border: 1px solid var(--vn-border-strong);
  border-radius: 4px;
  background: rgba(201, 169, 98, 0.08);
}

.vn-about-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 3px solid var(--vn-gold);
  background: rgba(201, 169, 98, 0.06);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(232, 228, 222, 0.95);
}

.vn-about-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-style: normal;
  color: var(--vn-muted);
}

.vn-about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0 1rem;
}

@media (max-width: 800px) {
  .vn-about-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vn-about-gallery figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--vn-border);
}

.vn-about-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.vn-about-gallery figcaption {
  font-size: 0.75rem;
  color: var(--vn-muted);
  padding: 0.4rem 0.5rem;
}

.vn-about-eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .vn-about-eco-grid {
    grid-template-columns: 1fr;
  }
}

.vn-about-eco-grid article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--vn-border);
  border-radius: 4px;
  background: var(--vn-surface);
  font-size: 0.93rem;
}

.vn-about-eco-grid article h3 {
  font-family: var(--vn-font-serif);
  font-size: 1.05rem;
  color: var(--vn-gold-bright);
  margin: 0 0 0.5rem;
  font-weight: 600;
  line-height: 1.35;
}

.vn-about-eco-grid article p {
  margin: 0;
}

.vn-about-eco-grid article p + p {
  margin-top: 0.65rem;
}

.vn-about-attrib {
  font-size: 0.78rem;
  color: var(--vn-muted);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vn-border);
}

/* Partnerzy / branże */
.vn-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.vn-partner-pill {
  padding: 1.5rem 1rem;
  background: var(--vn-surface);
  border: 1px solid var(--vn-border);
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--vn-muted);
  text-align: center;
  line-height: 1.4;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.vn-partner-pill:hover {
  border-color: rgba(201, 169, 98, 0.3);
  color: var(--vn-text);
}

/* FAQ */
.vn-faq {
  max-width: 720px;
  margin-inline: auto;
}

.vn-faq details {
  border: 1px solid var(--vn-border);
  border-radius: 4px;
  padding: 1.15rem 1.35rem;
  margin-bottom: 0.65rem;
  background: var(--vn-surface);
  transition: border-color 0.2s ease;
}

.vn-faq details[open] {
  border-color: rgba(201, 169, 98, 0.25);
}

.vn-faq summary {
  cursor: pointer;
  font-weight: 500;
  font-family: var(--vn-font-serif);
  font-size: 1.05rem;
  color: var(--vn-gold-bright);
  list-style: none;
}

.vn-faq summary::-webkit-details-marker {
  display: none;
}

.vn-faq details[open] summary {
  margin-bottom: 0.75rem;
}

.vn-faq details p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--vn-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* Więcej realizacji — 3 kolumny */
.vn-grid-3case {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) and (min-width: 640px) {
  .vn-grid-3case {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .vn-grid-3case {
    grid-template-columns: 1fr;
  }
}

/* Jak pracujemy — podwójne karty (FAQ / blog) */
.vn-jp-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (max-width: 700px) {
  .vn-jp-dual {
    grid-template-columns: 1fr;
  }
}

.vn-jp-dual article {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--vn-border);
  border-radius: 4px;
  background: linear-gradient(165deg, var(--vn-surface-2) 0%, var(--vn-surface) 100%);
}

.vn-jp-dual article h3 {
  font-family: var(--vn-font-serif);
  font-size: 1.15rem;
  color: var(--vn-gold-bright);
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.vn-jp-dual article p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--vn-muted);
  font-weight: 300;
  line-height: 1.65;
}

.vn-jp-dual article p + p {
  margin-top: 0.75rem;
}

.vn-jp-dual__num {
  display: inline-block;
  font-family: var(--vn-font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--vn-green);
  margin-bottom: 0.5rem;
}

/* Oferta — kasyno: siatka usług (więcej kafelków) */
.vn-kasyno-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.vn-kasyno-services article {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--vn-border);
  border-radius: 4px;
  background: var(--vn-surface);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 228, 222, 0.92);
}

.vn-kasyno-services article strong {
  display: block;
  font-family: var(--vn-font-serif);
  color: var(--vn-gold-bright);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* ========== Mobile & touch — comprehensive adaptation ========== */

@media (max-width: 900px) {
  .vn-hero {
    min-height: min(70vh, 560px);
    padding: 4rem 0 max(2.5rem, var(--vn-safe-bottom));
  }

  .vn-hero h1 {
    max-width: none;
  }

  .vn-hero__lead {
    max-width: none;
    font-size: 1rem;
  }

  .vn-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .vn-hero__cta .vn-btn {
    width: 100%;
    justify-content: center;
    min-height: 2.85rem;
    box-sizing: border-box;
  }

  .vn-section {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }

  .vn-section__subtitle {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .vn-page-hero {
    padding: max(2.5rem, var(--vn-safe-top)) 0 1.75rem;
  }

  .vn-page-hero h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
    line-height: 1.15;
  }

  .vn-page-hero p {
    font-size: 0.98rem;
  }

  .vn-about-media img {
    max-height: 52vh;
    min-height: 180px;
  }

  .vn-modal {
    padding: max(0.5rem, var(--vn-safe-top)) max(0.5rem, var(--vn-safe-right))
      max(0.75rem, var(--vn-safe-bottom)) max(0.5rem, var(--vn-safe-left));
    align-items: flex-end;
  }

  .vn-modal__panel {
    width: 100%;
    max-height: min(96dvh, 100%);
    border-radius: 8px 8px 0 0;
  }

  .vn-modal__body {
    padding: 1.25rem max(1rem, var(--vn-safe-right)) max(1.5rem, var(--vn-safe-bottom))
      max(1rem, var(--vn-safe-left));
  }

  .vn-modal__close {
    min-width: 2.75rem;
    min-height: 2.75rem;
    top: max(0.5rem, var(--vn-safe-top));
    right: max(0.5rem, var(--vn-safe-right));
  }

  .vn-contact-info,
  .vn-contact-form-wrap {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    padding-left: max(1.1rem, var(--vn-safe-left));
    padding-right: max(1.1rem, var(--vn-safe-right));
  }

  .vn-contact-split {
    border-radius: 0;
  }

  .vn-blog-sidebar {
    position: static;
  }

  .vn-blog-search {
    font-size: 16px; /* iOS: no zoom on focus */
  }

  .vn-form input,
  .vn-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .vn-stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .vn-stat {
    padding: 1.35rem 1rem;
  }

  .vn-stat__num {
    font-size: clamp(2rem, 8vw, 2.4rem);
  }

  .vn-about-gallery {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .vn-about-gallery figcaption {
    font-size: 0.72rem;
  }

  .vn-about-steps li {
    padding-left: 3.15rem;
    margin-bottom: 1.15rem;
  }

  .vn-about-steps li::before {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.68rem;
  }

  .vn-kasyno-services {
    grid-template-columns: 1fr;
  }

  .vn-footer--full {
    padding-bottom: max(1.5rem, var(--vn-safe-bottom));
  }

  .vn-footer__legal a {
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }

  .vn-card__body {
    padding: 1.25rem 1.2rem 1.4rem;
  }

  .vn-card__body h3 {
    font-size: 1.25rem;
  }

  .vn-case {
    min-height: 200px;
  }

  .vn-case__overlay {
    padding: 1rem 1.1rem;
  }

  .vn-case__overlay h3 {
    font-size: 0.95rem;
  }

  .vn-faq details {
    padding: 1rem 1rem;
  }

  .vn-faq summary {
    font-size: 1rem;
    padding: 0.5rem 0;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .vn-partners-grid {
    grid-template-columns: 1fr;
  }
}

/* Touch devices: no lift-on-hover (avoids stuck :hover after tap) */
@media (hover: none) {
  .vn-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--vn-border);
  }

  .vn-card:hover .vn-card__img img {
    transform: none;
  }

  .vn-case:hover img {
    transform: none;
  }

  .vn-post:hover {
    border-color: var(--vn-border);
  }
}

/* Landscape phone — shorter hero */
@media (max-height: 500px) and (orientation: landscape) {
  .vn-hero {
    min-height: auto;
    padding: 3rem 0 2rem;
  }

  .vn-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vn-card,
  .vn-case img,
  .vn-post {
    transition: none !important;
  }
}

/* Baner cookies (zgody — reklama / analityka po wdrożeniu tagów) */
.vn-cookie-banner {
  position: fixed;
  z-index: 300;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 0.85rem;
  padding-right: max(0.75rem, env(safe-area-inset-right));
  padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  padding-left: max(0.75rem, env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.97) 0%, rgba(8, 8, 10, 0.99) 100%);
  border-top: 1px solid var(--vn-border-strong);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
}

.vn-cookie-banner__inner {
  width: min(960px, 100%);
  margin-inline: auto;
}

.vn-cookie-banner__text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(232, 228, 222, 0.92);
  font-weight: 300;
}

.vn-cookie-banner__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vn-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.vn-cookie-banner__btn {
  min-height: 2.65rem;
  font-size: 0.68rem;
}

@media (max-width: 520px) {
  .vn-cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vn-cookie-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Velvet Pol — independent visual refresh */
:root {
  --vn-green: #2f6f5e;
  --vn-green-light: #70a891;
  --vn-green-soft: #dbe8df;
  --vn-gold: #b8793a;
  --vn-gold-bright: #f1c892;
  --vn-gold-dim: rgba(184, 121, 58, 0.22);
  --vn-bg: #f7f2ea;
  --vn-bg-mid: #efe5d6;
  --vn-surface: rgba(255, 252, 246, 0.92);
  --vn-surface-2: #fffaf2;
  --vn-white: #ffffff;
  --vn-text: #1d2522;
  --vn-muted: #66746d;
  --vn-border: rgba(47, 111, 94, 0.18);
  --vn-border-strong: rgba(47, 111, 94, 0.34);
  --vn-radius: 28px;
  --vn-shadow: 0 18px 50px rgba(49, 65, 56, 0.16);
  --vn-glow-gold: 0 18px 60px rgba(184, 121, 58, 0.14);
}

html { color-scheme: light; }

body {
  color: var(--vn-text);
  background-color: var(--vn-bg);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(112,168,145,.30), transparent 28%),
    radial-gradient(circle at 90% 5%, rgba(184,121,58,.20), transparent 25%),
    linear-gradient(135deg, #f7f2ea 0%, #eef4ee 48%, #f6ead9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(90deg, rgba(47,111,94,.14) 1px, transparent 1px), linear-gradient(rgba(47,111,94,.10) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.vn-header {
  background: rgba(255, 252, 246, 0.82);
  border-bottom: 1px solid rgba(47,111,94,.18);
  box-shadow: 0 10px 34px rgba(47, 111, 94, .10);
}

.vn-logo__name {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #214e42;
  letter-spacing: .015em;
}

.vn-logo__tag, .vn-nav__link, .vn-section__eyebrow, .vn-hero__label, .vn-post__meta { color: #6d7b73; }
.vn-nav__link { color: #26483f; border-radius: 999px; }
.vn-nav__link:hover, .vn-nav__link--active { background: rgba(47,111,94,.10); color: #163b31; }

.vn-btn {
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(47,111,94,.12);
}
.vn-btn--primary {
  background: linear-gradient(135deg, #2f6f5e, #193f35);
  color: #fffaf2;
  border-color: transparent;
}
.vn-btn--secondary {
  background: rgba(255,255,255,.62);
  color: #214e42;
  border-color: rgba(47,111,94,.25);
}

.vn-hero, .vn-section { position: relative; }
.vn-hero__content, .vn-card, .vn-post, .vn-contact-info, .vn-form, .vn-case, .vn-service-card, .vn-process-card, .vn-about-card, .vn-blog-attrib, .vn-about-attrib, .vn-cookie-banner {
  background: rgba(255, 252, 246, .78);
  border: 1px solid rgba(47,111,94,.16);
  box-shadow: var(--vn-shadow);
  backdrop-filter: blur(18px);
}

.vn-hero h1, .vn-section__title, h1, h2, h3 { color: #173d33; }
.vn-hero__lead, .vn-section__subtitle, p { color: #35443e; }

.vn-hero__image, .vn-case img, .vn-post img, .vn-about-image img, .vn-media img {
  border-radius: 34px 10px 34px 10px;
  filter: saturate(.88) contrast(.96) sepia(.08);
}

.vn-case__overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(23,61,51,.88) 100%);
}

.vn-footer {
  background: linear-gradient(135deg, #173d33, #0d2720);
  color: #f7f2ea;
  border-top: 0;
}
.vn-footer a, .vn-footer p, .vn-footer li { color: rgba(247,242,234,.86); }
.vn-footer .vn-logo__name { color: #f7f2ea; }

input, textarea, select {
  background: rgba(255,255,255,.82) !important;
  color: #1d2522 !important;
  border-color: rgba(47,111,94,.24) !important;
  border-radius: 18px !important;
}

@media (min-width: 900px) {
  .vn-hero__inner { gap: 4rem; }
  .vn-section { padding-block: 5.5rem; }
}

/* === Velvet Pol: refreshed first screen / non-stock editorial hero === */
.vn-hero--editorial{min-height:min(84vh,760px);align-items:center;padding:clamp(5.5rem,10vw,8rem) 0 clamp(3.5rem,7vw,5.5rem);overflow:hidden;background:radial-gradient(circle at 14% 18%,rgba(47,111,94,.18),transparent 30%),radial-gradient(circle at 86% 12%,rgba(180,118,62,.14),transparent 28%),linear-gradient(135deg,#f8f3eb 0%,#ebe7df 43%,#dfe9e3 100%);color:#173d33;border-bottom:1px solid rgba(47,111,94,.18)}
.vn-hero--editorial:before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.42;background-image:linear-gradient(90deg,rgba(47,111,94,.12) 1px,transparent 1px),linear-gradient(rgba(47,111,94,.09) 1px,transparent 1px);background-size:56px 56px;mask-image:linear-gradient(115deg,#000 0%,rgba(0,0,0,.8) 46%,transparent 82%)}
.vn-hero--editorial:after{content:"";position:absolute;inset:0;pointer-events:none;opacity:.06;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")}
.vn-hero--editorial .vn-hero__bg,.vn-hero--editorial .vn-hero__overlay{display:none}.vn-hero__grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,420px);gap:clamp(2rem,6vw,5rem);align-items:center}.vn-hero__copy{max-width:760px}.vn-hero--editorial .vn-hero__label{font-family:var(--vn-font-display);color:#2f6f5e;letter-spacing:.26em;margin-bottom:1.25rem}.vn-hero--editorial h1{max-width:10.5ch;margin-bottom:1.35rem;color:#173d33;font-size:clamp(3rem,7.4vw,6.6rem);line-height:.94;letter-spacing:-.045em;text-shadow:none}.vn-hero--editorial .vn-hero__lead{max-width:58ch;color:#3d4d46;font-size:clamp(1.05rem,1.5vw,1.28rem);line-height:1.75}.vn-hero--editorial .vn-btn--ghost{color:#173d33;border-color:rgba(23,61,51,.35);background:rgba(255,255,255,.38)}.vn-hero__art{position:absolute;inset:0;pointer-events:none}.vn-hero__orb{position:absolute;display:block;border-radius:999px;filter:blur(.2px)}.vn-hero__orb--one{width:34vw;height:34vw;right:-9vw;top:12%;background:rgba(47,111,94,.13)}.vn-hero__orb--two{width:18vw;height:18vw;right:18vw;bottom:8%;background:rgba(180,118,62,.10)}.vn-hero__line{position:absolute;right:8vw;top:10%;width:1px;height:70%;background:linear-gradient(to bottom,transparent,rgba(47,111,94,.35),transparent);transform:rotate(12deg)}.vn-hero__panel{position:relative;padding:2rem;border-radius:38px 12px 38px 12px;background:rgba(255,252,246,.62);border:1px solid rgba(47,111,94,.18);box-shadow:0 28px 80px rgba(47,111,94,.16);backdrop-filter:blur(18px)}.vn-hero__panel:before{content:"";position:absolute;inset:18px;border:1px solid rgba(47,111,94,.16);border-radius:28px 8px 28px 8px;pointer-events:none}.vn-hero__panel-top{font-size:.72rem;text-transform:uppercase;letter-spacing:.24em;color:#6d7b73;margin-bottom:4rem}.vn-hero__panel-title{font-family:var(--vn-font-serif);font-size:clamp(1.65rem,3vw,2.35rem);line-height:1.05;color:#173d33;max-width:9ch;margin-bottom:2rem}.vn-hero__panel-row{display:flex;justify-content:space-between;gap:1rem;padding:1rem 0;border-top:1px solid rgba(47,111,94,.16);color:#26483f}.vn-hero__panel-row span{color:#8a8f88;letter-spacing:.18em}.vn-hero__panel-row strong{font-weight:500}@media(max-width:900px){.vn-hero__grid{grid-template-columns:1fr}.vn-hero__panel{display:none}.vn-hero--editorial h1{max-width:11ch}}
