:root {
  --vh-ink: #11110f;
  --vh-ink-soft: #27251f;
  --vh-gold: #b78b2f;
  --vh-gold-light: #d7bd78;
  --vh-cream: #f5f0e7;
  --vh-cream-deep: #ece3d4;
  --vh-paper: #fff;
  --vh-muted: #6d6a64;
  --vh-line: rgba(17, 17, 15, .13);
  --vh-shadow: 0 24px 60px rgba(25, 21, 13, .12);
  --vh-radius: 2px;
  --vh-shell: min(1180px, calc(100vw - 48px));
  --vh-serif: "Playfair Display", Georgia, serif;
  --vh-sans: "DM Sans", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--vh-ink);
  background: var(--vh-paper);
  font-family: var(--vh-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.vh-menu-open { overflow: hidden; overscroll-behavior: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--vh-serif); font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.vh-shell { width: var(--vh-shell); margin-inline: auto; }
.vh-site-main { min-height: 55vh; }
.vh-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  color: #fff;
  background: var(--vh-ink);
  transform: translateY(-150%);
}
.vh-skip-link:focus { transform: translateY(0); }

html.vh-loader-active,
html.vh-loader-active body {
  overflow: hidden !important;
}

.vh-site-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
  color: #f8f3e8;
  background:
    radial-gradient(circle at 50% 44%, rgba(183, 139, 47, .13), transparent 31%),
    linear-gradient(135deg, #0d0d0b 0%, #1a1812 50%, #0b0b09 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .68s ease, visibility .68s ease, transform .68s ease, filter .68s ease;
}

.vh-site-loader::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 4.5vw, 70px);
  border: 1px solid rgba(215, 189, 120, .34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  pointer-events: none;
}

.vh-site-loader::after {
  content: "";
  position: absolute;
  inset: clamp(25px, calc(4.5vw + 7px), 77px);
  background:
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) left top / 34px 1px no-repeat,
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) left top / 1px 34px no-repeat,
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) right top / 34px 1px no-repeat,
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) right top / 1px 34px no-repeat,
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) left bottom / 34px 1px no-repeat,
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) left bottom / 1px 34px no-repeat,
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) right bottom / 34px 1px no-repeat,
    linear-gradient(var(--vh-gold-light), var(--vh-gold-light)) right bottom / 1px 34px no-repeat;
  opacity: .62;
  pointer-events: none;
}

.vh-site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  filter: blur(2px);
  transform: scale(1.012);
  pointer-events: none;
}

.vh-loader-blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(215, 189, 120, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 189, 120, .038) 1px, transparent 1px),
    linear-gradient(rgba(215, 189, 120, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 189, 120, .018) 1px, transparent 1px);
  background-position: center;
  background-size: 48px 48px, 48px 48px, 12px 12px, 12px 12px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, rgba(0, 0, 0, .76) 48%, transparent 86%);
  mask-image: radial-gradient(circle at center, #000 0%, rgba(0, 0, 0, .76) 48%, transparent 86%);
  opacity: 0;
  animation: vhLoaderBlueprint .8s ease .08s forwards;
}

.vh-loader-stage {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(84vw, 620px);
  justify-items: center;
  text-align: center;
}

.vh-loader-kicker {
  margin-bottom: 8px;
  color: var(--vh-gold-light);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: 0;
  animation: vhLoaderTextReveal .55s ease .18s forwards;
}

.vh-loader-build {
  position: relative;
  width: min(62vw, 390px);
  aspect-ratio: 1;
}

.vh-loader-drawing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vh-loader-drawing-line,
.vh-loader-measure-line {
  fill: none;
  stroke: rgba(215, 189, 120, .72);
  stroke-width: 1.2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}

.vh-loader-measure-line {
  stroke: rgba(255, 255, 255, .25);
  stroke-width: .8;
}

.vh-loader-line--foundation { animation: vhLoaderDraw .55s ease .15s forwards; }
.vh-loader-line--left,
.vh-loader-line--right { animation: vhLoaderDraw .72s ease .38s forwards; }
.vh-loader-line--gable { animation: vhLoaderDraw .62s ease .78s forwards; }
.vh-loader-line--detail { animation: vhLoaderDraw .65s ease 1s forwards; }
.vh-loader-measure-line--horizontal { animation: vhLoaderDraw .65s ease 1.12s forwards; }
.vh-loader-measure-line--vertical { animation: vhLoaderDraw .65s ease 1.2s forwards; }

