/* Vitrine: Cream + Lime palette
   Background: warm cream | Text: charcoal | Accent: Neovaa lime */

:root {
  --cream: #faf7f2;
  --cream-deep: #f2ede4;
  --cream-line: #e6dfd2;
  --charcoal: #1a1a1a;
  --charcoal-soft: #4a4a4a;
  --charcoal-mute: #8a8a8a;
  --lime: #d0ec38;
  --lime-deep: #b8d420;
  --lime-soft: #e8f5a6;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(26,26,26,0.04), 0 1px 3px rgba(26,26,26,0.06);
  --shadow-md: 0 4px 12px rgba(26,26,26,0.06), 0 2px 6px rgba(26,26,26,0.04);
  --shadow-lg: 0 12px 36px rgba(26,26,26,0.08), 0 4px 12px rgba(26,26,26,0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ───────────────────────────────────────── */
.vt-shell { min-height: 100vh; display: flex; flex-direction: column; }
.vt-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) {
  .vt-container { padding: 0 18px; }
}

/* ── Top bar ──────────────────────────────────────── */
.vt-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-line);
}
.vt-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.vt-brand {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
}
.vt-brand .dot { color: var(--lime-deep); }
.vt-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.vt-nav a { color: var(--charcoal-soft); transition: color .2s; }
.vt-nav a:hover { color: var(--charcoal); }
.vt-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--lime); color: var(--charcoal);
  font-weight: 600; font-size: 13px;
  border: 1px solid var(--lime-deep);
  transition: transform .15s, box-shadow .2s;
  cursor: pointer;
}
.vt-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.vt-cta.lg { padding: 14px 26px; font-size: 15px; }
@media (max-width: 720px) {
  .vt-nav { display: none; }
  .vt-topbar-inner { height: 56px; }
  .vt-cta { padding: 8px 14px; font-size: 12px; }
}

/* ── Hero ─────────────────────────────────────────── */
.vt-hero { padding: 88px 0 56px; }
.vt-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 900px;
}
.vt-hero h1 em {
  font-style: italic;
  background: linear-gradient(180deg, transparent 65%, var(--lime-soft) 65%);
  padding: 0 4px;
}
.vt-hero p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 640px;
  margin: 0 0 36px;
}
.vt-hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
@media (max-width: 640px) {
  .vt-hero { padding: 56px 0 36px; }
  .vt-hero p { font-size: 16px; }
}

/* ── Gallery grid ─────────────────────────────────── */
.vt-section { padding: 48px 0 96px; }
.vt-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px;
}
.vt-section-head h2 {
  font-family: var(--serif); font-size: 32px; font-weight: 500;
  letter-spacing: -0.01em; margin: 0;
}
.vt-section-head .meta { color: var(--charcoal-mute); font-size: 14px; }
.vt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.vt-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.vt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.vt-card-media {
  aspect-ratio: 4 / 3;
  background: var(--white);
  overflow: hidden;
  position: relative;
  padding: 8% 10%;
  box-sizing: border-box;
}
.vt-card-media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s;
}
.vt-card:hover .vt-card-media img { transform: scale(1.04); }
.vt-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.vt-card-tagline { font-size: 12px; color: var(--charcoal-mute); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.vt-card-title { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 0 0 6px; letter-spacing: -0.01em; }
.vt-card-price { font-size: 15px; color: var(--charcoal-soft); margin-bottom: 16px; }
.vt-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.vt-tag {
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: var(--cream); border: 1px solid var(--cream-line);
  color: var(--charcoal-soft);
}
.vt-tag.lime { background: var(--lime-soft); border-color: var(--lime); color: var(--charcoal); }

/* ── How it works ─────────────────────────────────── */
.vt-how {
  padding: 104px 0 112px;
  background: var(--white);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.vt-how-lede {
  max-width: 820px;
  margin: 0 0 72px;
}
.vt-how-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime-soft);
}
.vt-how-lede h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.vt-how-lede p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin: 0;
}
.vt-how-banner {
  position: relative;
  margin: 0 0 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 21 / 9;
  background: var(--cream-deep);
}
.vt-how-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vt-how-banner-overlay {
  position: absolute;
  left: 24px;
  bottom: 22px;
  background: rgba(26, 26, 26, 0.82);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
}
.vt-how-banner-overlay span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 10px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .vt-how-banner { aspect-ratio: 4 / 3; margin-bottom: 40px; }
  .vt-how-banner-overlay { left: 14px; bottom: 14px; font-size: 12px; padding: 8px 14px; }
}

