:root {
  --vnth-cream: #f2eee6;
  --vnth-cream-deep: #e4ddd1;
  --vnth-paper: #fbf9f5;
  --vnth-ink: #080b0c;
  --vnth-muted: #6c736f;
  --vnth-line: rgba(29, 44, 39, 0.2);
  --vnth-accent: #080b0c;
  --vnth-teal: #080b0c;
  --vnth-white: #fff;
  --vnth-heading: "Livvic", sans-serif;
  --vnth-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --vnth-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --vnth-shell: 1440px;
  --vnth-gutter: clamp(20px, 4vw, 72px);
  --vnth-header-h: 112px;
  --vnth-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--vnth-ink);
  background: var(--vnth-cream);
  font-family: var(--vnth-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {
  font-family: "Livvic", sans-serif !important;
}

html.vnth-menu-open,
body.vnth-menu-open {
  height: 100%;
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.vnth-skip-link {
  position: fixed;
  z-index: 10001;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--vnth-white);
  background: var(--vnth-ink);
  transform: translateY(-150%);
}

.vnth-skip-link:focus {
  transform: translateY(0);
}

.vnth-site-main {
  min-height: 70vh;
  overflow: clip;
}

.vnth-site-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  height: var(--vnth-header-h);
  color: var(--vnth-ink);
  transition: color 0.35s ease, background-color 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

.vnth-site-header.is-scrolled {
  height: 82px;
  background: rgba(242, 238, 230, 0.94);
  box-shadow: 0 1px 0 var(--vnth-line);
  backdrop-filter: blur(14px);
}

.vnth-is-front-page:not(.vnth-menu-open) .vnth-site-header:not(.is-scrolled) {
  color: var(--vnth-white);
}

body:not(.vnth-is-front-page) .vnth-site-header,
body:not(.vnth-is-front-page) .vnth-site-header.is-scrolled {
  position: sticky;
  top: 0;
  height: var(--vnth-header-h);
  color: var(--vnth-ink);
  background: var(--vnth-paper);
  box-shadow: 0 1px 0 var(--vnth-line);
}

.vnth-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--vnth-shell));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--vnth-gutter);
}

.vnth-site-header__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vnth-wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
  font-family: var(--vnth-serif);
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 200px;
  max-height: 78px;
  transition: filter 0.3s ease;
}

.vnth-is-front-page:not(.vnth-menu-open) .vnth-site-header:not(.is-scrolled) .custom-logo {
  filter: brightness(0) invert(1);
}

.vnth-site-header__tagline {
  max-width: 145px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vnth-site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
}

.vnth-header-appointment {
  position: relative;
  padding: 10px 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vnth-header-appointment::after,
.vnth-text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--vnth-ease);
}

.vnth-header-appointment:hover::after,
.vnth-header-appointment:focus-visible::after,
.vnth-text-link:hover::after,
.vnth-text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vnth-menu-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-content: center;
}

.vnth-menu-toggle span {
  display: block;
  width: 30px;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.45s var(--vnth-ease), margin 0.45s var(--vnth-ease);
}

.vnth-menu-open .vnth-menu-toggle span:first-child {
  margin: 0;
  transform: rotate(45deg);
}

.vnth-menu-open .vnth-menu-toggle span:last-child {
  margin: -1px 0 0;
  transform: rotate(-45deg);
}

.vnth-menu-open .vnth-site-header__brand,
.vnth-menu-open .vnth-header-appointment {
  pointer-events: none;
  opacity: 0;
}

.vnth-menu-open .vnth-menu-toggle {
  position: relative;
  z-index: 10001;
  top: auto;
  right: auto;
  left: auto;
}

body.vnth-menu-open .vnth-site-header,
body.vnth-menu-open:not(.vnth-is-front-page) .vnth-site-header,
body.vnth-menu-open:not(.vnth-is-front-page) .vnth-site-header.is-scrolled {
  pointer-events: none;
  color: #080b0c;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.vnth-menu-open .vnth-menu-toggle {
  pointer-events: auto;
}

.vnth-menu-overlay {
  position: fixed;
  z-index: 9990;
  inset: 0;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  color: #080b0c;
  background: #f4f5f6;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.vnth-menu-overlay::before {
  position: absolute;
  z-index: 0;
  right: -6vw;
  bottom: -20vh;
  left: -6vw;
  height: 88vh;
  background: var(--vnth-menu-watermark) center bottom/contain no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

.vnth-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.vnth-menu-overlay__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: clamp(55px, 7vw, 125px);
  width: min(calc(100% - 80px), 1420px);
  height: 100dvh;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(70px, 8vh, 88px) 0 clamp(24px, 3.5vh, 38px);
  overflow: hidden;
  scrollbar-width: none;
}

.vnth-menu-overlay__inner::-webkit-scrollbar {
  display: none;
}

.vnth-menu-overlay__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  min-height: min(440px, 58vh);
  max-width: 520px;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.vnth-menu-overlay__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  width: 100%;
}

.vnth-menu-overlay__contact p {
  max-width: 500px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
}

.vnth-menu-overlay__contact > a:not(.vnth-menu-overlay__appointment) {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vnth-menu-overlay__appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  min-height: 56px;
  margin-top: 26px;
  padding: 14px 26px;
  color: var(--vnth-white);
  background: #080b0c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.vnth-menu-overlay__appointment:hover,
.vnth-menu-overlay__appointment:focus-visible {
  color: #080b0c;
  outline: 1px solid #080b0c;
  background: transparent;
}

.vnth-menu-overlay__socials {
  position: absolute;
  z-index: 2;
  top: clamp(28px, 5vh, 48px);
  right: auto;
  left: max(28px, 4vw);
  display: flex;
  align-items: center;
  gap: 18px;
}

.vnth-menu-overlay__socials a,
.vnth-menu-overlay__socials span {
  display: grid;
  width: 32px;
  height: 32px;
  color: #080b0c;
  place-items: center;
}

.vnth-menu-overlay__socials svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.vnth-language-switcher {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.vnth-language-switcher a,
.vnth-language-switcher span {
  opacity: 0.45;
}

.vnth-language-switcher .is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.vnth-overlay-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.55vh, 7px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vnth-overlay-menu > li {
  position: relative;
}

.vnth-overlay-menu > li > a {
  display: block;
  padding: 0;
  font-family: "Livvic", sans-serif;
  font-size: clamp(28px, 4.35vh, 43px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
  transition: color 0.3s ease, transform 0.45s var(--vnth-ease);
}

@media (min-width: 783px) {
  body.admin-bar .vnth-menu-overlay {
    top: 32px;
    height: calc(100dvh - 32px);
    max-height: calc(100dvh - 32px);
  }

  body.admin-bar .vnth-menu-overlay__inner {
    height: calc(100dvh - 32px);
  }
}

.vnth-overlay-menu > li > a:hover,
.vnth-overlay-menu > li > a:focus-visible {
  color: #080b0c;
  transform: translateX(18px);
}

.vnth-overlay-menu > li > a::after {
  display: inline-block;
  width: 0;
  height: 1px;
  margin-left: 16px;
  vertical-align: middle;
  background: currentColor;
  content: "";
  transition: width 0.35s var(--vnth-ease);
}

.vnth-overlay-menu > li > a:hover::after,
.vnth-overlay-menu > li > a:focus-visible::after { width: 48px; }

.vnth-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--vnth-header-h) + 30px) var(--vnth-gutter) 48px;
  overflow: hidden;
  color: var(--vnth-white);
  background: #33463e var(--vnth-hero-image) center/cover no-repeat;
  place-items: center;
}

.vnth-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 24, 20, 0.27), rgba(13, 24, 20, 0.12) 50%, rgba(13, 24, 20, 0.48));
}

