/**
 * VHP Lawyers — Premium Theme Styles
 * BEM naming · No inline styles
 */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --vhp-primary: #0d2347;
  --vhp-primary-dark: #071831;
  --vhp-gold: #c99a3d;
  --vhp-gold-dark: #ad7d26;
  --vhp-gold-light: #ead5a6;
  --vhp-background: #fffdf9;
  --vhp-background-alt: #f8f5ef;
  --vhp-text: #14213d;
  --vhp-text-muted: #667085;
  --vhp-border: #e8e1d6;
  --vhp-white: #ffffff;

  --vhp-radius-sm: 8px;
  --vhp-radius-md: 12px;
  --vhp-radius-lg: 18px;

  --vhp-shadow-sm: 0 8px 24px rgba(13, 35, 71, 0.06);
  --vhp-shadow-md: 0 18px 48px rgba(13, 35, 71, 0.1);

  --vhp-container: 1240px;
  --vhp-section-space: 100px;

  /* Legacy aliases */
  --vhp-navy: var(--vhp-primary);
  --vhp-cream: var(--vhp-background);
  --vhp-alt: var(--vhp-background-alt);
  --vhp-gray: var(--vhp-text-muted);
  --vhp-radius: var(--vhp-radius-md);
  --vhp-shadow: var(--vhp-shadow-sm);
  --vhp-shadow-hover: var(--vhp-shadow-md);
  --vhp-font-heading: "Playfair Display", Georgia, serif;
  --vhp-font-body: "Be Vietnam Pro", system-ui, sans-serif;
  --vhp-transition: 0.3s ease;
  --vhp-header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--vhp-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--vhp-text);
  background: var(--vhp-background);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  overflow-x: clip;
}

body.vhp-nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--vhp-transition), opacity var(--vhp-transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vhp-font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  color: var(--vhp-primary);
}

p {
  margin: 0 0 1em;
}

.screen-reader-text,
.vhp-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vhp-skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 20px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--vhp-navy);
  color: var(--vhp-white);
  border-radius: 8px;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.vhp-container {
  width: min(calc(100% - 48px), var(--vhp-container));
  margin-inline: auto;
}

/* Homepage typography scale */
body.vhp-home h1,
body.vhp-home .vhp-hero__title {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
}

body.vhp-home h2,
body.vhp-home .vhp-section__title {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

body.vhp-home h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.3;
}

body.vhp-home p,
body.vhp-home li {
  font-size: 16px;
  line-height: 1.7;
}

.vhp-section {
  padding: var(--vhp-section-space) 0;
}

body.vhp-home .vhp-section--compact {
  padding-block: 72px;
}

.vhp-section--cream {
  background: var(--vhp-background);
}

.vhp-section--alt {
  background: var(--vhp-background-alt);
}

.vhp-section--navy {
  background: var(--vhp-primary);
}

.vhp-section__header {
  margin-bottom: 48px;
}

.vhp-section__header--center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.vhp-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vhp-gold);
  margin-bottom: 14px;
  line-height: 1.4;
}

.vhp-section__title {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.15;
  margin-bottom: 0;
}

.vhp-section__eyebrow--gold {
  color: var(--vhp-gold);
}

.vhp-section__title span {
  color: var(--vhp-gold);
}

.vhp-section__title--light {
  color: var(--vhp-white);
}

.vhp-section__desc {
  font-size: 17px;
  color: var(--vhp-text-muted);
  margin: 0;
  line-height: 1.75;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.vhp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  font-family: var(--vhp-font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--vhp-transition), background var(--vhp-transition), border-color var(--vhp-transition), box-shadow var(--vhp-transition), color var(--vhp-transition);
  position: relative;
  overflow: hidden;
}

.vhp-btn--gold {
  background: var(--vhp-gold);
  color: var(--vhp-white);
  border-color: var(--vhp-gold);
  min-height: 46px;
}

.vhp-btn--gold:hover,
.vhp-btn--gold:focus-visible {
  background: var(--vhp-gold-dark);
  border-color: var(--vhp-gold-dark);
  color: var(--vhp-white);
  transform: translateY(-2px);
  box-shadow: var(--vhp-shadow-sm);
}

.vhp-btn--navy {
  background: var(--vhp-primary);
  color: var(--vhp-white);
  border-color: var(--vhp-primary);
}

.vhp-btn--navy:hover,
.vhp-btn--navy:focus-visible {
  background: var(--vhp-primary-dark);
  border-color: var(--vhp-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--vhp-shadow-md);
}

.vhp-btn--outline {
  background: rgba(255, 255, 255, 0.65);
  color: var(--vhp-primary);
  border: 1px solid var(--vhp-gold);
}

.vhp-btn--outline:hover,
.vhp-btn--outline:focus-visible {
  background: var(--vhp-gold);
  border-color: var(--vhp-gold);
  color: var(--vhp-white);
  transform: translateY(-2px);
}

.vhp-btn--lg {
  padding: 18px 36px;
  font-size: 17px;
}

/* ==========================================================================
   Logo
   ========================================================================== */
.vhp-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.vhp-logo__mark {
  width: 36px;
  height: 46px;
  border-radius: 3px 3px 2px 2px;
  background: linear-gradient(180deg, #e8c97a 0%, #c99a3d 45%, #9a7028 100%);
  box-shadow: 0 4px 14px rgba(201, 154, 61, 0.35);
  position: relative;
  flex-shrink: 0;
}

.vhp-logo__mark::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: none;
  border-radius: 2px 2px 0 0;
}

.vhp-logo__mark::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
  box-shadow: 0 -7px 0 rgba(255, 255, 255, 0.55), 0 -14px 0 rgba(255, 255, 255, 0.4);
}

.vhp-header .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.vhp-header .custom-logo-link img,
.vhp-footer .custom-logo-link img,
.vhp-logo--image .vhp-logo__image {
  max-height: 48px;
  width: auto;
}

.vhp-footer .vhp-logo--image .vhp-logo__image {
  max-height: 64px;
}

.vhp-logo__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
  font-family: var(--vhp-font-heading);
}

