/* ===== VELOCITY satellite runtime — booking wizard styles =====
 *
 * Only the wizard and the calendar live here; the page design belongs to
 * each site's own stylesheet. Every colour is a custom property so the
 * design sets them once on :root and the wizard follows:
 *
 *   --vs-accent      the trade's colour (from the panel)
 *   --vs-accent-ink  text on the accent
 *   --vs-ink         body text
 *   --vs-muted       secondary text
 *   --vs-bg          wizard background
 *   --vs-surface     cards, inputs
 *   --vs-line        borders
 *   --vs-radius      corner radius
 */
:root {
  --vs-accent: #1d4ed8;
  --vs-accent-ink: #ffffff;
  --vs-ink: #111827;
  --vs-muted: #6b7280;
  --vs-bg: #ffffff;
  --vs-surface: #f8fafc;
  --vs-line: #e5e7eb;
  --vs-danger: #b91c1c;
  --vs-ok: #15803d;
  --vs-radius: 12px;
  --vs-font: inherit;
}

.vs-booking { background: var(--vs-bg); color: var(--vs-ink); font-family: var(--vs-font); }
.vs-booking *, .vs-booking *::before, .vs-booking *::after { box-sizing: border-box; }
.vs-booking h3 { margin: 0 0 .5rem; font-size: 1.35rem; line-height: 1.25; }
.vs-booking h3:focus { outline: none; }
.vs-booking h4 { margin: 0 0 .5rem; font-size: 1rem; }
.vs-booking p { margin: 0 0 1rem; line-height: 1.55; }
.vs-muted { color: var(--vs-muted); }
.vs-req { color: var(--vs-danger); }

/* Buttons */
.vs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; padding: .65rem 1.25rem; border-radius: var(--vs-radius);
  border: 1px solid var(--vs-line); background: var(--vs-surface); color: var(--vs-ink);
  font: inherit; font-weight: 600; cursor: pointer; text-decoration: none; transition: filter .15s, transform .05s;
}
.vs-btn:hover { filter: brightness(.97); }
.vs-btn:active { transform: translateY(1px); }
.vs-btn:focus-visible { outline: 3px solid var(--vs-accent); outline-offset: 2px; }
.vs-btn--primary { background: var(--vs-accent); color: var(--vs-accent-ink); border-color: transparent; }
.vs-btn--ghost { background: transparent; }
.vs-btn--sm { min-height: 36px; padding: .4rem .85rem; font-size: .9rem; }
.vs-btn[disabled] { opacity: .6; cursor: progress; }
.vs-btn.is-loading::after {
  content: ''; width: 1em; height: 1em; border-radius: 50%;
  border: 2px solid currentColor; border-right-color: transparent; animation: vs-spin .7s linear infinite;
}
@keyframes vs-spin { to { transform: rotate(360deg); } }

/* Progress */
.vs-progress { margin: 0 0 1.25rem; }
.vs-progress__track { height: 6px; border-radius: 999px; background: var(--vs-line); overflow: hidden; }
.vs-progress__fill { height: 100%; width: 0; background: var(--vs-accent); transition: width .3s; }
.vs-progress__label { margin: .5rem 0 0; font-size: .9rem; color: var(--vs-muted); }

/* Steps */
.vs-step { display: none; }
.vs-step.is-active { display: block; animation: vs-fade .2s ease-out; }
@keyframes vs-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.vs-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.vs-nav .vs-btn--primary { margin-inline-start: auto; }

/* Alerts. The wizard toggles them with the hidden attribute, which the
   flex display below would otherwise override. */
.vs-alert[hidden] { display: none; }
.vs-alert {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  padding: .85rem 1rem; border-radius: var(--vs-radius); border: 1px solid var(--vs-line); background: var(--vs-surface);
}
.vs-alert--error { border-color: color-mix(in srgb, var(--vs-danger) 40%, transparent); color: var(--vs-danger); background: color-mix(in srgb, var(--vs-danger) 6%, var(--vs-bg)); }
.vs-alert--info { border-color: color-mix(in srgb, var(--vs-accent) 40%, transparent); }

