.vn-network {
  background: var(--vn-cream);
  color: var(--vn-text);
}

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

.vn-home,
.vn-search-page {
  width: 100%;
}

.vn-hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 72px) 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .52)),
    radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--vn-accent) 46%, transparent), transparent 34%),
    linear-gradient(135deg, var(--vn-primary-dark), var(--vn-primary));
  color: #fff;
}

.vn-hero__content,
.vn-section,
.vn-search-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.vn-hero__content {
  display: grid;
  gap: 18px;
}

.vn-kicker {
  margin: 0;
  color: var(--vn-primary);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vn-hero .vn-kicker {
  color: rgba(255, 255, 255, .82);
}

.vn-hero h1,
.vn-section__head h1,
.vn-section__head h2,
.vn-planner h2 {
  max-width: 780px;
  margin: 0;
  color: inherit;
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  line-height: .98;
  letter-spacing: 0;
}

.vn-section__head h1,
.vn-section__head h2,
.vn-planner h2 {
  color: var(--vn-text);
  font-size: clamp(1.8rem, 3.2vw, 3.15rem);
}

.vn-hero p,
.vn-section__head p,
.vn-planner p {
  max-width: 760px;
  margin: 0;
  color: inherit;
  font-size: 1.05rem;
  line-height: 1.65;
}

.vn-section__head p,
.vn-planner p {
  color: var(--vn-muted);
}

.vn-searchbar {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.vn-searchbar--page {
  margin: 22px 0;
  border-color: var(--vn-border);
  box-shadow: 0 18px 50px var(--vn-shadow);
}

.vn-searchbar label,
.vn-planner label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.vn-searchbar span,
.vn-planner label span {
  color: var(--vn-text);
  font-size: .78rem;
  font-weight: 800;
}

.vn-searchbar input,
.vn-searchbar select,
.vn-planner input,
.vn-planner select,
.vn-planner textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid var(--vn-border);
  border-radius: 8px;
  color: var(--vn-text);
  font: inherit;
}

.vn-searchbar input:focus,
.vn-searchbar select:focus,
.vn-planner input:focus,
.vn-planner select:focus,
.vn-planner textarea:focus {
  border-color: var(--vn-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--vn-primary) 18%, transparent);
  outline: none;
}

.vn-searchbar button,
.vn-planner button,
.vn-filter-buttons button,
.vn-popular button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--vn-primary);
  border-radius: 8px;
  background: var(--vn-primary);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.vn-searchbar button:disabled,
.vn-planner button:disabled {
  cursor: wait;
  opacity: .72;
}

.vn-popular,
.vn-filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vn-popular button,
.vn-filter-buttons button {
  min-height: 38px;
  padding: 0 13px;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  font-size: .9rem;
}

.vn-filter-buttons button {
  background: var(--vn-soft);
  border-color: var(--vn-border);
  color: var(--vn-primary-dark);
}

.vn-section,
.vn-search-page {
  padding: clamp(36px, 7vw, 84px) 0;
}

.vn-section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.vn-vertical-grid,
.vn-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vn-listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vn-vertical-card,
.vn-listing-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--vn-border);
  border-radius: 8px;
  color: var(--vn-text);
  text-decoration: none;
  box-shadow: 0 20px 52px var(--vn-shadow);
}

.vn-vertical-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 20px;
  transition: transform .16s ease, border-color .16s ease;
}

.vn-vertical-card:hover,
.vn-listing-card:hover {
  transform: translateY(-2px);
  border-color: var(--vn-primary);
}

.vn-vertical-card.is-active {
  background: var(--vn-soft);
}

.vn-vertical-card span,
.vn-listing-card__media span {
  width: fit-content;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--vn-primary) 14%, #fff);
  border-radius: 999px;
  color: var(--vn-primary-dark);
  font-size: .76rem;
  font-weight: 850;
}

.vn-vertical-card strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.vn-vertical-card small {
  color: var(--vn-muted);
  font-size: .92rem;
  line-height: 1.5;
}

.vn-listing-card {
  display: grid;
  transition: transform .16s ease, border-color .16s ease;
}

.vn-listing-card__media {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  padding: 14px;
  background-position: center;
  background-size: cover;
  text-decoration: none;
}

.vn-listing-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .24), transparent 55%);
}

.vn-listing-card__media span {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .92);
}

.vn-listing-card__body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.vn-card-meta,
.vn-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--vn-muted);
  font-size: .88rem;
}

.vn-card-meta strong {
  color: var(--vn-primary-dark);
}

.vn-listing-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.vn-listing-card h3 a {
  color: var(--vn-text);
  text-decoration: none;
}

.vn-listing-card p {
  margin: 0;
  color: var(--vn-muted);
  line-height: 1.5;
}

.vn-services {
  padding: 9px 10px;
  background: var(--vn-soft);
  border-radius: 8px;
  color: var(--vn-primary-dark);
  font-size: .86rem;
  font-weight: 750;
}

.vn-card-actions span {
  color: var(--vn-text);
  font-weight: 850;
}

.vn-card-actions a {
  color: var(--vn-primary);
  font-weight: 850;
  text-decoration: none;
}

.vn-results-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.vn-filter-panel {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--vn-border);
  border-radius: 8px;
  box-shadow: 0 16px 40px var(--vn-shadow);
}

.vn-planner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--vn-accent) 36%, transparent), transparent 28%),
    linear-gradient(135deg, var(--vn-primary-dark), var(--vn-primary));
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 24px 70px var(--vn-shadow);
}

.vn-planner .vn-kicker,
.vn-planner h2,
.vn-planner p {
  color: #fff;
}

.vn-planner form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, .95);
  border-radius: 8px;
}

.vn-planner .vn-wide,
.vn-planner button,
.vn-planner-result {
  grid-column: 1 / -1;
}

.vn-planner-result {
  color: var(--vn-text);
}

.vn-plan {
  margin-top: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--vn-border);
  border-radius: 8px;
  color: var(--vn-text);
}

.vn-plan h3 {
  margin: 0 0 12px;
  color: var(--vn-primary-dark);
}

.vn-plan ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.vn-plan p {
  color: var(--vn-muted);
}

.vn-empty {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--vn-border);
  border-radius: 8px;
  color: var(--vn-muted);
}

@media (max-width: 1020px) {
  .vn-searchbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vn-searchbar button {
    grid-column: 1 / -1;
  }

  .vn-vertical-grid,
  .vn-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vn-results-shell,
  .vn-planner {
    grid-template-columns: 1fr;
  }

  .vn-filter-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .vn-hero {
    min-height: auto;
    padding: 34px 0;
  }

  .vn-hero__content,
  .vn-section,
  .vn-search-page {
    width: min(100% - 20px, 1180px);
  }

  .vn-searchbar,
  .vn-planner form,
  .vn-vertical-grid,
  .vn-listing-grid {
    grid-template-columns: 1fr;
  }

  .vn-listing-card__media {
    min-height: 185px;
  }
}
