/* Vancouver Dwelling — Design System
   Editorial monochrome · architectural minimal · warm human · trust-forward
*/

:root {
  /* Palette — pulled from existing site, refined */
  --vd-navy: #0E1B2E;
  --vd-navy-deep: #0A1422;
  --vd-navy-soft: #1A2A42;
  --vd-ink: #111827;
  --vd-stone: #6B7280;
  --vd-stone-soft: #9CA3AF;
  --vd-line: #D8D2C4;
  --vd-line-soft: #ECE7DB;
  --vd-bone: #FAF6EE;
  --vd-cream: #F5EFE4;
  --vd-paper: #FBF8F1;
  --vd-white: #FFFFFF;
  --vd-gold: #B8893E;          /* refined, less yellow than before */
  --vd-gold-light: #D5AB66;
  --vd-gold-deep: #8C6629;

  /* Type */
  --vd-serif: 'Fraunces', 'Caslon', Georgia, serif;
  --vd-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vd-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Layout */
  --vd-max: 1440px;
  --vd-gutter: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--vd-sans);
  color: var(--vd-ink);
  background: var(--vd-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Type primitives */
.vd-eyebrow {
  font-family: var(--vd-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vd-gold);
}
.vd-eyebrow--ink { color: var(--vd-ink); opacity: 0.55; }
.vd-eyebrow--cream { color: var(--vd-cream); opacity: 0.7; }

.vd-display {
  font-family: var(--vd-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--vd-navy);
  font-size: clamp(48px, 6vw, 92px);
  text-wrap: balance;
}
.vd-display em { font-style: italic; font-weight: 500; }

.vd-h2 {
  font-family: var(--vd-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--vd-navy);
  text-wrap: balance;
}
.vd-h2 em { font-style: italic; font-weight: 500; }

.vd-h3 {
  font-family: var(--vd-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--vd-navy);
  line-height: 1.1;
}

.vd-lead {
  font-family: var(--vd-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--vd-ink);
  text-wrap: pretty;
}

.vd-body {
  font-family: var(--vd-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vd-stone);
}

.vd-body--ink { color: var(--vd-ink); }

.vd-meta {
  font-family: var(--vd-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--vd-stone);
  text-transform: uppercase;
}

/* Buttons */
.vd-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--vd-sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s ease;
}
.vd-btn--primary { background: var(--vd-navy); color: var(--vd-cream); }
.vd-btn--primary:hover { background: var(--vd-navy-deep); }
.vd-btn--ghost-light { background: transparent; color: var(--vd-cream); border-color: var(--vd-cream); }
.vd-btn--ghost-dark { background: transparent; color: var(--vd-navy); border-color: var(--vd-navy); }
.vd-btn--gold { background: var(--vd-gold); color: var(--vd-navy); }
.vd-btn--text {
  padding: 0; background: transparent; color: var(--vd-navy);
  border-bottom: 1px solid var(--vd-navy); padding-bottom: 4px;
}

/* Section */
.vd-section { padding: var(--s-9) 0; }
.vd-container { max-width: var(--vd-max); margin: 0 auto; padding: 0 var(--vd-gutter); }

/* Rule lines */
.vd-rule { width: 48px; height: 1px; background: var(--vd-gold); }
.vd-rule--long { width: 100%; height: 1px; background: var(--vd-line); }

/* Image placeholders — no fake imagery, but they look intentional */
.vd-photo {
  background: linear-gradient(135deg, #2a3850 0%, #1a2a42 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-family: var(--vd-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.vd-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,137,62,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,137,62,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.vd-photo--cream { background: linear-gradient(135deg, #efe8d6 0%, #e8dfc7 100%); color: rgba(14,27,46,0.4); }
.vd-photo--cream::before {
  background-image:
    linear-gradient(rgba(14,27,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,27,46,0.05) 1px, transparent 1px);
}
.vd-photo__label { position: relative; z-index: 1; }

/* Header */
.vd-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,241,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vd-line-soft);
}
.vd-header__inner {
  max-width: var(--vd-max); margin: 0 auto;
  padding: 18px var(--vd-gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.vd-logo {
  font-family: var(--vd-serif); font-weight: 500; font-size: 22px;
  color: var(--vd-navy); letter-spacing: -0.02em; line-height: 1;
  text-decoration: none; display: flex; align-items: baseline; gap: 6px;
}
.vd-logo em { font-style: italic; }
.vd-logo__dot { color: var(--vd-gold); }

.vd-nav { display: flex; gap: 32px; align-items: center; }
.vd-nav a {
  font-family: var(--vd-sans); font-size: 13px; font-weight: 500;
  color: var(--vd-ink); text-decoration: none; letter-spacing: 0.01em;
  position: relative; padding: 4px 0;
}
.vd-nav a:hover { color: var(--vd-navy); }
.vd-nav a.is-active { color: var(--vd-navy); }
.vd-nav a.is-active::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--vd-gold);
}

.vd-header__cta { display: flex; align-items: center; gap: 16px; }
.vd-lang {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--vd-stone);
}
.vd-lang button {
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; padding: 2px 4px;
}
.vd-lang button.is-active { color: var(--vd-navy); font-weight: 600; }

/* Footer */
.vd-footer {
  background: var(--vd-navy); color: var(--vd-cream);
  padding: 80px 0 32px;
}
.vd-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.vd-footer__brand { font-family: var(--vd-serif); font-size: 32px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; margin-bottom: 16px; }
.vd-footer__brand em { font-style: italic; }
.vd-footer__tag { font-family: var(--vd-serif); font-style: italic; font-size: 16px; opacity: 0.75; max-width: 320px; line-height: 1.4; }
.vd-footer h4 { font-family: var(--vd-sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-gold); margin: 0 0 16px; }
.vd-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vd-footer a { color: var(--vd-cream); text-decoration: none; font-size: 14px; opacity: 0.85; }
.vd-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(245,239,228,0.12);
  font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em;
  color: rgba(245,239,228,0.5); text-transform: uppercase;
}

/* Pill / chip */
.vd-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--vd-stone);
  padding: 6px 12px; border: 1px solid var(--vd-line); border-radius: 999px;
  background: var(--vd-paper);
}

/* Index numerals (editorial detail) */
.vd-num {
  font-family: var(--vd-serif); font-style: italic; font-weight: 400;
  color: var(--vd-gold); font-size: 14px;
}