/* Hold bar */
.vs-hold {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin: 0 0 1rem; padding: .75rem 1rem; border-radius: var(--vs-radius);
  background: color-mix(in srgb, var(--vs-accent) 10%, var(--vs-bg)); border: 1px solid color-mix(in srgb, var(--vs-accent) 35%, transparent);
  font-variant-numeric: tabular-nums;
}
.vs-hold.is-warning { background: #fff7ed; border-color: #fdba74; }
.vs-hold.is-expired { background: color-mix(in srgb, var(--vs-danger) 6%, var(--vs-bg)); border-color: color-mix(in srgb, var(--vs-danger) 40%, transparent); }
.vs-hold__extend { margin-inline-start: auto; min-height: 36px; padding: .35rem .8rem; border-radius: 8px; border: 1px solid currentColor; background: transparent; color: inherit; font: inherit; font-weight: 600; cursor: pointer; }

/* Fields */
.vs-fieldset { border: 0; margin: 0 0 1.25rem; padding: 0; min-width: 0; }
.vs-fieldset > legend { font-weight: 700; margin-bottom: .75rem; padding: 0; }
.vs-field { margin-bottom: 1rem; }
.vs-field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 640px) { .vs-field-row { grid-template-columns: 1fr 1fr; } }
.vs-field__label, .vs-question__label { display: block; font-weight: 600; margin-bottom: .35rem; }
.vs-question__optional { font-weight: 400; color: var(--vs-muted); font-size: .9em; }
.vs-question__hint { margin: -.15rem 0 .5rem; font-size: .9rem; color: var(--vs-muted); }
.vs-booking input[type="text"], .vs-booking input[type="email"], .vs-booking input[type="tel"],
.vs-booking input[type="number"], .vs-booking select, .vs-booking textarea {
  width: 100%; min-height: 44px; padding: .6rem .85rem; border-radius: 10px;
  border: 1px solid var(--vs-line); background: var(--vs-surface); color: var(--vs-ink); font: inherit;
}
.vs-booking input:focus-visible, .vs-booking select:focus-visible, .vs-booking textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--vs-accent) 55%, transparent); outline-offset: 1px; border-color: var(--vs-accent);
}
.vs-booking [aria-invalid="true"] { border-color: var(--vs-danger); }
.vs-field__error { display: none; margin: .35rem 0 0; font-size: .9rem; color: var(--vs-danger); }
.vs-field__error.is-visible { display: block; }
.vs-field__suffix-wrap { display: flex; align-items: center; gap: .5rem; }
.vs-field__suffix-wrap input { max-width: 12rem; }
.vs-field__suffix { color: var(--vs-muted); }

.vs-question { margin-bottom: 1.25rem; }
.vs-question--hidden { display: none; }