.vhp-logo__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--vhp-navy);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.vhp-logo__tagline {
  font-family: var(--vhp-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--vhp-gold);
  text-transform: uppercase;
}

.vhp-logo__text strong {
  font-size: 22px;
  color: var(--vhp-navy);
  letter-spacing: 0.06em;
}

.vhp-logo__text em {
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.28em;
  color: var(--vhp-gold);
}

.vhp-logo--footer .vhp-logo__text strong {
  color: var(--vhp-white);
}

/* ==========================================================================
   Header
   ========================================================================== */
.vhp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--vhp-header-h);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 35, 71, 0.06);
  transition: background var(--vhp-transition), box-shadow var(--vhp-transition), border-color var(--vhp-transition);
}

body.vhp-home .vhp-header:not(.vhp-header--scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.vhp-header--solid,
.vhp-header--scrolled {
  background: rgba(255, 253, 249, 0.98);
  border-bottom-color: var(--vhp-border);
  box-shadow: var(--vhp-shadow-sm);
  backdrop-filter: blur(10px);
}

.vhp-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.vhp-header__logo {
  justify-self: start;
}

.vhp-header__nav {
  justify-self: center;
}

.vhp-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.vhp-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vhp-menu__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--vhp-primary);
  position: relative;
  transition: color var(--vhp-transition);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--vhp-font-body);
}

.vhp-menu__link:hover,
.vhp-menu__item.current-menu-item > .vhp-menu__link {
  color: var(--vhp-gold);
}

.vhp-menu__item {
  margin: 0;
}

.vhp-header__nav-cta {
  display: none;
}

.vhp-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--vhp-gold);
  transition: width var(--vhp-transition);
}

.vhp-menu__link:hover::after,
.vhp-menu__link:focus-visible::after {
  width: 100%;
}

.vhp-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.vhp-header__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--vhp-navy);
  transition: var(--vhp-transition);
}

.vhp-header__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 22px;
  min-height: 44px;
  border-radius: 6px;
}

.vhp-header__toggle:focus-visible {
  outline: 2px solid var(--vhp-gold);
  outline-offset: 3px;
}

.vhp-home .vhp-header:not(.vhp-header--scrolled) .vhp-menu__link {
  color: var(--vhp-primary);
}

body.admin-bar .vhp-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .vhp-header {
    top: 46px;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.vhp-hero {
  position: relative;
  min-height: clamp(720px, 88vh, 920px);
  display: flex;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}

.vhp-hero__slides {
  position: absolute;
  inset: 0;
}

.vhp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.vhp-hero__slide.is-active {
  opacity: 1;
}

.vhp-hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.vhp-hero__content-stack {
  position: relative;
  width: 100%;
  min-height: 0;
}

.vhp-hero__content-panel {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}

.vhp-hero__content-panel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

.vhp-hero__content-panel.is-empty {
  display: none;
}

.vhp-hero__inner--media-only .vhp-hero__content-stack {
  display: none;
}

.vhp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 249, 0.97) 0%,
    rgba(255, 253, 249, 0.94) 28%,
    rgba(255, 253, 249, 0.78) 42%,
    rgba(255, 253, 249, 0.35) 58%,
    rgba(255, 253, 249, 0.08) 72%,
    rgba(255, 253, 249, 0) 100%
  );
}

.vhp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), var(--vhp-container));
  max-width: var(--vhp-container);
  margin-inline: auto;
  min-height: clamp(720px, 88vh, 920px);
  padding-block: calc(var(--vhp-header-h) + 48px) 80px;
  box-sizing: border-box;
}

.vhp-hero__content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.vhp-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vhp-gold);
  margin-bottom: 16px;
}

.vhp-hero__title {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--vhp-primary);
  font-weight: 600;
  text-shadow: none;
}

.vhp-hero__title span {
  color: var(--vhp-primary);
}

.vhp-hero__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #3d4f66;
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 34px;
}

.vhp-hero .vhp-btn--hero {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 50px;
  padding-inline: 26px;
}

.vhp-hero .vhp-btn--outline {
  background: transparent;
  border: 1.5px solid var(--vhp-gold);
  color: var(--vhp-gold-dark);
}

.vhp-hero .vhp-btn--outline:hover,
.vhp-hero .vhp-btn--outline:focus-visible {
  background: var(--vhp-gold);
  border-color: var(--vhp-gold);
  color: var(--vhp-white);
}

.vhp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

/* ==========================================================================
   Stats
   ========================================================================== */
.vhp-stats {
  background: var(--vhp-background);
  padding-block: 36px;
  margin-top: 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--vhp-border);
  border-bottom: 1px solid var(--vhp-border);
}

.vhp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.vhp-stats__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 96px;
  padding: 20px 28px;
  text-align: left;
}

.vhp-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: var(--vhp-border);
}

.vhp-stats__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
  color: var(--vhp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vhp-stats__icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.vhp-stats__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.vhp-stats__number {
  font-family: var(--vhp-font-body);
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  color: var(--vhp-gold);
  margin: 0;
  letter-spacing: -0.02em;
}

.vhp-stats__label {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #4a5568;
  margin: 0;
}

.vhp-float {
  animation: vhpFloat 6s ease-in-out infinite;
}

@keyframes vhpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   About
   ========================================================================== */
.vhp-about {
  overflow: hidden;
  background: var(--vhp-background-alt);
}

.vhp-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
}

.vhp-about__media {
  position: relative;
  min-height: 480px;
}

.vhp-about__frame {
  position: absolute;
  top: 20px;
  left: 0;
  width: 78%;
  height: 440px;
  border: 2px solid var(--vhp-gold);
  border-radius: 6px;
  z-index: 0;
  pointer-events: none;
}

.vhp-about__image-main {
  position: relative;
  z-index: 1;
  width: 78%;
  margin-left: 10%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--vhp-shadow-sm);
}

.vhp-about__image-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.vhp-about__image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: visible;
  box-shadow: var(--vhp-shadow-md);
  border: 6px solid var(--vhp-background-alt);
}