.vt-how-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lime-soft);
  border: 1px solid var(--lime);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.vt-how-icon svg { width: 26px; height: 26px; }

.vt-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .vt-how { padding: 72px 0 80px; }
  .vt-how-lede { margin-bottom: 48px; }
  .vt-how-steps { grid-template-columns: 1fr; gap: 36px; }
}
.vt-how-block {
  position: relative;
  padding-top: 8px;
}
.vt-how-step-n {
  display: block;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}
.vt-how-step-n::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--lime);
  margin-top: 10px;
  border-radius: 2px;
}
.vt-how-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.vt-how-block p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin: 0;
}
.vt-how-fine {
  border-top: 1px solid var(--cream-line);
  padding-top: 28px;
  font-size: 14px;
  color: var(--charcoal-mute);
  max-width: 680px;
  margin: 0;
}

/* Scroll reveal */
.vt-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.vt-reveal.vt-revealed {
  opacity: 1;
  transform: none;
}
.vt-how-steps .vt-reveal:nth-child(2) { transition-delay: 0.12s; }
.vt-how-steps .vt-reveal:nth-child(3) { transition-delay: 0.24s; }

/* Smooth anchor scroll for #products / #how */
html { scroll-behavior: smooth; }

/* ── Footer ───────────────────────────────────────── */
.vt-footer {
  border-top: 1px solid var(--cream-line);
  padding: 32px 0;
  margin-top: auto;
  font-size: 13px;
  color: var(--charcoal-mute);
}
.vt-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) {
  .vt-footer { padding: 24px 0; font-size: 12px; }
  .vt-footer-inner { flex-direction: column; text-align: center; gap: 8px; }
  .vt-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .vt-section-head h2 { font-size: 26px; }
}

/* ── Product page ─────────────────────────────────── */
/* Faux store header (no Neovaa branding) */
.vt-fauxstore {
  background: var(--white);
  border-bottom: 1px solid var(--cream-line);
}
.vt-fauxstore-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; font-size: 13px;
}
/* Product page brand mirrors the gallery brand (serif + lime dot) to keep
   a single Neovaa DA across the showcase + product demo pages. */
.vt-fauxstore-brand {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
  transition: opacity .15s;
}
.vt-fauxstore-brand .dot { color: var(--lime-deep); }
.vt-fauxstore-brand:hover { opacity: 0.75; }
.vt-fauxstore-nav { display: flex; gap: 22px; color: var(--charcoal-soft); }
.vt-fauxstore-nav a:hover { color: var(--charcoal); }
.vt-fauxstore-icons { display: flex; gap: 18px; color: var(--charcoal-soft); align-items: center; }
.vt-fauxstore-icons svg { width: 20px; height: 20px; display: block; cursor: pointer; transition: color .15s; }
.vt-fauxstore-icons svg:hover { color: var(--charcoal); }