.vh-loader-node {
  fill: var(--vh-gold-light);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: vhLoaderNode .35s ease forwards;
}

.vh-loader-node--one { animation-delay: .55s; }
.vh-loader-node--two { animation-delay: 1.1s; }
.vh-loader-node--three { animation-delay: 1.18s; }

.vh-loader-axis {
  position: absolute;
  color: rgba(255, 255, 255, .38);
  font-size: .48rem;
  font-weight: 600;
  letter-spacing: .18em;
  opacity: 0;
  text-transform: uppercase;
  animation: vhLoaderTextReveal .4s ease 1.28s forwards;
}

.vh-loader-axis--x { right: 5%; bottom: 3%; }
.vh-loader-axis--y { top: 20%; left: -3%; transform: rotate(-90deg); }

.vh-loader-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  opacity: 0;
  clip-path: inset(100% 0 0);
  filter: drop-shadow(0 16px 34px rgba(183, 139, 47, .16));
  transform: translate(-50%, -50%) scale(.985);
  animation: vhLoaderMarkBuild .92s cubic-bezier(.2, .72, .24, 1) .95s forwards;
}

.vh-loader-mark::after {
  content: "";
  position: absolute;
  inset: -5% -2%;
  background: linear-gradient(180deg, transparent 0 45%, rgba(255, 239, 183, .42) 50%, transparent 55% 100%);
  mix-blend-mode: screen;
  transform: translateY(-80%);
  animation: vhLoaderScan .72s ease 1.45s forwards;
  pointer-events: none;
}

.vh-loader-mark img { width: 100%; height: auto; }

