/* Vantrellis — elevation suite
   Layout + component layer. Tokens live inline in each document head. */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--vtr-paper);
  color: var(--vtr-ink);
  font-family: var(--vtr-body-face);
  font-size: 16.5px;
  line-height: 1.72;
  font-weight: 400;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--vtr-deep-soft); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--vtr-ochre);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--vtr-display-face);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--vtr-deep);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.45rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.16rem, 2vw, 1.42rem); }
h4 { font-size: 1.06rem; }

p { margin: 0 0 1.15em; }

.vtr_wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.vtr_skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--vtr-ochre);
  color: var(--vtr-ink);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 200;
}
.vtr_skip:focus { left: 8px; top: 8px; }

/* ---------- masthead ---------- */

.vtr_head {
  background: var(--vtr-card);
  border-bottom: 1px solid var(--vtr-line);
  position: relative;
  z-index: 60;
}

.vtr_head_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.vtr_brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--vtr-deep);
  flex-shrink: 0;
}

.vtr_brand_mark { width: 38px; height: 38px; flex-shrink: 0; }

.vtr_brand_text { display: flex; flex-direction: column; line-height: 1.05; }

.vtr_brand_word {
  font-family: var(--vtr-display-face);
  font-weight: 900;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.vtr_brand_sub {
  font-size: 0.665rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--vtr-muted);
  font-weight: 600;
  margin-top: 3px;
}

.vtr_burger {
  display: none;
  background: transparent;
  border: 1.5px solid var(--vtr-line);
  border-radius: 3px;
  color: var(--vtr-deep);
  font-size: 1.5rem;
  line-height: 1;
  padding: 7px 11px;
  cursor: pointer;
}

.vtr_nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vtr_nav_link {
  text-decoration: none;
  color: var(--vtr-deep);
  font-size: 0.925rem;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}

.vtr_nav_link:hover { background: var(--vtr-ochre-tint); color: var(--vtr-deep); }

.vtr_nav_link[aria-current="page"] {
  color: var(--vtr-deep);
  box-shadow: inset 0 -3px 0 var(--vtr-ochre);
  border-radius: 0;
}

.vtr_nav_cta { margin-left: 10px; }

/* contact strip sits BELOW the nav */
.vtr_strip {
  background: var(--vtr-deep);
  color: #E6EEF3;
  font-size: 0.855rem;
}

.vtr_strip_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 34px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.vtr_strip_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E6EEF3;
  text-decoration: none;
}