/* ============================== index.html ============================== */

  /* Page-specific */
  .home-hero {
    position: relative; background: var(--vd-paper);
    padding: 80px 0 0;
    overflow: hidden;
  }
  .home-hero__grid {
    display: grid; grid-template-columns: 1.15fr 1fr;
    gap: 80px; align-items: end;
  }
  .home-hero__title { margin: 24px 0 32px; }
  .home-hero__title .vd-display { font-size: clamp(56px, 7.5vw, 112px); }
  .home-hero__lead { max-width: 480px; margin-bottom: 40px; }
  .home-hero__cta { display: flex; gap: 16px; margin-bottom: 64px; }
  .home-hero__photo {
    aspect-ratio: 4/5; width: 100%;
    background: var(--vd-navy);
    position: relative; overflow: hidden;
  }
  .home-hero__photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(1) contrast(1.05);
  }
  .home-hero__photo-meta {
    position: absolute; left: 24px; bottom: 24px; right: 24px;
    color: var(--vd-cream); font-family: var(--vd-mono);
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    display: flex; justify-content: space-between; align-items: end;
  }
  .home-hero__photo-meta strong { font-family: var(--vd-serif); font-style: italic; font-weight: 500; font-size: 18px; letter-spacing: 0; text-transform: none; display: block; margin-bottom: 4px; color: var(--vd-cream); }
  .home-hero__caption {
    font-family: var(--vd-mono); font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--vd-stone);
  }

  /* Stats strip */
  .home-stats {
    margin-top: 72px;
    border-top: 1px solid var(--vd-line);
    border-bottom: 1px solid var(--vd-line);
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .home-stat {
    padding: 32px 0; text-align: left;
    border-right: 1px solid var(--vd-line);
    padding-right: 24px; padding-left: 24px;
  }
  .home-stat:last-child { border-right: none; }
  .home-stat:first-child { padding-left: 0; }
  .home-stat__num { font-family: var(--vd-serif); font-size: 44px; font-weight: 400; color: var(--vd-navy); letter-spacing: -0.02em; line-height: 1; }
  .home-stat__num em { font-style: italic; color: var(--vd-gold); }
  .home-stat__label { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin-top: 12px; }

  /* Search bar */
  .home-search {
    background: var(--vd-navy); color: var(--vd-cream);
    padding: 64px 0;
  }
  .home-search__inner { max-width: var(--vd-max); margin: 0 auto; padding: 0 var(--vd-gutter); }
  .home-search__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; }
  .home-search__title { font-family: var(--vd-serif); font-size: 36px; font-weight: 400; letter-spacing: -0.02em; line-height: 1; color: var(--vd-cream); max-width: 600px; }
  .home-search__title em { font-style: italic; color: var(--vd-gold-light); }
  .home-search__form {
    background: var(--vd-navy-soft); border: 1px solid rgba(245,239,228,0.1);
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr auto;
  }
  .home-search__field {
    padding: 20px 24px; border-right: 1px solid rgba(245,239,228,0.1);
    display: flex; flex-direction: column; gap: 6px;
  }
  .home-search__field label {
    font-family: var(--vd-mono); font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(245,239,228,0.55);
  }
  .home-search__field input, .home-search__field select {
    background: none; border: none; outline: none; padding: 0;
    color: var(--vd-cream); font-family: var(--vd-sans);
    font-size: 14px; font-weight: 500; cursor: pointer;
    appearance: none;
  }
  .home-search__field input::placeholder { color: rgba(245,239,228,0.5); }
  .home-search__submit {
    background: var(--vd-gold); border: none;
    color: var(--vd-navy); font-family: var(--vd-sans); font-weight: 700;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0 40px; cursor: pointer;
  }
  .home-search__quick { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
  .home-search__chip {
    font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(245,239,228,0.7);
    padding: 6px 14px; border: 1px solid rgba(245,239,228,0.2);
    border-radius: 999px; background: transparent; cursor: pointer;
  }
  .home-search__chip:hover { color: var(--vd-gold-light); border-color: var(--vd-gold-light); }

  /* Featured presales */
  .home-featured__head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 56px; gap: 32px;
  }
  .home-featured__head .vd-h2 { max-width: 640px; }
  .home-featured__grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; row-gap: 64px;
  }
  .presale-card { display: flex; flex-direction: column; }
  .presale-card__photo { aspect-ratio: 4/5; margin-bottom: 20px; }
  .presale-card__meta {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--vd-stone);
    margin-bottom: 12px;
  }
  .presale-card__meta .status { color: var(--vd-gold); }
  .presale-card__title { font-family: var(--vd-serif); font-size: 26px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.1; color: var(--vd-navy); margin-bottom: 8px; }
  .presale-card__loc { font-family: var(--vd-sans); font-size: 14px; color: var(--vd-stone); }
  .presale-card__row {
    display: flex; gap: 24px; margin-top: 16px;
    padding-top: 16px; border-top: 1px solid var(--vd-line-soft);
  }
  .presale-card__stat span { display: block; font-family: var(--vd-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin-bottom: 4px; }
  .presale-card__stat strong { font-family: var(--vd-serif); font-size: 18px; font-weight: 500; color: var(--vd-navy); }

  .featured-large {
    grid-column: span 2;
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 40px; align-items: end;
  }
  .featured-large .presale-card__photo { aspect-ratio: 16/11; margin-bottom: 0; }

  /* Authority / agent block */
  .home-authority {
    background: var(--vd-bone); padding: 128px 0;
  }
  .home-authority__grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 96px; align-items: start;
  }
  .home-authority__photo {
    aspect-ratio: 3/4; background: var(--vd-navy); overflow: hidden;
    position: relative;
  }
  .home-authority__photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(1) contrast(1.05);
  }
  .home-authority__index {
    font-family: var(--vd-serif); font-style: italic; font-size: 14px;
    color: var(--vd-gold); margin-bottom: 24px;
  }
  .home-authority__quote {
    font-family: var(--vd-serif); font-size: 36px; font-weight: 400;
    line-height: 1.2; letter-spacing: -0.015em;
    color: var(--vd-navy); margin: 0 0 32px;
    text-wrap: pretty;
  }
  .home-authority__quote em { font-style: italic; }
  .home-authority__sig {
    display: flex; align-items: center; gap: 16px; margin-top: 40px;
    padding-top: 32px; border-top: 1px solid var(--vd-line);
  }
  .home-authority__sig strong { font-family: var(--vd-serif); font-size: 18px; font-weight: 500; color: var(--vd-navy); display: block; }
  .home-authority__sig span { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }

  .home-authority__credentials {
    margin-top: 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px;
  }
  .credential strong { font-family: var(--vd-serif); font-size: 28px; font-weight: 400; color: var(--vd-navy); display: block; line-height: 1; margin-bottom: 6px; }
  .credential strong em { font-style: italic; color: var(--vd-gold); }
  .credential span { font-family: var(--vd-sans); font-size: 13px; color: var(--vd-stone); line-height: 1.4; }

  /* Pulse / market data */
  .home-pulse__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; border-top: 1px solid var(--vd-line);
    border-left: 1px solid var(--vd-line);
  }
  .pulse-card {
    padding: 32px; border-right: 1px solid var(--vd-line);
    border-bottom: 1px solid var(--vd-line);
    display: flex; flex-direction: column; gap: 16px;
    background: var(--vd-paper);
  }
  .pulse-card__head { display: flex; justify-content: space-between; align-items: center; }
  .pulse-card__head h4 { font-family: var(--vd-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin: 0; }
  .pulse-card__delta { font-family: var(--vd-mono); font-size: 11px; padding: 2px 8px; border-radius: 999px; }
  .pulse-card__delta.up { background: rgba(184,137,62,0.12); color: var(--vd-gold-deep); }
  .pulse-card__delta.down { background: rgba(107,114,128,0.12); color: var(--vd-stone); }
  .pulse-card__num { font-family: var(--vd-serif); font-size: 40px; font-weight: 400; color: var(--vd-navy); letter-spacing: -0.02em; line-height: 1; }
  .pulse-card__num em { font-style: italic; color: var(--vd-gold); font-size: 22px; }
  .pulse-card__sub { font-family: var(--vd-sans); font-size: 13px; color: var(--vd-stone); }
  .pulse-card__chart { height: 40px; margin-top: auto; }

  /* Insights */
  .home-insights__grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }
  .insight-card {
    display: flex; flex-direction: column; gap: 16px;
  }
  .insight-card__photo { aspect-ratio: 4/3; }
  .insight-card__meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: flex; gap: 12px; }
  .insight-card__meta .cat { color: var(--vd-gold); }
  .insight-card__title { font-family: var(--vd-serif); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.2; color: var(--vd-navy); }
  .insight-card--lead .insight-card__photo { aspect-ratio: 5/4; }
  .insight-card--lead .insight-card__title { font-size: 36px; line-height: 1.1; }

  /* Developer trust bar */
  .home-developers { padding: 96px 0; background: var(--vd-bone); }
  .home-developers__head { text-align: center; margin-bottom: 48px; }
  .home-developers__head .vd-h3 { font-style: italic; font-weight: 400; color: var(--vd-navy); }
  .home-developers__logos {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 8px; align-items: center;
    border-top: 1px solid var(--vd-line);
    border-bottom: 1px solid var(--vd-line);
  }
  .dev-logo {
    height: 96px; display: flex; align-items: center; justify-content: center;
    border-right: 1px solid var(--vd-line);
    font-family: var(--vd-serif); font-style: italic; font-size: 16px;
    color: var(--vd-stone); letter-spacing: -0.01em;
  }
  .dev-logo:last-child { border-right: none; }
  .dev-logo strong { font-style: normal; font-weight: 500; }

  /* CTA strip */
  .home-cta { background: var(--vd-navy); color: var(--vd-cream); padding: 128px 0; }
  .home-cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .home-cta .vd-h2 { color: var(--vd-cream); font-size: clamp(40px, 5vw, 72px); }
  .home-cta .vd-h2 em { color: var(--vd-gold-light); }
  .home-cta__form {
    border: 1px solid rgba(245,239,228,0.15);
    padding: 32px;
  }
  .home-cta__form h4 {
    font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--vd-gold-light); margin: 0 0 24px;
  }
  .home-cta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .home-cta__row.full { grid-template-columns: 1fr; }
  .home-cta__form input, .home-cta__form select, .home-cta__form textarea {
    background: transparent; border: none;
    border-bottom: 1px solid rgba(245,239,228,0.25);
    color: var(--vd-cream); font-family: var(--vd-sans);
    font-size: 15px; padding: 12px 0; width: 100%;
    outline: none;
  }
  .home-cta__form input::placeholder, .home-cta__form textarea::placeholder { color: rgba(245,239,228,0.5); }
  .home-cta__form .vd-btn { margin-top: 24px; width: 100%; justify-content: center; }
  .home-cta__form .vd-btn--gold { background: var(--vd-gold); color: var(--vd-navy); }


