/* =========================================================================
   Vibration Damp Lab — design system
   Wasatch-wellness palette: parchment cream + deep sky navy + soft blue
   mist + aspen sage + canyon clay. Spectral (display serif) paired with
   Mulish (body sans) via Google Fonts. Calm clinical-comfort aesthetic —
   rounded cards, diffuse tinted shadows, horizontal comfort dials instead
   of circular gauges. Hand-written, no framework.
   ========================================================================= */

:root {
  --vdl-ink:        #223140;
  --vdl-body:       #4c5f6d;
  --vdl-body-soft:  #6c7f8c;
  --vdl-cream:      #f8f5ef;
  --vdl-cream-deep: #f0ece2;
  --vdl-white:      #ffffff;
  --vdl-mist:       #e7eef2;
  --vdl-mist-deep:  #d7e3ea;
  --vdl-sky:        #4f7f9c;
  --vdl-sky-light:  #6fa0bd;
  --vdl-sky-deep:   #223a4a;
  --vdl-sky-soft:   #c3dae4;
  --vdl-sage:       #7e9b7b;
  --vdl-sage-deep:  #547a55;
  --vdl-clay:       #c17d49;
  --vdl-clay-deep:  #a4632f;
  --vdl-line:       rgba(34, 58, 74, 0.12);
  --vdl-line-strong: rgba(34, 58, 74, 0.22);

  --vdl-font-display: "Spectral", Georgia, "Iowan Old Style", "Times New Roman", serif;
  --vdl-font-body: "Mulish", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --vdl-wrap-w: 1180px;
  --vdl-radius-lg: 22px;
  --vdl-radius: 16px;
  --vdl-radius-sm: 10px;
  --vdl-shadow-sm: 0 4px 16px rgba(34, 58, 74, 0.08);
  --vdl-shadow-md: 0 16px 40px rgba(34, 58, 74, 0.12);
  --vdl-shadow-lift: 0 22px 48px rgba(79, 127, 156, 0.18);
  --vdl-ease: 260ms cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.vdl-body {
  margin: 0;
  font-family: var(--vdl-font-body);
  color: var(--vdl-body);
  background: var(--vdl-cream);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--vdl-font-display);
  color: var(--vdl-ink);
  line-height: 1.22;
  margin: 0 0 0.55em;
  font-weight: 600;
}
h1 { font-weight: 700; }
p { margin: 0 0 1em; color: var(--vdl-body); }
address { font-style: normal; }
strong { color: var(--vdl-ink); }

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

.vdl-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--vdl-clay);
  color: var(--vdl-white);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.vdl-skip:focus { left: 0; top: 0; }

.vdl-wrap {
  width: 100%;
  max-width: var(--vdl-wrap-w);
  margin: 0 auto;
  padding: 0 26px;
}

.vdl-center { text-align: center; }

/* ---------- Buttons ---------- */
.vdl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9em 1.9em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: transform var(--vdl-ease), box-shadow var(--vdl-ease), background var(--vdl-ease), color var(--vdl-ease), border-color var(--vdl-ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.vdl-btn--primary {
  background: var(--vdl-clay);
  color: var(--vdl-white);
  box-shadow: 0 12px 26px rgba(193, 125, 73, 0.32);
}
.vdl-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(193, 125, 73, 0.4); background: var(--vdl-clay-deep); }
.vdl-btn--ghost {
  background: transparent;
  color: var(--vdl-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.vdl-btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.8); }
.vdl-btn--panel {
  background: var(--vdl-white);
  color: var(--vdl-sky-deep);
  border-color: var(--vdl-line-strong);
}
.vdl-btn--panel:hover { border-color: var(--vdl-sky); color: var(--vdl-sky-deep); transform: translateY(-2px); box-shadow: var(--vdl-shadow-sm); }
.vdl-btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.vdl-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vdl-line);
}
.vdl-header__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 26px;
}
.vdl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.vdl-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--vdl-sky-deep);
  color: var(--vdl-cream);
  font-family: var(--vdl-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.vdl-brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.vdl-brand__name { font-family: var(--vdl-font-display); font-weight: 700; font-size: 1.08rem; color: var(--vdl-ink); }
.vdl-brand__tag { font-size: 0.76rem; color: var(--vdl-body-soft); letter-spacing: 0.03em; text-transform: uppercase; }

.vdl-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--vdl-body-soft);
}
.vdl-header__phone { color: var(--vdl-sky-deep); font-weight: 700; }
.vdl-header__pipe { width: 1px; height: 16px; background: var(--vdl-line-strong); }