.vtr_strip_item i { color: var(--vtr-ochre); font-size: 0.95rem; }
.vtr_strip_item:hover { color: #FFFFFF; text-decoration: underline; }
.vtr_strip_tag { margin-left: auto; color: #9FB4C0; letter-spacing: 0.06em; }

/* ---------- buttons ---------- */

.vtr_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--vtr-body-face);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.14s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.vtr_btn:hover { transform: translateY(-2px); }

.vtr_btn_solid {
  background: var(--vtr-ochre);
  color: var(--vtr-ink);
  border-color: var(--vtr-ochre);
}
.vtr_btn_solid:hover { background: #C75C18; border-color: #C75C18; color: #FFFFFF; }

.vtr_btn_ghost {
  background: transparent;
  color: var(--vtr-deep);
  border-color: var(--vtr-deep);
}
.vtr_btn_ghost:hover { background: var(--vtr-deep); color: #FFFFFF; }

.vtr_btn_pale {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
}
.vtr_btn_pale:hover { background: #FFFFFF; color: var(--vtr-deep); border-color: #FFFFFF; }

.vtr_btn_sm { padding: 10px 17px; font-size: 0.875rem; }

/* ---------- generic section furniture ---------- */

.vtr_band { padding: 74px 0; }
.vtr_band_tight { padding: 52px 0; }
.vtr_band_card { background: var(--vtr-card); border-top: 1px solid var(--vtr-line); border-bottom: 1px solid var(--vtr-line); }
.vtr_band_dark { background: var(--vtr-deep); color: #DCE7EE; }
.vtr_band_dark h2, .vtr_band_dark h3 { color: #FFFFFF; }

.vtr_eyebrow {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vtr-ochre-deep);
  margin-bottom: 14px;
}
.vtr_band_dark .vtr_eyebrow { color: var(--vtr-ochre); }

.vtr_lede { font-size: 1.09rem; color: var(--vtr-muted); max-width: 68ch; }
.vtr_band_dark .vtr_lede { color: #C3D4DE; }

.vtr_head_block { max-width: 74ch; margin-bottom: 40px; }

/* ---------- hero (asymmetric split) ---------- */

.vtr_hero {
  background:
    linear-gradient(180deg, var(--vtr-card) 0%, var(--vtr-paper) 100%);
  border-bottom: 1px solid var(--vtr-line);
  padding: 66px 0 74px;
  position: relative;
  overflow: hidden;
}

.vtr_hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.vtr_hero h1 { margin-bottom: 20px; }
.vtr_hero_key { color: var(--vtr-ochre-deep); }

.vtr_hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.vtr_facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  border-top: 2px solid var(--vtr-deep);
  padding-top: 22px;
}

.vtr_fact_num {
  font-family: var(--vtr-display-face);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--vtr-deep);
  line-height: 1;
  display: block;
}

.vtr_fact_lab {
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vtr-muted);
  font-weight: 600;
  margin-top: 7px;
  display: block;
}

.vtr_hero_art { position: relative; min-width: 0; }

.vtr_hero_art_main {
  border: 1px solid var(--vtr-line);
  background: var(--vtr-card);
  box-shadow: 0 22px 48px -26px rgba(16, 28, 38, 0.42);
}

.vtr_hero_art_chip {
  position: absolute;
  left: -34px;
  bottom: -30px;
  width: 46%;
  min-width: 150px;
  border: 1px solid var(--vtr-line);
  border-left: 4px solid var(--vtr-ochre);
  background: var(--vtr-card);
  box-shadow: 0 18px 34px -20px rgba(16, 28, 38, 0.5);
}

/* ---------- numbered ledger ---------- */

.vtr_ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--vtr-line);
  background: var(--vtr-card);
}

.vtr_ledger_cell {
  padding: 34px 30px;
  border-right: 1px solid var(--vtr-line);
}
.vtr_ledger_cell:last-child { border-right: 0; }

.vtr_ledger_num {
  font-family: var(--vtr-display-face);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--vtr-ochre);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.vtr_ledger_cell h3 { margin-bottom: 10px; }
.vtr_ledger_cell p { margin-bottom: 0; color: var(--vtr-muted); font-size: 0.955rem; }

/* ---------- two column with list ---------- */

.vtr_duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.vtr_duo_wide {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.vtr_marklist { list-style: none; margin: 0; padding: 0; }

.vtr_marklist li {
  position: relative;
  padding: 0 0 18px 32px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--vtr-line);
}
.vtr_marklist li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.vtr_marklist li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--vtr-ochre-deep);
  font-size: 1.02rem;
}

.vtr_marklist strong { color: var(--vtr-deep); display: block; }

.vtr_city_rows { border-top: 1px solid var(--vtr-line); }

.vtr_city_row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--vtr-line);
  align-items: baseline;
}

.vtr_city_name {
  font-family: var(--vtr-display-face);
  font-weight: 700;
  color: var(--vtr-deep);
  font-size: 1.08rem;
}

.vtr_city_row p { margin: 0; font-size: 0.95rem; color: var(--vtr-muted); }

/* ---------- horizontal step timeline ---------- */

.vtr_steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  position: relative;
}

.vtr_steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--vtr-line);
  z-index: 0;
}

.vtr_step { position: relative; z-index: 1; }

.vtr_step_dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vtr-deep);
  color: #FFFFFF;
  font-family: var(--vtr-display-face);
  font-weight: 700;
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 4px solid var(--vtr-paper);
}

.vtr_band_card .vtr_step_dot { border-color: var(--vtr-card); }
.vtr_step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.vtr_step p { font-size: 0.93rem; color: var(--vtr-muted); margin: 0; }

/* ---------- track cards (catalogue) ---------- */

.vtr_tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 26px;
}

