/*! VX theme – (c) SBA. Proprietary. Design v0.1 (7 sep 2026). */
@import url("../fonts/fonts.css");

:root {
	--vx-ink: #1B1730;
	--vx-ink-2: #5B5670;
	--vx-ink-3: #8E89A3;
	--vx-ground: #FFFFFF;
	--vx-mist: #F4F2F8;
	--vx-line: #E4E1EC;
	--vx-accent: #D71A54;
	--vx-accent-ink: #FFFFFF;
	--vx-teal: #0A8B9B;
	--vx-teal-soft: #E3F4F6;
	--vx-sun: #FFCC00;
	--vx-green: #2FB86A;
	--vx-card: #FFFFFF;
	--vx-strip: #1B1730;
	--vx-strip-ink: #FFFFFF;
	--vx-strip-muted: #C9C4DA;
	--vx-strip-line: #4A4462;
	--vx-shadow: 0 12px 32px rgba(27, 23, 48, .10);
	--vx-rainbow: linear-gradient(90deg, #FFCC00 0%, #C9D411 14%, #65AF4F 28%, #44B1A8 42%, #0A8B9B 56%, #76BEEA 68%, #6C5DA5 80%, #F194BE 92%, #E50050 100%);
	--vx-display: "Raleway", ui-sans-serif, system-ui, sans-serif;
	--vx-body: "Figtree", ui-sans-serif, system-ui, sans-serif;
	--vx-label: "Montserrat", ui-sans-serif, system-ui, sans-serif;
	--vx-r: 14px;
	--vx-max: 1180px;
	--bs-gutter-x: 1.5rem;
}

/* ---------- base ---------- */
html { scroll-padding-top: 90px; }
body { margin: 0; background: var(--vx-ground); color: var(--vx-ink); font-family: var(--vx-body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--vx-display); margin: 0; text-wrap: balance; line-height: 1.08; letter-spacing: -.015em; color: var(--vx-ink); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--vx-teal); outline-offset: 2px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.vx-skip { position: absolute; left: -999px; top: 8px; background: var(--vx-ink); color: var(--vx-ground); padding: .5rem 1rem; z-index: 100; }
.vx-skip:focus { left: 8px; }
.vx-wrap { max-width: var(--vx-max); margin: 0 auto; padding: 0 24px; }
.vx-narrow { max-width: 820px; }
.vx-kicker { display: block; font-family: var(--vx-label); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--vx-accent); font-weight: 700; margin-bottom: 8px; }
.vx-kicker--teal { color: var(--vx-teal); }
.vx-kicker--sun { color: var(--vx-sun); }
.vx-lead { font-size: 1.15rem; color: var(--vx-ink-2); max-width: 48ch; margin-top: 14px; }
.vx-meta { font-size: .8rem; color: var(--vx-ink-3); }
.vx-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.vx-prose { max-width: 68ch; color: var(--vx-ink-2); }
.vx-prose p { margin: 0 0 1em; }
.vx-prose h2, .vx-prose h3, .vx-prose h4 { margin: 1.4em 0 .5em; }
.vx-prose ul, .vx-prose ol { padding-left: 1.3em; margin: 0 0 1em; }
.vx-prose img { border-radius: var(--vx-r); margin: 1em 0; width: 100%; max-height: 440px; object-fit: cover; }
.vx-sec__title { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 12px; }
.vx-prose h2 { font-size: 1.5rem; }
.vx-prose h3 { font-size: 1.2rem; }
.vx-prose a { color: var(--vx-accent); }
.vx-prose table { border-collapse: collapse; width: 100%; font-size: .95rem; }
.vx-prose td, .vx-prose th { border-bottom: 1px solid var(--vx-line); padding: 6px 8px; text-align: left; }
.vx-legacy .container, .vx-legacy .row { width: auto; margin: 0; padding: 0; }
.vx-legacy [class*="col-"] { width: auto; float: none; padding: 0; }
.vx-crumbs { font-size: .85rem; color: var(--vx-ink-3); padding: 18px 0 0; }
.vx-crumbs a { text-decoration: none; }