.vdl-header__cta { padding: 0.72em 1.5em; font-size: 0.88rem; }

.vdl-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--vdl-white);
  border: 1px solid var(--vdl-line-strong);
  border-radius: 999px;
  padding: 0.55em 1em;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--vdl-ink);
}
.vdl-toggle__mark { width: 16px; height: 10px; position: relative; }
.vdl-toggle__mark::before, .vdl-toggle__mark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--vdl-ink);
  transition: transform var(--vdl-ease);
}
.vdl-toggle__mark::before { top: 0; }
.vdl-toggle__mark::after { bottom: 0; }
.vdl-toggle.is-active .vdl-toggle__mark::before { transform: translateY(4px) rotate(45deg); }
.vdl-toggle.is-active .vdl-toggle__mark::after { transform: translateY(-4px) rotate(-45deg); }

.vdl-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--vdl-cream);
  transition: max-height var(--vdl-ease);
}
.vdl-panel.is-open { max-height: 640px; }
.vdl-panel__nav { padding: 8px 26px 26px; }
.vdl-panel__list { display: flex; flex-direction: column; }
.vdl-panel__item a {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid var(--vdl-line);
  font-weight: 600;
  color: var(--vdl-ink);
}
.vdl-panel__item.is-active a { color: var(--vdl-clay-deep); }
.vdl-panel__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }
.vdl-panel__foot a:first-child { font-weight: 700; color: var(--vdl-sky-deep); }

@media (max-width: 980px) {
  .vdl-header__meta, .vdl-header__cta { display: none; }
  .vdl-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.vdl-hero { padding: 56px 0 68px; position: relative; overflow: hidden; }
.vdl-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 420px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(79, 127, 156, 0.14), transparent 70%);
  pointer-events: none;
}
.vdl-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.vdl-hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vdl-sage-deep);
  margin-bottom: 16px;
}
.vdl-hero h1 { font-size: clamp(2.1rem, 3.6vw, 3.05rem); max-width: 15ch; }
.vdl-hero__lede { font-size: 1.08rem; max-width: 46ch; color: var(--vdl-body); }
.vdl-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.vdl-hero__actions .vdl-btn--ghost { color: var(--vdl-sky-deep); border-color: var(--vdl-line-strong); }
.vdl-hero__actions .vdl-btn--ghost:hover { background: var(--vdl-mist); border-color: var(--vdl-sky); }

.vdl-hero__panel {
  background: var(--vdl-white);
  border-radius: var(--vdl-radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--vdl-shadow-lift);
  border: 1px solid var(--vdl-line);
}
.vdl-hero__panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--vdl-ink);
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.vdl-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vdl-sage-deep);
}
.vdl-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vdl-sage);
  box-shadow: 0 0 0 4px rgba(126, 155, 123, 0.25);
}