.vtr_track {
  background: var(--vtr-card);
  border: 1px solid var(--vtr-line);
  border-top: 4px solid var(--vtr-ochre);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vtr_track:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -26px rgba(16, 28, 38, 0.45);
}

.vtr_track_ico {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vtr-ochre-tint);
  color: var(--vtr-ochre-deep);
  font-size: 1.32rem;
  margin-bottom: 18px;
  border-radius: 3px;
}

.vtr_track p { color: var(--vtr-muted); font-size: 0.96rem; }

.vtr_track_meta {
  list-style: none;
  margin: 4px 0 22px;
  padding: 0;
  font-size: 0.9rem;
  color: var(--vtr-muted);
}

.vtr_track_meta li { padding: 6px 0; border-bottom: 1px dotted var(--vtr-line); }
.vtr_track_meta li:last-child { border-bottom: 0; }
.vtr_track_meta b { color: var(--vtr-deep); font-weight: 600; }

.vtr_track_foot { margin-top: auto; }

.vtr_inline_link {
  font-weight: 600;
  color: var(--vtr-ochre-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--vtr-ochre-tint);
  padding-bottom: 2px;
}
.vtr_inline_link:hover { border-bottom-color: var(--vtr-ochre); }

/* ---------- testimonial ---------- */

.vtr_quote {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  background: var(--vtr-card);
  border: 1px solid var(--vtr-line);
  border-left: 5px solid var(--vtr-deep);
  padding: 38px 40px;
}

.vtr_quote_face {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--vtr-ochre-tint);
}

.vtr_quote_text {
  font-family: var(--vtr-display-face);
  font-size: clamp(1.1rem, 2.1vw, 1.42rem);
  line-height: 1.5;
  color: var(--vtr-deep);
  margin: 0 0 18px;
}

.vtr_quote_by { font-size: 0.92rem; color: var(--vtr-muted); margin: 0; }
.vtr_quote_by b { color: var(--vtr-ink); display: block; font-size: 1rem; }

/* ---------- note cards (articles) ---------- */

.vtr_notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
  gap: 26px;
}

.vtr_note {
  background: var(--vtr-card);
  border: 1px solid var(--vtr-line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vtr_note_pic { border-bottom: 1px solid var(--vtr-line); background: var(--vtr-ochre-tint); }
.vtr_note_body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }

.vtr_note_tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--vtr-ochre-deep);
  margin-bottom: 10px;
}

.vtr_note h3 { font-size: 1.15rem; margin-bottom: 10px; }
.vtr_note h3 a { color: var(--vtr-deep); text-decoration: none; }
.vtr_note h3 a:hover { color: var(--vtr-ochre-deep); }
.vtr_note p { font-size: 0.94rem; color: var(--vtr-muted); }
.vtr_note_foot { margin-top: auto; padding-top: 6px; }

/* ---------- closing call band ---------- */

.vtr_call {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.vtr_call_actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* ---------- article layout ---------- */

.vtr_crumbs {
  font-size: 0.83rem;
  color: var(--vtr-muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--vtr-line);
  background: var(--vtr-card);
}
.vtr_crumbs a { color: var(--vtr-deep-soft); text-decoration: none; }
.vtr_crumbs a:hover { text-decoration: underline; }

.vtr_article { padding: 56px 0 74px; }

.vtr_article_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 288px;
  gap: 56px;
  align-items: start;
}

.vtr_prose { min-width: 0; }
.vtr_prose h2 { margin-top: 44px; }
.vtr_prose h3 { margin-top: 30px; }
.vtr_prose > p:first-of-type { font-size: 1.1rem; color: var(--vtr-muted); }
.vtr_prose ul, .vtr_prose ol { padding-left: 22px; margin: 0 0 1.3em; }
.vtr_prose li { margin-bottom: 9px; }
.vtr_prose figure { margin: 32px 0; }
.vtr_prose figcaption { font-size: 0.85rem; color: var(--vtr-muted); margin-top: 10px; }
.vtr_prose img { border: 1px solid var(--vtr-line); }

.vtr_meta_line {
  font-size: 0.85rem;
  color: var(--vtr-muted);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--vtr-deep);
}