.vnth-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.vnth-hero__content p {
  margin: 0 0 20px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.vnth-hero__content h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--vnth-serif);
  font-size: clamp(58px, 11vw, 168px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.vnth-scroll-cue {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: var(--vnth-gutter);
  padding-left: 54px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vnth-scroll-cue::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
  content: "";
}

.vnth-eyebrow,
.vnth-page-heading > p,
.vnth-concept-single__header > p {
  margin: 0 0 22px;
  color: var(--vnth-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vnth-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  width: min(100%, var(--vnth-shell));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 190px) var(--vnth-gutter);
}

.vnth-editorial.is-image-left .vnth-editorial__media {
  grid-column: 1;
  grid-row: 1;
}

.vnth-editorial.is-image-left .vnth-editorial__copy {
  grid-column: 2;
  grid-row: 1;
}

.vnth-editorial__copy h2,
.vnth-section-heading h2,
.vnth-contact-layout__intro h2 {
  margin: 0 0 36px;
  font-family: var(--vnth-serif);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.vnth-richtext,
.vnth-editorial__copy > p:not(.vnth-eyebrow) {
  max-width: 620px;
  color: #3f4b46;
}

.vnth-richtext p {
  margin: 0 0 1.2em;
}

.vnth-editorial__media {
  position: relative;
}

.vnth-editorial__media::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -28px;
  width: 58%;
  height: 48%;
  border: 1px solid var(--vnth-accent);
  content: "";
}

.vnth-editorial.is-image-left .vnth-editorial__media::before {
  right: auto;
  left: -28px;
}

.vnth-editorial__media img {
  width: 100%;
  height: min(72vw, 820px);
  max-height: 820px;
  object-fit: cover;
}

.vnth-text-link {
  position: relative;
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vnth-page-hero {
  position: relative;
  min-height: 55vh;
  padding: calc(var(--vnth-header-h) + 90px) var(--vnth-gutter) clamp(70px, 10vw, 140px);
  background: var(--vnth-cream);
}

.vnth-page-hero.has-background {
  min-height: 78vh;
  color: var(--vnth-white);
  background: #33463e var(--vnth-page-hero-image) center/cover no-repeat;
}

.vnth-page-hero.has-background::before {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 20, 0.36);
  content: "";
}

.vnth-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.5fr);
  align-items: end;
  gap: 50px;
  width: min(100%, calc(var(--vnth-shell) - (2 * var(--vnth-gutter))));
  min-height: 30vh;
  margin: 0 auto;
}

.vnth-page-hero__inner .vnth-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.vnth-page-hero__inner h1,
.vnth-page-heading h1 {
  margin: 0;
  font-family: var(--vnth-serif);
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.vnth-page-hero__intro {
  align-self: end;
  padding-bottom: 8px;
}

.vnth-page-hero__intro p {
  margin: 0;
}

body:not(.vnth-is-front-page) .vnth-page-hero {
  padding-top: clamp(70px, 8vw, 115px);
}

body:not(.vnth-is-front-page) .vnth-single,
body:not(.vnth-is-front-page) .vnth-concept-single {
  padding-top: clamp(70px, 8vw, 110px);
}

.vnth-section,
.vnth-page-shell {
  width: min(100%, var(--vnth-shell));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 170px) var(--vnth-gutter);
}

.vnth-dynamic-grid-section.is-news {
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: clamp(24px, 5vw, 96px);
  padding-left: clamp(24px, 5vw, 96px);
}

.vnth-page-shell {
  padding-top: calc(var(--vnth-header-h) + 100px);
}

.vnth-page-heading {
  margin: 0 0 clamp(64px, 8vw, 120px);
}

.vnth-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(52px, 7vw, 100px);
}

.vnth-section-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.vnth-concept-grid,
.vnth-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 78px) clamp(18px, 3.3vw, 50px);
}

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

.vnth-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vnth-concept-card:nth-child(3n + 2) {
  transform: translateY(70px);
}

.vnth-concept-card__media,
.vnth-journal-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--vnth-cream-deep);
}

.vnth-concept-card__media {
  aspect-ratio: 0.78;
}

.vnth-journal-card__media {
  aspect-ratio: 1.24;
}

.vnth-concept-card__media::after,
.vnth-journal-card__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  content: "";
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.45s ease, transform 0.55s var(--vnth-ease);
}

.vnth-concept-card__media img,
.vnth-journal-card__media img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
  transition: transform 0.9s var(--vnth-ease);
}

.vnth-concept-card:hover img,
.vnth-journal-card:hover img {
  transform: scale(1.035);
}

.vnth-concept-card:hover .vnth-concept-card__media::after,
.vnth-journal-card:hover .vnth-journal-card__media::after {
  opacity: 1;
  transform: scale(0.97);
}

.vnth-concept-card__body,
.vnth-journal-card__body {
  padding-top: 22px;
}