/* ============================== presales.html ============================== */

  .pres-hero { padding: 64px 0 32px; border-bottom: 1px solid var(--vd-line); }
  .pres-hero__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: end; }
  .pres-hero h1 { font-size: clamp(40px, 5vw, 72px); margin: 16px 0 0; }
  .pres-hero__count { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: flex; flex-direction: column; gap: 8px; align-items: end; }
  .pres-hero__count strong { font-family: var(--vd-serif); font-size: 64px; font-weight: 400; color: var(--vd-navy); letter-spacing: -0.02em; line-height: 1; }
  .pres-hero__count strong em { font-style: italic; color: var(--vd-gold); }

  .pres-toolbar {
    border-bottom: 1px solid var(--vd-line);
    padding: 16px 0; background: var(--vd-paper);
    position: sticky; top: 73px; z-index: 50;
  }
  .pres-toolbar__inner {
    max-width: var(--vd-max); margin: 0 auto; padding: 0 var(--vd-gutter);
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
  }
  .pres-filters { display: flex; gap: 8px; flex-wrap: wrap; }
  .pres-filter {
    font-family: var(--vd-sans); font-size: 13px; font-weight: 500;
    padding: 8px 16px; border: 1px solid var(--vd-line);
    background: var(--vd-paper); color: var(--vd-ink);
    cursor: pointer; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .pres-filter.is-active { background: var(--vd-navy); color: var(--vd-cream); border-color: var(--vd-navy); }
  .pres-filter span { font-family: var(--vd-mono); font-size: 11px; opacity: 0.6; }
  .pres-sort { display: flex; align-items: center; gap: 12px; font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
  .pres-sort select { background: none; border: none; font-family: var(--vd-sans); font-weight: 600; font-size: 13px; color: var(--vd-navy); letter-spacing: 0; text-transform: none; cursor: pointer; }

  .pres-main { display: grid; grid-template-columns: 320px 1fr; gap: 48px; padding: 48px 0; }
  .pres-sidebar { position: sticky; top: 160px; align-self: start; }
  .pres-sidebar h4 { font-family: var(--vd-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin: 0 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--vd-line); }
  .pres-sidebar__group { margin-bottom: 32px; }
  .pres-check { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; cursor: pointer; }
  .pres-check input { accent-color: var(--vd-navy); }
  .pres-check__label { font-family: var(--vd-sans); font-size: 14px; color: var(--vd-ink); flex: 1; margin-left: 12px; }
  .pres-check__count { font-family: var(--vd-mono); font-size: 11px; color: var(--vd-stone); }
  .pres-range { padding: 12px 0; }
  .pres-range__values { display: flex; justify-content: space-between; font-family: var(--vd-mono); font-size: 12px; color: var(--vd-navy); margin-bottom: 12px; }
  .pres-range__bar { height: 4px; background: var(--vd-line); position: relative; border-radius: 2px; }
  .pres-range__fill { position: absolute; left: 20%; right: 30%; top: 0; bottom: 0; background: var(--vd-navy); border-radius: 2px; }
  .pres-range__fill::before, .pres-range__fill::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--vd-paper); border: 2px solid var(--vd-navy); top: -5px; }
  .pres-range__fill::before { left: -7px; }
  .pres-range__fill::after { right: -7px; }

  .pres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .listing { display: flex; flex-direction: column; }
  .listing__photo { aspect-ratio: 4/3; margin-bottom: 16px; position: relative; }
  .listing__badge { position: absolute; top: 16px; left: 16px; background: var(--vd-navy); color: var(--vd-cream); font-family: var(--vd-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 10px; }
  .listing__badge.gold { background: var(--vd-gold); color: var(--vd-navy); }
  .listing__save { position: absolute; top: 16px; right: 16px; background: var(--vd-paper); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; }
  .listing__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
  .listing__head h3 { font-family: var(--vd-serif); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; color: var(--vd-navy); margin: 0; }
  .listing__price { font-family: var(--vd-serif); font-size: 22px; font-weight: 500; color: var(--vd-navy); }
  .listing__loc { font-family: var(--vd-sans); font-size: 13px; color: var(--vd-stone); margin-bottom: 12px; }
  .listing__row { display: flex; gap: 20px; padding-top: 12px; border-top: 1px solid var(--vd-line-soft); font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vd-stone); }
  .listing__row strong { font-family: var(--vd-sans); color: var(--vd-navy); font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 600; margin-left: 6px; }


