@import './tokens.css';

/* ============================================================
   Velocity Web — Homepage redesign stylesheet
   Pairs with index.html + home.js. Isolated from styles.css
   (used by the other pages) — no shared class names.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--vw-paper);
  color: var(--vw-ink);
  font-family: var(--vw-font-display);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--vw-accent); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* Global accessible focus ring — keyboard users only */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--vw-accent);
  outline-offset: 2px;
}

/* ---------- layout helpers ---------- */
.vw-wrap { max-width: var(--vw-maxw); margin: 0 auto; padding: 0 var(--vw-gutter); }
.vw-section { padding-top: var(--vw-section); }
.vw-eyebrow { display: flex; align-items: baseline; gap: 20px; margin-bottom: 56px; }
.vw-eyebrow .idx { font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .16em; color: var(--vw-accent); }
.vw-eyebrow .lbl { font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--vw-muted); }

.mono { font-family: var(--vw-font-mono); }
.grid { display: grid; }
.grid-split { grid-template-columns: var(--cols, 1fr 1fr); }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--vw-font-display); margin: 0; }
.h1 { font-weight: 800; font-size: clamp(46px, 6.4vw, 104px); line-height: .92; letter-spacing: -.03em; }
.h2 { font-weight: 800; font-size: clamp(32px, 3.6vw, 52px); line-height: 1.02; letter-spacing: -.02em; }
.h3 { font-weight: 800; font-size: clamp(28px, 3vw, 44px); line-height: 1.03; letter-spacing: -.02em; }
.accent { color: var(--vw-accent); }
.lead { font-size: 18px; line-height: 1.55; color: var(--vw-body); }
.body { font-size: 16px; line-height: 1.6; color: var(--vw-body); }