@media (max-width: 780px) {
  .vt-fauxstore-nav { display: none; }
}
@media (max-width: 560px) {
  .vt-fauxstore-brand { font-size: 13px; }
  .vt-fauxstore-inner { height: 52px; }
  .vt-preview-toggle { padding: 6px 11px; font-size: 10px; letter-spacing: 0.06em; }
  .vt-breadcrumb { font-size: 11px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
}

.vt-breadcrumb { padding-top: 18px; padding-bottom: 6px; font-size: 12px; color: var(--charcoal-mute); }
.vt-breadcrumb a { color: var(--charcoal-soft); }
.vt-breadcrumb a:hover { color: var(--charcoal); }
.vt-breadcrumb .sep { margin: 0 8px; }

/* Product page uses a wider container so the 3D viewer gets hero treatment */
body.vt-product-page .vt-container { max-width: 1400px; }

.vt-product {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 56px;
  padding: 18px 0 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .vt-product { grid-template-columns: 1fr; gap: 28px; }
}

/* Viewer column. Deliberately flat. The iframe sits on the page like a
   product photo would, no bezel, no shadow, no device chrome. */
.vt-viewer-wrap {
  position: relative;
  background: transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.vt-viewer-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 980px) {
  .vt-viewer-wrap { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .vt-viewer-wrap { aspect-ratio: 1 / 1; }
  .vt-info h1 { font-size: 26px; }
  .vt-info-price { font-size: 18px; }
  .vt-info-desc { font-size: 14px; }
  body.vt-product-page .vt-container { padding: 0 16px; }
}

/* Phone Preview toggle: subtle outlined pill, dark on active */
.vt-preview-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.vt-preview-toggle:hover {
  background: var(--charcoal);
  color: var(--white);
}
.vt-preview-toggle[aria-pressed="true"] {
  background: var(--charcoal);
  color: var(--white);
}
.vt-preview-toggle svg {
  width: 12px;
  height: 12px;
  opacity: 0.75;
}

/* Phone preview mode: fixed-size device frame centered on a dark backdrop.
   Content scrolls INSIDE the phone, not the whole page. */
body.vt-phone-preview {
  background: #111;
  overflow: hidden;
  height: 100vh;
  margin: 0;
}
body.vt-phone-preview .vt-shell {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, calc(100vw - 48px));
  height: min(860px, calc(100vh - 48px));
  border-radius: 44px;
  overflow: hidden;
  background: var(--cream);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 11px #0a0a0a,
    0 0 0 12px #2a2a2a;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 520px) {
  body.vt-phone-preview .vt-shell {
    border-radius: 28px;
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.6),
      0 0 0 6px #0a0a0a,
      0 0 0 7px #2a2a2a;
  }
  body.vt-phone-preview .vt-shell::before {
    width: 92px;
    height: 20px;
  }
}
/* Notch */
body.vt-phone-preview .vt-shell::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 128px; height: 26px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  z-index: 100;
}
/* Scrollable inner surface (product-root). Scrollbar hidden for clean look. */
body.vt-phone-preview #vt-product-root {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.vt-phone-preview #vt-product-root::-webkit-scrollbar {
  display: none;
}
/* Constrain container widths inside the phone. Generous side padding so
   text sits well away from the bezel + outer phone edge. */