/* ============================== presale-detail.html ============================== */

  .det-bread { padding: 24px 0; font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
  .det-bread a { color: var(--vd-stone); text-decoration: none; }
  .det-hero { padding-bottom: 64px; }
  .det-hero__title { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: end; margin-bottom: 32px; }
  .det-hero__title h1 { font-size: clamp(48px, 6vw, 84px); margin: 0; }
  .det-hero__meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: flex; flex-direction: column; gap: 6px; }
  .det-hero__meta strong { font-family: var(--vd-serif); font-size: 24px; font-weight: 500; color: var(--vd-navy); letter-spacing: 0; text-transform: none; }
  .det-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; height: 540px; margin-bottom: 64px; }
  .det-gallery__main { background: var(--vd-navy); }
  .det-gallery__side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }
  .det-gallery .vd-photo { width: 100%; height: 100%; }

  .det-body { display: grid; grid-template-columns: 1fr 380px; gap: 80px; padding-bottom: 96px; }
  .det-content section { padding-bottom: 64px; margin-bottom: 64px; border-bottom: 1px solid var(--vd-line); }
  .det-content section:last-child { border-bottom: none; }
  .det-content h2 { font-family: var(--vd-serif); font-size: 36px; font-weight: 400; letter-spacing: -0.02em; color: var(--vd-navy); margin: 0 0 24px; }
  .det-content h2 em { font-style: italic; }
  .det-content p { font-family: var(--vd-sans); font-size: 17px; line-height: 1.65; color: var(--vd-ink); margin: 0 0 16px; }

  .det-spec { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--vd-line); border: 1px solid var(--vd-line); }
  .det-spec__cell { background: var(--vd-paper); padding: 24px; }
  .det-spec__cell span { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: block; margin-bottom: 8px; }
  .det-spec__cell strong { font-family: var(--vd-serif); font-size: 24px; font-weight: 500; color: var(--vd-navy); }

  .det-floors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .det-floor { display: flex; flex-direction: column; gap: 12px; }
  .det-floor__photo { aspect-ratio: 1; background: var(--vd-bone); padding: 24px; display: flex; align-items: center; justify-content: center; font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); border: 1px solid var(--vd-line); }
  .det-floor__head { display: flex; justify-content: space-between; align-items: baseline; }
  .det-floor h4 { font-family: var(--vd-serif); font-size: 18px; font-weight: 500; color: var(--vd-navy); margin: 0; }
  .det-floor__price { font-family: var(--vd-serif); color: var(--vd-gold); }
  .det-floor__sub { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }

  .det-deposit__table { width: 100%; border-collapse: collapse; }
  .det-deposit__table th { font-family: var(--vd-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--vd-line); }
  .det-deposit__table td { font-family: var(--vd-sans); font-size: 15px; padding: 18px 16px; border-bottom: 1px solid var(--vd-line-soft); }
  .det-deposit__table td:first-child { font-family: var(--vd-serif); font-style: italic; color: var(--vd-gold); }
  .det-deposit__table tr:last-child td { border-bottom: 2px solid var(--vd-navy); font-weight: 600; color: var(--vd-navy); }

  .det-sidebar { position: sticky; top: 100px; align-self: start; }
  .det-sidebar__card { border: 1px solid var(--vd-line); padding: 32px; background: var(--vd-paper); }
  .det-sidebar__price { font-family: var(--vd-serif); font-size: 40px; font-weight: 400; color: var(--vd-navy); letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
  .det-sidebar__price em { font-style: italic; color: var(--vd-gold); font-size: 22px; }
  .det-sidebar__sub { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin-bottom: 32px; }
  .det-sidebar__row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--vd-line-soft); }
  .det-sidebar__row span { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
  .det-sidebar__row strong { font-family: var(--vd-sans); color: var(--vd-navy); font-size: 14px; font-weight: 600; }
  .det-sidebar__cta { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
  .det-sidebar__agent { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--vd-line); display: flex; align-items: center; gap: 12px; }
  .det-sidebar__agent img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
  .det-sidebar__agent strong { font-family: var(--vd-serif); font-size: 16px; font-weight: 500; color: var(--vd-navy); display: block; }
  .det-sidebar__agent span { font-family: var(--vd-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }

  .det-map { height: 400px; background: var(--vd-bone); display: flex; align-items: center; justify-content: center; border: 1px solid var(--vd-line); position: relative; }
  .det-map__pin { width: 16px; height: 16px; background: var(--vd-gold); border: 3px solid var(--vd-navy); border-radius: 50%; box-shadow: 0 0 0 8px rgba(184,137,62,0.2); }
  .det-map__poi { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
  .det-map__poi-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--vd-line-soft); }
  .det-map__poi-item span { font-family: var(--vd-sans); font-size: 14px; color: var(--vd-ink); }
  .det-map__poi-item strong { font-family: var(--vd-mono); font-size: 12px; color: var(--vd-gold); font-weight: 500; }


/* ============================== about.html ============================== */

  .ab-hero { padding: 96px 0 0; }
  .ab-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; padding-bottom: 96px; border-bottom: 1px solid var(--vd-line); }
  .ab-hero__photo { aspect-ratio: 4/5; background: var(--vd-navy); overflow: hidden; }
  .ab-hero__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
  .ab-hero h1 { font-size: clamp(56px, 7vw, 100px); margin: 16px 0 32px; }
  .ab-hero__lead { font-size: 24px; }
  .ab-hero__facts { display: flex; gap: 48px; margin-top: 48px; flex-wrap: wrap; font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
  .ab-hero__fact-value { font-family: var(--vd-serif); font-style: italic; font-size: 18px; color: var(--vd-navy); text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
  .ab-hero__fact-label { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }

  /* Letter from the founder — flush on paper, no tinted block */
  .ab-story { padding: 128px 0; background: var(--vd-paper); }
  .ab-story__grid { display: grid; grid-template-columns: 220px 1fr; gap: 96px; align-items: start; }
  .ab-story__rail { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 32px; }
  .ab-story__rail .vd-eyebrow { display: block; }
  .ab-story__rail .vd-rule { margin-top: 4px; }
  .ab-story__rail-meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); line-height: 1.7; }
  .ab-story__rail-meta strong { display: block; font-family: var(--vd-serif); font-style: italic; font-weight: 500; font-size: 16px; letter-spacing: 0; text-transform: none; color: var(--vd-navy); margin-bottom: 2px; }
  .ab-story__body { max-width: 680px; }
  .ab-story__body h2 { font-family: var(--vd-serif); font-weight: 400; font-style: italic; font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; color: var(--vd-navy); margin: 0 0 32px; text-wrap: balance; }
  .ab-story__body p { font-family: var(--vd-serif); font-size: 22px; line-height: 1.55; color: var(--vd-ink); margin: 0 0 24px; text-wrap: pretty; }
  .ab-story__body p:first-of-type::first-letter { font-family: var(--vd-serif); font-style: italic; font-size: 84px; float: left; line-height: 0.85; padding: 8px 12px 0 0; color: var(--vd-gold); font-weight: 500; }
  .ab-story__body p strong { font-weight: 500; color: var(--vd-navy); }
  .ab-story__sig { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--vd-line); display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .ab-story__sig-name { font-family: var(--vd-serif); font-style: italic; font-size: 22px; color: var(--vd-navy); }
  .ab-story__sig-meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); text-align: right; }

  @media (max-width: 880px) {
    .ab-story__grid { grid-template-columns: 1fr; gap: 48px; }
    .ab-story__rail { position: static; flex-direction: row; flex-wrap: wrap; gap: 24px 48px; }
  }

  .ab-principles { background: var(--vd-bone); padding: 128px 0; }
  .ab-principles__head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
  .ab-principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--vd-line); border-left: 1px solid var(--vd-line); }
  .principle { padding: 48px 32px; border-right: 1px solid var(--vd-line); border-bottom: 1px solid var(--vd-line); background: var(--vd-paper); }
  .principle__num { font-family: var(--vd-serif); font-style: italic; font-size: 14px; color: var(--vd-gold); margin-bottom: 24px; }
  .principle h3 { font-family: var(--vd-serif); font-size: 28px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.1; color: var(--vd-navy); margin: 0 0 16px; }
  .principle h3 em { font-style: italic; }
  .principle p { font-family: var(--vd-sans); font-size: 15px; line-height: 1.6; color: var(--vd-stone); margin: 0; }

  .ab-services { padding: 128px 0; }
  .ab-services__list { border-top: 1px solid var(--vd-line); }
  .ab-service {
    display: grid; grid-template-columns: 80px 1fr 2fr 200px;
    gap: 48px; padding: 48px 0; border-bottom: 1px solid var(--vd-line);
    align-items: start;
  }
  .ab-service__num { font-family: var(--vd-serif); font-style: italic; font-size: 24px; color: var(--vd-gold); }
  .ab-service__title { font-family: var(--vd-serif); font-size: 32px; font-weight: 400; letter-spacing: -0.015em; color: var(--vd-navy); }
  .ab-service__title em { font-style: italic; }
  .ab-service__desc { font-family: var(--vd-sans); font-size: 16px; line-height: 1.6; color: var(--vd-stone); }
  .ab-service__cta { text-align: right; }

  .ab-press { padding: 96px 0; background: var(--vd-bone); border-top: 1px solid var(--vd-line); }
  .ab-press__head { text-align: center; margin-bottom: 48px; }
  .ab-press__logos { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
  .ab-press__logos span { font-family: var(--vd-serif); font-style: italic; font-size: 22px; color: var(--vd-stone); }

  .ab-cta { background: var(--vd-navy); color: var(--vd-cream); padding: 128px 0; text-align: center; }
  .ab-cta h2 { color: var(--vd-cream); font-size: clamp(40px, 5vw, 72px); max-width: 720px; margin: 0 auto 32px; }
  .ab-cta h2 em { color: var(--vd-gold-light); }


/* ============================== market-intel.html ============================== */

  /* ====== HERO ====== */
  .mi-hero { padding: 96px 0 48px; border-bottom: 1px solid var(--vd-line); }
  .mi-hero__top { display: flex; justify-content: space-between; align-items: end; gap: 48px; }
  .mi-hero__top h1 { font-size: clamp(56px, 7vw, 104px); margin: 16px 0 0; max-width: 12ch; }
  .mi-hero__lede { max-width: 360px; font-family: var(--vd-serif); font-style: italic; font-size: 19px; line-height: 1.4; color: var(--vd-stone); }
  .mi-hero__lede em { font-style: normal; color: var(--vd-navy); font-weight: 500; }
  .mi-hero__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--vd-line); margin-top: 64px; border: 1px solid var(--vd-line); }
  .mi-hero__strip > div { background: var(--vd-paper); padding: 24px; }
  .mi-hero__strip .kpi-label { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
  .mi-hero__strip .kpi-val { font-family: var(--vd-serif); font-size: 36px; font-weight: 400; letter-spacing: -0.02em; color: var(--vd-navy); margin-top: 6px; }
  .mi-hero__strip .kpi-val em { font-style: normal; color: var(--vd-gold); }
  .mi-hero__strip .kpi-delta { font-family: var(--vd-mono); font-size: 11px; color: var(--vd-stone); margin-top: 4px; }
  .mi-hero__strip .kpi-delta.up { color: #2F7C4F; }
  .mi-hero__strip .kpi-delta.down { color: #B23A2A; }

  /* ====== FEATURE ====== */
  .mi-feature { padding: 80px 0 96px; }
  .mi-feature__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--vd-line); }
  .mi-feature__head .lbl { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vd-gold); }
  .mi-feature__head .lbl em { color: var(--vd-stone); font-style: normal; margin-left: 12px; }
  .mi-feature__head .issue { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
  .mi-feature__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: stretch; }
  .mi-feature__photo { aspect-ratio: 5/4; }
  .mi-feature__body { display: flex; flex-direction: column; justify-content: center; }
  .mi-feature__meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: flex; gap: 12px; align-items: center; }
  .mi-feature__meta .cat { color: var(--vd-gold); font-weight: 500; }
  .mi-feature h2 { font-family: var(--vd-serif); font-size: 56px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; color: var(--vd-navy); margin: 18px 0 20px; text-wrap: pretty; }
  .mi-feature h2 em { font-style: italic; color: var(--vd-gold); }
  .mi-feature__deck { font-family: var(--vd-serif); font-size: 19px; line-height: 1.5; color: var(--vd-ink); font-style: italic; max-width: 46ch; }
  .mi-feature__byline { display: flex; align-items: center; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--vd-line); }
  .mi-feature__byline img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
  .mi-feature__byline .name { font-family: var(--vd-sans); font-size: 14px; font-weight: 600; color: var(--vd-navy); }
  .mi-feature__byline .role { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vd-stone); }

  /* ====== FORMAT FILTERS ====== */
  .mi-cats {
    border-top: 1px solid var(--vd-line); border-bottom: 1px solid var(--vd-line);
    padding: 20px 0; background: var(--vd-bone);
  }
  .mi-cats__inner { display: flex; gap: 24px; max-width: var(--vd-max); margin: 0 auto; padding: 0 var(--vd-gutter); align-items: center; flex-wrap: wrap; }
  .mi-cats__label { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin-right: 8px; }
  .mi-cats__group { display: flex; gap: 6px; }
  .mi-cats__group .div { width: 1px; background: var(--vd-line); margin: 0 12px; }
  .mi-cats button { font-family: var(--vd-sans); font-size: 13px; font-weight: 500; padding: 6px 14px; border: 1px solid var(--vd-line); border-radius: 999px; background: var(--vd-paper); color: var(--vd-ink); cursor: pointer; transition: all 0.15s; }
  .mi-cats button:hover { border-color: var(--vd-navy); }
  .mi-cats button.is-active { background: var(--vd-navy); color: var(--vd-cream); border-color: var(--vd-navy); }
  .mi-cats__lang { margin-left: auto; display: flex; gap: 4px; align-items: center; font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vd-stone); }
  .mi-cats__lang button { padding: 4px 10px; font-size: 11px; }

  /* ====== SECTION HEADERS ====== */
  .mi-sec-head { display: flex; justify-content: space-between; align-items: baseline; padding: 56px 0 24px; border-bottom: 1px solid var(--vd-line); margin-bottom: 32px; }
  .mi-sec-head h3 { font-family: var(--vd-serif); font-size: 32px; font-weight: 400; letter-spacing: -0.015em; color: var(--vd-navy); margin: 0; }
  .mi-sec-head h3 em { font-style: italic; }
  .mi-sec-head .meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
  .mi-sec-head .meta em { color: var(--vd-gold); font-style: normal; margin-right: 6px; }

  /* ====== REPORTS ROW (premium) ====== */
  .mi-reports { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 24px; }
  .mi-report { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 24px; border: 1px solid var(--vd-line); background: var(--vd-paper); }
  .mi-report__cover { aspect-ratio: 3/4; background: linear-gradient(160deg, #11233A 0%, #1A3252 100%); position: relative; overflow: hidden; }
  .mi-report__cover::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,137,62,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(184,137,62,0.08) 1px, transparent 1px); background-size: 24px 24px; }
  .mi-report__cover .cover-band { position: absolute; top: 12px; left: 12px; right: 12px; font-family: var(--vd-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vd-gold); display: flex; justify-content: space-between; }
  .mi-report__cover .cover-title { position: absolute; bottom: 16px; left: 14px; right: 14px; font-family: var(--vd-serif); font-style: italic; font-size: 22px; line-height: 1.05; color: var(--vd-cream); letter-spacing: -0.01em; }
  .mi-report__cover .cover-num { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--vd-serif); font-size: 64px; color: var(--vd-gold); font-weight: 400; opacity: 0.6; }
  .mi-report__body { display: flex; flex-direction: column; justify-content: space-between; padding: 4px 0; }
  .mi-report__body .meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: flex; gap: 10px; }
  .mi-report__body .meta .cat { color: var(--vd-gold); }
  .mi-report__body h4 { font-family: var(--vd-serif); font-size: 24px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.15; color: var(--vd-navy); margin: 12px 0 8px; }
  .mi-report__body p { font-family: var(--vd-sans); font-size: 14px; line-height: 1.5; color: var(--vd-stone); margin: 0 0 16px; }
  .mi-report__body .cta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-navy); text-decoration: none; padding-top: 12px; border-top: 1px solid var(--vd-line); display: flex; justify-content: space-between; }
  .mi-report__body .cta em { color: var(--vd-gold); font-style: normal; }

  /* ====== STREAM (articles + videos mixed) ====== */
  .mi-stream { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; padding-bottom: 96px; }
  .mi-card { display: flex; flex-direction: column; gap: 14px; cursor: pointer; }
  .mi-card__photo { aspect-ratio: 4/3; position: relative; overflow: hidden; }
  .mi-card__photo .play {
    position: absolute; bottom: 14px; left: 14px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--vd-gold); display: flex; align-items: center; justify-content: center;
    color: var(--vd-navy); font-size: 14px;
  }
  .mi-card__photo .duration {
    position: absolute; bottom: 14px; right: 14px;
    background: rgba(17,35,58,0.85); color: var(--vd-cream);
    font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em;
    padding: 4px 8px;
  }
  .mi-card__meta { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: flex; gap: 10px; }
  .mi-card__meta .cat { color: var(--vd-gold); }
  .mi-card__meta .cat.video { color: #B23A2A; }
  .mi-card h4 { font-family: var(--vd-serif); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.2; color: var(--vd-navy); margin: 0; text-wrap: pretty; }
  .mi-card p { font-family: var(--vd-sans); font-size: 14px; line-height: 1.55; color: var(--vd-stone); margin: 0; }

  /* ====== TWO-COL: Dispatch + Recent ====== */
  .mi-bottom { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; }
  .mi-dispatch { background: var(--vd-navy); color: var(--vd-cream); padding: 96px 80px 96px var(--vd-gutter); position: relative; overflow: hidden; }
  .mi-dispatch::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(184,137,62,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(184,137,62,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .mi-dispatch > * { position: relative; }
  .mi-dispatch__eyebrow { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vd-gold); margin-bottom: 20px; }
  .mi-dispatch h2 { font-family: var(--vd-serif); font-size: clamp(40px, 4.5vw, 64px); font-weight: 400; letter-spacing: -0.02em; line-height: 1; color: var(--vd-cream); margin: 0; max-width: 14ch; }
  .mi-dispatch h2 em { font-style: italic; color: var(--vd-gold-light, #DEB871); }
  .mi-dispatch__lede { font-family: var(--vd-serif); font-style: italic; font-size: 18px; line-height: 1.5; color: rgba(245,239,228,0.85); margin: 32px 0; max-width: 48ch; }
  .mi-dispatch__form { display: flex; gap: 8px; padding-top: 24px; border-top: 1px solid rgba(245,239,228,0.2); max-width: 520px; }
  .mi-dispatch__form input { flex: 1; background: transparent; border: none; border-bottom: 1px solid rgba(245,239,228,0.3); color: var(--vd-cream); font-family: var(--vd-sans); font-size: 16px; padding: 14px 0; outline: none; }
  .mi-dispatch__form input::placeholder { color: rgba(245,239,228,0.5); }
  .mi-dispatch__meta { display: flex; gap: 24px; margin-top: 24px; font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,239,228,0.6); }
  .mi-dispatch__meta em { color: var(--vd-gold-light, #DEB871); font-style: normal; margin-right: 6px; }
  .mi-dispatch__archive { display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap; }
  .mi-dispatch__issue {
    border: 1px solid rgba(245,239,228,0.2); padding: 12px 16px; min-width: 140px;
    font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(245,239,228,0.7);
  }
  .mi-dispatch__issue strong { display: block; font-family: var(--vd-serif); font-style: italic; font-size: 14px; color: var(--vd-cream); text-transform: none; letter-spacing: 0; margin-top: 4px; }

  .mi-recent { padding: 96px var(--vd-gutter) 96px 80px; background: var(--vd-bone); }
  .mi-recent h3 { font-family: var(--vd-serif); font-size: 32px; font-weight: 400; letter-spacing: -0.015em; color: var(--vd-navy); margin: 0 0 32px; padding-bottom: 16px; border-bottom: 1px solid var(--vd-line); }
  .mi-recent h3 em { font-style: italic; color: var(--vd-gold); }
  .mi-recent ol { list-style: none; padding: 0; margin: 0; counter-reset: recent; }
  .mi-recent li { counter-increment: recent; padding: 18px 0; border-bottom: 1px solid var(--vd-line); display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
  .mi-recent li::before { content: counter(recent, decimal-leading-zero); font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--vd-gold); padding-top: 4px; }
  .mi-recent li .meta { font-family: var(--vd-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); display: flex; gap: 8px; margin-bottom: 4px; }
  .mi-recent li .meta .cat { color: var(--vd-gold); }
  .mi-recent li h5 { font-family: var(--vd-serif); font-size: 16px; font-weight: 500; line-height: 1.25; color: var(--vd-navy); margin: 0; }

  @media (max-width: 900px) {
    .mi-hero__top, .mi-feature__grid, .mi-bottom { grid-template-columns: 1fr; }
    .mi-hero__strip { grid-template-columns: repeat(2, 1fr); }
    .mi-stream, .mi-reports { grid-template-columns: 1fr; }
    .mi-dispatch, .mi-recent { padding: 64px var(--vd-gutter); }
  }


/* ============================== developers.html ============================== */

  .dev-hero { background: var(--vd-navy); color: var(--vd-cream); padding: 96px 0 128px; position: relative; overflow: hidden; }
  .dev-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,137,62,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(184,137,62,0.06) 1px, transparent 1px); background-size: 60px 60px; }
  .dev-hero__inner { position: relative; }
  .dev-hero h1 { color: var(--vd-cream); font-size: clamp(56px, 7vw, 100px); margin: 16px 0 32px; max-width: 1100px; }
  .dev-hero h1 em { color: var(--vd-gold-light); }
  .dev-hero__lead { color: var(--vd-cream); opacity: 0.8; max-width: 640px; }

  .dev-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 96px; border-top: 1px solid rgba(245,239,228,0.2); border-bottom: 1px solid rgba(245,239,228,0.2); }
  .dev-stat { padding: 32px 0; padding-right: 24px; border-right: 1px solid rgba(245,239,228,0.15); }
  .dev-stat:first-child { padding-left: 0; }
  .dev-stat:last-child { border-right: none; }
  .dev-stat__num { font-family: var(--vd-serif); font-size: 56px; font-weight: 400; color: var(--vd-cream); letter-spacing: -0.02em; line-height: 1; }
  .dev-stat__num em { font-style: italic; color: var(--vd-gold-light); }
  .dev-stat__label { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,239,228,0.6); margin-top: 12px; }

  .dev-process { padding: 128px 0; }
  .dev-process__head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; align-items: end; }
  .dev-process__steps { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--vd-line); }
  .dev-step { padding: 32px 24px 32px 0; border-right: 1px solid var(--vd-line); display: flex; flex-direction: column; gap: 16px; }
  .dev-step:first-child { padding-left: 0; }
  .dev-step:last-child { border-right: none; padding-right: 0; }
  .dev-step__num { font-family: var(--vd-serif); font-style: italic; font-size: 40px; color: var(--vd-gold); line-height: 1; }
  .dev-step h3 { font-family: var(--vd-serif); font-size: 22px; font-weight: 500; color: var(--vd-navy); margin: 0; }
  .dev-step p { font-family: var(--vd-sans); font-size: 14px; line-height: 1.5; color: var(--vd-stone); margin: 0; }

  .dev-case { background: var(--vd-bone); padding: 128px 0; }
  .dev-case__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .dev-case__photo { aspect-ratio: 4/5; }
  .dev-case__quote { font-family: var(--vd-serif); font-size: 32px; font-weight: 400; line-height: 1.25; color: var(--vd-navy); letter-spacing: -0.015em; margin: 16px 0 32px; }
  .dev-case__quote em { font-style: italic; }
  .dev-case__metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--vd-line); }
  .dev-case__metric strong { font-family: var(--vd-serif); font-size: 36px; font-weight: 400; color: var(--vd-navy); display: block; line-height: 1; letter-spacing: -0.02em; }
  .dev-case__metric strong em { font-style: italic; color: var(--vd-gold); font-size: 22px; }
  .dev-case__metric span { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin-top: 8px; display: block; }

  .dev-cta { padding: 96px 0; background: var(--vd-paper); }
  .dev-cta__form-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; }
  .dev-cta__form input, .dev-cta__form select, .dev-cta__form textarea {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid var(--vd-line); padding: 16px 0;
    font-family: var(--vd-sans); font-size: 16px; color: var(--vd-ink);
    outline: none;
  }
  .dev-cta__form input:focus, .dev-cta__form select:focus, .dev-cta__form textarea:focus { border-bottom-color: var(--vd-navy); }
  .dev-cta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 8px; }
  .dev-cta__row.full { grid-template-columns: 1fr; }
  .dev-cta__form .vd-btn { margin-top: 32px; }