/* Option cards */
.vs-opts { display: grid; gap: .5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .vs-opts { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); } }
.vs-opts--inline { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
.vs-opt { position: relative; display: block; cursor: pointer; }
.vs-opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.vs-opt__box {
  display: block; min-height: 44px; padding: .7rem .9rem; border-radius: 10px;
  border: 1px solid var(--vs-line); background: var(--vs-surface); transition: border-color .15s, background .15s;
}
.vs-opt__label { display: block; font-weight: 600; }
.vs-opt__desc { display: block; font-size: .9rem; color: var(--vs-muted); margin-top: .15rem; }
.vs-opt input:checked + .vs-opt__box { border-color: var(--vs-accent); background: color-mix(in srgb, var(--vs-accent) 10%, var(--vs-bg)); box-shadow: inset 0 0 0 1px var(--vs-accent); }
.vs-opt input:focus-visible + .vs-opt__box { outline: 3px solid color-mix(in srgb, var(--vs-accent) 55%, transparent); outline-offset: 1px; }

.vs-check { display: flex; gap: .65rem; align-items: flex-start; cursor: pointer; line-height: 1.45; }
.vs-check input { width: 1.2rem; height: 1.2rem; margin: .15rem 0 0; flex: none; accent-color: var(--vs-accent); }
.vs-check a { color: inherit; text-decoration: underline; }

/* Honeypot */
.vs-hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Calendar */
.vs-cal { border: 1px solid var(--vs-line); border-radius: var(--vs-radius); padding: 1rem; background: var(--vs-surface); }
.vs-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.vs-cal__month { font-weight: 700; text-transform: capitalize; }
.vs-cal__navbtn { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--vs-line); background: var(--vs-bg); color: var(--vs-ink); font: inherit; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.vs-cal__navbtn[disabled] { opacity: .4; cursor: default; }
.vs-cal__weekdays, .vs-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.vs-cal__weekdays span { text-align: center; font-size: .8rem; color: var(--vs-muted); padding-bottom: .25rem; }
.vs-cal__day {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 1; min-height: 40px; border-radius: 10px; border: 1px solid transparent;
  background: var(--vs-bg); color: var(--vs-ink); font: inherit; font-weight: 600; cursor: pointer;
}
.vs-cal__day:focus-visible { outline: 3px solid var(--vs-accent); outline-offset: 1px; }
.vs-cal__day--few .vs-cal__dot { background: #f59e0b; }
.vs-cal__day--free .vs-cal__dot { background: var(--vs-ok); }
.vs-cal__day--full, .vs-cal__day--closed { color: var(--vs-muted); background: transparent; cursor: default; }
.vs-cal__day--closed { opacity: .45; }
.vs-cal__day--full { text-decoration: line-through; }
.vs-cal__day--today { border-color: var(--vs-line); }
.vs-cal__day[aria-selected="true"] { background: var(--vs-accent); color: var(--vs-accent-ink); }
.vs-cal__day[aria-selected="true"] .vs-cal__dot { background: var(--vs-accent-ink); }
.vs-cal__dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 2px; }
.vs-cal__loading { margin: .75rem 0 0; color: var(--vs-muted); }
.vs-cal__legend { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-top: .85rem; font-size: .85rem; color: var(--vs-muted); }
.vs-cal__legend span { display: inline-flex; align-items: center; gap: .4rem; }
.vs-cal__swatch { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.vs-cal__swatch--free { background: var(--vs-ok); }
.vs-cal__swatch--few { background: #f59e0b; }
.vs-cal__swatch--full { background: var(--vs-line); }
.vs-cal__swatch--closed { background: transparent; border: 1px solid var(--vs-line); }

.vs-slots { margin-top: 1rem; }
.vs-slots__title { text-transform: capitalize; }
.vs-slots__hint { color: var(--vs-muted); }
.vs-slots__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .5rem; }
.vs-slot { min-height: 44px; border-radius: 10px; border: 1px solid var(--vs-line); background: var(--vs-surface); color: var(--vs-ink); font: inherit; font-weight: 600; cursor: pointer; }
.vs-slot.is-selected { background: var(--vs-accent); color: var(--vs-accent-ink); border-color: transparent; }
.vs-slot:focus-visible { outline: 3px solid var(--vs-accent); outline-offset: 1px; }
.vs-urgent { font-size: .9rem; color: var(--vs-muted); }
.vs-urgent a { color: inherit; }

/* Review */
.vs-rev { display: grid; gap: 1rem; }
.vs-rev__block { padding: 1rem; border-radius: var(--vs-radius); border: 1px solid var(--vs-line); background: var(--vs-surface); }
.vs-rev__block h4 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.vs-rev__block p { margin: 0; }
.vs-rev__edit { min-height: 32px; padding: .2rem .6rem; border-radius: 8px; border: 1px solid var(--vs-line); background: var(--vs-bg); color: var(--vs-ink); font: inherit; font-size: .85rem; cursor: pointer; }
.vs-rev dl { margin: 0; }
.vs-rev__row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .35rem 0; border-top: 1px solid var(--vs-line); }
.vs-rev__row:first-child { border-top: 0; }
.vs-rev__row dt { color: var(--vs-muted); }
.vs-rev__row dd { margin: 0; font-weight: 600; }

/* Success */
.vs-done { text-align: center; padding: 1.5rem 0; }
.vs-done__icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--vs-ok) 12%, var(--vs-bg)); color: var(--vs-ok); font-size: 2rem; }
.vs-done__ref { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem; margin: 1rem 0; padding: .85rem 1.25rem; border-radius: var(--vs-radius); border: 1px dashed var(--vs-line); }
.vs-done__ref-value { font-weight: 800; font-size: 1.25rem; letter-spacing: .04em; }
.vs-done__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.vs-done__manage { margin-top: 1rem; }
.vs-done__manage a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  .vs-step.is-active, .vs-progress__fill, .vs-btn { animation: none; transition: none; }
}