.vhp-about__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.vhp-about__play {
  position: absolute;
  bottom: -14px;
  left: -14px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--vhp-gold);
  background: var(--vhp-white);
  color: var(--vhp-gold);
  display: grid;
  place-items: center;
  box-shadow: var(--vhp-shadow-sm);
  transition: transform var(--vhp-transition), background var(--vhp-transition), color var(--vhp-transition);
}

a.vhp-about__play:hover,
a.vhp-about__play:focus-visible {
  background: var(--vhp-gold);
  color: var(--vhp-white);
  transform: scale(1.05);
}

.vhp-about .vhp-section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vhp-gold);
  margin-bottom: 12px;
}

.vhp-about .vhp-section__title {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  color: var(--vhp-primary);
}

.vhp-about .vhp-section__title span {
  color: var(--vhp-primary);
}

.vhp-about__divider {
  width: 56px;
  height: 3px;
  background: var(--vhp-gold);
  margin: 18px 0 22px;
}

.vhp-about__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--vhp-text-muted);
  max-width: 100%;
  margin: 0;
}

.vhp-about__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 36px;
}

.vhp-about__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.vhp-about__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 154, 61, 0.1);
  display: grid;
  place-items: center;
  color: var(--vhp-gold);
}

.vhp-about__feature-icon svg {
  width: 22px;
  height: 22px;
}

.vhp-about__feature-title {
  font-family: var(--vhp-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--vhp-primary);
  margin: 0;
}

.vhp-about__feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--vhp-text-muted);
  margin: 0;
}

.vhp-about__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 50px;
  padding-inline: 28px;
}

.vhp-service-card__icon svg {
  display: block;
}

.vhp-menu__link:focus-visible,
.vhp-btn:focus-visible,
.vhp-news-card__link:focus-visible,
.vhp-mobile-cta:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--vhp-gold);
  outline-offset: 3px;
}

/* ==========================================================================
   Services
   ========================================================================== */
.vhp-services .vhp-section__header--center {
  margin-bottom: 48px;
}

.vhp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vhp-service-card {
  background: var(--vhp-white);
  border-radius: var(--vhp-radius-md);
  padding: 30px 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  border: 1px solid var(--vhp-border);
  transition: transform var(--vhp-transition), box-shadow var(--vhp-transition), border-color var(--vhp-transition);
}

.vhp-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 154, 61, 0.55);
  box-shadow: var(--vhp-shadow-md);
}

.vhp-service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--vhp-gold);
  line-height: 1;
}

.vhp-service-card__title {
  font-size: 19px;
  margin-bottom: 12px;
  transition: color var(--vhp-transition);
}

.vhp-service-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--vhp-text-muted);
  margin-bottom: 22px;
}

.vhp-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--vhp-gold-dark);
}

.vhp-service-card__link:hover {
  color: var(--vhp-navy);
}

/* ==========================================================================
   Why
   ========================================================================== */
.vhp-why {
  padding: 0;
  overflow: hidden;
}

.vhp-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  min-height: 430px;
}

.vhp-why__content {
  display: flex;
  align-items: center;
  padding: 72px 0;
  background: var(--vhp-primary);
}

.vhp-why__content-inner {
  width: min(540px, 100%);
  margin-left: max(24px, calc((100vw - var(--vhp-container)) / 2 + 24px));
  padding-right: 40px;
  box-sizing: border-box;
}

.vhp-why .vhp-section__title {
  font-size: clamp(30px, 3.2vw, 44px);
  margin-bottom: 28px;
  line-height: 1.15;
  max-width: 12em;
  word-break: normal;
  overflow-wrap: break-word;
}

.vhp-why .vhp-section__eyebrow {
  white-space: normal;
}

.vhp-why__item span:last-child {
  flex: 1;
  line-height: 1.55;
}

.vhp-why .vhp-section__desc,
.vhp-why__item {
  color: rgba(255, 255, 255, 0.85);
}

.vhp-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.vhp-why__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.vhp-why__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--vhp-gold);
  color: var(--vhp-primary);
  display: grid;
  place-items: center;
}

.vhp-why__media {
  position: relative;
  min-height: 430px;
}

.vhp-why__image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.vhp-why__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--vhp-primary) 0%,
    rgba(13, 35, 71, 0.75) 15%,
    rgba(13, 35, 71, 0.08) 52%,
    rgba(13, 35, 71, 0) 100%
  );
  pointer-events: none;
}

/* ==========================================================================
   Process
   ========================================================================== */
.vhp-process__timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  position: relative;
  padding-top: 20px;
}

.vhp-process__line {
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--vhp-gold-light) 0,
    var(--vhp-gold-light) 8px,
    transparent 8px,
    transparent 14px
  );
}

.vhp-process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.vhp-process__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--vhp-background);
  border: 1px solid var(--vhp-gold);
  display: grid;
  place-items: center;
  font-family: var(--vhp-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--vhp-primary);
  transition: transform var(--vhp-transition), background var(--vhp-transition), color var(--vhp-transition), border-color var(--vhp-transition);
  box-shadow: none;
}

.vhp-process__step:hover .vhp-process__icon {
  background: var(--vhp-gold);
  color: var(--vhp-white);
  transform: scale(1.03);
}

.vhp-process__title {
  font-size: 16px;
  margin-bottom: 10px;
}

.vhp-process__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--vhp-text-muted);
  margin: 0;
}

/* ==========================================================================
   Lawyers
   ========================================================================== */
.vhp-lawyers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.vhp-lawyer-card {
  background: var(--vhp-white);
  border-radius: var(--vhp-radius-md);
  overflow: hidden;
  border: 1px solid var(--vhp-border);
  box-shadow: var(--vhp-shadow-sm);
  transition: transform var(--vhp-transition), box-shadow var(--vhp-transition);
}

.vhp-lawyer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vhp-shadow-md);
}

.vhp-lawyer-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  background: #f3efe8;
}

.vhp-lawyer-card__media img,
.vhp-lawyer-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--vhp-transition);
}