/* ---------- nav ---------- */
.vw-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(243,241,234,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vw-hairline);
}
.vw-nav .inner {
  max-width: var(--vw-maxw); margin: 0 auto; padding: 0 var(--vw-gutter);
  height: var(--vw-nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* ---------- top utility bar ---------- */
.vw-topbar {
  background: #141414; color: var(--vw-paper);
  max-height: 38px; overflow: hidden;
  transition: max-height .4s cubic-bezier(.65,0,.35,1), opacity .3s ease;
}
.vw-nav.scrolled .vw-topbar { max-height: 0; opacity: 0; }
.vw-topbar .inner {
  max-width: var(--vw-maxw); margin: 0 auto; padding: 0 var(--vw-gutter);
  height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}
.vw-topbar .promo { display: flex; align-items: center; gap: 9px; color: #b5b1a6; overflow: hidden; text-overflow: ellipsis; }
.vw-topbar .promo .dot { width: 6px; height: 6px; background: var(--vw-accent); border-radius: 50%; animation: vwBlink 1.6s infinite; flex-shrink: 0; }
.vw-topbar .cluster { display: flex; align-items: center; gap: 26px; flex-shrink: 0; }
.vw-topbar .cluster a { text-decoration: none; color: #cfcbc0; transition: color .25s; }
.vw-topbar .cluster a:hover { color: var(--vw-accent); }
.vw-topbar .cluster a.phone { color: var(--vw-accent); font-weight: 700; transition: opacity .25s; }
.vw-topbar .cluster a.phone:hover { opacity: .75; color: var(--vw-accent); }
.vw-topbar .divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
@media (max-width: 700px) {
  .vw-topbar .res, .vw-topbar .divider { display: none; }
}

.vw-logo { text-decoration: none; color: var(--vw-ink); display: flex; align-items: center; }
.vw-logo img { height: 38px; width: auto; display: block; }
.vw-footer .vw-logo img { height: 42px; }
.vw-navlinks { display: flex; align-items: center; gap: 34px; font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.vw-navlinks a { text-decoration: none; color: var(--vw-ink); transition: color var(--vw-hover-fast); }
.vw-navlinks a:hover { color: var(--vw-accent); }
.vw-navlinks a.btn { display: inline-flex; align-items: center; gap: 9px; background: var(--vw-ink); color: var(--vw-paper); padding: 11px 18px; transition: background var(--vw-hover-btn), color var(--vw-hover-btn); }
.vw-navlinks a.btn:hover { background: var(--vw-accent); color: #fff; }

/* ---------- nav dropdown ---------- */
.vw-navlinks .has-dropdown {
  position: relative; display: flex; align-items: center;
  /* padding-bottom + matching negative margin extends the hoverable box
     down to meet the dropdown with zero gap, without shifting layout —
     otherwise the cursor crosses dead space and :hover drops before
     it reaches the menu. */
  padding-bottom: 18px; margin-bottom: -18px;
}
.vw-navlinks .has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.vw-navlinks .has-dropdown .caret { font-size: 9px; transition: transform .2s; }
.vw-navlinks .has-dropdown:hover .caret,
.vw-navlinks .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.vw-navlinks .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 4px);
  background: var(--vw-paper); border: 1px solid var(--vw-border);
  min-width: 230px; padding: 10px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 120;
}
.vw-navlinks .has-dropdown:hover .dropdown,
.vw-navlinks .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.vw-navlinks .dropdown a {
  padding: 12px 14px; text-transform: none; font-size: 13px; letter-spacing: .02em; white-space: nowrap;
}
.vw-navlinks .dropdown a:hover { background: var(--vw-panel-light); color: var(--vw-accent); }
.vw-navlinks .dropdown a.current { color: var(--vw-accent); }

/* ---------- buttons / links ---------- */
.vw-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--vw-ink); color: var(--vw-paper); font-family: var(--vw-font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 17px 28px; text-decoration: none; transition: background var(--vw-hover-btn), color var(--vw-hover-btn); }
.vw-cta:hover { background: var(--vw-accent); color: #fff; }
.vw-textlink { font-family: var(--vw-font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--vw-ink); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; border-bottom: 2px solid var(--vw-ink); padding-bottom: 6px; transition: color var(--vw-hover-fast), border-color var(--vw-hover-fast); }
.vw-textlink:hover { color: var(--vw-accent); border-color: var(--vw-accent); }
.vw-readmore { font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--vw-ink); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color var(--vw-hover-fast); }
.vw-readmore:hover { color: var(--vw-accent); }

/* ---------- image plate ---------- */
.vw-plate { background: var(--vw-plate); border: 1px solid var(--vw-border); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.vw-plate img { width: 100%; height: 100%; object-fit: cover; }
.vw-plate.contain img { object-fit: contain; }

/* ---------- work laptop video overlay ---------- */
.vw-work-video {
  position: absolute;
  object-fit: cover;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.vw-work-video.is-playing { opacity: 1; }

/* ---------- hero image crossfade slideshow ---------- */
.vw-hero-slides { position: relative; z-index: 0; }
.vw-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.2s ease;
}
.vw-hero-slide.is-active { opacity: 1; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .vw-hero-slide { transition: none; }
  .vw-topbar { transition: none; }
}

/* ---------- hero ---------- */
.vw-hero-section { padding-top: 134px; }
.vw-hero-eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.vw-helmet-icon { width: 30px; height: 30px; flex-shrink: 0; fill: var(--vw-accent); }
.vw-hero-meta { display: flex; justify-content: space-between; align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--vw-hairline); font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--vw-muted); }
.vw-dot { width: 7px; height: 7px; background: var(--vw-accent); border-radius: 50%; animation: vwBlink 1.6s infinite; }
.vw-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: end; }
.vw-tag { position: absolute; top: -14px; right: -14px; z-index: 5; background: var(--vw-accent); color: #fff; font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 10px 14px; }

/* ---------- marquee ---------- */
.vw-marquee { margin-top: 72px; border-top: 1px solid var(--vw-hairline); border-bottom: 1px solid var(--vw-hairline); overflow: hidden; white-space: nowrap; }
.vw-marquee .track { display: inline-flex; animation: vwMarquee 34s linear infinite; will-change: transform; }
.vw-marquee .seg { display: inline-flex; align-items: center; font-family: var(--vw-font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; padding: 16px 0; color: var(--vw-ink); }

/* ---------- checklist ---------- */
.vw-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.vw-checklist li { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--vw-hairline); align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--vw-ink); }
.vw-checklist li:last-child { border-bottom: 1px solid var(--vw-hairline); }
.vw-checklist .tick { color: var(--vw-accent); font-family: var(--vw-font-mono); font-size: 14px; flex-shrink: 0; }

/* ---------- inset card ---------- */
.vw-card { border: 1px solid var(--vw-border); background: var(--vw-panel-light); padding: 28px; }
.vw-card .kicker { font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--vw-accent); margin: 0 0 12px; }

/* ---------- process ---------- */
.vw-proc { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 30px 0; border-top: 1px solid var(--vw-hairline); align-items: start; }
.vw-proc:last-child { border-bottom: 1px solid var(--vw-hairline); }
.vw-proc .n { font-family: var(--vw-font-mono); font-size: 15px; font-weight: 700; color: var(--vw-accent); letter-spacing: .04em; }
.vw-proc p { font-size: 18px; line-height: 1.55; color: var(--vw-ink); margin: 0; max-width: 74ch; }
.vw-result { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--vw-border); }
.vw-result > div { padding: 40px; background: var(--vw-panel-light); }
.vw-result > div:first-child { border-right: 1px solid var(--vw-border); }
.vw-result .tag { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.vw-result .tag span:first-child { color: var(--vw-accent); }
.vw-result .tag .lbl { font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--vw-muted); }