/* ---------- buttons (theme overrides Bootstrap's .btn) ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: var(--vx-body); line-height: 1.2; transition: transform .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--vx-accent); color: var(--vx-accent-ink); }
.btn-accent:hover, .btn-accent:focus { background: #BE1449; color: var(--vx-accent-ink); }
.btn-ghost { border-color: var(--vx-line); background: var(--vx-card); color: var(--vx-ink); }
.btn-ghost:hover, .btn-ghost:focus { border-color: var(--vx-ink-3); background: var(--vx-card); color: var(--vx-ink); }
.btn-ink { background: var(--vx-ink); color: var(--vx-ground); }
.btn-ink:hover, .btn-ink:focus { background: var(--vx-ink); color: var(--vx-ground); }
.btn:disabled, .btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.vx-nav__cta { white-space: nowrap; }
@media (max-width: 480px) { .btn { padding: .75rem 1.1rem; font-size: .9rem; } .vx-filter .btn { white-space: normal; text-align: center; } }
@media (max-width: 480px) { .vx-nav { gap: 12px; } .vx-logo img { height: 30px; } .vx-nav__cta.btn { padding: .6rem .85rem; font-size: .85rem; } }

/* ---------- header ---------- */
.vx-top { position: sticky; top: 0; z-index: 40; background: var(--vx-ground); border-bottom: 1px solid var(--vx-line); }
.vx-scrolled .vx-top { box-shadow: 0 6px 24px rgba(27, 23, 48, .08); }
.vx-nav { display: flex; align-items: center; gap: 24px; height: 76px; }
.vx-logo { flex: 0 0 auto; }
.vx-logo img { height: 40px; width: auto; max-width: none; }
.vx-menu { margin-left: auto; }
.vx-menu__list { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; font-weight: 500; font-size: .95rem; }
.vx-menu__list a { text-decoration: none; color: var(--vx-ink-2); }
.vx-menu__list a:hover, .vx-menu__list .current-menu-item > a, .vx-menu__list .current-menu-ancestor > a { color: var(--vx-ink); }
.vx-menu__list li { position: relative; }
.vx-menu__list .sub-menu { list-style: none; position: absolute; top: 100%; left: -12px; padding: 10px 0; margin: 0; min-width: 200px; background: var(--vx-card); border: 1px solid var(--vx-line); border-radius: 12px; box-shadow: var(--vx-shadow); display: none; }
.vx-menu__list li:hover > .sub-menu, .vx-menu__list li:focus-within > .sub-menu { display: block; }
.vx-menu__list .sub-menu a { display: block; padding: 8px 16px; }
.vx-deskchip { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .8rem .45rem .6rem; border-radius: 999px; background: var(--vx-mist); font-size: .85rem; font-weight: 500; text-decoration: none; white-space: nowrap; }
.vx-deskchip__dot, .vx-desk__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--vx-ink-3); flex: none; display: inline-block; }
html[data-vx-desk="open"] .vx-deskchip__dot { background: var(--vx-green); }
html[data-vx-desk="open"] .vx-deskchip__closed, html:not([data-vx-desk="open"]) .vx-deskchip__open { display: none; }
[data-vx-desk-for] [data-vx-desk-open], [data-vx-desk-for][data-vx-desk="open"] [data-vx-desk-closed] { display: none; }
[data-vx-desk-for][data-vx-desk="open"] [data-vx-desk-open] { display: inline; }
[data-vx-desk-for][data-vx-desk="open"] .vx-desk__dot { background: var(--vx-green); }
.vx-burger { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.vx-burger span:not(.visually-hidden) { display: block; height: 2px; background: var(--vx-ink); border-radius: 2px; }
.vx-rainbow { height: 4px; background: var(--vx-rainbow); }
.vx-mobile { padding: 16px 24px 24px; border-top: 1px solid var(--vx-line); background: var(--vx-ground); }
.vx-mobile__list { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 6px; }
.vx-mobile__list a { display: block; padding: 10px 0; font-weight: 600; text-decoration: none; }
.vx-mobile__list .sub-menu { list-style: none; padding-left: 16px; margin: 0; }
.vx-mobile__list .sub-menu a { font-weight: 400; color: var(--vx-ink-2); padding: 6px 0; }
@media (max-width: 960px) {
	.vx-menu, .vx-deskchip { display: none; }
	.vx-nav__cta { margin-left: auto; }
	.vx-burger { display: flex; }
}
@media (min-width: 961px) { .vx-mobile { display: none !important; } }

/* ---------- home hero ---------- */
.vx-home-hero { position: relative; padding: 56px 0 64px; background: var(--vx-mist); overflow: hidden; }
.vx-home-hero__bg { position: absolute; inset: 0; opacity: .10; pointer-events: none; mix-blend-mode: multiply; }
.vx-home-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.vx-home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--vx-mist) 0%, rgba(244, 242, 248, 0) 60%); pointer-events: none; }
.vx-home-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.vx-home-hero__title { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.vx-home-hero__title span { color: var(--vx-accent); }
.vx-search { background: var(--vx-card); border-radius: 20px; box-shadow: var(--vx-shadow); padding: 22px; display: grid; gap: 12px; }
.vx-search__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vx-field { display: grid; gap: 4px; }
.vx-field label { font-size: .72rem; font-weight: 600; color: var(--vx-ink-2); letter-spacing: .04em; text-transform: uppercase; }
.vx-field input, .vx-field select, .vx-field textarea, .wpcf7 input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .wpcf7 select, .wpcf7 textarea { font: inherit; padding: .7rem .85rem; border: 1px solid var(--vx-line); border-radius: 10px; background: var(--vx-ground); color: var(--vx-ink); width: 100%; }
.vx-search__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .85rem; color: var(--vx-ink-2); flex-wrap: wrap; }
@media (max-width: 900px) { .vx-home-hero__grid { grid-template-columns: 1fr; } .vx-home-hero { padding: 40px 0; } }