.vtr_callout {
  background: var(--vtr-card);
  border: 1px solid var(--vtr-line);
  border-left: 5px solid var(--vtr-ochre);
  padding: 22px 26px;
  margin: 30px 0;
}
.vtr_callout p:last-child { margin-bottom: 0; }
.vtr_callout b { color: var(--vtr-deep); }

.vtr_table_scroll { overflow-x: auto; margin: 26px 0; border: 1px solid var(--vtr-line); }

table.vtr_table { border-collapse: collapse; width: 100%; min-width: 520px; background: var(--vtr-card); font-size: 0.93rem; }
table.vtr_table th, table.vtr_table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--vtr-line); }
table.vtr_table th { background: var(--vtr-deep); color: #FFFFFF; font-weight: 600; font-family: var(--vtr-body-face); }
table.vtr_table tr:last-child td { border-bottom: 0; }

.vtr_aside { position: sticky; top: 22px; }

.vtr_aside_box {
  background: var(--vtr-card);
  border: 1px solid var(--vtr-line);
  padding: 24px 24px 26px;
  margin-bottom: 24px;
}
.vtr_aside_box h3 { font-size: 1.02rem; margin-bottom: 14px; }
.vtr_aside_box p { font-size: 0.92rem; color: var(--vtr-muted); }
.vtr_aside_list { list-style: none; margin: 0; padding: 0; font-size: 0.93rem; }
.vtr_aside_list li { padding: 9px 0; border-bottom: 1px dotted var(--vtr-line); }
.vtr_aside_list li:last-child { border-bottom: 0; }
.vtr_aside_list a { color: var(--vtr-deep); text-decoration: none; }
.vtr_aside_list a:hover { color: var(--vtr-ochre-deep); text-decoration: underline; }

/* ---------- contact / form ---------- */

.vtr_contact_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.vtr_form_shell {
  background: var(--vtr-card);
  border: 1px solid var(--vtr-line);
  border-top: 5px solid var(--vtr-deep);
  padding: 34px 32px 36px;
}

.vtr_field { margin-bottom: 20px; }

.vtr_field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--vtr-deep);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.vtr_req { color: var(--vtr-ochre-deep); }

.vtr_field input,
.vtr_field select,
.vtr_field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--vtr-ink);
  background: var(--vtr-paper);
  border: 1.5px solid var(--vtr-line);
  border-radius: 3px;
  padding: 12px 14px;
}

.vtr_field textarea { min-height: 140px; resize: vertical; }

.vtr_field input:focus,
.vtr_field select:focus,
.vtr_field textarea:focus { border-color: var(--vtr-deep); background: var(--vtr-card); }

.vtr_consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0 26px;
  font-size: 0.88rem;
  color: var(--vtr-muted);
  line-height: 1.6;
}

.vtr_consent input { width: 19px; height: 19px; margin-top: 3px; flex-shrink: 0; accent-color: var(--vtr-ochre-deep); }

.vtr_detail_rows { border-top: 2px solid var(--vtr-deep); margin-bottom: 30px; }

.vtr_detail_row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--vtr-line);
}

.vtr_detail_row i { color: var(--vtr-ochre-deep); font-size: 1.15rem; margin-top: 3px; }
.vtr_detail_row span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--vtr-muted); font-weight: 700; margin-bottom: 3px; }
.vtr_detail_row a { color: var(--vtr-deep); text-decoration: none; font-weight: 500; }
.vtr_detail_row a:hover { color: var(--vtr-ochre-deep); text-decoration: underline; }

/* ---------- confirmation panel ---------- */

.vtr_done {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--vtr-card);
  border: 1px solid var(--vtr-line);
  border-top: 5px solid var(--vtr-ochre);
  padding: 56px 44px 52px;
}