.vnth-concept-card h3,
.vnth-journal-card h3 {
  margin: 0;
  font-family: var(--vnth-serif);
  font-size: clamp(25px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.vnth-concept-card p {
  margin: 8px 0 0;
  color: var(--vnth-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vnth-journal-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--vnth-muted);
  font-size: 10px;
  letter-spacing: 0.11em;
}

.vnth-journal-card .vnth-text-link {
  margin-top: 16px;
}

.vnth-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 86vh;
  padding: 100px var(--vnth-gutter);
  color: var(--vnth-white);
  background: var(--vnth-ink);
  text-align: center;
}

.vnth-statement blockquote {
  max-width: 1120px;
  margin: 0 0 58px;
}

.vnth-statement blockquote p {
  margin: 0 0 28px;
  font-family: var(--vnth-serif);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.vnth-statement cite {
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vnth-statement--compact {
  min-height: 54vh;
  padding-top: clamp(84px, 9vw, 130px);
  padding-bottom: clamp(84px, 9vw, 130px);
}

.vnth-statement--compact blockquote {
  max-width: 980px;
  margin-bottom: 44px;
}

.vnth-statement--compact blockquote p {
  font-family: "Livvic", sans-serif;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.04;
}

.vnth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 30px;
  color: var(--vnth-white);
  border: 1px solid var(--vnth-ink);
  border-radius: 0;
  background: var(--vnth-ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.vnth-button:hover,
.vnth-button:focus-visible {
  color: var(--vnth-ink);
  background: transparent;
}

.vnth-button--light {
  color: var(--vnth-ink);
  border-color: var(--vnth-white);
  background: var(--vnth-white);
}

.vnth-button--light:hover,
.vnth-button--light:focus-visible {
  color: var(--vnth-white);
}

.vnth-services {
  width: min(100%, var(--vnth-shell));
  margin: 0 auto;
  padding: 0 var(--vnth-gutter) clamp(100px, 12vw, 180px);
}

.vnth-services.has-heading {
  padding-top: clamp(90px, 10vw, 150px);
}

.vnth-services__heading {
  width: min(100%, 820px);
  margin: 0 auto clamp(58px, 7vw, 96px);
  text-align: center;
}

.vnth-services__heading .vnth-eyebrow {
  margin-bottom: 16px;
}

.vnth-services__heading h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.vnth-services__heading > div {
  width: min(100%, 690px);
  margin: 28px auto 0;
  color: var(--vnth-muted);
  font-size: 16px;
  line-height: 1.65;
}

.vnth-services__heading > div p {
  margin: 0;
}

.vnth-global-rail {
  position: fixed;
  z-index: 9985;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 190px;
  padding: 14px 0;
  color: var(--vnth-teal);
  border: 1px solid rgba(29, 44, 39, 0.12);
  background: rgba(251, 249, 245, 0.94);
  box-shadow: 0 12px 35px rgba(14, 24, 20, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition: width 0.3s var(--vnth-ease), color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.vnth-global-rail span {
  display: block;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.vnth-global-rail.is-consultation {
  left: 0;
}

.vnth-global-rail.is-discover {
  right: 0;
  color: var(--vnth-white);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(29, 44, 39, 0.9);
  font-size: 10px;
}

.vnth-global-rail:hover,
.vnth-global-rail:focus-visible {
  width: 66px;
  outline: 0;
}

.vnth-global-rail.is-consultation:hover,
.vnth-global-rail.is-consultation:focus-visible {
  color: var(--vnth-white);
  background: var(--vnth-teal);
}

.vnth-global-rail.is-discover:hover,
.vnth-global-rail.is-discover:focus-visible {
  background: var(--vnth-teal);
}

.vnth-menu-open .vnth-global-rail {
  pointer-events: none;
  opacity: 0;
}

.vnth-service-showcase {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0;
  background: var(--vnth-paper);
}

.vnth-service-showcase__stage {
  position: relative;
  width: 100%;
  height: clamp(720px, calc(100svh - var(--vnth-header-h)), 900px);
  margin: 0;
  overflow: hidden;
  color: var(--vnth-white);
  background: var(--vnth-ink);
}

.vnth-service-showcase__slides,
.vnth-service-showcase__slide,
.vnth-service-showcase__slide img,
.vnth-service-showcase__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vnth-service-showcase__slide {
  z-index: 0;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}

.vnth-service-showcase__slide img {
  display: block;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover !important;
  object-position: 50% 50%;
  transform: scale(1.025);
  transition: transform 1.15s var(--vnth-ease);
}

.vnth-service-showcase__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.vnth-service-showcase__slide.is-active img { transform: scale(1); }

.vnth-service-showcase__slide.is-next {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}

.vnth-service-showcase__slide.is-next.from-right { clip-path: inset(0 0 0 100%); }
.vnth-service-showcase__slide.is-next.from-left { clip-path: inset(0 100% 0 0); }

.vnth-service-showcase__slide.is-next.is-entering {
  clip-path: inset(0);
  transition: clip-path 0.95s var(--vnth-ease);
}

.vnth-service-showcase__shade {
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 15, 12, 0.12) 0%, rgba(7, 15, 12, 0.08) 45%, rgba(7, 15, 12, 0.55) 100%);
}

.vnth-service-showcase__content {
  position: absolute;
  z-index: 5;
  top: 46%;
  left: 50%;
  width: min(680px, calc(100% - 60px));
  text-align: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vnth-service-showcase__content.is-changing {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 12px));
}

.vnth-service-showcase__content > p {
  margin: 0 0 16px;
  font-family: var(--vnth-serif);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vnth-service-showcase__content h2 {
  margin: 0 0 30px;
  font-family: var(--vnth-serif);
  font-size: clamp(48px, 5.4vw, 88px);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.vnth-button--accent {
  min-width: 255px;
  color: var(--vnth-white);
  border-color: var(--vnth-teal);
  background: var(--vnth-teal);
}

.vnth-button--accent:hover,
.vnth-button--accent:focus-visible {
  color: var(--vnth-white);
  border-color: var(--vnth-white);
  background: rgba(0, 0, 0, 0.16);
}

.vnth-service-showcase__tabs {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(var(--vnth-service-count), minmax(0, 1fr));
  min-height: 128px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.vnth-service-showcase__tabs button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  padding: 24px 12px 30px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  border: 0;
  border-left: 1px dotted rgba(255, 255, 255, 0.48);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.vnth-service-showcase__tabs button:last-child { border-right: 1px dotted rgba(255, 255, 255, 0.48); }

.vnth-service-showcase__tabs button::after {
  position: absolute;
  right: 22%;
  bottom: 15px;
  left: 22%;
  height: 2px;
  content: "";
  background: var(--vnth-teal);
  transform: scaleX(0);
  transition: transform 0.4s var(--vnth-ease);
}

.vnth-service-showcase__tabs button:hover,
.vnth-service-showcase__tabs button:focus-visible,
.vnth-service-showcase__tabs button.is-active {
  color: var(--vnth-white);
  background: rgba(0, 0, 0, 0.12);
}

.vnth-service-showcase__tabs button.is-active::after { transform: scaleX(1); }

.vnth-blog-showcase {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(100px, 11vw, 170px) clamp(56px, 5vw, 96px);
  background: var(--vnth-paper);
}

.vnth-blog-showcase__inner {
  width: min(100%, 1720px);
  margin: 0 auto;
}

.vnth-blog-showcase__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(100%, 1160px);
  margin: 0 auto clamp(62px, 7vw, 100px);
}

.vnth-blog-showcase__heading h2 {
  margin: 12px 0 0;
  font-family: var(--vnth-serif);
  font-size: clamp(54px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 1;
}

.vnth-blog-showcase__viewport { overflow: hidden; }

.vnth-blog-showcase__track {
  display: flex;
  gap: clamp(22px, 2vw, 34px);
  transition: transform 0.75s var(--vnth-ease);
  will-change: transform;
}

.vnth-blog-collage-card {
  flex: 0 0 calc(25% - 26px);
  min-width: 0;
}

.vnth-blog-collage-card__media {
  position: relative;
  display: block;
  height: clamp(290px, 24vw, 405px);
  overflow: hidden;
}

.vnth-blog-collage-card__image {
  position: absolute;
  display: block;
  width: 64%;
  height: 76%;
  overflow: hidden;
  background: var(--vnth-cream-deep);
}

.vnth-blog-collage-card__image.is-primary { top: 0; left: 0; }
.vnth-blog-collage-card__image.is-secondary {
  right: 0;
  bottom: 0;
  border: 6px solid var(--vnth-paper);
}

.vnth-blog-collage-card__image img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
  transition: transform 0.8s var(--vnth-ease);
}

.vnth-blog-collage-card:hover .vnth-blog-collage-card__image.is-primary img { transform: scale(1.045); }
.vnth-blog-collage-card:hover .vnth-blog-collage-card__image.is-secondary img { transform: scale(1.045) translateX(-2%); }

.vnth-blog-collage-card__body { padding-top: 18px; }
.vnth-blog-collage-card__body time {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.vnth-blog-collage-card__body h3 {
  min-height: 3.4em;
  margin: 0 0 22px;
  font-family: var(--vnth-serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.15;
}

.vnth-blog-showcase__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 66px;
  margin-top: clamp(50px, 6vw, 88px);
}

.vnth-blog-showcase__dots button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 0.35s var(--vnth-ease), height 0.35s var(--vnth-ease), border-color 0.35s ease;
}

.vnth-blog-showcase__dots button span {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--vnth-ink);
  transform: rotate(45deg);
}

.vnth-blog-showcase__dots button.is-active {
  width: 60px;
  height: 60px;
  border-color: var(--vnth-ink);
}

.vnth-blog-showcase__dots button[hidden] { display: none; }

/* Two-column News and Blog archive inspired by the supplied editorial layout. */
.vnth-journal-archive {
  width: 100%;
  padding: clamp(60px, 7vw, 105px) var(--vnth-gutter) clamp(110px, 13vw, 200px);
  color: #080b0c;
  background: #fff;
}

.vnth-journal-archive__heading {
  width: min(100%, 1080px);
  margin: 0 auto clamp(62px, 7vw, 105px);
  text-align: center;
}

.vnth-journal-archive__heading h1 {
  margin: 0;
  font-family: "Livvic", sans-serif;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.vnth-journal-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(78px, 8vw, 122px) clamp(44px, 6vw, 90px);
  width: min(100%, 1080px);
  margin: 0 auto;
}

.vnth-journal-archive .vnth-blog-collage-card {
  min-width: 0;
  flex: none;
}

.vnth-journal-archive .vnth-blog-collage-card.is-extra {
  display: none;
}

.vnth-journal-archive.is-grid-expanded .vnth-blog-collage-card.is-extra {
  display: block;
  animation: vnth-ensemble-reveal 0.55s var(--vnth-ease) both;
}

.vnth-journal-archive .vnth-blog-collage-card__media {
  height: clamp(390px, 39vw, 535px);
}

.vnth-journal-archive .vnth-blog-collage-card__image.is-primary {
  top: 0;
  left: 0;
  width: 75%;
  height: 88%;
}

.vnth-journal-archive .vnth-blog-collage-card__image.is-secondary {
  right: 0;
  bottom: 10%;
  width: 38%;
  height: 42%;
  border: 5px solid #fff;
}

.vnth-journal-archive .vnth-blog-collage-card__image img {
  object-position: center 35%;
}

.vnth-journal-archive .vnth-blog-collage-card__body {
  padding-top: 15px;
}

.vnth-journal-archive .vnth-blog-collage-card__body time {
  margin-bottom: 12px;
  color: rgba(8, 11, 12, 0.72);
  font-size: 11px;
}

.vnth-journal-archive .vnth-blog-collage-card__body h3 {
  min-height: 2.4em;
  margin-bottom: 18px;
  font-family: "Livvic", sans-serif;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.vnth-journal-archive .vnth-text-link {
  color: #080b0c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vnth-journal-archive__more {
  display: flex;
  justify-content: center;
  width: min(100%, 1080px);
  margin: clamp(72px, 8vw, 115px) auto 0;
}

.vnth-journal-archive__more button {
  min-width: 145px;
  padding: 14px 26px;
  border: 1px solid #080b0c;
  color: #080b0c;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.vnth-journal-archive__more button:hover,
.vnth-journal-archive__more button:focus-visible {
  color: #fff;
  background: #080b0c;
}

.vnth-journal-archive__empty {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.vnth-is-front-page .elementor-widget-vnth-luxe-form,
.vnth-is-front-page .elementor-widget-vnth-luxe-faq,
.vnth-is-front-page .vnth-contact-layout,
.vnth-is-front-page .vnth-faq-section {
  display: none !important;
}

.vnth-testimonials,
.vnth-faq-section {
  width: min(100%, var(--vnth-shell));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 170px) var(--vnth-gutter);
}

.vnth-testimonials {
  color: var(--vnth-white);
  background: var(--vnth-ink);
}

.vnth-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.vnth-testimonial-card {
  min-height: 420px;
  padding: clamp(28px, 4vw, 58px);
  background: var(--vnth-ink);
}

.vnth-testimonial-card > span {
  display: block;
  height: 70px;
  color: var(--vnth-accent);
  font-family: var(--vnth-serif);
  font-size: 92px;
  line-height: 1;
}

.vnth-testimonial-card blockquote {
  margin: 28px 0 50px;
  font-family: var(--vnth-serif);
  font-size: clamp(25px, 2.6vw, 39px);
  line-height: 1.18;
}

.vnth-testimonial-card blockquote p {
  margin: 0;
}

.vnth-testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vnth-testimonial-card footer small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.vnth-testimonials--editorial {
  width: 100%;
  max-width: none;
  padding: clamp(88px, 10vw, 150px) var(--vnth-gutter) clamp(105px, 12vw, 180px);
  color: var(--vnth-ink);
  background: var(--vnth-paper);
}

.vnth-testimonials-editorial__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.vnth-testimonials-editorial__heading {
  display: flex;
  gap: 36px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.vnth-testimonials-editorial__heading .vnth-eyebrow {
  margin: 0 0 15px;
}

.vnth-testimonials-editorial__heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 80px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.vnth-testimonials-editorial__heading .vnth-text-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
  color: var(--vnth-ink);
}

.vnth-testimonials-editorial__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.vnth-testimonials-editorial__media {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 48vw, 700px);
  margin: clamp(32px, 4vw, 58px) clamp(-26px, -1.8vw, -12px) clamp(-32px, -3vw, -20px) 0;
  overflow: hidden;
  background: var(--vnth-cream-deep);
}

.vnth-testimonials-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 0.9s var(--vnth-ease);
}

.vnth-testimonials--editorial:hover .vnth-testimonials-editorial__media img {
  transform: scale(1.025);
}

.vnth-testimonials-editorial__stage {
  display: flex;
  flex-direction: column;
  min-height: clamp(620px, 53vw, 760px);
  padding: clamp(48px, 6vw, 86px);
  color: var(--vnth-white);
  background: var(--vnth-ink);
}

.vnth-testimonials-editorial__mark {
  display: block;
  height: 76px;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, serif;
  font-size: 112px;
  font-weight: 700;
  line-height: 0.9;
}

.vnth-testimonials-editorial__slides {
  display: grid;
  flex: 1 1 auto;
  align-items: center;
}

.vnth-testimonials-editorial__slide {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 0.48s ease, transform 0.65s var(--vnth-ease), visibility 0s linear 0.5s;
}

.vnth-testimonials-editorial__slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.vnth-testimonials-editorial__slide blockquote {
  margin: 0 0 clamp(42px, 5vw, 68px);
  font-family: var(--vnth-serif);
  font-size: clamp(29px, 3vw, 46px);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.vnth-testimonials-editorial__slide blockquote p {
  margin: 0;
}

.vnth-testimonials-editorial__slide footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vnth-testimonials-editorial__slide footer small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.vnth-testimonials-editorial__nav {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.vnth-testimonials-editorial__nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--vnth-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.vnth-testimonials-editorial__nav button:hover,
.vnth-testimonials-editorial__nav button:focus-visible {
  color: var(--vnth-ink);
  background: var(--vnth-white);
}

.vnth-testimonials-editorial__nav span {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.vnth-testimonials-editorial__nav b {
  font-weight: 700;
}

.vnth-faq {
  border-bottom: 1px solid var(--vnth-line);
}

.vnth-faq .vnth-service__panel {
  display: block;
  padding-right: clamp(20px, 8vw, 150px);
}

.vnth-services-editorial {
  width: 100%;
  padding: clamp(64px, 7vw, 112px) var(--vnth-gutter) clamp(112px, 13vw, 190px);
  color: var(--vnth-ink);
  background: var(--vnth-white);
}

.vnth-services-editorial__header {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.vnth-services-editorial__header h1 {
  max-width: 1060px;
  margin: 0 auto;
  font-family: var(--vnth-sans);
  font-size: clamp(40px, 4.15vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.vnth-services-editorial__quote {
  display: block;
  height: 62px;
  margin: clamp(32px, 4vw, 58px) 0 8px;
  color: rgba(8, 11, 12, 0.35);
  font-family: Georgia, serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
}

.vnth-services-editorial__mission {
  width: min(100%, 820px);
  margin: 0 auto;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

.vnth-services-editorial__mission p {
  margin: 0 0 20px;
}

.vnth-services-editorial__body {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(330px, 0.92fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: start;
  width: min(100%, 1160px);
  margin: clamp(62px, 7vw, 105px) auto 0;
}

.vnth-services-editorial__media {
  position: sticky;
  top: calc(var(--vnth-header-h) + 28px);
  margin: 0;
  overflow: hidden;
  background: #0c0d0d;
}

.vnth-services-editorial__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.34s ease, transform 0.7s var(--vnth-ease);
}

.vnth-services-editorial__media img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.vnth-services-editorial__accordion {
  border-top: 1px solid rgba(8, 11, 12, 0.2);
}

.vnth-services-editorial__item {
  border-bottom: 1px solid rgba(8, 11, 12, 0.2);
}

.vnth-services-editorial__item > button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: clamp(22px, 2.3vw, 33px) 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.vnth-services-editorial__item > button strong {
  font-family: var(--vnth-sans);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 400;
  line-height: 1.3;
}

.vnth-services-editorial__item > button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  transition: transform 0.35s var(--vnth-ease);
}

.vnth-services-editorial__item.is-open > button i {
  transform: rotate(45deg);
}

.vnth-services-editorial__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.5s var(--vnth-ease), opacity 0.35s ease;
}

.vnth-services-editorial__panel > div {
  min-height: 0;
  overflow: hidden;
  color: rgba(8, 11, 12, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.vnth-services-editorial__panel p {
  margin: 0;
  padding: 0 34px 27px 0;
}

.vnth-services-editorial__item.is-open .vnth-services-editorial__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.vnth-service {
  border-top: 1px solid var(--vnth-line);
}

@media (max-width: 1024px) {
  .vnth-services-editorial__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .vnth-services-editorial__media {
    position: static;
  }
}

@media (max-width: 767px) {
  .vnth-services-editorial {
    padding: 56px 20px 110px;
  }

  .vnth-services-editorial__header h1 {
    font-size: clamp(36px, 10.5vw, 50px);
  }

  .vnth-services-editorial__quote {
    height: 50px;
    margin-top: 34px;
    font-size: 74px;
  }

  .vnth-services-editorial__mission {
    font-size: 15px;
    line-height: 1.65;
  }

  .vnth-services-editorial__body {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 56px;
  }

  .vnth-services-editorial__media img {
    aspect-ratio: 1.22;
  }

  .vnth-services-editorial__item > button strong {
    font-size: 18px;
  }
}

.vnth-service:last-child {
  border-bottom: 1px solid var(--vnth-line);
}

.vnth-service > button {
  display: grid;
  grid-template-columns: 58px 1fr 32px;
  align-items: center;
  width: 100%;
  padding: 36px 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.vnth-service > button span {
  color: var(--vnth-muted);
  font-size: 10px;
}

.vnth-service > button strong {
  font-family: var(--vnth-serif);
  font-size: clamp(30px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.vnth-service > button i {
  font-size: 30px;
  font-style: normal;
  font-weight: 200;
  transition: transform 0.35s ease;
}

.vnth-service.is-open > button i {
  transform: rotate(45deg);
}

.vnth-service__panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: clamp(35px, 6vw, 90px);
  max-height: 0;
  padding: 0 0 0 58px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s var(--vnth-ease), opacity 0.45s ease, padding 0.7s var(--vnth-ease);
}

.vnth-service.is-open .vnth-service__panel {
  max-height: 900px;
  padding-bottom: 54px;
  opacity: 1;
}

.vnth-service__content ul {
  margin: 0;
  padding-left: 20px;
}

.vnth-service__panel img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.vnth-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 9vw, 150px);
  width: min(100%, var(--vnth-shell));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 170px) var(--vnth-gutter);
}

.vnth-contact-layout__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.vnth-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 40px;
}

.vnth-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vnth-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vnth-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vnth-form label > span,
.vnth-form legend {
  color: var(--vnth-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vnth-form input[type="text"],
.vnth-form input[type="email"],
.vnth-form input[type="tel"],
.vnth-form input[type="date"],
.vnth-form input[type="number"],
.vnth-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  color: var(--vnth-ink);
  border: 0;
  border-bottom: 1px solid var(--vnth-line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 0.25s ease;
}

.vnth-form textarea {
  resize: vertical;
}

.vnth-form input:focus,
.vnth-form textarea:focus {
  border-color: var(--vnth-ink);
}

.vnth-form .vnth-button {
  align-self: flex-start;
  margin-top: 10px;
}

.vnth-form__services {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.vnth-form__services legend {
  margin-bottom: 12px;
}

.vnth-form__services label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
}

.vnth-form__services label > span {
  color: inherit;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.vnth-hp {
  position: absolute !important;
  left: -99999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vnth-form-notice {
  padding: 14px 18px;
  border: 1px solid;
  font-size: 13px;
}

.vnth-form-notice.is-success {
  color: #215c37;
  border-color: #71a383;
  background: #edf8f0;
}

.vnth-form-notice.is-error {
  color: #8a2a2a;
  border-color: #c98888;
  background: #fff1f1;
}

.vnth-single,
.vnth-concept-single {
  padding-top: calc(var(--vnth-header-h) + 90px);
}

.vnth-single__header,
.vnth-concept-single__header {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 var(--vnth-gutter) clamp(55px, 8vw, 110px);
  text-align: center;
}

.vnth-single__header time {
  display: block;
  margin-bottom: 25px;
  color: var(--vnth-muted);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.vnth-single__header h1,
.vnth-concept-single__header h1 {
  margin: 0;
  font-family: var(--vnth-serif);
  font-size: clamp(50px, 8vw, 122px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.vnth-concept-single__header h2 {
  margin: 24px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vnth-single__hero,
.vnth-concept-single__hero {
  width: min(calc(100% - (2 * var(--vnth-gutter))), var(--vnth-shell));
  margin: 0 auto clamp(70px, 10vw, 140px);
}

.vnth-single__hero img,
.vnth-concept-single__hero img {
  width: 100%;
  max-height: 88vh;
  object-fit: cover;
}

.vnth-single__content,
.vnth-concept-single__content,
.vnth-entry-content:not(:has(.elementor)) {
  width: min(calc(100% - (2 * var(--vnth-gutter))), 820px);
  margin: 0 auto;
  padding-bottom: clamp(90px, 12vw, 180px);
}

.vnth-single__content > p,
.vnth-concept-single__content > p {
  margin: 0 0 1.5em;
}

.vnth-single__content h2,
.vnth-concept-single__content h2 {
  margin: 1.4em 0 0.6em;
  font-family: var(--vnth-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.vnth-single__content figure,
.vnth-concept-single__content figure {
  margin: clamp(42px, 7vw, 90px) 0;
}

.vnth-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: calc(var(--vnth-header-h) + 40px) var(--vnth-gutter) 80px;
  text-align: center;
}

.vnth-not-found h1 {
  margin: 0 0 42px;
  font-family: var(--vnth-serif);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 400;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 100px;
}

.nav-links .page-numbers {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--vnth-line);
  place-items: center;
}

.nav-links .current,
.nav-links a:hover {
  color: var(--vnth-white);
  background: var(--vnth-ink);
}

.vnth-about-showcase {
  padding-bottom: clamp(100px, 12vw, 180px);
  background: var(--vnth-paper);
}

.vnth-about-showcase figure { margin: 0; }

.vnth-about-showcase__header {
  padding: clamp(54px, 7vw, 96px) 20px clamp(44px, 5vw, 72px);
  text-align: center;
}

.vnth-about-showcase__header h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.vnth-about-showcase__hero {
  width: min(calc(100% - 96px), 1720px);
  height: clamp(430px, 54vw, 820px);
  margin: 0 auto;
  overflow: hidden;
}

.vnth-about-showcase__hero img,
.vnth-about-showcase__intro figure img,
.vnth-about-showcase__story-image img,
.vnth-about-showcase__story-copy figure img,
.vnth-about-gallery figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.vnth-about-showcase__intro,
.vnth-about-showcase__story {
  display: grid;
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
}

.vnth-about-showcase__intro {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  padding: clamp(86px, 10vw, 150px) 0;
}

.vnth-about-showcase__copy {
  text-align: center;
}

.vnth-about-showcase__copy h2 {
  margin: 8px 0 28px;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 1;
}

.vnth-about-showcase__copy .vnth-richtext {
  margin: 0 auto;
}

.vnth-about-showcase__intro > figure {
  position: relative;
  height: clamp(490px, 52vw, 690px);
}

.vnth-about-showcase__intro > figure::after {
  position: absolute;
  z-index: -1;
  right: -36px;
  bottom: -36px;
  width: 64%;
  height: 52%;
  border: 1px solid var(--vnth-teal);
  content: "";
}

.vnth-about-showcase__story {
  grid-template-columns: minmax(420px, 1.18fr) minmax(0, 0.82fr);
  align-items: start;
  gap: clamp(42px, 6vw, 88px);
}

.vnth-about-showcase__story-image {
  height: clamp(650px, 72vw, 940px);
}

.vnth-about-showcase__story-copy {
  padding-top: clamp(10px, 4vw, 58px);
}

.vnth-about-showcase__story-copy blockquote {
  position: relative;
  margin: 0 0 32px;
  padding-top: 50px;
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.3;
}

.vnth-about-showcase__story-copy blockquote::before {
  position: absolute;
  top: -18px;
  left: 0;
  color: #8ca8b0;
  content: "“";
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.vnth-about-showcase__story-copy > figure {
  height: clamp(220px, 25vw, 340px);
  margin-top: 42px;
  overflow: hidden;
}

.vnth-about-gallery {
  width: min(calc(100% - 40px), 1180px);
  margin: clamp(86px, 11vw, 160px) auto 0;
}

.vnth-about-gallery h2 {
  margin: 0 0 clamp(42px, 5vw, 68px);
  text-align: center;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.vnth-about-gallery__viewport { overflow: hidden; }

.vnth-about-gallery__track {
  display: flex;
  gap: 8px;
  transition: transform 0.7s var(--vnth-ease);
  will-change: transform;
}

.vnth-about-gallery__track figure {
  flex: 0 0 calc(25% - 6px);
  height: clamp(360px, 38vw, 540px);
  overflow: hidden;
}

.vnth-about-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 48px;
}

.vnth-about-gallery__dots button {
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.vnth-about-gallery__dots button span {
  width: 6px;
  height: 6px;
  background: var(--vnth-ink);
  transform: rotate(45deg);
}

.vnth-about-gallery__dots button.is-active {
  width: 42px;
  height: 42px;
  border-color: var(--vnth-ink);
}

.vnth-about-gallery__dots button[hidden] { display: none; }

.vnth-site-footer {
  color: var(--vnth-white);
  background: #050809;
}

.vnth-site-footer__shell {
  width: min(calc(100% - 56px), 1780px);
  margin: 0 auto;
}

.vnth-site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(70px, 9vw, 180px);
  padding: clamp(72px, 7vw, 112px) 12px clamp(58px, 6vw, 94px);
}

.vnth-site-footer h2 {
  margin: 0 0 26px;
  color: var(--vnth-white);
  font-family: "Livvic", sans-serif !important;
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.vnth-site-footer__brand p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.65;
}

.vnth-footer-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 195px;
  gap: 18px;
  width: min(100%, 700px);
  margin-top: 42px;
}

.vnth-footer-newsletter > input[type="email"] {
  min-width: 0;
  height: 78px;
  padding: 0 24px;
  color: var(--vnth-white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.vnth-footer-newsletter > input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.vnth-footer-newsletter > input[type="email"]:focus {
  border-color: var(--vnth-white);
}

.vnth-footer-newsletter > button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 78px;
  padding: 0 24px;
  color: #050809;
  border: 1px solid var(--vnth-white);
  background: var(--vnth-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.vnth-footer-newsletter > button span:last-child {
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.vnth-footer-newsletter > button:hover,
.vnth-footer-newsletter > button:focus-visible {
  color: var(--vnth-white);
  background: transparent;
}

.vnth-footer-newsletter__notice {
  grid-column: 1 / -1;
  margin-bottom: -8px;
  font-size: 13px;
}

.vnth-footer-newsletter__notice.is-success { color: #8fddd7; }
.vnth-footer-newsletter__notice.is-error { color: #ffb5b5; }

.vnth-footer-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.35;
  text-transform: uppercase;
}

.vnth-footer-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.vnth-footer-details svg {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  fill: currentColor;
}

.vnth-footer-details a {
  word-break: break-word;
  transition: color 0.25s ease;
}

.vnth-footer-details a:hover { color: var(--vnth-teal); }

.vnth-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.vnth-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vnth-site-footer__bottom p {
  margin: 0;
}

.vnth-footer-socials {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vnth-footer-socials a,
.vnth-footer-socials span {
  display: grid;
  width: 26px;
  height: 26px;
  color: var(--vnth-white);
  place-items: center;
}

.vnth-footer-socials svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.vnth-footer-socials a { transition: color 0.25s ease, transform 0.25s ease; }
.vnth-footer-socials a:hover { color: var(--vnth-teal); transform: translateY(-2px); }

/* Centered monochrome footer. */
.vnth-site-footer {
  color: #080b0c;
  border-top: 1px solid rgba(8, 11, 12, 0.08);
  background: #f4f5f6;
}

.vnth-site-footer__shell {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0 28px;
}

.vnth-site-footer__top {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.9fr) 1fr;
  align-items: center;
  gap: 40px;
}

.vnth-site-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.vnth-site-footer__logo .custom-logo {
  width: auto;
  max-width: 250px;
  max-height: 122px;
  filter: none !important;
  object-fit: contain;
}

.vnth-site-footer__logo > span {
  max-width: 280px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vnth-site-footer__action {
  justify-self: center;
  padding: 10px 0 8px;
  color: #080b0c;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.25s ease;
}

.vnth-site-footer__action:hover,
.vnth-site-footer__action:focus-visible {
  border-bottom-color: currentColor;
  outline: 0;
}

.vnth-site-footer__nav {
  margin-top: clamp(42px, 5vw, 66px);
}

.vnth-site-footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vnth-site-footer__nav a {
  position: relative;
  display: block;
  padding: 7px 0;
  color: #080b0c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.vnth-site-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 0.35s var(--vnth-ease);
}

.vnth-site-footer__nav a:hover::after,
.vnth-site-footer__nav a:focus-visible::after { transform: scaleX(1); }

.vnth-site-footer__copyright {
  margin: clamp(42px, 5vw, 65px) 0 0;
  color: rgba(8, 11, 12, 0.72);
  font-size: 12px;
  text-align: center;
}

/* Ensemble editorial page. */
.vnth-ensemble-showcase {
  width: 100%;
  padding: 90px 0 !important;
  color: #080b0c;
  background: #fff;
}

.vnth-ensemble-showcase__heading {
  width: min(100%, 1280px);
  margin: 0 auto clamp(58px, 6vw, 92px);
  text-align: center;
}

.vnth-ensemble-showcase__heading p {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vnth-ensemble-showcase__heading h1,
.vnth-ensemble-showcase__heading h2 {
  margin: 0;
  font-family: "Livvic", sans-serif;
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.vnth-ensemble-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(320px, 0.98fr);
  gap: clamp(20px, 3vw, 42px);
  width: min(100%, 1280px);
  height: clamp(430px, 43vw, 625px);
  margin: 0 auto clamp(72px, 7vw, 108px);
}

.vnth-ensemble-feature__hero,
.vnth-ensemble-feature__panel,
.vnth-ensemble-feature__cards {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.vnth-ensemble-feature__hero {
  background: #e8e5de;
}

.vnth-ensemble-feature__hero-slide,
.vnth-ensemble-feature__card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity 0.65s ease, transform 1.05s var(--vnth-ease);
}

.vnth-ensemble-feature__hero-slide.is-active,
.vnth-ensemble-feature__card.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.vnth-ensemble-feature__hero-slide img,
.vnth-ensemble-feature__card-media img,
.vnth-ensemble-grid__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
}

.vnth-ensemble-feature__hero-slide img {
  object-position: center 38%;
}

.vnth-ensemble-feature__panel {
  padding: clamp(22px, 2.5vw, 36px) clamp(24px, 3vw, 46px) 76px;
  background: #f3f4f4;
}

.vnth-ensemble-feature__cards {
  height: 100%;
}

.vnth-ensemble-feature__card {
  display: grid;
  grid-template-rows: minmax(0, 1.42fr) minmax(145px, 0.7fr);
  gap: 0;
}

.vnth-ensemble-feature__card-media {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #dedbd4;
}

.vnth-ensemble-feature__card-media img {
  object-position: center 38%;
  transition: transform 0.9s var(--vnth-ease);
}

.vnth-ensemble-feature__card-media:hover img {
  transform: scale(1.035);
}

.vnth-ensemble-feature__card-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  padding: 22px 14px 8px;
  text-align: center;
}

.vnth-ensemble-feature__card-copy h2,
.vnth-ensemble-grid__copy h2 {
  margin: 0;
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.vnth-ensemble-feature__card-copy h2 {
  font-size: clamp(30px, 3vw, 48px);
}

.vnth-ensemble-feature__card-copy p,
.vnth-ensemble-grid__copy p {
  margin: 10px 0 0;
  color: rgba(8, 11, 12, 0.64);
  font-size: 13px;
}

.vnth-ensemble-feature__arrow {
  position: absolute;
  z-index: 5;
  top: 27%;
  display: grid;
  width: 34px;
  height: 42px;
  padding: 0;
  border: 0;
  color: #080b0c;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  place-items: center;
  transition: color 0.25s ease, background 0.25s ease;
}

.vnth-ensemble-feature__arrow:hover,
.vnth-ensemble-feature__arrow:focus-visible {
  color: #fff;
  background: #080b0c;
}

.vnth-ensemble-feature__arrow.is-prev { left: 0; }
.vnth-ensemble-feature__arrow.is-next { right: 0; }

.vnth-ensemble-feature__dots {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 24px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.vnth-ensemble-feature__dots button {
  display: grid;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.vnth-ensemble-feature__dots button span {
  width: 5px;
  height: 5px;
  background: #080b0c;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.vnth-ensemble-feature__dots button.is-active {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 11, 12, 0.38);
}

.vnth-ensemble-feature__dots button.is-active span {
  transform: rotate(45deg) scale(1.15);
}

.vnth-ensemble-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(52px, 6vw, 86px) 6px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.vnth-ensemble-grid__item {
  min-width: 0;
}

.vnth-ensemble-grid__item.is-extra {
  display: none;
}

.vnth-ensemble-showcase.is-grid-expanded .vnth-ensemble-grid__item.is-extra {
  display: block;
  animation: vnth-ensemble-reveal 0.55s var(--vnth-ease) both;
}

@keyframes vnth-ensemble-reveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.vnth-ensemble-grid__media {
  display: block;
  aspect-ratio: 0.91;
  overflow: hidden;
  background: #e8e5de;
}

.vnth-ensemble-grid__media img {
  object-position: center 32%;
  transition: transform 0.85s var(--vnth-ease);
}

.vnth-ensemble-grid__media:hover img {
  transform: scale(1.045);
}

.vnth-ensemble-grid__copy {
  padding: 20px 14px 0;
  text-align: center;
}

.vnth-ensemble-grid__copy h2 {
  font-size: clamp(23px, 2.1vw, 32px);
}

.vnth-ensemble-showcase__more {
  display: flex;
  justify-content: center;
  width: min(100%, 980px);
  margin: clamp(68px, 7vw, 108px) auto 0;
}

.vnth-ensemble-showcase__more button {
  min-width: 144px;
  padding: 14px 25px;
  border: 1px solid #080b0c;
  color: #080b0c;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.vnth-ensemble-showcase__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 25px;
  border: 1px solid #080b0c;
  color: #080b0c;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.vnth-ensemble-showcase__more a:hover,
.vnth-ensemble-showcase__more a:focus-visible {
  color: #fff;
  background: #080b0c;
}

.vnth-ensemble-showcase--home {
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: clamp(92px, 10vw, 150px);
  padding-bottom: clamp(95px, 10vw, 155px);
  background: #f4f5f6;
}

.vnth-ensemble-showcase--home .vnth-ensemble-showcase__heading {
  margin-bottom: clamp(48px, 5vw, 72px);
}

.vnth-ensemble-showcase--home .vnth-ensemble-feature {
  margin-bottom: clamp(58px, 6vw, 82px);
}

.vnth-ensemble-showcase--home .vnth-ensemble-showcase__more {
  margin-top: 0;
}

.vnth-ensemble-showcase__more button:hover,
.vnth-ensemble-showcase__more button:focus-visible {
  color: #fff;
  background: #080b0c;
}

/* Elementor full-width normalization. */
.elementor-widget-vnth-luxe-hero > .elementor-widget-container,
.elementor-widget-vnth-luxe-page-hero > .elementor-widget-container,
.elementor-widget-vnth-luxe-editorial > .elementor-widget-container,
.elementor-widget-vnth-luxe-grid > .elementor-widget-container,
.elementor-widget-vnth-luxe-statement > .elementor-widget-container,
.elementor-widget-vnth-luxe-services > .elementor-widget-container,
.elementor-widget-vnth-luxe-form > .elementor-widget-container {
  width: 100%;
}

.elementor-widget-vnth-luxe-testimonials > .elementor-widget-container,
.elementor-widget-vnth-luxe-faq > .elementor-widget-container,
.elementor-widget-vnth-luxe-service-showcase > .elementor-widget-container,
.elementor-widget-vnth-luxe-blog-showcase > .elementor-widget-container,
.elementor-widget-vnth-luxe-about-showcase > .elementor-widget-container {
  width: 100%;
}

.elementor-widget-vnth-luxe-ensemble-showcase > .elementor-widget-container {
  width: 100%;
}

.elementor-widget-vnth-luxe-journal-archive > .elementor-widget-container {
  width: 100%;
}

.vnth-entry-content > .elementor {
  width: 100%;
}

@media (max-width: 1024px) {
  :root {
    --vnth-header-h: 88px;
  }

  .vnth-site-header__tagline {
    display: none;
  }

  .vnth-menu-overlay__inner {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
    gap: 38px;
    width: calc(100% - 48px);
  }

  .vnth-overlay-menu > li > a {
    font-size: clamp(27px, 4.05vh, 38px);
  }

  .vnth-editorial,
  .vnth-contact-layout {
    gap: 55px;
  }

  .vnth-concept-grid,
  .vnth-journal-grid,
  .vnth-cols-4,
  .vnth-testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vnth-concept-card:nth-child(3n + 2) {
    transform: none;
  }

  .vnth-concept-card:nth-child(even) {
    transform: translateY(55px);
  }

  .vnth-testimonials-editorial__layout {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  }

  .vnth-testimonials-editorial__media {
    margin-right: -14px;
  }

  .vnth-testimonials-editorial__stage {
    padding: clamp(44px, 5vw, 64px);
  }

  .vnth-testimonials-editorial__slide blockquote {
    font-size: clamp(28px, 3.6vw, 38px);
  }

  .vnth-global-rail {
    width: 48px;
    height: 170px;
  }

  .vnth-service-showcase__tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .vnth-service-showcase__tabs::-webkit-scrollbar { display: none; }

  .vnth-service-showcase__tabs button {
    flex: 0 0 190px;
  }

  .vnth-blog-showcase {
    padding-right: var(--vnth-gutter);
    padding-left: var(--vnth-gutter);
  }

  .vnth-blog-collage-card {
    flex-basis: calc(50% - 12px);
  }

  .vnth-site-footer__main {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .vnth-site-footer__company {
    max-width: 760px;
  }

  .vnth-about-showcase__hero {
    width: calc(100% - 40px);
  }

  .vnth-about-showcase__intro,
  .vnth-about-showcase__story {
    width: calc(100% - 56px);
    gap: 48px;
  }

  .vnth-ensemble-feature {
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.85fr);
    height: clamp(420px, 54vw, 560px);
  }

  .vnth-ensemble-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
  }

  .vnth-journal-archive__grid {
    gap: 74px 30px;
  }

  .vnth-journal-archive .vnth-blog-collage-card__media {
    height: clamp(360px, 47vw, 490px);
  }
}

@media (max-width: 767px) {
  :root {
    --vnth-header-h: 76px;
    --vnth-gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  .vnth-site-header.is-scrolled {
    height: 70px;
  }

  .vnth-wordmark {
    min-width: 0;
    font-size: 18px;
  }

  .custom-logo {
    max-width: 135px;
    max-height: 54px;
  }

  .vnth-header-appointment {
    display: none;
  }

  .vnth-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .vnth-menu-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 38px;
    width: calc(100% - 40px);
    height: 100%;
    padding: calc(var(--vnth-header-h) + 18px) 0 32px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .vnth-overlay-menu > li > a {
    padding: 0;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.05;
  }

  .vnth-menu-overlay__aside {
    min-height: 0;
    gap: 35px;
    padding-bottom: 30px;
  }

  .vnth-language-switcher {
    margin-top: 0;
  }

  .vnth-menu-overlay__socials {
    top: 24px;
    right: auto;
    left: 20px;
  }

  .vnth-menu-open .vnth-menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
  }

  .vnth-menu-overlay__contact p {
    font-size: 15px;
  }

  .vnth-hero {
    min-height: 100svh;
  }

  .vnth-hero__content h1 {
    font-size: clamp(54px, 20vw, 88px);
  }

  .vnth-scroll-cue {
    bottom: 28px;
  }

  .vnth-editorial,
  .vnth-editorial.is-image-left,
  .vnth-contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .vnth-editorial.is-image-left .vnth-editorial__copy,
  .vnth-editorial.is-image-left .vnth-editorial__media {
    grid-column: 1;
    grid-row: auto;
  }

  .vnth-editorial.is-image-left .vnth-editorial__copy {
    order: 1;
  }

  .vnth-editorial.is-image-left .vnth-editorial__media {
    order: 2;
  }

  .vnth-editorial__copy h2,
  .vnth-section-heading h2,
  .vnth-contact-layout__intro h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .vnth-editorial__media::before {
    top: -14px;
    right: -10px;
  }

  .vnth-editorial.is-image-left .vnth-editorial__media::before {
    left: -10px;
  }

  .vnth-editorial__media img {
    height: auto;
    max-height: none;
    aspect-ratio: 0.82;
  }

  .vnth-page-hero {
    min-height: auto;
    padding-top: calc(var(--vnth-header-h) + 70px);
  }

  .vnth-page-hero__inner {
    display: block;
    min-height: 0;
  }

  .vnth-page-hero__inner h1,
  .vnth-page-heading h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .vnth-page-hero__intro {
    margin-top: 32px;
  }

  .vnth-section,
  .vnth-page-shell {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .vnth-page-shell {
    padding-top: calc(var(--vnth-header-h) + 65px);
  }

  .vnth-section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .vnth-section-heading > .vnth-text-link {
    margin-top: 22px;
  }

  .vnth-concept-grid,
  .vnth-journal-grid,
  .vnth-cols-2,
  .vnth-cols-3,
  .vnth-cols-4 {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .vnth-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .vnth-testimonials--editorial {
    padding: 78px 20px 115px;
  }

  .vnth-testimonials-editorial__heading {
    display: block;
    margin-bottom: 44px;
  }

  .vnth-testimonials-editorial__heading h2 {
    font-size: clamp(43px, 12vw, 62px);
    line-height: 1.02;
  }

  .vnth-testimonials-editorial__heading .vnth-text-link {
    display: inline-block;
    margin-top: 24px;
  }

  .vnth-testimonials-editorial__layout {
    grid-template-columns: 1fr;
  }

  .vnth-testimonials-editorial__media {
    min-height: 0;
    aspect-ratio: 0.96;
    margin: 0 18px -24px;
  }

  .vnth-testimonials-editorial__stage {
    min-height: 570px;
    padding: 70px 28px 30px;
  }

  .vnth-testimonials-editorial__mark {
    height: 60px;
    font-size: 88px;
  }

  .vnth-testimonials-editorial__slide blockquote {
    font-size: clamp(27px, 7.6vw, 36px);
  }

  .vnth-testimonials-editorial__nav {
    grid-template-columns: 44px 1fr 44px;
  }

  .vnth-testimonials-editorial__nav button {
    width: 44px;
    height: 44px;
  }

  .vnth-concept-card:nth-child(even) {
    transform: none;
  }

  .vnth-concept-card__media {
    aspect-ratio: 0.82;
  }

  .vnth-statement {
    min-height: 74vh;
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .vnth-statement blockquote p {
    font-size: clamp(43px, 13vw, 64px);
  }

  .vnth-statement--compact {
    min-height: auto;
  }

  .vnth-statement--compact blockquote p {
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .vnth-service > button {
    grid-template-columns: 38px 1fr 24px;
    padding: 26px 0;
  }

  .vnth-service > button strong {
    font-size: 31px;
  }

  .vnth-service__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 38px;
  }

  .vnth-service-showcase { padding: 0; }

  .vnth-service-showcase__stage {
    width: 100%;
    height: max(650px, calc(100svh - var(--vnth-header-h)));
  }

  .vnth-service-showcase__slide img {
    object-position: 50% 46%;
  }

  .vnth-service-showcase__content {
    top: 42%;
    width: calc(100% - 36px);
  }

  .vnth-service-showcase__content > p { font-size: 12px; }

  .vnth-service-showcase__content h2 {
    margin-bottom: 24px;
    font-size: clamp(42px, 13vw, 62px);
  }

  .vnth-service-showcase__tabs { min-height: 116px; }

  .vnth-service-showcase__tabs button {
    flex-basis: 165px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .vnth-blog-showcase {
    padding: 90px 20px;
  }

  .vnth-blog-showcase__heading {
    display: block;
    margin-bottom: 50px;
  }

  .vnth-blog-showcase__heading h2 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .vnth-blog-showcase__heading > .vnth-text-link {
    margin-top: 24px;
  }

  .vnth-blog-collage-card { flex-basis: 100%; }

  .vnth-blog-collage-card__media {
    height: 112vw;
    max-height: 470px;
  }

  .vnth-blog-collage-card__body h3 {
    min-height: 0;
    font-size: 29px;
  }

  .vnth-blog-showcase__dots {
    gap: 3px;
    margin-top: 44px;
  }

  .vnth-blog-showcase__dots button {
    width: 27px;
    height: 27px;
  }

  .vnth-blog-showcase__dots button.is-active {
    width: 48px;
    height: 48px;
  }

  .vnth-global-rails {
    display: none;
  }

  .vnth-about-showcase__header {
    padding: 48px 20px 40px;
  }

  .vnth-about-showcase__hero {
    width: 100%;
    height: max(310px, 64vw);
  }

  .vnth-about-showcase__intro,
  .vnth-about-showcase__story {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    gap: 46px;
  }

  .vnth-about-showcase__intro {
    padding: 78px 0 90px;
  }

  .vnth-about-showcase__intro > figure {
    height: min(125vw, 650px);
  }

  .vnth-about-showcase__intro > figure::after { display: none; }

  .vnth-about-showcase__story-image {
    height: min(140vw, 720px);
  }

  .vnth-about-showcase__story-copy {
    padding-top: 0;
  }

  .vnth-about-showcase__story-copy > figure {
    height: 62vw;
  }

  .vnth-about-gallery {
    margin-top: 90px;
  }

  .vnth-about-gallery__track figure {
    flex-basis: 100%;
    height: min(128vw, 650px);
  }

  .vnth-contact-layout__intro {
    position: static;
  }

  .vnth-form__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vnth-single,
  .vnth-concept-single {
    padding-top: calc(var(--vnth-header-h) + 60px);
  }

  .vnth-single__header h1,
  .vnth-concept-single__header h1 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .vnth-site-footer__shell {
    width: calc(100% - 40px);
  }

  .vnth-site-footer__main {
    gap: 56px;
    padding: 64px 0 54px;
  }

  .vnth-site-footer h2 {
    font-size: 26px;
  }

  .vnth-site-footer__brand p,
  .vnth-footer-details {
    font-size: 15px;
  }

  .vnth-footer-newsletter {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vnth-footer-newsletter > input[type="email"],
  .vnth-footer-newsletter > button {
    height: 64px;
  }

  .vnth-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 26px 0 32px;
    font-size: 10px;
  }

  .vnth-site-footer__shell {
    padding-top: 48px;
  }

  .vnth-site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .vnth-site-footer__logo {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .vnth-site-footer__logo .custom-logo {
    max-width: 205px;
    max-height: 100px;
  }

  .vnth-site-footer__action {
    font-size: 11px;
    text-align: center;
  }

  .vnth-site-footer__nav ul {
    flex-direction: column;
    gap: 7px;
  }

  .vnth-site-footer__copyright {
    line-height: 1.6;
  }

  .vnth-ensemble-showcase {
    padding-top: 58px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .vnth-ensemble-showcase__heading {
    margin-bottom: 42px;
  }

  .vnth-ensemble-showcase__heading h1,
  .vnth-ensemble-showcase__heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .vnth-ensemble-feature {
    display: block;
    height: auto;
    margin-bottom: 70px;
  }

  .vnth-ensemble-feature__hero {
    height: min(76vw, 390px);
  }

  .vnth-ensemble-feature__panel {
    height: 480px;
    margin-top: 16px;
    padding: 20px 20px 66px;
  }

  .vnth-ensemble-feature__card {
    grid-template-rows: minmax(0, 1.2fr) 160px;
  }

  .vnth-ensemble-feature__arrow {
    top: 27%;
  }

  .vnth-ensemble-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .vnth-ensemble-grid__media {
    aspect-ratio: 0.96;
  }

  .vnth-journal-archive {
    padding: 58px 20px 115px;
  }

  .vnth-journal-archive__heading {
    margin-bottom: 48px;
  }

  .vnth-journal-archive__heading h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .vnth-journal-archive__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .vnth-journal-archive .vnth-blog-collage-card__media {
    height: min(112vw, 520px);
  }

  .vnth-journal-archive .vnth-blog-collage-card__body h3 {
    min-height: 0;
    font-size: 25px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Uniform vertical rhythm for content sections across the full website. */
:root {
  --vnth-section-space: clamp(90px, 12vw, 190px);
}

.vnth-editorial,
.vnth-section,
.vnth-page-shell,
.vnth-services.has-heading,
.vnth-blog-showcase,
.vnth-journal-archive,
.vnth-testimonials,
.vnth-faq-section,
.vnth-testimonials--editorial,
.vnth-services-editorial,
.vnth-contact-layout,
.vnth-ensemble-showcase,
.vnth-ensemble-showcase--home {
  padding-top: var(--vnth-section-space);
  padding-bottom: var(--vnth-section-space);
}

.vnth-services:not(.has-heading),
.vnth-about-showcase {
  padding-bottom: var(--vnth-section-space);
}

.vnth-about-showcase__intro {
  padding-top: var(--vnth-section-space);
  padding-bottom: var(--vnth-section-space);
}

.vnth-about-gallery {
  margin-top: var(--vnth-section-space);
}
section.vnth-blog-showcase.is-news{
      padding: 0 !important;
}
section.vnth-section.vnth-dynamic-grid-section.is-events{
       padding-top: 0 !important;
}