/* Comfort dials — horizontal shock-transfer meters, replaces circular gauges */
.vdl-dial-stack { display: flex; flex-direction: column; gap: 16px; }
.vdl-dial__row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; font-size: 0.9rem; }
.vdl-dial__row span:first-child { color: var(--vdl-body-soft); }
.vdl-dial__row strong { color: var(--vdl-ink); font-family: var(--vdl-font-display); font-size: 1.02rem; }
.vdl-dial__track { height: 10px; border-radius: 999px; background: var(--vdl-mist-deep); overflow: hidden; }
.vdl-dial__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--vdl-sage), var(--vdl-sky)); }
.vdl-dial__fill--warn { background: linear-gradient(90deg, var(--vdl-clay), #d99a5e); }
/* Fills always carry a real inline width (works with no JS at all).
   Once .js-on is present, collapse to 0 and let .is-playing transition
   it back in when the stack scrolls into view. */
.js-on .vdl-dial-stack .vdl-dial__fill { width: 0 !important; transition: width 0.9s cubic-bezier(0.33, 1, 0.68, 1) 0.1s; }
.js-on .vdl-dial-stack.is-playing .vdl-dial__fill { width: var(--vdl-fill, 100%) !important; }
@media (prefers-reduced-motion: reduce) {
  .js-on .vdl-dial-stack .vdl-dial__fill { width: var(--vdl-fill, 100%) !important; transition: none; }
}

/* ---------- Facts strip ---------- */
.vdl-facts { padding: 6px 0 44px; }
.vdl-facts__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--vdl-sky-deep);
  border-radius: var(--vdl-radius-lg);
  padding: 30px 20px;
}
.vdl-fact { text-align: center; color: var(--vdl-cream); }
.vdl-fact__num { display: block; font-family: var(--vdl-font-display); font-size: 1.9rem; font-weight: 700; color: var(--vdl-white); }
.vdl-fact__label { font-size: 0.82rem; color: var(--vdl-sky-soft); letter-spacing: 0.02em; }

/* ---------- Sections ---------- */
.vdl-section { padding: 64px 0; }
.vdl-section--alt { background: var(--vdl-mist); }
.vdl-section__head { max-width: 640px; margin-bottom: 40px; }
.vdl-section__head.vdl-center { margin-left: auto; margin-right: auto; }
.vdl-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vdl-sky);
  margin-bottom: 10px;
}

.vdl-grid { display: grid; gap: 24px; }
.vdl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vdl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vdl-grid--4 { grid-template-columns: repeat(4, 1fr); }

.vdl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }

/* ---------- Cards ---------- */
.vdl-card {
  background: var(--vdl-white);
  border: 1px solid var(--vdl-line);
  border-radius: var(--vdl-radius);
  padding: 28px 26px;
  box-shadow: var(--vdl-shadow-sm);
}
.vdl-card h3 { font-size: 1.12rem; margin-bottom: 0.4em; }
.vdl-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--vdl-mist);
  color: var(--vdl-sky-deep);
  font-family: var(--vdl-font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.vdl-card__link { display: inline-block; margin-top: 6px; font-weight: 700; color: var(--vdl-sky-deep); }
.vdl-card__link:hover { color: var(--vdl-clay-deep); }

/* ---------- Steps / process ---------- */
.vdl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: vdl-step; }
.vdl-steps__item {
  position: relative;
  padding: 30px 22px 24px;
  background: var(--vdl-white);
  border-radius: var(--vdl-radius);
  border: 1px solid var(--vdl-line);
}
.vdl-steps__num {
  counter-increment: vdl-step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--vdl-sage);
  color: var(--vdl-white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.vdl-steps__num::before { content: counter(vdl-step); }

/* ---------- Testimonials ---------- */
.vdl-quote {
  background: var(--vdl-white);
  border-radius: var(--vdl-radius);
  padding: 26px 24px;
  border: 1px solid var(--vdl-line);
}
.vdl-quote__stars { color: var(--vdl-clay); letter-spacing: 2px; display: block; margin-bottom: 10px; }
.vdl-quote__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.vdl-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vdl-sky-deep);
  color: var(--vdl-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.vdl-quote__author div span { display: block; font-size: 0.82rem; color: var(--vdl-body-soft); }

/* ---------- Brand tiles ---------- */
.vdl-brand-tile {
  background: var(--vdl-white);
  border: 1px solid var(--vdl-line);
  border-radius: var(--vdl-radius);
  padding: 22px;
  text-align: center;
}
.vdl-brand-tile__mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--vdl-mist);
  color: var(--vdl-sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vdl-font-display);
  font-weight: 700;
  margin: 0 auto 12px;
}
.vdl-brand-tile strong { display: block; margin-bottom: 4px; }
.vdl-brand-tile span { font-size: 0.84rem; color: var(--vdl-body-soft); }

/* ---------- CTA band ---------- */
.vdl-cta { background: var(--vdl-sky-deep); padding: 62px 0; }
.vdl-cta__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.vdl-cta h2 { color: var(--vdl-white); }
.vdl-cta p { color: var(--vdl-sky-soft); }
.vdl-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