.vhp-lawyer-card:hover .vhp-lawyer-card__media img {
  transform: scale(1.03);
}

.vhp-lawyer-card__body {
  padding: 22px 18px 20px;
  text-align: center;
}

.vhp-lawyer-card__name {
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.vhp-lawyer-card__role {
  font-size: 13px;
  color: var(--vhp-text-muted);
  margin-bottom: 14px;
}

.vhp-lawyer-card__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vhp-background-alt);
  color: var(--vhp-primary);
  display: grid;
  place-items: center;
  transition: all var(--vhp-transition);
}

.vhp-lawyer-card__placeholder {
  background: linear-gradient(160deg, var(--vhp-alt), #e8e0d0);
}

.vhp-lawyer-card__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.vhp-lawyer-card__social a:hover {
  background: var(--vhp-gold);
  color: var(--vhp-white);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.vhp-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.vhp-testimonials .vhp-section__title {
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  color: var(--vhp-primary);
}

.vhp-testimonials__divider {
  width: 56px;
  height: 3px;
  background: var(--vhp-gold);
  margin: 16px auto 0;
}

.vhp-testimonials__slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 52px;
}

.vhp-testimonials__slider .swiper-slide {
  height: auto;
}

.vhp-testimonials__slider .swiper-wrapper {
  align-items: stretch;
}

.vhp-testimonial-card {
  background: var(--vhp-white);
  border-radius: 8px;
  padding: 28px 24px 24px;
  border: 1px solid var(--vhp-border);
  box-shadow: var(--vhp-shadow-sm);
  min-height: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.vhp-testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--vhp-gold);
  margin-bottom: 20px;
}

.vhp-testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.vhp-testimonial-card__stars svg[fill="none"] {
  color: rgba(201, 154, 61, 0.35);
}

.vhp-testimonial-card__text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  color: #5a6475;
  margin: 0 0 12px;
  flex: 1;
  text-align: center;
}

.vhp-testimonial-card__text p {
  margin: 0;
}

.vhp-testimonial-card__text.is-clamped p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vhp-testimonial-card__text.is-expanded p {
  display: block;
  overflow: visible;
}

.vhp-testimonial-card__more {
  align-self: center;
  background: none;
  border: 0;
  padding: 0 0 4px;
  margin: 0 0 18px;
  cursor: pointer;
  color: var(--vhp-gold-dark);
  font-family: var(--vhp-font-body);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.vhp-testimonial-card__more:hover {
  color: var(--vhp-gold);
}

.vhp-testimonial-card__more-hide {
  display: none;
}

.vhp-testimonial-card__more[aria-expanded="true"] .vhp-testimonial-card__more-show {
  display: none;
}

.vhp-testimonial-card__more[aria-expanded="true"] .vhp-testimonial-card__more-hide {
  display: inline;
}

.vhp-testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: auto;
  text-align: left;
}

.vhp-testimonial-card__author img,
.vhp-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.vhp-letter-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--vhp-font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.vhp-testimonials__cta {
  text-align: center;
  margin-top: 40px;
}

.vhp-testimonials__google {
  gap: 12px;
}

.vhp-testimonials__google-icon {
  width: 20px;
  height: 20px;
}

.vhp-testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--vhp-primary);
  margin-bottom: 3px;
}

.vhp-testimonial-card__author span {
  display: block;
  font-size: 12px;
  color: var(--vhp-text-muted);
}

.vhp-testimonial-card__avatar {
  background: linear-gradient(135deg, var(--vhp-primary), #2a3f6e);
}

.vhp-testimonials__pagination {
  bottom: 0 !important;
}

.vhp-testimonials__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid var(--vhp-gold);
  opacity: 1;
  margin: 0 5px !important;
}

.vhp-testimonials__pagination .swiper-pagination-bullet-active {
  background: var(--vhp-gold);
}

/* ==========================================================================
   Clients
   ========================================================================== */
.vhp-clients.vhp-section {
  padding-block: 68px;
}

.vhp-clients .vhp-section__header {
  margin-bottom: 40px;
}

.vhp-clients__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 36px;
}

.vhp-clients__item {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  opacity: 1;
}

.vhp-clients__item img {
  width: auto;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  transition: opacity var(--vhp-transition), filter var(--vhp-transition), transform var(--vhp-transition);
}

.vhp-clients__item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.vhp-clients__text {
  font-family: var(--vhp-font-heading);
  font-size: 18px;
  color: var(--vhp-text-muted);
  opacity: 0.65;
  transition: opacity var(--vhp-transition), color var(--vhp-transition);
}

.vhp-clients__item:hover .vhp-clients__text {
  opacity: 1;
  color: var(--vhp-primary);
}

/* ==========================================================================
   News
   ========================================================================== */
.vhp-news {
  background: var(--vhp-background-alt);
}

.vhp-news__header {
  position: relative;
  margin-bottom: 48px;
}

.vhp-news__header-main {
  text-align: center;
}

.vhp-news .vhp-section__title {
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  color: var(--vhp-primary);
}

.vhp-news__divider {
  width: 56px;
  height: 3px;
  background: var(--vhp-gold);
  margin: 16px auto 0;
}

.vhp-news__view-all {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vhp-primary);
  transition: color var(--vhp-transition);
}

.vhp-news__view-all svg {
  color: var(--vhp-gold);
}

.vhp-news__view-all:hover {
  color: var(--vhp-gold-dark);
}

.vhp-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vhp-news-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 168px;
  background: var(--vhp-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--vhp-border);
  box-shadow: none;
  transition: transform var(--vhp-transition), box-shadow var(--vhp-transition);
}

.vhp-news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vhp-shadow-sm);
}

.vhp-news-card__media {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
  display: block;
  overflow: hidden;
  aspect-ratio: auto;
}

.vhp-news-card__media img,
.vhp-news-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  border-radius: 8px 0 0 8px;
}

.vhp-news-card__placeholder {
  background: linear-gradient(135deg, var(--vhp-alt), #ddd5c5);
}

.vhp-news-card:hover .vhp-news-card__media img {
  transform: scale(1.04);
}

.vhp-news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 18px;
  min-width: 0;
}

