/* ==========================================================
   Vasseur Oyarzabal — international typographic poster
   white / black / vermilion #E63312 — Schibsted Grotesk + IBM Plex Mono
   ========================================================== */
:root {
  --vso-white: #ffffff;
  --vso-paper: #f4f3f0;
  --vso-black: #0b0b0b;
  --vso-grey: #6b6b6b;
  --vso-line: #0b0b0b;
  --vso-red: #E63312;
  --vso-red-dark: #b8250a;
  --vso-sans: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --vso-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --vso-gutter: clamp(16px, 4vw, 56px);
  --vso-header: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--vso-header) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--vso-white); color: var(--vso-black);
  font-family: var(--vso-sans); font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem); line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--vso-red); outline-offset: 3px; }

.vso-skip { position: absolute; left: -9999px; top: 0; background: var(--vso-black); color: #fff; padding: 12px 16px; z-index: 100; }
.vso-skip:focus { left: 8px; top: 8px; }

.vso-label { font-family: var(--vso-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.vso-red { color: var(--vso-red); }
.vso-muted { color: var(--vso-grey); }

/* ---------- buttons: hard rectangles ---------- */
.vso-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: 0 26px; border: 2px solid var(--vso-black); border-radius: 0;
  font: 700 0.95rem/1 var(--vso-sans); letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.vso-btn--red { background: var(--vso-red); border-color: var(--vso-red); color: #fff; }
.vso-btn--red:hover { background: var(--vso-black); border-color: var(--vso-black); }
.vso-btn--line { background: transparent; color: var(--vso-black); }
.vso-btn--line:hover { background: var(--vso-black); color: #fff; }
.vso-btn--black { background: var(--vso-black); color: #fff; }
.vso-btn--black:hover { background: var(--vso-red); border-color: var(--vso-red); }
.vso-btn--line-w { background: transparent; color: #fff; border-color: #fff; }
.vso-btn--line-w:hover { background: #fff; color: var(--vso-black); }

/* ---------- header ---------- */
.vso-header { position: sticky; top: 0; z-index: 50; background: var(--vso-white); border-bottom: 2px solid var(--vso-line); }
.vso-header__in { height: var(--vso-header); display: flex; align-items: center; justify-content: space-between; padding: 0 var(--vso-gutter); gap: 24px; }
.vso-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.vso-logo__mark {
  width: 44px; height: 44px; background: var(--vso-red); color: #fff; display: grid; place-items: center;
  font: 900 0.95rem/0.9 var(--vso-sans); text-align: center; letter-spacing: -0.02em;
}
.vso-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.vso-logo__text strong { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.vso-logo__text small { font-family: var(--vso-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--vso-grey); }
.vso-nav ul { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 34px); }
.vso-nav a { text-decoration: none; font-weight: 500; font-size: .95rem; position: relative; }
.vso-nav a:not(.vso-nav__cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--vso-red); transition: right .25s; }
.vso-nav a:not(.vso-nav__cta):hover::after, .vso-nav a.is-active::after { right: 0; }
.vso-nav__cta { background: var(--vso-black); color: #fff; padding: 12px 18px; font-weight: 700 !important; }
.vso-nav__cta:hover { background: var(--vso-red); }
.vso-burger { display: none; background: none; border: 2px solid var(--vso-black); height: 44px; padding: 0 12px; align-items: center; gap: 10px; cursor: pointer; font: 700 .8rem var(--vso-mono); text-transform: uppercase; color: var(--vso-black); }
.vso-burger__lines { display: grid; gap: 6px; width: 22px; }
.vso-burger__lines i { display: block; height: 2px; background: currentColor; transition: transform .25s; }
.vso-burger[aria-expanded="true"] .vso-burger__lines i:first-child { transform: translateY(4px) rotate(45deg); }
.vso-burger[aria-expanded="true"] .vso-burger__lines i:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero: asymmetric poster ---------- */
.vso-hero { position: relative; padding: clamp(28px, 5vw, 72px) var(--vso-gutter) 0; border-bottom: 2px solid var(--vso-line); }
.vso-hero__rail {
  position: absolute; left: calc(var(--vso-gutter) * 0.25); top: clamp(28px, 5vw, 72px);
  writing-mode: vertical-rl; transform: rotate(180deg);
  font: 500 .72rem var(--vso-mono); text-transform: uppercase; letter-spacing: .18em; color: var(--vso-grey); white-space: nowrap;
}
.vso-hero__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 20px; align-items: end; padding-left: clamp(8px, 2vw, 24px); }
.vso-hero__kicker { grid-column: 1 / -1; margin-bottom: clamp(18px, 3vw, 36px); }
.vso-hero__kicker span { color: var(--vso-red); margin: 0 .4em; }
.vso-hero__title {
  grid-column: 1 / 10; font-weight: 900; letter-spacing: -0.065em; line-height: .84;
  font-size: clamp(3.6rem, 14.5vw, 15.5rem); display: flex; flex-direction: column;
}
.vso-hero__l2 { padding-left: 0.9em; }
.vso-hero__l3 em { font-style: normal; color: var(--vso-red); }
.vso-hero__side { grid-column: 10 / 13; position: relative; padding-bottom: 12px; }
.vso-hero__bar { display: block; width: 14px; height: clamp(80px, 12vw, 180px); background: var(--vso-red); margin-bottom: 24px; }
.vso-hero__sub { font-size: clamp(1rem, 0.9rem + 0.35vw, 1.2rem); margin-bottom: 24px; max-width: 34ch; }
.vso-hero__ctas { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.vso-hero__fig { margin: clamp(28px, 4vw, 56px) calc(var(--vso-gutter) * -1) 0; position: relative; }
.vso-hero__fig img { width: 100%; height: clamp(240px, 46vw, 620px); object-fit: cover; filter: grayscale(1) contrast(1.05); }
.vso-hero__fig figcaption { position: absolute; right: var(--vso-gutter); bottom: 0; background: var(--vso-white); padding: 10px 14px; border: 2px solid var(--vso-line); border-bottom: 0; max-width: calc(100% - 2 * var(--vso-gutter)); }

/* ---------- generic sections ---------- */
.vso-sec { padding: clamp(64px, 10vw, 150px) var(--vso-gutter); border-bottom: 2px solid var(--vso-line); }
.vso-sec__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 20px; row-gap: 16px; margin-bottom: clamp(36px, 6vw, 80px); }
.vso-sec__head .vso-label { grid-column: 1 / 4; padding-top: .8em; }
.vso-sec__head .vso-label::before { content: ""; display: inline-block; width: 10px; height: 10px; background: var(--vso-red); margin-right: 10px; vertical-align: 0; }
.vso-h2 { grid-column: 4 / -1; font-weight: 800; letter-spacing: -0.045em; line-height: .95; font-size: clamp(2.2rem, 6.4vw, 6rem); }
.vso-lead { font-size: clamp(1.35rem, 1rem + 1.4vw, 2.3rem); line-height: 1.2; letter-spacing: -0.02em; font-weight: 500; max-width: 28ch; }

/* about */
.vso-about__body { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 20px; row-gap: clamp(32px, 5vw, 64px); }
.vso-about__body .vso-lead { grid-column: 4 / 12; }
.vso-about__cols { grid-column: 4 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; color: #222; }
.vso-figures { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border-top: 2px solid var(--vso-line); }
.vso-figures > div { padding: 20px 20px 0 0; border-right: 1px solid #d4d4d4; display: flex; flex-direction: column-reverse; gap: 8px; }
.vso-figures > div:last-child { border-right: 0; }
.vso-figures > div + div { padding-left: 20px; }
.vso-figures dt { font-family: var(--vso-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--vso-grey); }
.vso-figures dd { margin: 0; font-weight: 900; letter-spacing: -0.06em; line-height: .85; font-size: clamp(3rem, 9vw, 8.5rem); }
.vso-figures > div:first-child dd { color: var(--vso-red); }

/* services accordion */
.vso-sec__head--row .vso-services__hint { grid-column: 4 / -1; color: var(--vso-grey); font-size: .95rem; }
.vso-acc { border-top: 2px solid var(--vso-line); }
.vso-acc__item { border-bottom: 2px solid var(--vso-line); }
.vso-acc__item summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: 64px minmax(0, 1fr) auto 48px; align-items: center; gap: 20px;
  padding: clamp(18px, 2.4vw, 30px) 0; transition: background .2s, padding .25s;
}
.vso-acc__item summary::-webkit-details-marker { display: none; }
.vso-acc__ico { width: 56px; height: 56px; border: 2px solid var(--vso-line); display: grid; place-items: center; font-size: 1.6rem; background: var(--vso-white); }
.vso-acc__title { font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-size: clamp(1.5rem, 1rem + 3vw, 3.8rem); }
.vso-acc__tag { color: var(--vso-grey); text-align: right; }
.vso-acc__plus { width: 44px; height: 44px; position: relative; justify-self: end; }
.vso-acc__plus::before, .vso-acc__plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 26px; height: 3px; background: var(--vso-black); transform: translate(-50%, -50%); transition: transform .3s, background .3s; }
.vso-acc__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.vso-acc__item[open] .vso-acc__plus::before { background: var(--vso-red); transform: translate(-50%, -50%) rotate(45deg); }
.vso-acc__item[open] .vso-acc__plus::after { background: var(--vso-red); transform: translate(-50%, -50%) rotate(135deg); }
.vso-acc__item summary:hover .vso-acc__title, .vso-acc__item[open] .vso-acc__title { color: var(--vso-red); }
.vso-acc__body { display: grid; grid-template-columns: 64px minmax(0, 1fr) minmax(0, 0.8fr); gap: 20px; padding: 0 0 clamp(22px, 3vw, 40px); }
.vso-acc__body p { grid-column: 2; max-width: 58ch; font-size: 1.08rem; }
.vso-acc__body .vso-link { grid-column: 3; align-self: end; justify-self: end; }
.vso-link { font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--vso-red); padding-bottom: 2px; }
.vso-link:hover { color: var(--vso-red); }

/* why-us split scroll */
.vso-why { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 20px; padding: 0 var(--vso-gutter); border-bottom: 2px solid var(--vso-line); background: var(--vso-paper); }
.vso-why__sticky {
  grid-column: 1 / 6; position: sticky; top: var(--vso-header); align-self: start;
  min-height: calc(100vh - var(--vso-header)); display: flex; flex-direction: column; justify-content: center; gap: 28px;
  padding: clamp(48px, 6vw, 80px) 0; border-right: 2px solid var(--vso-line); padding-right: 24px;
}
.vso-why__title { font-weight: 900; letter-spacing: -0.055em; line-height: .88; font-size: clamp(2.8rem, 6.4vw, 7rem); }
.vso-why__note { max-width: 36ch; color: #333; border-left: 6px solid var(--vso-red); padding-left: 16px; }
.vso-why__scroll { grid-column: 6 / -1; padding: clamp(48px, 8vw, 120px) 0 clamp(48px, 8vw, 120px) clamp(20px, 3vw, 48px); display: grid; gap: clamp(56px, 9vw, 130px); }
.vso-why__item { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px 28px; align-items: end; }
.vso-why__item img { grid-column: 1 / -1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(1); border: 2px solid var(--vso-line); }
.vso-why__item:nth-child(even) img { width: 82%; justify-self: end; }
.vso-why__item:nth-child(odd) img { width: 92%; }
.vso-why__item h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; font-size: clamp(1.4rem, 1rem + 1.5vw, 2.3rem); }
.vso-why__item p { color: #2b2b2b; }

/* reviews: big quote marks */
.vso-quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 60px); align-items: start; }
.vso-quote { margin: 0; position: relative; padding-top: clamp(70px, 9vw, 130px); border-top: 2px solid var(--vso-line); }
.vso-quote--offset { margin-top: clamp(0px, 8vw, 140px); }
.vso-quote__mark { position: absolute; top: -.12em; left: -.04em; font-weight: 900; line-height: 1; color: var(--vso-red); font-size: clamp(9rem, 16vw, 17rem); letter-spacing: -0.1em; }
.vso-quote blockquote { margin: 0 0 28px; font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.45rem); line-height: 1.35; letter-spacing: -0.01em; font-weight: 500; }
.vso-quote figcaption { display: grid; grid-template-columns: 64px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; font-size: .92rem; }
.vso-quote figcaption img { grid-row: 1 / 3; width: 64px; height: 64px; object-fit: cover; filter: grayscale(1); }
.vso-quote figcaption strong { display: block; font-size: 1.05rem; }
.vso-stars { color: var(--vso-red); letter-spacing: .15em; font-size: .9rem; }

/* contact */
.vso-contact { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 20px; row-gap: 48px; padding: clamp(64px, 10vw, 150px) var(--vso-gutter); }
.vso-contact__pitch { grid-column: 1 / 6; display: flex; flex-direction: column; gap: 22px; }
.vso-contact__title { font-weight: 900; letter-spacing: -0.055em; line-height: .9; font-size: clamp(2.6rem, 6vw, 6.4rem); }
.vso-contact__warn { font-size: .9rem; border: 2px solid var(--vso-line); padding: 14px 16px; background: var(--vso-paper); }
.vso-coords { font-style: normal; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; border-top: 2px solid var(--vso-line); padding-top: 22px; }
.vso-coords .vso-label { color: var(--vso-red); }
.vso-coords p { margin-top: 6px; }
.vso-coords a { text-decoration: none; border-bottom: 1px solid currentColor; overflow-wrap: anywhere; }
.vso-form { grid-column: 7 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 28px; align-content: start; background: var(--vso-white); border: 2px solid var(--vso-line); padding: clamp(20px, 3vw, 44px); box-shadow: 14px 14px 0 var(--vso-red); position: relative; }
.vso-form__head { grid-column: 1 / -1; color: var(--vso-grey); margin-bottom: 12px; }
.vso-field { grid-column: 1 / -1; display: flex; flex-direction: column; }
.vso-field--half { grid-column: span 1; }
.vso-field label { font-weight: 700; font-size: .92rem; margin-bottom: 4px; }
.vso-opt { font-weight: 400; color: var(--vso-grey); }
.vso-field input, .vso-field select, .vso-field textarea {
  font: inherit; color: var(--vso-black); background: transparent; border: 0; border-bottom: 2px solid var(--vso-black); border-radius: 0;
  padding: 10px 0; min-height: 46px; width: 100%;
}
.vso-field textarea { resize: vertical; min-height: 120px; border: 2px solid var(--vso-black); padding: 10px 12px; }
.vso-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--vso-black) 50%), linear-gradient(135deg, var(--vso-black) 50%, transparent 50%); background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 28px; }
.vso-field input:focus, .vso-field select:focus, .vso-field textarea:focus { outline: none; border-color: var(--vso-red); box-shadow: 0 2px 0 var(--vso-red); }
.vso-field.is-invalid input, .vso-field.is-invalid select, .vso-field.is-invalid textarea { border-color: var(--vso-red); }
.vso-help { font-size: .8rem; color: var(--vso-grey); margin-top: 4px; }
.vso-err { min-height: 1.35em; font-size: .82rem; color: var(--vso-red-dark); font-weight: 700; margin-top: 4px; }
.vso-check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 12px; margin-top: 8px; }
.vso-check input { width: 22px; min-height: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--vso-red); flex: 0 0 22px; }
.vso-check label { flex: 1 1 200px; font-weight: 400; font-size: .88rem; }
.vso-check .vso-err { flex-basis: 100%; }
.vso-form__submit { grid-column: 1 / -1; margin-top: 10px; width: 100%; }
.vso-success { grid-column: 1 / -1; margin-top: 18px; border-top: 2px solid var(--vso-line); padding-top: 18px; }
.vso-success__big { font-weight: 900; font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.05em; color: var(--vso-red); line-height: 1; margin-bottom: 8px; }
.vso-success:focus { outline: none; }