/* ---------- big numeral ---------- */
.vw-bignum { font-family: var(--vw-font-display); font-weight: 800; font-size: clamp(48px, 5vw, 74px); line-height: .9; letter-spacing: -.03em; color: var(--vw-accent); }

/* ---------- services grid ---------- */
.vw-services { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--vw-border); }
.vw-service { display: flex; flex-direction: column; }
.vw-service:not(:last-child) { border-right: 1px solid var(--vw-border); }
.vw-service .media { background: var(--vw-plate); border-bottom: 1px solid var(--vw-border); aspect-ratio: 16/11; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 22px; }
.vw-service .media img { filter: grayscale(1) contrast(1.03); transition: filter var(--vw-img-fade) ease; object-fit: contain; height: 100%; }
.vw-service:hover .media img { filter: grayscale(0) contrast(1); }
.vw-service .content { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.vw-service .stag { font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .14em; color: var(--vw-accent); margin-bottom: 14px; }
.vw-service h3 { font-weight: 700; font-size: 24px; letter-spacing: -.01em; margin: 0 0 14px; }
.vw-service p { font-size: 15px; line-height: 1.6; color: var(--vw-body); margin: 0 0 22px; flex: 1; }
.vw-service .note { font-size: 13px; line-height: 1.5; color: var(--vw-muted); font-style: italic; flex: 0; margin: 0 0 20px; }

/* ---------- testimonial ---------- */
.vw-testi { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; border-top: 1px solid var(--vw-hairline); padding-top: 56px; }
.vw-testi-avatar { width: 220px; flex-shrink: 0; }
.vw-testi-avatar img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; display: block; }
.vw-stars { display: flex; gap: 4px; color: var(--vw-accent); font-size: 18px; margin-bottom: 24px; }
blockquote { font-family: var(--vw-font-display); font-weight: 600; font-size: clamp(24px, 2.8vw, 38px); line-height: 1.22; letter-spacing: -.015em; margin: 0; }
.vw-attr { margin-top: 32px; display: flex; align-items: baseline; gap: 14px; font-family: var(--vw-font-mono); font-size: 13px; letter-spacing: .06em; }
.vw-attr .name { font-weight: 700; }
.vw-attr .org { color: var(--vw-muted); }

/* ---------- contact (dark panel) ---------- */
.vw-contact { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--vw-border); background: var(--vw-ink); }
.vw-contact .left { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--vw-hairline-dark); }
.vw-contact .left h2 { color: var(--vw-paper); }
.vw-contact .left .p { font-size: 16px; line-height: 1.6; color: var(--vw-footer-body); margin: 24px 0 0; max-width: 44ch; }
.vw-contact .well { margin-top: 36px; background: var(--vw-ink-well); border: 1px solid rgba(255,255,255,.12); overflow: hidden; aspect-ratio: 16/10; display: flex; align-items: flex-end; justify-content: center; }
.vw-contact .well img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter var(--vw-img-fade) ease; }
.vw-contact .well:hover img { filter: grayscale(0) contrast(1); }
.vw-contact .right { padding: 48px; }

/* ---------- form ---------- */
.vw-form { display: flex; flex-direction: column; gap: 22px; }
.vw-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vw-form label { display: block; font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--vw-footer-muted); margin-bottom: 10px; }
.vw-form input, .vw-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--vw-underline); color: var(--vw-paper); font-size: 17px; padding: 8px 0; outline: none; resize: none; font-family: var(--vw-font-display); transition: border-color var(--vw-hover-fast); }
.vw-form input:focus, .vw-form textarea:focus { border-color: var(--vw-accent); }
.vw-form .err { font-family: var(--vw-font-mono); font-size: 11px; color: var(--vw-accent); display: none; margin-top: 6px; }
.vw-form .field.invalid .err { display: block; }
.vw-form button { margin-top: 6px; background: var(--vw-accent); color: #fff; border: none; font-family: var(--vw-font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 17px 28px; cursor: pointer; transition: background var(--vw-hover-btn), color var(--vw-hover-btn); display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.vw-form button:hover { background: var(--vw-paper); color: var(--vw-ink); }
.vw-form button:disabled { opacity: .6; cursor: not-allowed; }
.vw-form .fine { font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .06em; color: var(--vw-muted); margin: 0; }
.vw-form .form-error { font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .04em; color: var(--vw-accent); margin: 0; display: none; }
.vw-form .form-error.show { display: block; }
.vw-success { display: none; flex-direction: column; justify-content: center; min-height: 380px; }
.vw-success.on { display: flex; }
.vw-form.off { display: none; }
.vw-success .kicker { font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--vw-accent); margin-bottom: 20px; }
.vw-success h3 { font-weight: 800; font-size: 34px; letter-spacing: -.02em; line-height: 1.05; color: var(--vw-paper); }
.vw-success p { font-size: 16px; line-height: 1.6; color: var(--vw-footer-body); margin: 20px 0 32px; }
.vw-success button { align-self: flex-start; background: transparent; color: var(--vw-paper); border: 1px solid rgba(255,255,255,.4); font-family: var(--vw-font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 13px 22px; cursor: pointer; transition: border-color var(--vw-hover-fast), color var(--vw-hover-fast); }
.vw-success button:hover { border-color: var(--vw-accent); color: var(--vw-accent); }

/* ---------- read more card ---------- */
.vw-rm { text-decoration: none; color: inherit; display: block; border: 1px solid var(--vw-border); padding: 44px 48px; transition: background var(--vw-hover-btn); }
.vw-rm:hover { background: var(--vw-panel-light); }
.vw-rm .inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.vw-rm .tag { font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--vw-accent); display: block; margin-bottom: 16px; }