.vhp-news-card__date {
  position: static;
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--vhp-text-muted);
  box-shadow: none;
  margin-bottom: 10px;
}

.vhp-news-card__title {
  font-family: var(--vhp-font-heading);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.vhp-news-card__title a:hover {
  color: var(--vhp-gold);
}

.vhp-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--vhp-primary);
}

.vhp-news-card__link svg {
  color: var(--vhp-gold);
}

.vhp-news-card__link:hover {
  color: var(--vhp-gold-dark);
}

/* ==========================================================================
   CTA
   ========================================================================== */
.vhp-cta {
  position: relative;
  background: var(--vhp-primary-dark);
  padding: 72px 0;
  overflow: hidden;
  margin-top: 0;
}

.vhp-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.vhp-cta__bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(320px, 44vw, 560px);
  background-image: var(--vhp-cta-bg-image);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 50%, transparent 92%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 50%, transparent 92%);
}

.vhp-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 24, 49, 0.1) 0%, transparent 48%);
}

.vhp-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.vhp-cta__content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.vhp-cta__title {
  font-family: var(--vhp-font-heading);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--vhp-white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.vhp-cta__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 560px;
}

.vhp-cta__btn {
  flex-shrink: 0;
  min-width: 200px;
  min-height: 52px;
  padding-inline: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vhp-cta .vhp-btn--gold {
  color: var(--vhp-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.vhp-footer {
  background: var(--vhp-primary-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 0;
}

.vhp-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}

.vhp-footer__desc {
  font-size: 15px;
  line-height: 1.8;
  margin: 22px 0;
}

.vhp-footer__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--vhp-white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.vhp-footer__menu a,
.vhp-footer__contact a,
.vhp-footer__contact li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.vhp-footer__menu,
.vhp-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vhp-footer__menu li,
.vhp-footer__contact li {
  margin-bottom: 12px;
}

.vhp-footer__menu a:hover,
.vhp-footer__contact a:hover {
  color: var(--vhp-gold);
}

.vhp-footer__contact span {
  color: var(--vhp-gold);
  font-weight: 500;
}

.vhp-footer__social {
  display: flex;
  gap: 12px;
}

.vhp-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  transition: all var(--vhp-transition);
}

.vhp-footer__social-link:hover {
  background: var(--vhp-gold);
  border-color: var(--vhp-gold);
  color: var(--vhp-primary);
}

.vhp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}

.vhp-footer .vhp-logo__mark {
  width: 60px;
  height: 60px;
}

.vhp-footer .vhp-logo__name,
.vhp-footer .vhp-logo__text strong {
  font-size: 26px;
}

.vhp-footer .vhp-logo__tagline,
.vhp-footer .vhp-logo__text em {
  font-size: 11px;
}

.vhp-footer__legal {
  display: flex;
  gap: 24px;
}

.vhp-footer__legal a:hover {
  color: var(--vhp-gold);
}

/* ==========================================================================
   Mobile CTA
   ========================================================================== */
.vhp-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--vhp-gold);
  color: var(--vhp-navy);
  text-align: center;
  padding: 16px;
  font-weight: 600;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.vhp-mobile-cta:hover,
.vhp-mobile-cta:focus-visible {
  background: var(--vhp-gold-light);
  color: var(--vhp-primary);
}

/* ==========================================================================
   Page
   ========================================================================== */
.vhp-page {
  padding-top: calc(var(--vhp-header-h) + 40px);
}

.vhp-article__content {
  font-size: 17px;
  line-height: 1.8;
}

/* ==========================================================================
   Responsive — Desktop tablet 991px
   ========================================================================== */
@media (max-width: 991px) {
  .vhp-hero,
  .vhp-hero__inner {
    min-height: 620px;
  }

  .vhp-hero__bg-image {
    object-position: 65% center;
  }

  .vhp-hero__overlay {
    background: rgba(255, 253, 249, 0.86);
  }

  .vhp-hero__content {
    max-width: 600px;
  }

  body.vhp-home .vhp-section {
    padding-block: 80px;
  }

  .vhp-about__grid {
    gap: 50px;
  }

  .vhp-about__media {
    max-width: 650px;
    margin-inline: auto;
  }

  .vhp-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vhp-lawyers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vhp-why__media::after {
    background: linear-gradient(
      180deg,
      var(--vhp-primary) 0%,
      rgba(13, 35, 71, 0.25) 35%,
      rgba(13, 35, 71, 0) 100%
    );
  }
}

/* ==========================================================================
   Responsive — Tablet 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --vhp-section-space: 80px;
  }

  .vhp-section {
    padding: var(--vhp-section-space) 0;
  }

  .vhp-header__inner {
    grid-template-columns: 1fr auto;
  }

  .vhp-header__nav {
    position: fixed;
    top: var(--vhp-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: var(--vhp-white);
    padding: 24px;
    box-shadow: var(--vhp-shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--vhp-transition);
    justify-self: stretch;
    overflow-y: auto;
  }

  .vhp-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .vhp-header__nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
  }

  .vhp-menu {
    flex-direction: column;
    gap: 16px;
  }

  .vhp-header__toggle {
    display: flex;
  }

  .vhp-hero__inner {
    justify-content: center;
    text-align: center;
  }

  .vhp-hero__content {
    max-width: 100%;
  }

  .vhp-hero__desc {
    margin-inline: auto;
  }

  .vhp-hero__actions {
    justify-content: center;
  }

  .vhp-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 253, 249, 0.99) 0%,
      rgba(255, 253, 249, 0.96) 45%,
      rgba(255, 253, 249, 0.82) 100%
    );
  }

  .vhp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vhp-stats__item:not(:last-child)::after {
    display: none;
  }

  .vhp-stats__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--vhp-border);
    padding-bottom: 24px;
  }

  .vhp-stats__item:nth-child(odd) {
    border-left: 0;
  }

  .vhp-stats__item:nth-child(n+3) {
    border-top: 0;
    padding-top: 24px;
  }

  .vhp-about__grid,
  .vhp-why__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vhp-why__content {
    padding: 64px 0 40px;
  }

  .vhp-why__content-inner {
    width: 100%;
    margin-left: 0;
    padding-inline: 24px;
    max-width: none;
  }

  .vhp-why .vhp-section__title {
    max-width: none;
  }

  .vhp-why__media {
    min-height: 280px;
  }

  .vhp-why__image {
    min-height: 280px;
  }

  .vhp-services__grid,
  .vhp-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vhp-lawyers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vhp-process__timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .vhp-process__line {
    display: none;
  }

  .vhp-clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vhp-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vhp-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 28px;
  }

  .vhp-cta__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   Responsive — Mobile 390px
   ========================================================================== */