/* ---------- Interior page intro ---------- */
.vdl-intro { padding: 52px 0 44px; }
.vdl-crumb {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vdl-sky);
  margin-bottom: 14px;
}
.vdl-intro h1 { font-size: clamp(1.9rem, 3vw, 2.5rem); max-width: 20ch; }
.vdl-lede { font-size: 1.05rem; max-width: 62ch; color: var(--vdl-body); }

/* ---------- Pricing ---------- */
.vdl-plan { display: flex; flex-direction: column; text-align: left; }
.vdl-plan--featured { border-color: var(--vdl-sky); box-shadow: var(--vdl-shadow-md); position: relative; }
.vdl-plan--featured::before {
  content: "Most Requested";
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--vdl-clay);
  color: var(--vdl-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 999px;
}
.vdl-plan__price { font-family: var(--vdl-font-display); font-size: 2.1rem; font-weight: 700; color: var(--vdl-ink); margin: 10px 0 14px; }
.vdl-plan__price span { font-size: 0.95rem; font-weight: 400; color: var(--vdl-body-soft); font-family: var(--vdl-font-body); }
.vdl-plan ul { margin: 16px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.vdl-plan ul li { position: relative; padding-left: 22px; font-size: 0.94rem; }
.vdl-plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--vdl-sage-deep); font-weight: 700; }

.vdl-table-wrap { overflow-x: auto; background: var(--vdl-white); border-radius: var(--vdl-radius); border: 1px solid var(--vdl-line); }
.vdl-table { width: 100%; border-collapse: collapse; }
.vdl-table th, .vdl-table td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--vdl-line); }
.vdl-table th { background: var(--vdl-mist); font-family: var(--vdl-font-display); font-weight: 600; color: var(--vdl-ink); }
.vdl-table tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.vdl-faq {
  background: var(--vdl-white);
  border: 1px solid var(--vdl-line);
  border-radius: var(--vdl-radius);
  padding: 6px 22px;
  margin-bottom: 14px;
}
.vdl-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 0;
  font-weight: 700;
  color: var(--vdl-ink);
  position: relative;
}
.vdl-faq summary::-webkit-details-marker { display: none; }
.vdl-faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 16px;
  font-size: 1.3rem;
  color: var(--vdl-sky);
  transition: transform var(--vdl-ease);
}
.vdl-faq[open] summary::after { transform: rotate(45deg); }
.vdl-faq p { padding-bottom: 18px; margin: 0; }

/* ---------- Forms ---------- */
.vdl-form {
  background: var(--vdl-white);
  border: 1px solid var(--vdl-line);
  border-radius: var(--vdl-radius-lg);
  padding: 30px;
}
.vdl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vdl-form__field { margin-bottom: 16px; }
.vdl-form__field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--vdl-ink); margin-bottom: 6px; }
.vdl-form__field input, .vdl-form__field select, .vdl-form__field textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border-radius: var(--vdl-radius-sm);
  border: 1px solid var(--vdl-line-strong);
  background: var(--vdl-cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--vdl-ink);
}
.vdl-form__field input:focus, .vdl-form__field select:focus, .vdl-form__field textarea:focus {
  outline: none;
  border-color: var(--vdl-sky);
  background: var(--vdl-white);
}
.vdl-form__note { font-size: 0.85rem; color: var(--vdl-body-soft); }

.vdl-list-check { display: flex; flex-direction: column; gap: 11px; margin: 18px 0; }
.vdl-list-check li { position: relative; padding-left: 26px; }
.vdl-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--vdl-sage);
}