/* ---------- footer ---------- */
.vw-footer { margin-top: var(--vw-section); background: var(--vw-ink); color: var(--vw-paper); }
.vw-footer .inner { max-width: var(--vw-maxw); margin: 0 auto; padding: 72px var(--vw-gutter) 40px; }
.vw-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--vw-hairline-dark); }
.vw-footer h4 { font-family: var(--vw-font-mono); color: var(--vw-footer-muted); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; margin: 0 0 20px; font-weight: 400; }
.vw-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.vw-footer a { color: var(--vw-paper); text-decoration: none; transition: color var(--vw-hover-fast); }
.vw-footer a:hover { color: var(--vw-accent); }
.vw-footer .contact { font-family: var(--vw-font-mono); font-size: 13px; line-height: 1.9; color: var(--vw-footer-body); }
.vw-footer .disc { font-size: 12px; line-height: 1.6; color: var(--vw-muted); margin: 28px 0 0; max-width: 80ch; }
.vw-footer .legal { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--vw-hairline-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .06em; color: var(--vw-muted); }
.vw-footer .legal .links { display: flex; gap: 24px; flex-wrap: wrap; }
.vw-footer .legal .links a { color: var(--vw-footer-body); }
.vw-footer .copy { margin-top: 20px; font-family: var(--vw-font-mono); font-size: 11px; letter-spacing: .06em; color: var(--vw-muted); }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity var(--vw-reveal-dur) var(--vw-ease), transform var(--vw-reveal-dur) var(--vw-ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .vw-marquee .track, .vw-dot { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .vw-hero-grid, .vw-testi, .vw-contact, .vw-result, .vw-footer .cols,
  .grid-split { grid-template-columns: 1fr; }
  .vw-services { grid-template-columns: 1fr; }
  .vw-service:not(:last-child) { border-right: none; border-bottom: 1px solid var(--vw-border); }
  .vw-navlinks { gap: 20px; }
  .vw-hero-meta { flex-wrap: wrap; gap: 8px; }
  .vw-form .row2 { grid-template-columns: 1fr; }
  .vw-rm .inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- burger menu (hidden on desktop) ---------- */
.vw-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.vw-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--vw-ink);
  transition: transform .25s, opacity .25s;
}
.vw-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vw-burger.is-open span:nth-child(2) { opacity: 0; }
.vw-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Phone/tablet nav — the 900px breakpoint alone leaves the
   nav (logo + 3 links + button) too tight for narrow screens. */
@media (max-width: 700px) {
  :root { --vw-gutter: 20px; }

  .vw-burger { display: flex; }

  /* backdrop-filter on .vw-nav creates a new containing block for
     position:fixed descendants — without this, the overlay below
     sizes itself to the 66px nav bar instead of the full viewport. */
  .vw-nav { backdrop-filter: none; }

  .vw-navlinks {
    position: fixed; inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    background: var(--vw-paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }
  .vw-navlinks.is-open { opacity: 1; pointer-events: auto; }
  .vw-navlinks a { font-size: 20px; }
  .vw-navlinks a.btn { padding: 14px 26px; }

  .vw-navlinks .has-dropdown { flex-direction: column; }
  .vw-navlinks .has-dropdown .caret { display: none; }
  .vw-navlinks .dropdown {
    position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    border: none; background: none; padding: 0; margin-top: 16px; min-width: 0;
    align-items: center; gap: 12px;
  }
  .vw-navlinks .dropdown a { font-size: 15px; padding: 0; text-transform: uppercase; letter-spacing: .08em; color: var(--vw-muted); }

  .vw-hero-section { padding-top: 116px; }

  .vw-eyebrow { flex-wrap: wrap; gap: 8px 20px; }
  .vw-contact .left, .vw-contact .right { padding: 32px 24px; }
  .vw-rm { padding: 32px 24px; }
  .vw-result > div { padding: 28px 24px; }
  .vw-service .content { padding: 24px; }
}

/* ---------- keyframes ---------- */
@keyframes vwMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes vwBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