@media (max-width: 767px) {
  .vhp-container {
    width: min(calc(100% - 32px), var(--vhp-container));
  }

  body.vhp-home .vhp-section {
    padding-block: 60px;
  }

  body.vhp-home .vhp-section__header,
  body.vhp-home .vhp-section__header--center {
    margin-bottom: 36px;
  }

  .vhp-hero {
    min-height: 600px;
    align-items: flex-end;
  }

  .vhp-hero__bg-image {
    object-position: 70% center;
  }

  .vhp-hero__inner {
    min-height: auto;
    padding-block: 100px 64px;
  }

  .vhp-hero__title {
    font-size: clamp(38px, 11vw, 48px);
  }

  .vhp-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vhp-stats__item {
    padding: 24px 14px;
  }

  .vhp-news__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
  }

  .vhp-news__view-all {
    position: static;
  }

  .vhp-news-card {
    min-height: 140px;
  }

  .vhp-news-card__media {
    flex-basis: 38%;
    max-width: 38%;
  }

  .vhp-process__timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vhp-process__line {
    display: none;
    top: 0;
    bottom: 0;
    left: 37px;
    right: auto;
    width: 1px;
    height: auto;
    background: var(--vhp-gold-light);
  }

  .vhp-process__step {
    position: relative;
    min-height: 76px;
    padding-left: 100px;
    text-align: left;
  }

  .vhp-process__line {
    display: block;
  }

  .vhp-process__icon {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .vhp-clients__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .vhp-cta {
    padding: 56px 0;
  }

  .vhp-cta__bg::before {
    width: min(100%, 400px);
    opacity: 0.36;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.65) 58%, transparent 96%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.65) 58%, transparent 96%);
  }

  .vhp-cta__inner {
    padding-block: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .vhp-cta__btn {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .vhp-lawyers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .vhp-services__grid,
  .vhp-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .vhp-hero__inner {
    min-height: 560px;
  }
}

@media (max-width: 480px) {
  .vhp-container {
    width: min(calc(100% - 32px), var(--vhp-container));
  }

  .vhp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vhp-hero__actions .vhp-btn {
    width: 100%;
  }

  .vhp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .vhp-footer__legal {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .vhp-about__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .vhp-about__media {
    min-height: 400px;
  }

  .vhp-about__frame {
    width: 85%;
    height: 360px;
    top: 16px;
  }

  .vhp-about__image-main {
    width: 88%;
    margin-left: 6%;
  }

  .vhp-about__image-main img {
    height: 360px;
  }

  .vhp-about__image-accent {
    width: 52%;
    border-width: 5px;
  }

  .vhp-clients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vhp-footer {
    padding-top: 56px;
  }

  .vhp-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 375px) {
  .vhp-hero__title {
    font-size: clamp(32px, 9vw, 38px);
  }

  .vhp-section__title {
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .vhp-header__inner {
    gap: 12px;
  }

  .vhp-btn {
    font-size: 14px;
    padding: 14px 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --vhp-section-space: 60px;
  }

  .vhp-container {
    width: min(calc(100% - 32px), var(--vhp-container));
  }

  .vhp-header__cta {
    display: none;
  }

  .vhp-mobile-cta {
    display: block;
  }

  .vhp-stats__grid,
  .vhp-services__grid,
  .vhp-lawyers__grid,
  .vhp-news__grid,
  .vhp-process__timeline,
  .vhp-clients__grid {
    grid-template-columns: 1fr;
  }

  .vhp-stats__item {
    border-left: 0;
    border-top: 1px solid var(--vhp-border);
  }

  .vhp-stats__item:first-child {
    border-top: 0;
  }

  .vhp-footer__grid {
    grid-template-columns: 1fr;
  }

  .vhp-hero__title {
    font-size: clamp(38px, 10vw, 46px);
  }

  .vhp-hero {
    min-height: 620px;
  }

  .vhp-about__play {
    width: 46px;
    height: 46px;
  }

  body {
    padding-bottom: 56px;
  }
}

@media (min-width: 1280px) {
  .vhp-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Inner pages — Banner
   ========================================================================== */
.vhp-page-banner {
  position: relative;
  padding: calc(var(--vhp-header-h) + 72px) 0 60px;
  background: var(--vhp-primary-dark);
  overflow: hidden;
}

.vhp-page-banner__bg {
  position: absolute;
  inset: 0;
}

.vhp-page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.vhp-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 24, 49, 0.94) 0%,
    rgba(7, 24, 49, 0.82) 45%,
    rgba(7, 24, 49, 0.62) 100%
  );
}

.vhp-page-banner__inner {
  position: relative;
  z-index: 1;
}

.vhp-page-banner__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vhp-gold-light);
  margin-bottom: 14px;
}

.vhp-page-banner__title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  color: var(--vhp-white);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.vhp-page-banner__desc {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

/* Breadcrumb */
.vhp-breadcrumb {
  margin-top: 18px;
}

.vhp-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.vhp-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
}

.vhp-breadcrumb__item:not(:last-child)::after {
  content: "›";
  color: rgba(255, 255, 255, 0.4);
}

.vhp-breadcrumb__item a {
  color: rgba(255, 255, 255, 0.8);
}

.vhp-breadcrumb__item a:hover {
  color: var(--vhp-gold-light);
}