/* ===== Consent =====
 *
 * The law asks that refusing be no harder than accepting, so the two
 * buttons are the same size, the same colour and sit side by side. No
 * dark pattern lives here: no pre-ticked boxes, no greyed-out refusal,
 * no "continue browsing means yes".
 *
 * A card in the corner rather than a band across the screen: the choice
 * is real but it is not what anyone came for, so it takes a card's worth
 * of room and leaves the page readable behind it.
 */
.vs-consent {
  position: fixed; inset: auto 1.25rem 1.25rem auto; z-index: 9999;
  width: min(28rem, calc(100vw - 2.5rem));
  background: var(--vs-bg); color: var(--vs-ink); font-family: var(--vs-font);
  border: 1px solid var(--vs-line); border-radius: var(--vs-radius);
  box-shadow: 0 12px 40px rgb(0 0 0 / .22);
  animation: vs-consent-in .25s ease-out;
}
.vs-consent *, .vs-consent *::before, .vs-consent *::after { box-sizing: border-box; }
@keyframes vs-consent-in { from { transform: translateY(1rem); opacity: 0; } }

.vs-consent__inner { padding: 1.25rem; max-height: min(80vh, 40rem); overflow-y: auto; }
.vs-consent__title { margin: 0 0 .4rem; font-size: 1.1rem; line-height: 1.3; }
.vs-consent__text { margin: 0 0 1rem; line-height: 1.55; color: var(--vs-muted); font-size: .95rem; }
.vs-consent__text a { color: inherit; }

.vs-consent__detail { display: grid; gap: .6rem; margin: 0 0 1.1rem; }
.vs-consent__detail[hidden] { display: none; }
.vs-consent__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: .7rem;
  padding: .7rem .85rem; border: 1px solid var(--vs-line); border-radius: var(--vs-radius);
  background: var(--vs-surface); cursor: pointer;
}
.vs-consent__row--locked { cursor: default; }
.vs-consent__row input { width: 18px; height: 18px; margin: .15rem 0 0; accent-color: var(--vs-accent); }
.vs-consent__row b { display: block; font-size: .95rem; }
.vs-consent__row em { font-style: normal; font-size: .8rem; color: var(--vs-muted); white-space: nowrap; }
.vs-consent__hint { display: block; margin-top: .15rem; font-size: .85rem; color: var(--vs-muted); line-height: 1.45; }

/* Accept and refuse share one style on purpose — see the note above. */
.vs-consent__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.vs-consent__actions .vs-btn { flex: 1 1 12rem; }
.vs-consent__actions .vs-btn[hidden] { display: none; }

@media (max-width: 30rem) {
  .vs-consent { inset: auto .75rem .75rem .75rem; width: auto; }
  .vs-consent__inner { padding: 1rem; }
  .vs-consent__actions .vs-btn { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .vs-consent { animation: none; }
}

/* The footer entry that reopens the choice. It is a <button> because it
 * opens the panel in place rather than going anywhere, but it inherits
 * the footer's own link styling so it does not look out of place. */
.vs-consent-link {
  padding: 0; border: 0; background: none;
  font: inherit; color: inherit; text-decoration: underline;
  cursor: pointer;
}
.vs-consent-link:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* ===== Extra pages: header, footer, page shell, cards =====
 *
 * Shared by every site's /boka/, /projekt/, /blogg/ and /kontakt/ pages.
 * Nothing here picks a colour or a face: it all comes from the site's
 * tokens, so the one stylesheet reads as eight brands. A site that wants
 * something else overrides the partial and styles it in its own site.css.
 */
.vs-page { margin: 0; background: var(--vs-bg); color: var(--vs-ink); font-family: var(--vs-font); }
.vs-page .skip { position: absolute; left: -999px; top: 0; }
.vs-page .skip:focus { left: 1rem; top: 1rem; z-index: 10000; padding: .5rem .75rem; background: var(--vs-accent); color: var(--vs-accent-ink); }

/* ---- header ---- */
.vs-hd { position: sticky; top: 0; z-index: 100; background: var(--vs-bg); border-bottom: 1px solid var(--vs-line); }
.vs-hd__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; min-height: 72px; display: flex; align-items: center; gap: 1rem; }
.vs-hd__brand { display: inline-flex; align-items: center; gap: .75rem; color: inherit; text-decoration: none; font-weight: 800; letter-spacing: .02em; }
.vs-hd__logo { width: 40px; height: 40px; object-fit: contain; }
.vs-hd__nav { margin-inline-start: auto; display: flex; align-items: center; gap: 1.25rem; }
.vs-hd__link { color: var(--vs-ink); text-decoration: none; font-weight: 600; font-size: .95rem; padding: .25rem 0; border-bottom: 2px solid transparent; }
.vs-hd__link:hover { border-bottom-color: var(--vs-line); }
.vs-hd__lang { color: var(--vs-muted); text-decoration: none; font-size: .85rem; font-weight: 600; letter-spacing: .06em; }
.vs-hd__cta { min-height: 40px; padding: .5rem 1rem; }
.vs-hd__toggle { display: none; margin-inline-start: auto; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; border: 1px solid var(--vs-line); border-radius: var(--vs-radius); background: var(--vs-surface); cursor: pointer; }
.vs-hd__toggle span { display: block; height: 2px; margin: 0 10px; background: var(--vs-ink); }