/* footer */
.vso-footer { background: var(--vso-black); color: #eaeaea; padding: clamp(48px, 7vw, 96px) var(--vso-gutter) 28px; overflow: hidden; }
.vso-footer__brand { font-weight: 900; letter-spacing: -0.07em; line-height: .8; font-size: clamp(3.2rem, 14vw, 15rem); color: #fff; margin-bottom: clamp(36px, 5vw, 64px); }
.vso-footer__brand::after { content: "."; color: var(--vso-red); }
.vso-footer__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 40px; border-top: 1px solid #444; padding-top: 28px; }
.vso-footer__grid .vso-label { color: var(--vso-red); margin-bottom: 10px; }
.vso-footer__grid li { margin-bottom: 6px; }
.vso-footer a { text-decoration: none; border-bottom: 1px solid #555; }
.vso-footer a:hover { color: #fff; border-color: var(--vso-red); }
.vso-footer__cookies { background: none; border: 0; color: inherit; font: inherit; padding: 0; cursor: pointer; border-bottom: 1px solid #555; }
.vso-footer__copy { margin-top: 36px; font-size: .8rem; color: #9a9a9a; }

/* cookie banner: full-width black strip */
.vso-cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--vso-black); color: #fff;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px 32px;
  padding: 18px var(--vso-gutter); border-top: 6px solid var(--vso-red);
  transform: translateY(0); transition: transform .35s;
}
.vso-cookie[hidden] { display: none; }
.vso-cookie__t { font-weight: 900; font-size: 2rem; letter-spacing: -0.05em; }
.vso-cookie__txt { font-size: .9rem; color: #d6d6d6; }
.vso-cookie__txt a { color: #fff; }
.vso-cookie__btns { display: flex; gap: 10px; }

/* reveal-on-scroll (only when JS is active) */
.vso-js .vso-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.vso-js .vso-reveal.is-in { opacity: 1; transform: none; }

/* ---------- breakpoints ---------- */
@media (max-width: 1199px) {
  .vso-hero__title { grid-column: 1 / -1; }
  .vso-hero__side { grid-column: 6 / -1; margin-top: 28px; }
  .vso-hero__bar { position: absolute; left: -34px; top: 0; height: 100%; width: 10px; margin: 0; }
  .vso-hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .vso-contact__pitch { grid-column: 1 / -1; }
  .vso-form { grid-column: 1 / -1; }
  .vso-coords { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 959px) {
  :root { --vso-header: 64px; }
  .vso-burger { display: inline-flex; }
  .vso-nav { position: fixed; top: var(--vso-header); left: 0; right: 0; bottom: 0; background: var(--vso-white); border-top: 2px solid var(--vso-line); padding: 28px var(--vso-gutter); transform: translateX(100%); visibility: hidden; transition: transform .3s, visibility .3s; overflow-y: auto; }
  .vso-nav.is-open { transform: none; visibility: visible; }
  .vso-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .vso-nav li { border-bottom: 2px solid var(--vso-line); }
  .vso-nav a { display: block; padding: 18px 0; font-size: clamp(1.8rem, 8vw, 3rem); font-weight: 800; letter-spacing: -0.04em; }
  .vso-nav__cta { margin-top: 24px; text-align: center; font-size: 1.2rem !important; padding: 18px !important; }
  .vso-nav li:last-child { border-bottom: 0; }
  .vso-hero__rail { display: none; }
  .vso-hero__grid { padding-left: 0; }
  .vso-hero__side { grid-column: 1 / -1; padding-left: 26px; }
  .vso-hero__bar { left: 0; }
  .vso-sec__head .vso-label, .vso-h2, .vso-sec__head--row .vso-services__hint { grid-column: 1 / -1; }
  .vso-about__body .vso-lead, .vso-about__cols { grid-column: 1 / -1; }
  .vso-figures { grid-template-columns: 1fr 1fr; }
  .vso-figures > div { padding: 20px 16px 20px 0 !important; border-right: 0; border-bottom: 1px solid #d4d4d4; }
  .vso-figures > div:nth-child(odd) { border-right: 1px solid #d4d4d4; }
  .vso-figures > div:nth-child(even) { padding-left: 16px !important; }
  .vso-acc__tag { display: none; }
  .vso-acc__item summary { grid-template-columns: 52px minmax(0, 1fr) 40px; gap: 14px; }
  .vso-acc__ico { width: 48px; height: 48px; font-size: 1.35rem; }
  .vso-acc__body { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
  .vso-acc__body .vso-link { grid-column: 2; justify-self: start; }
  .vso-why { display: block; }
  .vso-why__sticky { position: relative; top: 0; min-height: 0; border-right: 0; border-bottom: 2px solid var(--vso-line); padding-right: 0; }
  .vso-why__scroll { padding-left: 0; }
  .vso-quotes { grid-template-columns: 1fr; }
  .vso-quote--offset { margin-top: 0; margin-left: clamp(0px, 8vw, 80px); }
  .vso-coords { grid-template-columns: 1fr 1fr; }
  .vso-footer__grid { grid-template-columns: 1fr 1fr; }
  .vso-cookie { grid-template-columns: 1fr; }
  .vso-cookie__t { display: none; }
}
@media (max-width: 599px) {
  .vso-logo__text small { display: none; }
  .vso-logo__text strong { font-size: 1rem; }
  .vso-burger__label { display: none; }
  .vso-hero__l2 { padding-left: 0.5em; }
  .vso-hero__ctas .vso-btn { width: 100%; }
  .vso-hero__fig figcaption { position: static; border: 0; border-top: 2px solid var(--vso-line); max-width: none; padding: 10px var(--vso-gutter); }
  .vso-about__cols { grid-template-columns: 1fr; }
  .vso-why__item { grid-template-columns: 1fr; }
  .vso-why__item img, .vso-why__item:nth-child(even) img, .vso-why__item:nth-child(odd) img { width: 100%; }
  .vso-form { grid-template-columns: 1fr; box-shadow: 8px 8px 0 var(--vso-red); }
  .vso-field--half { grid-column: 1 / -1; }
  .vso-coords { grid-template-columns: 1fr; }
  .vso-footer__grid { grid-template-columns: 1fr; }
  .vso-cookie__btns .vso-btn { flex: 1; }
}
@media (min-width: 1440px) {
  .vso-hero__grid, .vso-sec__head, .vso-about__body, .vso-quotes, .vso-acc { max-width: 1680px; margin-left: auto; margin-right: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .vso-js .vso-reveal { opacity: 1; transform: none; }
}