.vhp-breadcrumb__item [aria-current="page"] {
  color: var(--vhp-gold-light);
  font-weight: 600;
}

/* ==========================================================================
   Inner pages — Generic body
   ========================================================================== */
.vhp-page-body .vhp-article__content > *:first-child {
  margin-top: 0;
}

.vhp-article__content h2,
.vhp-article__content h3 {
  margin-top: 1.6em;
}

.vhp-article__content img {
  border-radius: var(--vhp-radius-md);
  margin: 1.4em 0;
}

.vhp-article__content ul,
.vhp-article__content ol {
  padding-left: 1.3em;
  margin-bottom: 1.2em;
}

.vhp-article__content li {
  margin-bottom: 0.5em;
}

.vhp-article__content blockquote {
  margin: 1.6em 0;
  padding: 18px 24px;
  border-left: 4px solid var(--vhp-gold);
  background: var(--vhp-background-alt);
  border-radius: 0 var(--vhp-radius-sm) var(--vhp-radius-sm) 0;
  font-style: italic;
  color: var(--vhp-text);
}

.vhp-article__content a {
  color: var(--vhp-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vhp-empty {
  text-align: center;
  color: var(--vhp-text-muted);
  padding: 40px 0;
}

/* ==========================================================================
   Inner pages — Blog listing (vertical cards)
   ========================================================================== */
.vhp-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.vhp-blog__grid .vhp-news-card {
  flex-direction: column;
  min-height: 0;
}

.vhp-blog__grid .vhp-news-card__media {
  flex: none;
  max-width: none;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.vhp-blog__grid .vhp-news-card__media img {
  border-radius: 8px 8px 0 0;
}

.vhp-blog__grid .vhp-news-card__title {
  flex: none;
  -webkit-line-clamp: 2;
}

.vhp-news-card__excerpt {
  font-size: 14px;
  color: var(--vhp-text-muted);
  line-height: 1.65;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.vhp-pagination,
.pagination {
  margin-top: 56px;
}

.vhp-pagination .nav-links,
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.vhp-pagination .page-numbers,
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--vhp-border);
  border-radius: 6px;
  background: var(--vhp-white);
  color: var(--vhp-primary);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--vhp-transition);
}

.vhp-pagination .page-numbers:hover,
.pagination .page-numbers:hover {
  border-color: var(--vhp-gold);
  color: var(--vhp-gold-dark);
}

.vhp-pagination .page-numbers.current,
.pagination .page-numbers.current {
  background: var(--vhp-gold);
  border-color: var(--vhp-gold);
  color: var(--vhp-white);
}

.vhp-pagination .screen-reader-text {
  display: none;
}

/* ==========================================================================
   Single (post / service) layout with sidebar
   ========================================================================== */
.vhp-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.vhp-single__thumb {
  margin-bottom: 28px;
  border-radius: var(--vhp-radius-md);
  overflow: hidden;
}

.vhp-single__thumb img {
  width: 100%;
  height: auto;
}

.vhp-post__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--vhp-text-muted);
}

.vhp-post__cat {
  padding: 4px 12px;
  background: var(--vhp-background-alt);
  border-radius: 999px;
  color: var(--vhp-gold-dark);
  font-weight: 600;
}

.vhp-post__tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vhp-post__tags a {
  padding: 6px 14px;
  background: var(--vhp-background-alt);
  border-radius: 999px;
  font-size: 13px;
  color: var(--vhp-text-muted);
}

.vhp-post__tags a:hover {
  background: var(--vhp-gold);
  color: var(--vhp-white);
}

/* FAQ accordion */
.vhp-faq {
  margin-top: 44px;
}

.vhp-faq__heading {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--vhp-gold);
  display: inline-block;
}

.vhp-faq__item {
  border: 1px solid var(--vhp-border);
  border-radius: var(--vhp-radius-sm);
  margin-bottom: 12px;
  background: var(--vhp-white);
  overflow: hidden;
  transition: border-color var(--vhp-transition), box-shadow var(--vhp-transition);
}

.vhp-faq__item.is-open {
  border-color: var(--vhp-gold);
  box-shadow: var(--vhp-shadow-sm);
}

.vhp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--vhp-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--vhp-primary);
  transition: color var(--vhp-transition);
}

.vhp-faq__question:hover {
  color: var(--vhp-gold-dark);
}

.vhp-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.vhp-faq__icon::before,
.vhp-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--vhp-gold);
  transform: translate(-50%, -50%);
  transition: transform var(--vhp-transition);
}

.vhp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vhp-faq__item.is-open .vhp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.vhp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.vhp-faq__item.is-open .vhp-faq__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.vhp-faq__answer p {
  margin: 0;
  color: var(--vhp-text-muted);
  line-height: 1.7;
}

/* Sidebar */
.vhp-single__aside {
  position: sticky;
  top: calc(var(--vhp-header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vhp-sidebar-card {
  background: var(--vhp-white);
  border: 1px solid var(--vhp-border);
  border-radius: var(--vhp-radius-md);
  padding: 26px 24px;
}

.vhp-sidebar-card__title {
  font-size: 18px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--vhp-gold);
  display: inline-block;
}

.vhp-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vhp-sidebar-list__item {
  border-bottom: 1px solid var(--vhp-border);
}

.vhp-sidebar-list__item:last-child {
  border-bottom: 0;
}

.vhp-sidebar-list__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--vhp-text);
}

.vhp-sidebar-list__item a svg {
  color: var(--vhp-gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.vhp-sidebar-list__item a:hover {
  color: var(--vhp-gold-dark);
}

.vhp-sidebar-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vhp-sidebar-posts__item {
  margin-bottom: 16px;
}

.vhp-sidebar-posts__item:last-child {
  margin-bottom: 0;
}

.vhp-sidebar-posts__item a {
  display: flex;
  gap: 14px;
  align-items: center;
}

.vhp-sidebar-posts__thumb {
  flex: 0 0 68px;
}

.vhp-sidebar-posts__thumb img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--vhp-radius-sm);
}

.vhp-sidebar-posts__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--vhp-text);
}