/* ============================== contact.html ============================== */

  .ct-hero { padding: 96px 0 64px; }
  .ct-hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
  .ct-hero h1 { font-size: clamp(56px, 7vw, 100px); margin: 16px 0 32px; }

  .ct-main { padding: 32px 0 128px; }
  .ct-main__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 96px; align-items: start; }

  .ct-form { display: grid; gap: 8px; }
  .ct-form__step { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-gold); margin-bottom: 12px; }
  .ct-form__q {
    padding: 24px 0; border-bottom: 1px solid var(--vd-line);
  }
  .ct-form__q label {
    font-family: var(--vd-serif); font-size: 22px; font-weight: 400; letter-spacing: -0.015em; color: var(--vd-navy);
    display: block; margin-bottom: 16px;
  }
  .ct-form__q label em { font-style: italic; color: var(--vd-gold); }
  .ct-options { display: flex; gap: 8px; flex-wrap: wrap; }
  .ct-options input { display: none; }
  .ct-options label {
    font-family: var(--vd-sans); font-size: 14px; font-weight: 500;
    padding: 10px 18px; border: 1px solid var(--vd-line); border-radius: 999px;
    background: var(--vd-paper); color: var(--vd-ink); cursor: pointer;
    margin-bottom: 0;
  }
  .ct-options input:checked + label { background: var(--vd-navy); color: var(--vd-cream); border-color: var(--vd-navy); }
  .ct-input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid var(--vd-line); padding: 16px 0;
    font-family: var(--vd-sans); font-size: 18px; color: var(--vd-ink);
    outline: none;
  }
  .ct-input:focus { border-bottom-color: var(--vd-navy); }
  .ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

  .ct-aside {
    background: var(--vd-navy); color: var(--vd-cream);
    padding: 48px; position: sticky; top: 100px;
  }
  .ct-aside__photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin-bottom: 24px; }
  .ct-aside__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
  .ct-aside h3 { font-family: var(--vd-serif); font-size: 28px; font-weight: 500; color: var(--vd-cream); margin: 0 0 8px; }
  .ct-aside__role { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-gold-light); margin-bottom: 32px; }
  .ct-aside__row { padding: 16px 0; border-top: 1px solid rgba(245,239,228,0.15); display: flex; flex-direction: column; gap: 4px; }
  .ct-aside__row span { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,239,228,0.6); }
  .ct-aside__row strong { font-family: var(--vd-serif); font-size: 18px; font-weight: 500; color: var(--vd-cream); font-style: italic; }