/* ---------- page hero ---------- */
.vx-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 28px 0 40px; }
.vx-hero--text { grid-template-columns: 1fr; }
.vx-hero--under { grid-template-columns: 1fr; padding-top: 8px; }
.vx-banner { position: relative; min-height: 340px; max-height: 480px; height: 42vw; display: flex; align-items: flex-end; overflow: hidden; background: var(--vx-ink); }
.vx-banner__img { position: absolute; inset: 0; }
.vx-banner__img img { width: 100%; height: 100%; object-fit: cover; }
.vx-banner__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.vx-banner__slide.is-active { opacity: 1; }
.vx-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,34,0) 30%, rgba(20,17,34,.75) 100%); }
.vx-banner__body { position: relative; z-index: 1; padding-bottom: 40px; padding-top: 40px; }
.vx-banner__body h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.vx-kicker--light { color: #fff; opacity: .9; }
.vx-banner + .vx-wrap .vx-crumbs { margin-top: 18px; }
.vx-hero__img { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3; }
.vx-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.vx-tip { border-left: 4px solid var(--vx-teal); background: var(--vx-teal-soft); padding: 14px 18px; border-radius: 0 12px 12px 0; margin-top: 20px; max-width: 48ch; }
.vx-tip p { color: var(--vx-ink); }
.vx-tip b { font-family: var(--vx-display); font-size: 1.4rem; color: var(--vx-teal); }
@media (max-width: 900px) { .vx-hero { grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
.vx-sec { padding: 56px 0; }
.vx-sec + .vx-sec { padding-top: 0; }
.vx-sec__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.vx-sec__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.vx-sec--with-image .vx-sec__grid { grid-template-columns: 1.1fr .9fr; }
.vx-sec__img { border-radius: 20px; overflow: hidden; }
.vx-sec__img img { width: 100%; object-fit: cover; }
.vx-sec__intro { margin-bottom: 22px; }
.vx-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vx-card { background: var(--vx-card); border: 1px solid var(--vx-line); border-radius: var(--vx-r); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; }
a.vx-card:hover { border-color: var(--vx-ink-3); }
.vx-card__img img { height: 200px; width: 100%; object-fit: cover; }
.vx-card__body { padding: 18px 18px 20px; display: grid; gap: 8px; align-content: start; }
.vx-card__body p { color: var(--vx-ink-2); font-size: .95rem; }
.vx-card__body h3, .vx-card__title { font-size: 1.1rem; font-family: var(--vx-display); font-weight: 700; }
.vx-tiles { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.vx-tile { position: relative; border-radius: var(--vx-r); overflow: hidden; background: var(--vx-mist); text-decoration: none; color: #fff; display: block; }
.vx-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vx-tile:hover img { transform: scale(1.04); }
.vx-tile__cap { position: absolute; inset: auto 0 0 0; padding: 18px; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(20, 15, 35, .85) 100%); color: #fff; }
.vx-tile__cap small { display: block; font-family: var(--vx-label); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; margin-bottom: 4px; }
.vx-tile__cap b { font-family: var(--vx-display); font-size: 1.35rem; font-weight: 800; }
.vx-tile--big { grid-column: span 2; grid-row: span 2; }
.vx-details { background: var(--vx-mist); border-radius: 16px; padding: 22px 24px; max-width: 760px; }
.vx-checklist { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 8px; font-size: .95rem; }
.vx-checklist li::before { content: "✓"; color: var(--vx-teal); font-weight: 700; margin-right: 8px; }
.vx-days { list-style: none; padding: 0; margin: 20px 0 0; border-left: 2px solid var(--vx-line); max-width: 760px; }
.vx-day { padding: 6px 0 22px 22px; position: relative; }
.vx-day::before { content: ""; position: absolute; left: -7px; top: 12px; width: 12px; height: 12px; border-radius: 50%; background: var(--vx-accent); border: 2px solid var(--vx-ground); }
.vx-day h3 { font-size: 1.05rem; margin-bottom: 4px; }
.vx-faq { border-bottom: 1px solid var(--vx-line); padding: 12px 0; }
.vx-faq summary { font-weight: 600; cursor: pointer; }
.vx-strip { background: var(--vx-strip); color: var(--vx-strip-ink); border-radius: 24px; padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.vx-strip::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--vx-rainbow); }
.vx-strip h2 { color: var(--vx-strip-ink); }
.vx-strip .vx-prose, .vx-strip p { color: var(--vx-strip-muted); }
.vx-strip .btn-ghost { background: transparent; border-color: var(--vx-strip-line); color: var(--vx-strip-ink); }
.vx-strip--small { grid-template-columns: 1fr; padding: 32px; }
.vx-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vx-stat { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; padding: 16px; }
.vx-stat b { display: block; font-family: var(--vx-display); font-size: 1.8rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.vx-stat span { font-size: .85rem; color: var(--vx-strip-muted); }
@media (max-width: 900px) {
	.vx-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.vx-tiles { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
	.vx-strip { grid-template-columns: 1fr; padding: 28px; }
	.vx-sec--with-image .vx-sec__grid { grid-template-columns: 1fr; }
	.vx-sec__head { flex-direction: column; align-items: start; }
}
@media (max-width: 520px) { .vx-cards { grid-template-columns: 1fr; } .vx-tiles { grid-auto-rows: 160px; } .vx-tile--big { grid-column: span 2; grid-row: span 1; } .vx-wrap { --bs-gutter-x: 2.5rem; padding: 0 20px; } }

/* ---------- offices ---------- */
.vx-chooser-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; padding: 36px 0 24px; }
.vx-filter { display: flex; gap: 10px; flex-wrap: wrap; }
.vx-filter input { font: inherit; padding: .8rem 1rem; border: 1px solid var(--vx-line); border-radius: 999px; background: var(--vx-card); color: var(--vx-ink); flex: 1; min-width: 220px; }
.vx-chooser { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; padding-bottom: 40px; }
.vx-offices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.vx-office { border: 1px solid var(--vx-line); border-radius: var(--vx-r); padding: 18px; background: var(--vx-card); display: grid; gap: 8px; text-decoration: none; }
.vx-office:hover { border-color: var(--vx-ink-3); }
.vx-office h2 { font-size: 1.05rem; }
.vx-office__addr { font-size: .9rem; color: var(--vx-ink-2); }
.vx-office__open { font-size: .8rem; display: flex; align-items: center; gap: 6px; color: var(--vx-ink-2); }
.vx-office__go { margin-top: 6px; font-weight: 600; color: var(--vx-accent); font-size: .9rem; }
.vx-office-empty { grid-column: 1 / -1; color: var(--vx-ink-2); }
.vx-map, .vx-embed { border-radius: 20px; overflow: hidden; border: 1px solid var(--vx-line); background: var(--vx-mist); display: grid; align-content: center; justify-items: center; gap: 12px; color: var(--vx-ink-2); text-align: center; padding: 24px; min-height: 320px; }
.vx-map p, .vx-embed p { max-width: 100%; }
.vx-map iframe { width: 100%; height: 100% !important; min-height: 480px; display: block; }
.vx-map { position: sticky; top: 92px; aspect-ratio: 4 / 5; max-width: 100%; }
.vx-office-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 28px 0 40px; }
.vx-office-hero__img { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3; }
.vx-office-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.vx-desk { display: inline-flex; align-items: center; gap: .6rem; padding: .5rem .9rem; border-radius: 999px; background: var(--vx-mist); font-size: .9rem; font-weight: 500; margin-top: 12px; }
.vx-desk a { text-decoration: none; }
.vx-office-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.vx-office-body h2 { font-size: 1.6rem; margin-bottom: 12px; }
.vx-infocard { border: 1px solid var(--vx-line); border-radius: 20px; padding: 24px; display: grid; gap: 18px; background: var(--vx-card); align-content: start; }
.vx-infocard dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 0; font-size: .95rem; }
.vx-infocard dt { color: var(--vx-ink-3); }
.vx-infocard dd { margin: 0; }
.vx-hours { width: 100%; border-collapse: collapse; font-size: .95rem; font-variant-numeric: tabular-nums; margin-top: 8px; }
.vx-hours td { padding: 6px 0; border-bottom: 1px solid var(--vx-line); }
.vx-hours td:last-child { text-align: right; }
.vx-hours tr.vx-today td { font-weight: 600; color: var(--vx-teal); }
.vx-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.vx-badge { border: 1px solid var(--vx-line); border-radius: 6px; padding: 4px 8px; font-size: .7rem; font-weight: 600; letter-spacing: .06em; }
.vx-office-extra { padding-bottom: 48px; }
@media (max-width: 900px) {
	.vx-chooser, .vx-chooser-head, .vx-office-hero, .vx-office-body { grid-template-columns: 1fr; }
	.vx-offices { grid-template-columns: 1fr; }
	.vx-map { position: static; aspect-ratio: auto; min-height: 260px; }
}

/* ---------- forms ---------- */
.vx-form-page { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 36px 0 60px; }
.vx-chosen { border: 1px solid var(--vx-line); border-radius: 16px; padding: 16px 18px; display: flex; gap: 14px; align-items: center; background: var(--vx-mist); margin-top: 24px; }
.vx-chosen .vx-desk__dot { background: var(--vx-green); }
.vx-chosen small { color: var(--vx-ink-2); }
.vx-chosen > a:not(.btn) { font-weight: 600; color: var(--vx-accent); text-decoration: none; margin-left: auto; font-size: .9rem; white-space: nowrap; }
.vx-chosen--none { border-style: dashed; justify-content: space-between; }
.vx-form .wpcf7-form { display: grid; gap: 14px; }
.vx-form .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin: 0; width: auto; }
.vx-form input[type="date"] { min-height: 3rem; }
.vx-form .row > * { padding: 0; width: auto; max-width: none; }
.vx-form .field { display: grid; gap: 6px; }
.vx-form .field > label { font-size: .85rem; font-weight: 600; color: var(--vx-ink-2); }
.vx-form .field > label i { color: var(--vx-accent); font-style: normal; }
.vx-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]), .vx-form select, .vx-form textarea { font: inherit; width: 100%; padding: .75rem .9rem; border: 1px solid var(--vx-line); border-radius: 10px; background: var(--vx-card); color: var(--vx-ink); }
.vx-form input:focus-visible, .vx-form textarea:focus-visible, .vx-form select:focus-visible { outline: 3px solid var(--vx-teal); outline-offset: 2px; }
.vx-form .wpcf7-radio, .vx-form .wpcf7-checkbox { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: .4rem 0; }
.vx-form .wpcf7-list-item label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.vx-form input[type="radio"], .vx-form input[type="checkbox"] { accent-color: var(--vx-accent); width: 18px; height: 18px; }
.vx-form .wpcf7-form-control-wrap { display: block; }
.vx-form .wpcf7-list-item { margin: 0 12px 0 0; }
.vx-form textarea { min-height: 130px; }
.vx-form input[type="submit"] { justify-self: start; background: var(--vx-accent); color: #fff; border: 0; border-radius: 999px; padding: .85rem 1.35rem; font: inherit; font-weight: 600; cursor: pointer; }
.vx-form--disabled .wpcf7-form { opacity: .5; pointer-events: none; }
.vx-form .wpcf7-not-valid-tip { color: var(--vx-accent); font-size: .85rem; }
.vx-form .wpcf7-response-output { border: 1px solid var(--vx-line); border-radius: 12px; padding: 12px 16px; margin: 0; }
.vx-form .wpcf7-form.init .wpcf7-response-output, .vx-form .wpcf7-response-output:empty { display: none; }
.vx-notice { background: var(--vx-mist); border-radius: 12px; padding: 16px; }
@media (max-width: 900px) { .vx-form-page { grid-template-columns: 1fr; } .vx-form .row { grid-template-columns: 1fr; } }

/* ---------- booking, appointment, posts, misc ---------- */
.vx-book, .vx-appointment, .vx-notfound, .vx-archive-head { padding: 36px 0 24px; }
#TRPPR { min-height: 200px; margin-top: 24px; }
.vx-post { padding: 36px 0 0; }
.vx-post__head { max-width: 820px; }
.vx-post__img { border-radius: 24px; overflow: hidden; margin-top: 28px; }
.vx-post--banner { padding-top: 24px; }
.vx-post--banner .vx-lead { max-width: 68ch; }
.vx-post__foot { padding-bottom: 60px; }
.vx-pagination { display: flex; justify-content: center; margin: 32px 0 60px; }
.vx-pagination .screen-reader-text, .screen-reader-text { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; white-space: nowrap; }
.vx-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.vx-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; border: 1px solid var(--vx-line); border-radius: 999px; text-decoration: none; }
.vx-pagination a.page-numbers:hover { border-color: var(--vx-ink); }
.vx-pagination .current { background: var(--vx-ink); color: var(--vx-ground); }
.vx-searchform { display: flex; gap: 10px; margin-top: 24px; }
.vx-searchform input { flex: 1; font: inherit; padding: .8rem 1rem; border: 1px solid var(--vx-line); border-radius: 999px; }