/* The current page's link is underlined in the accent: one rule per
   page, keyed by the class the builder puts on the header. */
.vs-hd.is-home .vs-hd__link--home,
.vs-hd.is-projekt .vs-hd__link--projekt,
.vs-hd.is-blogg .vs-hd__link--blogg,
.vs-hd.is-post .vs-hd__link--blogg,
.vs-hd.is-kontakt .vs-hd__link--kontakt { border-bottom-color: var(--vs-accent); }

@media (max-width: 60rem) {
  .vs-hd__toggle { display: inline-flex; }
  .vs-hd__nav { display: none; }
  .vs-hd__nav.is-open { display: flex; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem 1rem; background: var(--vs-bg); border-bottom: 1px solid var(--vs-line); box-shadow: 0 12px 30px rgb(0 0 0 / .12); }
  .vs-hd__nav.is-open .vs-hd__link { padding: .75rem 0; border-bottom: 1px solid var(--vs-line); }
  .vs-hd__nav.is-open .vs-hd__lang { padding: .75rem 0; }
  .vs-hd__nav.is-open .vs-hd__cta { margin-top: .75rem; }
}

/* ---- page shell ---- */
.vs-main { max-width: 1200px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.vs-page__head { max-width: 46rem; margin-bottom: 2.5rem; }
.vs-page__title { margin: 0 0 .75rem; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.1; letter-spacing: -.01em; }
.vs-page__lead { margin: 0; font-size: 1.125rem; line-height: 1.6; color: var(--vs-muted); }
.vs-page__body { margin-bottom: 3rem; }
.vs-page__body--wide .vs-booking { max-width: none; }
.vs-page__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding: 1.5rem; border: 1px solid var(--vs-line); border-radius: var(--vs-radius); background: var(--vs-surface); }
.vs-page__cta p { margin: 0; flex: 1 1 20rem; line-height: 1.55; }
.vs-empty { padding: 3rem 1.5rem; text-align: center; color: var(--vs-muted); border: 1px dashed var(--vs-line); border-radius: var(--vs-radius); }

/* ---- cards (projects, posts) ---- */
.vs-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); gap: 1.5rem; }
.vs-card { margin: 0; border: 1px solid var(--vs-line); border-radius: var(--vs-radius); overflow: hidden; background: var(--vs-surface); }
.vs-card__hit { display: block; color: inherit; text-decoration: none; height: 100%; }
.vs-card__media { margin: 0; aspect-ratio: 4 / 3; background: color-mix(in srgb, var(--vs-accent) 14%, var(--vs-surface)); }
.vs-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.vs-card__blank { display: block; width: 100%; height: 100%; }
.vs-card__body { padding: 1rem 1.15rem 1.25rem; }
.vs-card__title { margin: 0 0 .35rem; font-size: 1.1rem; line-height: 1.3; }
.vs-card__meta { margin: 0 0 .5rem; font-size: .85rem; color: var(--vs-muted); }
.vs-card__text { margin: 0; line-height: 1.5; color: var(--vs-muted); }