/* ============================== ARTICLE READER (single-insight.php) ============================== */
/* Editorial single-column reader. Matches Market Intel / About vocabulary. */

.ar-utility { border-top: 1px solid var(--vd-line); border-bottom: 1px solid var(--vd-line); background: var(--vd-bone); padding: 14px 0; }
.ar-utility__inner { max-width: var(--vd-max); margin: 0 auto; padding: 0 var(--vd-gutter); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.ar-utility a, .ar-utility span { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
.ar-utility a { color: var(--vd-navy); text-decoration: none; }
.ar-utility a:hover { color: var(--vd-gold); }
.ar-utility__crumb em { color: var(--vd-gold); font-style: normal; }

.ar-header { padding: 80px 0 56px; }
.ar-header__inner { max-width: 820px; margin: 0 auto; padding: 0 var(--vd-gutter); text-align: left; }
.ar-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin: 0 0 24px; }
.ar-meta .cat { color: var(--vd-gold); font-weight: 500; }
.ar-meta .sep { color: var(--vd-line); }

.ar-title { font-family: var(--vd-serif); font-weight: 400; font-size: clamp(40px, 5.5vw, 72px); line-height: 1.04; letter-spacing: -0.025em; color: var(--vd-navy); margin: 0 0 24px; text-wrap: balance; }
.ar-title em { font-style: italic; color: var(--vd-gold); font-weight: 500; }

.ar-deck { font-family: var(--vd-serif); font-style: italic; font-weight: 400; font-size: clamp(20px, 2vw, 24px); line-height: 1.45; color: var(--vd-ink); margin: 0 0 40px; max-width: 56ch; text-wrap: pretty; }

.ar-byline { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--vd-line); max-width: 480px; }
.ar-byline img, .ar-byline__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; filter: grayscale(1) contrast(1.05); background: var(--vd-navy); display: flex; align-items: center; justify-content: center; font-family: var(--vd-serif); font-style: italic; color: var(--vd-cream); font-size: 18px; }
.ar-byline .name { font-family: var(--vd-sans); font-size: 14px; font-weight: 600; color: var(--vd-navy); line-height: 1.2; }
.ar-byline .role { font-family: var(--vd-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); margin-top: 2px; }