/* ---------- consent bar ---------- */
.vx-consent { position: fixed; inset: auto 16px 16px 16px; z-index: 60; background: var(--vx-card); border: 1px solid var(--vx-line); border-radius: 16px; box-shadow: var(--vx-shadow); padding: 16px 20px; }
.vx-consent__inner { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; max-width: var(--vx-max); margin: 0 auto; }
.vx-consent__inner p { font-size: .9rem; color: var(--vx-ink-2); max-width: 70ch; }
.vx-consent__actions { display: flex; gap: 8px; }

/* ---------- footer ---------- */
.vx-footer { background: var(--vx-mist); border-top: 1px solid var(--vx-line); padding: 48px 0 28px; margin-top: 40px; }
.vx-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(5, 1fr); gap: 28px; font-size: .9rem; }
.vx-footer__brand img { height: 36px; width: auto; }
.vx-footer__brand p { color: var(--vx-ink-2); margin-top: 14px; max-width: 30ch; }
.vx-footer__title { font-family: var(--vx-label); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; color: var(--vx-ink-2); font-weight: 700; }
.vx-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.vx-footer__list a { text-decoration: none; color: var(--vx-ink-2); }
.vx-footer__list a:hover { color: var(--vx-ink); }
.vx-footer__bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--vx-line); font-size: .8rem; color: var(--vx-ink-3); flex-wrap: wrap; }
@media (max-width: 1100px) { .vx-footer__grid { grid-template-columns: 1fr 1fr 1fr; } .vx-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .vx-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }

/* Motion layer (assets/js/motion.js). Every effect is off under prefers-reduced-motion. */
.vx-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease var(--vx-delay, 0ms), transform .6s cubic-bezier(.2,.7,.2,1) var(--vx-delay, 0ms); }
.vx-reveal.is-in { opacity: 1; transform: none; }
.vx-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
a.vx-card:hover, .vx-office:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow); }
.vx-card__img img { transition: transform .6s ease; }
a.vx-card:hover .vx-card__img img { transform: scale(1.05); }
.vx-tile:hover img { transform: scale(1.07); }
.vx-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(20,17,34,.7)); transition: opacity .3s ease; }
.vx-tile:hover::after { opacity: .85; }
.vx-tile__cap { z-index: 1; }
.vx-banner__slide.is-active img { animation: vxKenBurns 18s ease-out both; transform-origin: 50% 40%; }
@keyframes vxKenBurns { from { transform: scale(1.08); } to { transform: scale(1); } }
.vx-top { transition: box-shadow .25s ease; }
.vx-top.is-scrolled { box-shadow: 0 6px 24px rgba(20,17,34,.08); }
.vx-top.is-scrolled .vx-nav { height: 64px; transition: height .25s ease; }
.vx-nav { transition: height .25s ease; }
.vx-carousel { position: relative; }
.vx-carousel__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding: 4px 4px 18px; scrollbar-width: none; grid-template-columns: none; }
.vx-carousel__track::-webkit-scrollbar { display: none; }
.vx-carousel__track > .vx-card { flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start; }
.vx-carousel__btn { position: absolute; top: 40%; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--vx-line); background: var(--vx-card); color: var(--vx-ink); font-size: 1.1rem; cursor: pointer; box-shadow: var(--vx-shadow); display: grid; place-items: center; transition: opacity .2s ease, transform .2s ease; }
.vx-carousel__btn:hover { transform: scale(1.06); }
.vx-carousel__btn:disabled { opacity: 0; pointer-events: none; }
.vx-carousel__btn--prev { left: -22px; }
.vx-carousel__btn--next { right: -22px; }
@media (max-width: 900px) { .vx-carousel__track > .vx-card { flex-basis: calc((100% - 20px) / 2); } }
@media (max-width: 520px) { .vx-carousel__track > .vx-card { flex-basis: 86%; } .vx-carousel__btn { display: none; } }
.btn { transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { box-shadow: 0 8px 20px rgba(20,17,34,.12); }
@media (prefers-reduced-motion: reduce) {
	.vx-reveal { opacity: 1; transform: none; transition: none; }
	.vx-banner__slide.is-active img, .vx-home-hero__slide img { animation: none; }
	.vx-card, .vx-card__img img, .vx-tile img, .btn { transition: none; }
}

/* Homepage photo hero: crossfading slides with a slow zoom, dark gradient, light text. */
.vx-home-hero--photo { background: var(--vx-ink); color: #fff; padding: 72px 0 80px; min-height: 560px; display: flex; align-items: center; }
.vx-home-hero--photo::after { background: linear-gradient(90deg, rgba(20,17,34,.82) 0%, rgba(20,17,34,.55) 45%, rgba(20,17,34,.25) 100%); }
.vx-home-hero__slides { position: absolute; inset: 0; }
.vx-home-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.vx-home-hero__slide.is-active { opacity: 1; }
.vx-home-hero__slide img { width: 100%; height: 100%; object-fit: cover; transform-origin: 50% 50%; }
.vx-home-hero__slide.is-active img { animation: vxKenBurns 9s ease-out both; }
.vx-home-hero--photo .vx-home-hero__title, .vx-home-hero--photo .vx-lead { color: #fff; }
.vx-home-hero--photo .vx-home-hero__title span { color: #FFCC00; }
.vx-home-hero--photo .vx-lead { opacity: .92; }
.vx-home-hero--photo .btn-ink { background: #fff; color: var(--vx-ink); }
.vx-home-hero--photo .btn-ink:hover, .vx-home-hero--photo .btn-ink:focus { background: #fff; color: var(--vx-ink); }
.vx-home-hero--photo .btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.vx-home-hero--photo .btn-ghost:hover, .vx-home-hero--photo .btn-ghost:focus { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.vx-home-hero__grid { width: 100%; }
@media (max-width: 900px) { .vx-home-hero--photo { min-height: 0; padding: 48px 0; } .vx-home-hero--photo::after { background: rgba(20,17,34,.65); } }