.vhp-sidebar-posts__item a:hover .vhp-sidebar-posts__title {
  color: var(--vhp-gold-dark);
}

.vhp-sidebar-posts__info time {
  font-size: 12px;
  color: var(--vhp-text-muted);
}

.vhp-sidebar-cta {
  background: var(--vhp-primary);
  color: var(--vhp-white);
  border-radius: var(--vhp-radius-md);
  padding: 28px 24px;
}

.vhp-sidebar-cta__title {
  color: var(--vhp-white);
  font-size: 20px;
  margin: 0 0 10px;
}

.vhp-sidebar-cta__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin: 0 0 18px;
}

.vhp-sidebar-cta .vhp-btn {
  width: 100%;
}

/* ==========================================================================
   Team (Luật sư)
   ========================================================================== */
.vhp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.vhp-team-card {
  background: var(--vhp-white);
  border: 1px solid var(--vhp-border);
  border-radius: var(--vhp-radius-md);
  overflow: hidden;
  transition: transform var(--vhp-transition), box-shadow var(--vhp-transition);
}

.vhp-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vhp-shadow-md);
}

.vhp-team-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.vhp-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.vhp-team-card:hover .vhp-team-card__media img {
  transform: scale(1.05);
}

.vhp-team-card__body {
  padding: 20px 22px 24px;
  text-align: center;
}

.vhp-team-card__name {
  font-size: 19px;
  margin: 0 0 4px;
}

.vhp-team-card__position {
  font-size: 13px;
  color: var(--vhp-gold-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.vhp-team-card__social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.vhp-team-card__social a,
.vhp-member__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--vhp-background-alt);
  color: var(--vhp-primary);
  transition: all var(--vhp-transition);
}

.vhp-team-card__social a:hover,
.vhp-member__social a:hover {
  background: var(--vhp-gold);
  color: var(--vhp-white);
}

/* Single member */
.vhp-member {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.vhp-member__media {
  position: relative;
  border-radius: var(--vhp-radius-md);
  overflow: hidden;
}

.vhp-member__media img {
  width: 100%;
  height: auto;
}

.vhp-member__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.vhp-member__name {
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 6px;
}

.vhp-member__position {
  font-size: 15px;
  color: var(--vhp-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.vhp-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.vhp-contact__intro {
  color: var(--vhp-text-muted);
  margin-bottom: 24px;
}

.vhp-contact__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.vhp-contact__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vhp-border);
}

.vhp-contact__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vhp-gold-dark);
  font-weight: 600;
}

.vhp-contact__value {
  font-size: 16px;
  color: var(--vhp-text);
}

.vhp-contact__form-wrap {
  background: var(--vhp-white);
  border: 1px solid var(--vhp-border);
  border-radius: var(--vhp-radius-lg);
  padding: 36px;
  box-shadow: var(--vhp-shadow-sm);
}

.vhp-contact__form-title {
  font-size: 24px;
  margin: 0 0 22px;
}

.vhp-contact__map {
  margin-top: 64px;
  border-radius: var(--vhp-radius-md);
  overflow: hidden;
  border: 1px solid var(--vhp-border);
}

.vhp-contact__map iframe {
  display: block;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.vhp-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vhp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vhp-form__field {
  display: block;
  margin-bottom: 18px;
}

.vhp-form__field > span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vhp-text);
  margin-bottom: 8px;
}

.vhp-form__field em {
  color: #c0392b;
  font-style: normal;
}

.vhp-form__field input,
.vhp-form__field textarea,
.vhp-search-form-wrap input[type="search"] {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--vhp-font-body);
  font-size: 15px;
  color: var(--vhp-text);
  background: var(--vhp-background);
  border: 1px solid var(--vhp-border);
  border-radius: var(--vhp-radius-sm);
  transition: border-color var(--vhp-transition), box-shadow var(--vhp-transition);
}

.vhp-form__field input:focus,
.vhp-form__field textarea:focus,
.vhp-search-form-wrap input[type="search"]:focus {
  outline: none;
  border-color: var(--vhp-gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.15);
}

.vhp-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.vhp-form .vhp-btn {
  margin-top: 6px;
}

.vhp-form-notice {
  padding: 14px 18px;
  border-radius: var(--vhp-radius-sm);
  margin-bottom: 22px;
  font-size: 14px;
}

.vhp-form-notice--success {
  background: #eaf7ef;
  border: 1px solid #b7e0c6;
  color: #1e7a44;
}

.vhp-form-notice--error {
  background: #fdecea;
  border: 1px solid #f3c2bd;
  color: #b03024;
}

/* Search form */
.vhp-search-form-wrap {
  max-width: 520px;
  margin: 0 auto 40px;
}

.vhp-search-form-wrap form {
  display: flex;
  gap: 10px;
}

.vhp-search-form-wrap .search-submit {
  flex-shrink: 0;
  padding: 0 22px;
  background: var(--vhp-gold);
  color: var(--vhp-white);
  border: 1px solid var(--vhp-gold);
  border-radius: var(--vhp-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--vhp-transition);
}

.vhp-search-form-wrap .search-submit:hover {
  background: var(--vhp-gold-dark);
}

/* ==========================================================================
   404
   ========================================================================== */
.vhp-404__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.vhp-404__code {
  font-family: var(--vhp-font-heading);
  font-size: clamp(90px, 16vw, 160px);
  line-height: 1;
  font-weight: 700;
  color: var(--vhp-gold);
  margin: 0;
}

.vhp-404__text {
  font-size: 18px;
  color: var(--vhp-text-muted);
  margin: 12px 0 28px;
}

/* ==========================================================================
   Inner pages — Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .vhp-single__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vhp-single__aside {
    position: static;
  }

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

  .vhp-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vhp-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vhp-member {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vhp-member__media {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .vhp-page-banner {
    padding: calc(var(--vhp-header-h) + 48px) 0 44px;
  }

  .vhp-team-grid,
  .vhp-blog__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .vhp-contact__form-wrap {
    padding: 26px 22px;
  }

  .vhp-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