.ar-feature { margin: 0 auto 64px; max-width: 1280px; padding: 0 var(--vd-gutter); }
.ar-feature img, .ar-feature .vd-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--vd-navy); }
.ar-feature__caption { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vd-stone); margin-top: 14px; max-width: 820px; }
.ar-feature__caption em { color: var(--vd-gold); font-style: normal; }

.ar-body { max-width: 720px; margin: 0 auto; padding: 0 var(--vd-gutter) 96px; position: relative; }

/* Optional Key Takeaways callout (ACF-driven; only renders if filled in) */
.ar-takeaways { border: 1px solid var(--vd-line); background: var(--vd-bone); padding: 32px 36px; margin: 0 0 56px; }
.ar-takeaways__label { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vd-gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.ar-takeaways__label::before { content: ''; width: 24px; height: 1px; background: var(--vd-gold); }
.ar-takeaways ul { list-style: none; padding: 0; margin: 0; counter-reset: takeaway; }
.ar-takeaways li { font-family: var(--vd-serif); font-size: 17px; line-height: 1.5; color: var(--vd-ink); padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--vd-line-soft); }
.ar-takeaways li:last-child { border-bottom: 0; }
.ar-takeaways li::before { content: counter(takeaway, decimal-leading-zero) ' /'; counter-increment: takeaway; position: absolute; left: 0; top: 13px; font-family: var(--vd-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--vd-gold); font-weight: 500; }

/* ====================================================
   .vd-prose — handles all WP Gutenberg / classic blocks
   ==================================================== */
.vd-prose { font-family: var(--vd-serif); font-size: 19px; line-height: 1.7; color: var(--vd-ink); text-wrap: pretty; }
.vd-prose > * + * { margin-top: 1.2em; }
.vd-prose > p + p { margin-top: 1.2em; }
.vd-prose > p { margin: 0; }
.vd-prose > p:first-of-type::first-letter, .vd-prose > p.has-drop-cap::first-letter { font-family: var(--vd-serif); font-style: italic; font-size: 86px; line-height: 0.85; float: left; padding: 8px 14px 0 0; color: var(--vd-gold); font-weight: 500; }

.vd-prose a { color: var(--vd-navy); text-decoration: none; background-image: linear-gradient(var(--vd-gold), var(--vd-gold)); background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 95%; padding-bottom: 1px; transition: background-size 0.2s; }
.vd-prose a:hover { background-image: linear-gradient(var(--vd-navy), var(--vd-navy)); }
.vd-prose strong, .vd-prose b { font-weight: 500; color: var(--vd-navy); }
.vd-prose em, .vd-prose i { font-style: italic; }
.vd-prose mark { background: rgba(184,137,62,0.18); color: inherit; padding: 0 4px; }
.vd-prose code, .vd-prose kbd, .vd-prose samp { font-family: var(--vd-mono); font-size: 0.9em; background: var(--vd-bone); padding: 2px 6px; border: 1px solid var(--vd-line); }

.vd-prose h2 { font-family: var(--vd-serif); font-weight: 400; font-style: normal; font-size: 36px; line-height: 1.1; letter-spacing: -0.02em; color: var(--vd-navy); margin: 64px 0 24px; text-wrap: balance; }
.vd-prose h2 em { font-style: italic; color: var(--vd-gold); }
.vd-prose h2::before { content: ''; display: block; width: 40px; height: 1px; background: var(--vd-gold); margin-bottom: 20px; }
.vd-prose h3 { font-family: var(--vd-serif); font-weight: 500; font-size: 24px; line-height: 1.2; letter-spacing: -0.015em; color: var(--vd-navy); margin: 48px 0 16px; }
.vd-prose h3 em { font-style: italic; }
.vd-prose h4 { font-family: var(--vd-sans); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vd-gold); margin: 40px 0 12px; }

.vd-prose ul, .vd-prose ol { padding-left: 28px; margin: 24px 0; }
.vd-prose ul { list-style: none; padding-left: 0; }
.vd-prose ul li { position: relative; padding-left: 28px; margin: 10px 0; }
.vd-prose ul li::before { content: '—'; position: absolute; left: 0; top: 0; color: var(--vd-gold); font-weight: 500; }
.vd-prose ol { list-style: none; counter-reset: prose-ol; padding-left: 0; }
.vd-prose ol > li { position: relative; padding-left: 44px; margin: 12px 0; counter-increment: prose-ol; }
.vd-prose ol > li::before { content: counter(prose-ol, decimal-leading-zero); position: absolute; left: 0; top: 5px; font-family: var(--vd-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--vd-gold); font-weight: 500; }
.vd-prose li > ul, .vd-prose li > ol { margin: 8px 0; }

.vd-prose blockquote, .vd-prose .wp-block-quote { margin: 56px -32px; padding: 32px 36px 32px 40px; border-left: 2px solid var(--vd-gold); background: transparent; font-family: var(--vd-serif); font-style: italic; font-weight: 400; font-size: 26px; line-height: 1.35; letter-spacing: -0.01em; color: var(--vd-navy); text-wrap: balance; }
.vd-prose blockquote p { margin: 0 0 16px; }
.vd-prose blockquote p:last-child { margin-bottom: 0; }
.vd-prose blockquote cite, .vd-prose blockquote .wp-block-quote__citation { display: block; margin-top: 16px; font-family: var(--vd-mono); font-style: normal; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-stone); }
.vd-prose blockquote cite::before { content: '— '; color: var(--vd-gold); }