/* ---------- Locate panel (decorative, no external map) ---------- */
.vdl-locate {
  position: relative;
  border-radius: var(--vdl-radius-lg);
  background: linear-gradient(160deg, var(--vdl-sky-deep), #16283570);
  background-color: var(--vdl-sky-deep);
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--vdl-cream);
}
.vdl-locate--lg { min-height: 300px; }
.vdl-locate__peaks {
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background:
    linear-gradient(115deg, transparent 48%, rgba(255,255,255,0.06) 49%, transparent 51%),
    linear-gradient(245deg, transparent 58%, rgba(255,255,255,0.08) 59%, transparent 62%);
  clip-path: polygon(0 100%, 0 62%, 14% 30%, 26% 52%, 38% 18%, 52% 48%, 64% 26%, 78% 55%, 90% 34%, 100% 58%, 100% 100%);
  background-color: rgba(255, 255, 255, 0.05);
}
.vdl-locate__pin {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--vdl-clay);
  transform: rotate(-45deg);
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px rgba(193, 125, 73, 0.22);
}
.vdl-locate__label { font-weight: 700; letter-spacing: 0.02em; position: relative; }
.vdl-locate__coords { font-size: 0.82rem; color: var(--vdl-sky-soft); position: relative; margin-top: 4px; }

/* ---------- Team ---------- */
.vdl-person__photo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--vdl-sky-deep);
  color: var(--vdl-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vdl-font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.vdl-person__role { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--vdl-sage-deep); margin-bottom: 4px; }

/* ---------- Blog ---------- */
.vdl-post__meta { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--vdl-clay-deep); margin-bottom: 8px; }
.vdl-article { max-width: 740px; margin: 0 auto; }
.vdl-article h2 { margin-top: 1.6em; font-size: 1.4rem; }
.vdl-article blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  border-left: 4px solid var(--vdl-sage);
  background: var(--vdl-mist);
  border-radius: 0 var(--vdl-radius-sm) var(--vdl-radius-sm) 0;
  font-family: var(--vdl-font-display);
  font-size: 1.05rem;
  color: var(--vdl-ink);
}

/* ---------- Error page ---------- */
.vdl-error { padding: 96px 0; text-align: center; }
.vdl-error__code {
  display: block;
  font-family: var(--vdl-font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--vdl-sky-soft);
  line-height: 1;
  margin-bottom: 10px;
}

/* ---------- Footer ---------- */
.vdl-footer { background: var(--vdl-sky-deep); color: var(--vdl-sky-soft); padding: 60px 0 0; margin-top: 40px; }
.vdl-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 46px; }
.vdl-footer h3 { color: var(--vdl-white); font-size: 0.98rem; margin-bottom: 16px; }
.vdl-footer .vdl-brand__name { color: var(--vdl-white); font-size: 1.2rem; display: block; margin-bottom: 12px; }
.vdl-footer p, .vdl-footer address { color: var(--vdl-sky-soft); font-size: 0.92rem; }
.vdl-footer a:hover { color: var(--vdl-white); }
.vdl-footer__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.vdl-footer__chips li {
  font-size: 0.76rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--vdl-sky-soft);
}
.vdl-footer__hours { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.vdl-footer__hours li { display: flex; justify-content: space-between; gap: 12px; }
.vdl-footer__links { display: flex; flex-direction: column; gap: 9px; }
.vdl-footer__links a { font-size: 0.9rem; }
.vdl-footer__base { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 20px 0; }
.vdl-footer__base-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: rgba(199, 216, 227, 0.7); }

/* ---------- Reveal on scroll (gated by .js-on so a script failure
   leaves the page fully visible) ---------- */
.js-on .vdl-rise { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-on .vdl-rise.is-shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-on .vdl-rise { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .vdl-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .vdl-split { grid-template-columns: 1fr; gap: 28px; }
  .vdl-facts__row { grid-template-columns: repeat(2, 1fr); }
  .vdl-grid--3, .vdl-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vdl-steps { grid-template-columns: repeat(2, 1fr); }
  .vdl-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .vdl-header__row { padding: 14px 20px; }
  .vdl-hero { padding: 40px 0 48px; }
  .vdl-section { padding: 48px 0; }
  .vdl-grid--2, .vdl-grid--3, .vdl-grid--4 { grid-template-columns: 1fr; }
  .vdl-steps { grid-template-columns: 1fr; }
  .vdl-form__row { grid-template-columns: 1fr; }
  .vdl-footer__grid { grid-template-columns: 1fr; }
  .vdl-plan--featured::before { left: 18px; }
  .vdl-error__code { font-size: 3.6rem; }
}