body.vt-phone-preview .vt-container { max-width: 100%; padding: 0 32px; }
body.vt-phone-preview .vt-fauxstore {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-line);
}
body.vt-phone-preview .vt-fauxstore-inner {
  height: 62px;
  padding-top: 30px;
  padding-bottom: 8px;
  gap: 10px;
}
body.vt-phone-preview .vt-fauxstore-brand {
  font-size: 15px;
  letter-spacing: -0.01em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.vt-phone-preview .vt-fauxstore-nav { display: none; }
body.vt-phone-preview .vt-preview-toggle {
  padding: 7px 13px;
  font-size: 9.5px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
body.vt-phone-preview .vt-preview-toggle svg { width: 10px; height: 10px; }
body.vt-phone-preview .vt-breadcrumb { font-size: 11px; padding-top: 10px; padding-bottom: 4px; }
/* Force stack layout inside phone */
body.vt-phone-preview .vt-product {
  grid-template-columns: 1fr !important;
  gap: 20px;
  padding: 8px 0 24px;
}
body.vt-phone-preview .vt-viewer-wrap { aspect-ratio: 4 / 5; border-radius: 0; }
body.vt-phone-preview .vt-info { padding: 4px 2px; }
body.vt-phone-preview .vt-info h1 { font-size: 24px; }
body.vt-phone-preview .vt-info-price { font-size: 18px; }
/* Callout inside phone: force column stack. Media queries don't kick in here
   because the outer viewport is wide, so we override unconditionally when
   body.vt-phone-preview is active. */
body.vt-phone-preview .vt-neovaa-callout { padding: 20px 0 24px; }
body.vt-phone-preview .vt-callout-inner {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 18px 20px 18px 26px !important;
}
body.vt-phone-preview .vt-callout-title {
  font-size: 18px !important;
  line-height: 1.25 !important;
}
body.vt-phone-preview .vt-callout-sub { font-size: 12.5px; }
body.vt-phone-preview .vt-callout-cta {
  align-self: stretch;
  justify-content: center;
  padding: 11px 18px;
  font-size: 12px;
}

/* Specs + buttons inside phone */
body.vt-phone-preview .vt-add-to-cart { padding: 13px 18px; font-size: 14px; }
body.vt-phone-preview .vt-secondary-btn { padding: 11px 18px; font-size: 13px; }
body.vt-phone-preview .vt-specs { font-size: 12px; }

/* Hide outer footer (it sits outside the phone) */
body.vt-phone-preview .vt-footer { display: none; }

@media (max-width: 520px) {
  .vt-preview-toggle { display: none; }
  body.vt-phone-preview .vt-preview-toggle { display: inline-flex; }
}

/* Info column (mock e-commerce) */
.vt-info { padding: 8px 4px; }
.vt-info-tagline {
  font-size: 12px; color: var(--charcoal-mute); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.vt-info h1 {
  font-family: var(--serif); font-size: 36px; font-weight: 500;
  margin: 0 0 12px; line-height: 1.1; letter-spacing: -0.01em;
}
.vt-info-price { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.vt-info-stock { font-size: 13px; color: #2e8a4a; margin-bottom: 22px; }
.vt-info-stock::before { content: "● "; }
.vt-info-desc { font-size: 15px; line-height: 1.6; color: var(--charcoal-soft); margin-bottom: 26px; }

.vt-info-block { margin-bottom: 22px; }
.vt-info-block-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal-mute); margin-bottom: 10px; }

.vt-swatch-groups { display: flex; flex-direction: column; gap: 18px; }
.vt-swatch-groups .vt-info-block { margin-bottom: 0; }

.vt-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.vt-swatch {
  appearance: none;
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--cream-line);
  cursor: pointer;
  padding: 0;
  transition: transform .15s, box-shadow .2s;
  background-size: cover; background-position: center;
}
.vt-swatch:hover { transform: scale(1.08); }
.vt-swatch.active { box-shadow: 0 0 0 2px var(--charcoal); }
.vt-swatch-current { color: var(--charcoal); font-weight: 500; text-transform: none; letter-spacing: 0; }

.vt-add-to-cart {
  width: 100%;
  padding: 16px 22px;
  background: var(--charcoal);
  color: var(--cream);
  border: 0; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: transform .15s, background .2s;
  margin-top: 32px;
  margin-bottom: 12px;
}
.vt-add-to-cart:hover { background: #2a2a2a; transform: translateY(-1px); }

.vt-secondary-btn {
  width: 100%;
  padding: 14px 22px;
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--cream-line);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: border-color .2s;
}
.vt-secondary-btn:hover { border-color: var(--charcoal); }

.vt-specs {
  margin-top: 22px;
  border-top: 1px solid var(--cream-line);
  padding-top: 22px;
  font-size: 13px;
}
.vt-specs dt { color: var(--charcoal-mute); margin-bottom: 2px; }
.vt-specs dd { margin: 0 0 12px; color: var(--charcoal); }

/* Neovaa attribution callout (replaces the former lime band).
   A subtle white card with a thin lime accent bar on the left. */
.vt-neovaa-callout {
  padding: 32px 0 56px;
}
.vt-callout-inner {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 28px 32px 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
}
.vt-callout-inner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--lime);
}
.vt-callout-body { flex: 1; min-width: 0; }
.vt-callout-kicker {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-mute);
  margin-bottom: 6px;
}
.vt-callout-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.vt-callout-title em {
  font-style: italic;
  background: linear-gradient(180deg, transparent 65%, var(--lime-soft) 65%);
  padding: 0 3px;
}
.vt-callout-sub {
  font-size: 14px;
  color: var(--charcoal-soft);
  margin: 0;
}
.vt-callout-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.vt-callout-cta:hover { background: #2d2d2d; transform: translateY(-1px); }
.vt-callout-cta::after { content: "→"; margin-left: 2px; }

@media (max-width: 720px) {
  .vt-callout-inner { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 22px 24px 30px; }
  .vt-callout-title { font-size: 19px; }
}

/* ── Loading state ────────────────────────────────── */
.vt-loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 60vh; color: var(--charcoal-mute); font-size: 14px;
}