.vd-prose .wp-block-pullquote { margin: 80px -120px; padding: 32px 0; border-top: 1px solid var(--vd-line); border-bottom: 1px solid var(--vd-line); text-align: center; font-family: var(--vd-serif); font-style: italic; font-weight: 400; font-size: 36px; line-height: 1.15; letter-spacing: -0.02em; color: var(--vd-navy); text-wrap: balance; }
.vd-prose .wp-block-pullquote cite { display: block; margin-top: 20px; font-family: var(--vd-mono); font-style: normal; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vd-gold); }

.vd-prose figure, .vd-prose .wp-block-image { margin: 48px -80px; }
.vd-prose figure img, .vd-prose .wp-block-image img, .vd-prose img { width: 100%; height: auto; display: block; }
.vd-prose figcaption, .vd-prose .wp-element-caption { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vd-stone); text-align: left; margin-top: 14px; padding-left: 16px; border-left: 1px solid var(--vd-gold); max-width: 80%; }
.vd-prose .wp-block-image.alignwide, .vd-prose figure.alignwide { margin: 48px -120px; }
.vd-prose .wp-block-image.alignfull, .vd-prose figure.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.vd-prose .alignleft { float: left; margin: 8px 32px 16px 0; max-width: 50%; }
.vd-prose .alignright { float: right; margin: 8px 0 16px 32px; max-width: 50%; }
.vd-prose .aligncenter { display: block; margin-left: auto; margin-right: auto; }

.vd-prose .wp-block-embed, .vd-prose iframe { margin: 48px -80px; }
.vd-prose .wp-block-embed iframe, .vd-prose iframe { width: 100%; aspect-ratio: 16/9; height: auto; display: block; border: 0; }
.vd-prose .wp-block-embed__wrapper { position: relative; }

.vd-prose table { width: 100%; border-collapse: collapse; margin: 40px 0; font-family: var(--vd-sans); font-size: 14px; }
.vd-prose th, .vd-prose td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--vd-line); }
.vd-prose th { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-gold); font-weight: 500; border-bottom: 1px solid var(--vd-navy); }

.vd-prose hr, .vd-prose .wp-block-separator { border: 0; height: 1px; background: var(--vd-line); margin: 56px auto; width: 80px; }
.vd-prose .wp-block-separator.is-style-dots { background: transparent; height: auto; text-align: center; }
.vd-prose .wp-block-separator.is-style-dots::before { content: '· · ·'; font-family: var(--vd-serif); color: var(--vd-gold); font-size: 24px; letter-spacing: 1em; }

.vd-prose .wp-block-button { margin: 32px 0; }
.vd-prose .wp-block-button a, .vd-prose .wp-block-button__link { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: var(--vd-navy); color: var(--vd-cream); font-family: var(--vd-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; background-image: none; }

/* Article footer (share + author + related) */
.ar-footer { max-width: 720px; margin: 0 auto; padding: 0 var(--vd-gutter); }
.ar-share { display: flex; justify-content: space-between; align-items: center; padding: 32px 0; border-top: 1px solid var(--vd-line); border-bottom: 1px solid var(--vd-line); flex-wrap: wrap; gap: 20px; }
.ar-share__label { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vd-stone); }
.ar-share__links { display: flex; gap: 8px; flex-wrap: wrap; }
.ar-share__links a { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; padding: 8px 14px; border: 1px solid var(--vd-line); color: var(--vd-navy); text-decoration: none; transition: all 0.15s; cursor: pointer; }
.ar-share__links a:hover { background: var(--vd-navy); color: var(--vd-cream); border-color: var(--vd-navy); }

.ar-author-card { margin: 48px 0; padding: 40px 36px; background: var(--vd-navy); color: var(--vd-cream); display: grid; grid-template-columns: 88px 1fr auto; gap: 24px; align-items: center; }
.ar-author-card__avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; filter: grayscale(1) contrast(1.05); background: var(--vd-navy-deep); display: flex; align-items: center; justify-content: center; font-family: var(--vd-serif); font-style: italic; color: var(--vd-cream); font-size: 32px; }
.ar-author-card__body { color: var(--vd-cream); }
.ar-author-card .eyebrow { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vd-gold-light); margin-bottom: 6px; }
.ar-author-card .name { font-family: var(--vd-serif); font-style: italic; font-size: 22px; color: var(--vd-cream); margin-bottom: 4px; }
.ar-author-card .role { font-family: var(--vd-sans); font-size: 13px; color: rgba(245,239,228,0.7); line-height: 1.5; }
.ar-author-card .vd-btn { background: var(--vd-gold); color: var(--vd-navy); padding: 14px 22px; font-family: var(--vd-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.ar-author-card .vd-btn:hover { background: var(--vd-gold-light); }

.ar-related { background: var(--vd-bone); padding: 80px 0 96px; border-top: 1px solid var(--vd-line); }
.ar-related__inner { max-width: var(--vd-max); margin: 0 auto; padding: 0 var(--vd-gutter); }
.ar-related__head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 24px; border-bottom: 1px solid var(--vd-line); margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.ar-related__head h3 { font-family: var(--vd-serif); font-weight: 400; font-size: 32px; letter-spacing: -0.015em; color: var(--vd-navy); margin: 0; }
.ar-related__head h3 em { font-style: italic; }
.ar-related__head a { font-family: var(--vd-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--vd-navy); text-decoration: none; }
.ar-related__head a:hover { color: var(--vd-gold); }
.ar-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }

.ar-cta { background: var(--vd-paper); padding: 96px 0; text-align: center; border-top: 1px solid var(--vd-line); }
.ar-cta__inner { max-width: 720px; margin: 0 auto; padding: 0 var(--vd-gutter); }
.ar-cta h2 { font-family: var(--vd-serif); font-weight: 400; font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.02em; line-height: 1.05; color: var(--vd-navy); margin: 16px 0 24px; text-wrap: balance; }
.ar-cta h2 em { font-style: italic; color: var(--vd-gold); }
.ar-cta p { font-family: var(--vd-serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--vd-stone); max-width: 52ch; margin: 0 auto 32px; }

@media (max-width: 880px) {
  .ar-header { padding: 56px 0 40px; }
  .ar-feature { margin-bottom: 48px; }
  .ar-body { padding-bottom: 64px; }
  .vd-prose { font-size: 18px; line-height: 1.65; }
  .vd-prose figure, .vd-prose .wp-block-image, .vd-prose .wp-block-embed, .vd-prose iframe { margin: 40px 0; }
  .vd-prose .wp-block-pullquote { margin: 56px 0; font-size: 26px; }
  .vd-prose blockquote { margin: 40px 0; font-size: 22px; padding: 20px 24px; }
  .vd-prose figure.alignwide, .vd-prose .wp-block-image.alignwide { margin: 40px 0; }
  .ar-author-card { grid-template-columns: 1fr; text-align: left; }
  .ar-related__grid { grid-template-columns: 1fr; }
}

/* ============================== Mobile + skip-link ============================== */
.vd-skip { position:absolute; left:-9999px; top:0; }
.vd-skip:focus { position:fixed; left:8px; top:8px; background:var(--vd-navy); color:var(--vd-cream); padding:8px 14px; z-index:200; font-family:var(--vd-sans); font-size:13px; }
.vd-menu-toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.vd-menu-toggle span { display:block; width:22px; height:2px; background:var(--vd-navy); margin:4px 0; transition:all 0.2s; }

@media (max-width: 900px) {
  .vd-nav { display:none; position:absolute; top:100%; left:0; right:0; background:var(--vd-paper); border-bottom:1px solid var(--vd-line); padding:24px var(--vd-gutter); flex-direction:column; gap:20px; align-items:flex-start; }
  .vd-nav.is-open { display:flex; }
  .vd-menu-toggle { display:block; }
  .vd-header__cta .vd-lang { display:none; }
  .vd-footer__grid { grid-template-columns:1fr 1fr; gap:32px; }
  .vd-footer__bottom { flex-direction:column; gap:12px; align-items:flex-start; }
}