/* ---- article ---- */
.vs-article { max-width: 46rem; }
.vs-article__meta { display: flex; gap: .5rem; margin: 0 0 .75rem; font-size: .9rem; color: var(--vs-muted); }
.vs-article__meta a { color: inherit; }
.vs-article__body { font-size: 1.05rem; line-height: 1.7; }
.vs-article__body h2 { margin: 2rem 0 .75rem; font-size: 1.5rem; line-height: 1.25; }
.vs-article__body p, .vs-article__body ul { margin: 0 0 1.1rem; }
.vs-article__body blockquote { margin: 1.5rem 0; padding: .25rem 0 .25rem 1.25rem; border-inline-start: 3px solid var(--vs-accent); color: var(--vs-muted); }

/* ---- contact ---- */
.vs-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 2rem; }
.vs-contact__list { margin: 0; }
.vs-contact__row { padding: 1rem 0; border-top: 1px solid var(--vs-line); }
.vs-contact__row dt { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--vs-muted); }
.vs-contact__row dd { margin: .25rem 0 0; font-size: 1.1rem; }
.vs-contact__row a { color: inherit; }
.vs-contact__cta { padding: 1.75rem; border: 1px solid var(--vs-line); border-radius: var(--vs-radius); background: var(--vs-surface); }
.vs-contact__cta h2 { margin: 0 0 .75rem; font-size: 1.35rem; }
.vs-contact__cta p { margin: 0 0 1rem; line-height: 1.55; color: var(--vs-muted); }

/* ---- the group's other sites, as cards with their marks ---- */
.vs-sisters { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--vs-line); }
.vs-sisters__kicker { margin: 0 0 .5rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--vs-accent); }
.vs-sisters__title { margin: 0 0 .5rem; font-size: 1.6rem; line-height: 1.2; }
.vs-sisters__lead { margin: 0 0 1.75rem; max-width: 40rem; line-height: 1.55; color: var(--vs-muted); }
.vs-sisters__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr)); gap: 1.25rem; }
.vs-sister { display: flex; flex-direction: column; align-items: center; gap: .6rem; padding: 1.5rem 1.1rem 1.35rem; text-align: center; text-decoration: none; color: inherit; background: var(--vs-bg); border: 1px solid var(--vs-line); border-radius: var(--vs-radius); transition: border-color .15s, transform .15s, box-shadow .15s; }
.vs-sister:hover { border-color: var(--sister-color, var(--vs-accent)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.vs-sister__logo { width: auto; max-width: 8rem; height: 4.75rem; object-fit: contain; }
.vs-sister__logo--text { display: grid; place-items: center; font-weight: 700; color: var(--sister-color); }
.vs-sister__name { font-size: 1rem; line-height: 1.25; }
.vs-sister__text { font-size: .85rem; line-height: 1.45; color: var(--vs-muted); }
.vs-sister__more { margin-top: auto; padding-top: .35rem; font-size: .8rem; font-weight: 600; color: var(--sister-color, var(--vs-accent)); }

/* ---- footer ---- */
.vs-ft { margin-top: 3rem; padding: 3rem 1.25rem 1.5rem; border-top: 1px solid var(--vs-line); background: var(--vs-surface); color: var(--vs-muted); font-size: .95rem; }
.vs-ft__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 2rem; }
.vs-ft__col { display: flex; flex-direction: column; gap: .5rem; }
.vs-ft__col a { color: inherit; text-decoration: none; }
.vs-ft__col a:hover { color: var(--vs-ink); text-decoration: underline; }
.vs-ft__name { margin: 0; font-weight: 800; color: var(--vs-ink); }
.vs-ft__tag, .vs-ft__part { margin: 0; }
.vs-ft__part a { text-decoration: underline; }
.vs-ft__copy { max-width: 1200px; margin: 2rem auto 0; padding-top: 1rem; border-top: 1px solid var(--vs-line); font-size: .85rem; }

/* ---- on the home: where the wizard used to be, and "see all" ----
 * The wizard has one page now. Its old spot on the home is a card that
 * sends people there, and the projects section ends with a way to the
 * full list. Both take the site's own tokens like everything else here. */
.vs-home-cta { margin: 0 auto; max-width: 48rem; text-align: center; flex-direction: column; }
.vs-home-cta p { flex: none; font-size: 1.1rem; }
.vs-more { margin: 2rem 0 0; text-align: center; }