.vh-loader-title {
  margin: -10px 0 8px;
  color: #fff;
  font-family: var(--vh-serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: .01em;
  opacity: 0;
  animation: vhLoaderTextReveal .55s ease 1.55s forwards;
}

.vh-loader-meta {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .22em;
  opacity: 0;
  text-transform: uppercase;
  animation: vhLoaderTextReveal .55s ease 1.68s forwards;
}

.vh-loader-progress {
  position: absolute;
  right: clamp(34px, 7vw, 112px);
  bottom: clamp(32px, 7vh, 82px);
  left: clamp(34px, 7vw, 112px);
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(120px, 320px) auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, .42);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.vh-loader-progress > div {
  width: min(34vw, 320px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.vh-loader-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #80621f, #f4d98f 55%, #b78b2f);
  box-shadow: 0 0 14px rgba(215, 189, 120, .46);
  transform: scaleX(0);
  transform-origin: left;
  animation: vhLoaderProgress 2.5s cubic-bezier(.35, 0, .2, 1) .12s forwards;
}

.vh-loader-progress-mark { display: block; width: 22px; height: 22px; }
.vh-loader-progress-mark img { width: 100%; height: 100%; object-fit: contain; }

@keyframes vhLoaderBlueprint {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes vhLoaderDraw { to { stroke-dashoffset: 0; } }

@keyframes vhLoaderNode {
  from { opacity: 0; transform: scale(0); }
  to { opacity: .9; transform: scale(1); }
}

@keyframes vhLoaderMarkBuild {
  0% { opacity: 0; clip-path: inset(100% 0 0); transform: translate(-50%, -50%) scale(.975); }
  30% { opacity: .4; }
  100% { opacity: 1; clip-path: inset(0); transform: translate(-50%, -50%) scale(1); }
}

@keyframes vhLoaderScan { to { transform: translateY(80%); } }

@keyframes vhLoaderTextReveal {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vhLoaderProgress { to { transform: scaleX(1); } }

.vh-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .2s, box-shadow .2s;
}
.vh-site-header.is-scrolled { border-color: var(--vh-line); box-shadow: 0 8px 30px rgba(0, 0, 0, .05); }
.vh-header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.vh-brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.vh-brand-symbol { display: block; width: 54px; height: 54px; flex: 0 0 auto; background: transparent; }
.vh-brand-symbol-image { width: 100%; height: 100%; object-fit: contain; }
.vh-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--vh-gold-light);
  border: 1px solid currentColor;
  font-family: var(--vh-serif);
  font-size: .82rem;
  letter-spacing: .08em;
}
.vh-brand-copy { display: grid; line-height: 1; text-transform: uppercase; letter-spacing: .12em; }
.vh-brand-copy strong { font-family: var(--vh-serif); font-size: 1.1rem; font-weight: 500; }
.vh-brand-copy small { margin-top: 5px; color: var(--vh-gold); font-size: .55rem; letter-spacing: .28em; }
.vh-primary-navigation { display: flex; align-items: center; gap: 28px; }
.vh-menu { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.vh-menu a { position: relative; font-size: .88rem; font-weight: 600; }
.vh-menu a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--vh-gold); transform: scaleX(0); transform-origin: right; transition: transform .2s; }
.vh-menu a:hover::after, .vh-menu .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.vh-header-cta { padding: 12px 21px; color: #fff; background: var(--vh-ink); font-size: .84rem; font-weight: 700; }
.vh-menu-toggle { display: none; width: 46px; height: 46px; padding: 13px; background: #fff; border: 1px solid var(--vh-line); }
.vh-menu-toggle > span:not(.screen-reader-text) { display: block; height: 1px; margin: 5px 0; background: var(--vh-ink); }
.vh-menu-backdrop, .vh-mobile-menu-heading, .vh-mobile-menu-footer { display: none; }

.vh-eyebrow { margin-bottom: 14px; color: var(--vh-gold); font-size: .72rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.vh-page-header { padding-top: clamp(70px, 9vw, 130px); padding-bottom: 48px; }
.vh-page-header h1 { max-width: 900px; margin-bottom: 0; }
.vh-page-content:empty { display: none; }
.vh-button, button.vh-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 700;
  transition: transform .2s, background .2s, color .2s;
}
.vh-button:hover { transform: translateY(-2px); }
.vh-button--dark { color: #fff; background: var(--vh-ink); }
.vh-button--gold { color: var(--vh-ink); background: var(--vh-gold-light); }
.vh-button--outline { border-color: var(--vh-ink); background: transparent; }
.vh-button--outline-light { color: #fff; border-color: rgba(255,255,255,.58); background: transparent; }
.vh-button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.vh-text-link { color: var(--vh-gold); font-weight: 700; }

.vh-site-footer { padding-top: 72px; color: #ddd8ce; background: #090908; }
.vh-footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .9fr 1fr; gap: clamp(32px, 5vw, 80px); padding-bottom: 56px; }
.vh-site-footer h2 { margin-bottom: 20px; color: #fff; font-family: var(--vh-sans); font-size: .77rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.vh-site-footer p, .vh-site-footer a { font-size: .86rem; }
.vh-site-footer a:hover { color: var(--vh-gold-light); }
.vh-brand--footer { margin-bottom: 22px; color: #fff; }
.vh-brand-symbol--footer {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 8px 18px rgba(183, 139, 47, .15));
}
.vh-brand--footer .vh-brand-copy strong { font-size: 1.22rem; }
.vh-footer-brand > p { max-width: 340px; color: #9d998f; }
.vh-footer-menu, .vh-footer-menu .vh-menu { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.vh-footer-menu .vh-menu { display: grid; }
.vh-footer-menu a::after { display: none; }
.vh-footer-cta h2 { max-width: 220px; font-family: var(--vh-serif); font-size: 1.6rem; font-weight: 500; letter-spacing: 0; line-height: 1.2; text-transform: none; }
.vh-footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.vh-footer-bottom p, .vh-footer-bottom a { margin: 0; color: #77746d; font-size: .74rem; }

.vh-archive { padding-bottom: 110px; }
.vh-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vh-post-card { overflow: hidden; background: var(--vh-cream); }
.vh-post-card > a img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.vh-post-card > div { padding: 28px; }
.vh-post-card h2 { margin-bottom: 13px; font-size: 1.55rem; }
.vh-post-card p { color: var(--vh-muted); }

.vh-editorial-hub { padding-bottom: 120px; background: #fff; }
.vh-editorial-hero { position: relative; overflow: hidden; padding-block: clamp(86px, 10vw, 145px); color: #fff; background: radial-gradient(circle at 78% 42%, rgba(183,139,47,.2), transparent 25%), linear-gradient(135deg, #191814, #090908 72%); }
.vh-editorial-hero::after { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(215,189,120,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(215,189,120,.2) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, transparent, #000 64%, transparent); }
.vh-editorial-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 270px; align-items: center; gap: clamp(45px, 8vw, 110px); }
.vh-editorial-hero h1 { max-width: 880px; margin-bottom: 24px; }
.vh-editorial-hero-inner > div:first-child > p:last-child { max-width: 690px; margin: 0; color: #c3beb4; font-size: 1.08rem; }
.vh-editorial-hero-mark { display: grid; justify-items: center; padding: 32px; border: 1px solid rgba(215,189,120,.3); }
.vh-editorial-hero-mark img { width: 120px; }
.vh-editorial-hero-mark span { margin-top: 18px; color: var(--vh-gold-light); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; }
.vh-editorial-content { padding-top: clamp(65px, 8vw, 105px); }
.vh-featured-post { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 510px; margin-bottom: clamp(80px, 10vw, 130px); background: var(--vh-cream); }
.vh-featured-post-media { display: block; min-height: 440px; overflow: hidden; background: var(--vh-ink); }
.vh-featured-post-media > img, .vh-featured-post-media > .vh-editorial-cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.vh-featured-post-body { display: flex; flex-direction: column; justify-content: center; align-items: start; padding: clamp(38px, 6vw, 72px); }
.vh-featured-post-body h2 { margin: 18px 0 24px; font-size: clamp(2rem, 3.6vw, 3.45rem); }
.vh-featured-post-body > p:not(.vh-editorial-meta) { margin-bottom: 30px; color: var(--vh-muted); font-size: 1.02rem; }
.vh-editorial-meta { display: flex; flex-wrap: wrap; gap: 7px 18px; margin: 0; color: var(--vh-muted); font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.vh-editorial-meta span + span, .vh-editorial-meta time + span { position: relative; }
.vh-editorial-meta span + span::before, .vh-editorial-meta time + span::before { content: ""; position: absolute; top: 50%; left: -10px; width: 3px; height: 3px; background: var(--vh-gold); border-radius: 50%; }
.vh-featured-post .vh-editorial-meta span:first-child { color: var(--vh-gold); }
.vh-editorial-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.vh-editorial-heading h2 { margin: 0; }
.vh-editorial-heading > p { max-width: 430px; margin: 0; color: var(--vh-muted); }
.vh-post-grid--editorial { gap: 24px; }
.vh-post-card--editorial { display: flex; min-width: 0; flex-direction: column; background: #fff; border: 1px solid var(--vh-line); transition: transform .25s ease, box-shadow .25s ease; }
.vh-post-card--editorial:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(25,21,13,.1); }
.vh-post-card-media { display: block; overflow: hidden; aspect-ratio: 16/10; background: var(--vh-ink); }
.vh-post-card-media > img, .vh-post-card-media > .vh-editorial-cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.vh-post-card-media > img { transition: transform .45s ease; }
.vh-post-card--editorial:hover .vh-post-card-media > img { transform: scale(1.035); }
.vh-post-card--editorial > div { display: flex; flex: 1; flex-direction: column; padding: 27px 28px 30px; }
.vh-post-card--editorial h2, .vh-post-card--editorial h3 { margin: 17px 0 14px; font-size: 1.55rem; }
.vh-post-card--editorial > div > p:not(.vh-editorial-meta) { color: var(--vh-muted); font-size: .88rem; }
.vh-post-card--editorial .vh-text-link { margin-top: auto; padding-top: 8px; }
.vh-editorial-cover-fallback { display: grid; place-content: center; justify-items: center; color: #fff; background: radial-gradient(circle, rgba(183,139,47,.18), transparent 42%), linear-gradient(145deg, #1b1a16, #080807); }
.vh-editorial-cover-fallback img { width: 86px; margin-bottom: 14px; }
.vh-editorial-cover-fallback strong { font-family: var(--vh-serif); font-weight: 500; font-size: 1.35rem; }
.vh-editorial-cover-fallback small { margin-top: 5px; color: var(--vh-gold-light); font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; }
.vh-pagination { margin-top: 52px; }
.vh-pagination .nav-links { display: flex; justify-content: center; gap: 7px; }
.vh-pagination .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--vh-line); }
.vh-pagination .page-numbers.current { color: #fff; background: var(--vh-ink); border-color: var(--vh-ink); }

.vh-article { padding-bottom: 110px; }
.vh-article--editorial { padding-bottom: 0; }
.vh-editorial-breadcrumbs { display: flex; gap: 9px; padding-top: 38px; color: var(--vh-muted); font-size: .72rem; }
.vh-editorial-breadcrumbs a:hover { color: var(--vh-gold); }
.vh-article-header { max-width: 980px; padding-block: clamp(70px, 8vw, 110px) 55px; text-align: center; }
.vh-article-header h1 { margin-bottom: 28px; font-size: clamp(2.8rem, 5.5vw, 5.1rem); text-wrap: balance; }
.vh-article-deck { max-width: 730px; margin: 0 auto 28px; color: var(--vh-muted); font-size: 1.16rem; }
.vh-article-header .vh-editorial-meta { justify-content: center; }
.vh-article-cover { overflow: hidden; aspect-ratio: 16/7.2; margin-bottom: 0; background: var(--vh-ink); }
.vh-article-cover > img, .vh-article-cover > .vh-editorial-cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.vh-article-layout { display: grid; grid-template-columns: 220px minmax(0, 720px); justify-content: center; gap: clamp(45px, 7vw, 90px); padding-block: clamp(65px, 8vw, 105px); }
.vh-article-aside { position: sticky; top: 125px; align-self: start; padding-top: 18px; border-top: 1px solid var(--vh-ink); }
.vh-article-aside > span { color: var(--vh-gold); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.vh-article-aside p { margin: 14px 0 18px; color: var(--vh-muted); font-size: .78rem; }
.vh-article-aside a { font-size: .78rem; font-weight: 700; }
.vh-article-content { max-width: 720px; font-size: 1.08rem; }
.vh-article-content > p:first-child { font-size: 1.2rem; }
.vh-article-content h2, .vh-article-content h3 { margin-top: 48px; margin-bottom: 18px; }
.vh-article-content ul, .vh-article-content ol { padding-left: 24px; }
.vh-article-content li { margin-bottom: 9px; }
.vh-article-content strong { color: var(--vh-ink); }
.vh-article-cta { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(45px, 8vw, 100px); padding: clamp(45px, 6vw, 72px); color: #fff; background: var(--vh-ink); }
.vh-article-cta h2 { margin: 0; color: #fff; font-size: clamp(2rem, 3.5vw, 3.3rem); }
.vh-article-cta > div:last-child > p { color: #b6b1a7; }
.vh-article-navigation { padding-block: 52px 80px; }
.vh-article-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vh-article-navigation a { display: grid; min-height: 110px; align-content: center; padding: 24px; border: 1px solid var(--vh-line); }
.vh-article-navigation .nav-next { text-align: right; }
.vh-article-navigation span { margin-bottom: 7px; color: var(--vh-gold); font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.vh-article-navigation strong { font-family: var(--vh-serif); font-size: 1.15rem; font-weight: 500; }
.vh-related-posts { padding-block: clamp(70px, 8vw, 110px); background: var(--vh-cream); }
.vh-empty-state { display: grid; min-height: 60vh; place-content: center; max-width: 720px; text-align: center; }
.vh-empty-state .vh-button-row { justify-content: center; }

html.vh-reveal-ready .vh-reveal {
  opacity: 0;
  translate: 0 34px;
  filter: blur(3px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    translate .78s cubic-bezier(.22, 1, .36, 1),
    scale .78s cubic-bezier(.22, 1, .36, 1),
    filter .6s ease;
  transition-delay: var(--vh-reveal-delay, 0ms);
  will-change: opacity, translate;
}
html.vh-reveal-ready .vh-reveal--left { translate: -38px 22px; }
html.vh-reveal-ready .vh-reveal--right { translate: 38px 22px; }
html.vh-reveal-ready .vh-reveal--scale { translate: 0 24px; scale: .97; }
html.vh-reveal-ready .vh-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: none;
}

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

@media (max-width: 980px) {
  :root { --vh-shell: min(100% - 36px, 760px); }
  .vh-brand { position: relative; z-index: 5; }
  .vh-menu-toggle {
    position: relative;
    z-index: 5;
    display: block;
    flex: 0 0 46px;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease;
  }
  .vh-menu-toggle:hover, .vh-menu-toggle:focus-visible { border-color: var(--vh-gold); outline: 0; }
  .vh-menu-toggle > span:not(.screen-reader-text) {
    position: absolute;
    left: 12px;
    width: 20px;
    margin: 0;
    transition: top .25s ease, opacity .2s ease, transform .25s ease;
  }
  .vh-menu-toggle > span:nth-child(1) { top: 15px; }
  .vh-menu-toggle > span:nth-child(2) { top: 22px; }
  .vh-menu-toggle > span:nth-child(3) { top: 29px; }
  .vh-menu-toggle[aria-expanded="true"] { background: var(--vh-cream); border-color: var(--vh-gold); }
  .vh-menu-toggle[aria-expanded="true"] > span:nth-child(1) { top: 22px; transform: rotate(45deg); }
  .vh-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; transform: scaleX(.25); }
  .vh-menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
  .vh-menu-backdrop {
    position: fixed;
    inset: 84px 0 auto;
    z-index: 2;
    display: block;
    width: 100%;
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
    padding: 0;
    background: rgba(9, 9, 8, .46);
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(3px);
    transition: opacity .3s ease, visibility 0s linear .3s;
  }
  .vh-menu-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .vh-primary-navigation {
    position: fixed;
    inset: 84px 0 auto auto;
    z-index: 3;
    display: flex;
    width: min(420px, calc(100vw - 24px));
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px clamp(25px, 8vw, 38px) max(25px, calc(env(safe-area-inset-bottom) + 18px));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: -24px 0 65px rgba(17, 17, 15, .16);
    opacity: .98;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .38s;
  }
  .vh-primary-navigation.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .vh-mobile-menu-heading { display: flex; flex: 0 0 auto; align-items: baseline; justify-content: space-between; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--vh-line); }
  .vh-mobile-menu-heading span { color: var(--vh-gold); font-size: .63rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
  .vh-mobile-menu-heading small { color: var(--vh-muted); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
  .vh-primary-navigation .vh-menu { display: grid; flex: 0 0 auto; align-items: stretch; gap: 0; width: 100%; }
  .vh-primary-navigation .vh-menu > li { border-bottom: 1px solid var(--vh-line); opacity: 0; transform: translateX(18px); transition: opacity .28s ease, transform .35s cubic-bezier(.22, 1, .36, 1); }
  .vh-primary-navigation.is-open .vh-menu > li { opacity: 1; transform: translateX(0); }
  .vh-primary-navigation.is-open .vh-menu > li:nth-child(1) { transition-delay: .05s; }
  .vh-primary-navigation.is-open .vh-menu > li:nth-child(2) { transition-delay: .08s; }
  .vh-primary-navigation.is-open .vh-menu > li:nth-child(3) { transition-delay: .11s; }
  .vh-primary-navigation.is-open .vh-menu > li:nth-child(4) { transition-delay: .14s; }
  .vh-primary-navigation.is-open .vh-menu > li:nth-child(5) { transition-delay: .17s; }
  .vh-primary-navigation.is-open .vh-menu > li:nth-child(6) { transition-delay: .2s; }
  .vh-primary-navigation .vh-menu a { display: flex; min-height: 58px; align-items: center; padding: 12px 0; font-family: var(--vh-serif); font-size: clamp(1.35rem, 6vw, 1.62rem); font-weight: 500; transition: color .2s ease, padding-left .2s ease; }
  .vh-primary-navigation .vh-menu a::after { display: none; }
  .vh-primary-navigation .vh-menu a:hover, .vh-primary-navigation .vh-menu a:focus-visible { padding-left: 9px; color: var(--vh-gold); outline: 0; }
  .vh-primary-navigation .vh-menu .current-menu-item > a { padding-left: 18px; color: var(--vh-ink); }
  .vh-primary-navigation .vh-menu .current-menu-item > a::before { content: ""; width: 7px; height: 7px; margin-left: -18px; margin-right: 11px; background: var(--vh-gold); border-radius: 50%; }
  .vh-header-cta { width: 100%; min-height: 52px; flex: 0 0 auto; justify-content: center; margin-top: 22px; text-align: center; transition: background .2s ease, color .2s ease; }
  .vh-header-cta:hover, .vh-header-cta:focus-visible { color: var(--vh-ink); background: var(--vh-gold-light); outline: 0; }
  .vh-mobile-menu-footer { display: grid; flex: 0 0 auto; gap: 2px; margin-top: auto; padding-top: 24px; color: var(--vh-muted); border-top: 1px solid var(--vh-line); }
  .vh-mobile-menu-footer span { font-family: var(--vh-serif); font-size: 1rem; }
  .vh-mobile-menu-footer small { color: var(--vh-gold); font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; }
  .vh-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-post-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-editorial-hero-inner { grid-template-columns: 1fr; }
  .vh-editorial-hero-mark { display: none; }
  .vh-featured-post { grid-template-columns: 1fr; }
  .vh-featured-post-media { min-height: 390px; }
  .vh-article-layout { grid-template-columns: minmax(0, 720px); }
  .vh-article-aside { position: static; }
  .vh-article-cta { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --vh-shell: calc(100% - 30px); }
  .vh-site-loader::before { inset: 16px; }
  .vh-site-loader::after { inset: 22px; }
  .vh-loader-stage { width: min(88vw, 390px); }
  .vh-loader-kicker { margin-bottom: 14px; font-size: .53rem; letter-spacing: .21em; }
  .vh-loader-build { width: min(83vw, 330px); }
  .vh-loader-title { margin-top: -2px; font-size: clamp(1.45rem, 7.3vw, 1.9rem); }
  .vh-loader-meta { max-width: 290px; font-size: .5rem; line-height: 1.65; letter-spacing: .16em; }
  .vh-loader-progress {
    right: 34px;
    bottom: max(34px, calc(env(safe-area-inset-bottom) + 24px));
    left: 34px;
    grid-template-columns: minmax(120px, 220px) auto;
    gap: 12px;
  }
  .vh-loader-progress > span { display: none; }
  .vh-loader-progress > div { width: min(52vw, 220px); }
  .vh-header-inner { min-height: 76px; }
  .vh-brand-symbol { width: 48px; height: 48px; }
  .vh-brand-symbol--footer { width: 58px; height: 58px; }
  .vh-menu-backdrop { inset-block-start: 76px; height: calc(100vh - 76px); height: calc(100dvh - 76px); }
  .vh-primary-navigation { inset-block-start: 76px; height: calc(100vh - 76px); height: calc(100dvh - 76px); }
  .vh-page-header { padding-top: 56px; }
  .vh-footer-grid, .vh-post-grid { grid-template-columns: 1fr; }
  .vh-editorial-hub { padding-bottom: 80px; }
  .vh-editorial-hero { padding-block: 72px; }
  .vh-editorial-hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .vh-featured-post { min-height: 0; margin-bottom: 80px; }
  .vh-featured-post-media { min-height: 0; aspect-ratio: 4/3; }
  .vh-featured-post-body { padding: 32px 26px 36px; }
  .vh-editorial-heading { align-items: start; flex-direction: column; gap: 14px; }
  .vh-article-header { padding-block: 58px 38px; }
  .vh-article-cover { width: 100%; aspect-ratio: 4/3; }
  .vh-article-layout { padding-block: 50px 70px; }
  .vh-article-cta { width: 100%; padding: 38px 24px; }
  .vh-article-navigation .nav-links { grid-template-columns: 1fr; }
  .vh-article-navigation .nav-next { text-align: left; }
  .vh-footer-grid { gap: 38px; }
  .vh-footer-bottom { flex-direction: column; }
  .vh-button-row .vh-button { width: 100%; }
  html.vh-reveal-ready .vh-reveal,
  html.vh-reveal-ready .vh-reveal--left,
  html.vh-reveal-ready .vh-reveal--right,
  html.vh-reveal-ready .vh-reveal--scale { translate: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .vh-site-loader,
  .vh-loader-blueprint,
  .vh-loader-drawing-line,
  .vh-loader-measure-line,
  .vh-loader-node,
  .vh-loader-kicker,
  .vh-loader-axis,
  .vh-loader-mark,
  .vh-loader-mark::after,
  .vh-loader-title,
  .vh-loader-meta,
  .vh-loader-progress i {
    animation: none !important;
    transition-duration: .08s !important;
  }

  .vh-menu-backdrop,
  .vh-primary-navigation,
  .vh-menu-toggle > span,
  .vh-primary-navigation .vh-menu > li { transition-duration: .01s !important; }

  html.vh-reveal-ready .vh-reveal {
    opacity: 1 !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
    transition: none !important;
  }

  .vh-loader-blueprint,
  .vh-loader-kicker,
  .vh-loader-axis,
  .vh-loader-mark,
  .vh-loader-title,
  .vh-loader-meta,
  .vh-loader-node { opacity: 1; }

  .vh-loader-drawing-line,
  .vh-loader-measure-line { stroke-dashoffset: 0; }
  .vh-loader-mark { clip-path: inset(0); transform: translate(-50%, -50%); }
  .vh-loader-progress i { transform: scaleX(1); }
}