.vtr_done_mark {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--vtr-ochre-tint);
  color: var(--vtr-ochre-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.vtr_done_actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- legal pages ---------- */

.vtr_legal { max-width: 860px; }
.vtr_legal h2 { margin-top: 40px; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.vtr_legal ul { padding-left: 22px; }
.vtr_legal li { margin-bottom: 9px; }

/* ---------- team ---------- */

.vtr_team { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 26px; }

.vtr_person { background: var(--vtr-card); border: 1px solid var(--vtr-line); padding: 26px; }
.vtr_person_face { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; background: var(--vtr-ochre-tint); margin-bottom: 16px; }
.vtr_person h3 { font-size: 1.08rem; margin-bottom: 4px; }
.vtr_person_role { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--vtr-ochre-deep); font-weight: 700; margin-bottom: 12px; }
.vtr_person p { font-size: 0.93rem; color: var(--vtr-muted); margin-bottom: 0; }

/* ---------- footer ---------- */

.vtr_foot { background: var(--vtr-ink); color: #B9C6CF; border-top: 5px solid var(--vtr-ochre); font-size: 0.94rem; }
.vtr_foot_grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 58px 0 44px; }
.vtr_foot h4 { color: #FFFFFF; font-size: 0.79rem; letter-spacing: 0.17em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--vtr-body-face); font-weight: 700; }
.vtr_foot_brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.vtr_foot_brand .vtr_brand_word { color: #FFFFFF; }
.vtr_foot p { font-size: 0.9rem; line-height: 1.7; color: #9FAFB9; }
.vtr_foot ul { list-style: none; margin: 0; padding: 0; }
.vtr_foot li { margin-bottom: 11px; }
.vtr_foot a { color: #B9C6CF; text-decoration: none; }
.vtr_foot a:hover { color: var(--vtr-ochre); text-decoration: underline; }
.vtr_foot_base { border-top: 1px solid rgba(255, 255, 255, 0.13); padding: 22px 0 30px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: 0.85rem; color: #8496A1; }

/* ---------- cookie bar ---------- */

.vtr_cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  background: var(--vtr-deep);
  color: #E3EDF3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--vtr-ochre);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 44px -18px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 1148px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.vtr_cookie p { margin: 0; max-width: 74ch; }
.vtr_cookie a { color: var(--vtr-ochre); }
.vtr_cookie_actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .vtr_burger { display: block; }

  .vtr_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--vtr-card);
    border-bottom: 1px solid var(--vtr-line);
    box-shadow: 0 18px 30px -22px rgba(16, 28, 38, 0.5);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 20px;
  }

  .vtr_nav.vtr_nav_open { display: flex; }
  .vtr_nav_link { padding: 13px 8px; border-bottom: 1px solid var(--vtr-line); border-radius: 0; }
  .vtr_nav_link[aria-current="page"] { box-shadow: inset 3px 0 0 var(--vtr-ochre); padding-left: 14px; }
  .vtr_nav_cta { margin: 16px 0 0; }

  .vtr_hero_grid,
  .vtr_duo,
  .vtr_duo_wide,
  .vtr_article_grid,
  .vtr_contact_grid,
  .vtr_call { grid-template-columns: minmax(0, 1fr); gap: 40px; }

  .vtr_hero_art_chip { left: auto; right: 12px; bottom: -24px; }
  .vtr_aside { position: static; }
  .vtr_call_actions { justify-content: flex-start; }
  .vtr_ledger { grid-template-columns: minmax(0, 1fr); }
  .vtr_ledger_cell { border-right: 0; border-bottom: 1px solid var(--vtr-line); }
  .vtr_ledger_cell:last-child { border-bottom: 0; }
  .vtr_steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .vtr_steps::before { display: none; }
  .vtr_foot_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .vtr_band { padding: 54px 0; }
  .vtr_hero { padding: 48px 0 58px; }
  .vtr_steps { grid-template-columns: minmax(0, 1fr); }
  .vtr_quote { grid-template-columns: minmax(0, 1fr); gap: 20px; padding: 30px 26px; }
  .vtr_foot_grid { grid-template-columns: minmax(0, 1fr); }
  .vtr_city_row { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .vtr_strip_row { font-size: 0.8rem; gap: 8px 20px; }
  .vtr_strip_tag { display: none; }
  .vtr_form_shell, .vtr_done { padding: 28px 22px 30px; }
  .vtr_cookie { padding: 18px; }
  .vtr_cookie_actions { width: 100%; }
  .vtr_cookie_actions .vtr_btn { flex: 1; }
  .vtr_hero_art_chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .vtr_btn:hover, .vtr_track:hover { transform: none; }
}
