:root {
  --vvs-ink: #0e2b39;
  --vvs-ink-soft: #173f51;
  --vvs-blue: #218dd1;
  --vvs-blue-bright: #48afe5;
  --vvs-sky: #eaf6fc;
  --vvs-cream: #f6f4ef;
  --vvs-line: #d8e2e6;
  --vvs-muted: #61717a;
  --vvs-white: #fff;
  --vvs-display: "Aptos Display", "Segoe UI", Arial, sans-serif;
  --vvs-body: "Aptos", "Segoe UI", Arial, sans-serif;
  --vvs-shadow: 0 18px 55px rgba(14, 43, 57, .12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f8faf9;
  color: var(--vvs-ink);
  font-family: var(--vvs-body);
  line-height: 1.6;
}

body.admin-bar .vvs-header {
  top: 32px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 99999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--vvs-white);
  box-shadow: var(--vvs-shadow);
}

.vvs-professional-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 35px;
  padding: 7px 24px;
  background: var(--vvs-ink);
  color: #dceaf0;
  font-size: 11px;
  letter-spacing: .04em;
  text-align: center;
}

.vvs-professional-bar span {
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vvs-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 0 clamp(24px, 5vw, 78px);
  border-bottom: 1px solid rgba(14, 43, 57, .1);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.vvs-brand,
.vvs-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.vvs-brand img {
  width: 62px;
  height: 50px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.vvs-brand > span {
  display: flex;
  flex-direction: column;
  font-family: var(--vvs-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.vvs-brand strong {
  color: var(--vvs-blue);
}

.vvs-primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.vvs-primary-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
}

.vvs-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--vvs-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.vvs-primary-nav a:hover::after,
.vvs-primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vvs-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.vvs-search-toggle,
.vvs-menu-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.vvs-search-toggle {
  color: var(--vvs-muted);
  font-size: 12px;
  font-weight: 600;
}

.vvs-contact-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--vvs-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.vvs-menu-toggle {
  display: none;
}

.vvs-search-panel {
  position: fixed;
  z-index: 99;
  top: 121px;
  right: 0;
  left: 0;
  padding: 24px clamp(24px, 5vw, 78px);
  border-bottom: 1px solid var(--vvs-line);
  background: #fff;
  box-shadow: 0 15px 30px rgba(14, 43, 57, .1);
}

.vvs-search-panel[hidden] {
  display: none;
}

.vvs-search-panel > div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.vvs-search-panel form {
  display: flex;
  margin: 0;
}

.vvs-search-panel input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--vvs-line);
  border-right: 0;
  border-radius: 3px 0 0 3px;
}

.vvs-search-panel button {
  min-width: 110px;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: var(--vvs-blue);
  color: #fff;
  font-weight: 700;
}

.vvs-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 710px;
  padding: 34px clamp(24px, 5vw, 78px) 68px;
  overflow: hidden;
  background: linear-gradient(128deg, #f9fbfa 0%, #f5fafb 52%, #eaf5fa 100%);
}

.vvs-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 8% 25px 2%;
}

.vvs-eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--vvs-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.vvs-eyebrow > span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vvs-blue-bright);
  box-shadow: 0 0 0 5px rgba(66, 169, 227, .13);
}

.vvs-hero h1,
.vvs-section-heading h2,
.vvs-featured-head h2,
.vvs-story-copy h2,
.vvs-contact-band h2,
.vvs-page-header h1,
.vvs-not-found h1 {
  margin: 0;
  font-family: var(--vvs-display);
  font-weight: 600;
  letter-spacing: -.055em;
}

.vvs-hero h1 {
  margin-top: 24px;
  font-size: clamp(58px, 6.4vw, 94px);
  line-height: .96;
}

.vvs-hero h1 em,
.vvs-section-heading h2 em,
.vvs-featured-head h2 em,
.vvs-story-copy h2 em {
  color: var(--vvs-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.vvs-hero-copy > p {
  max-width: 520px;
  margin: 30px 0 0;
  color: #526976;
  font-size: 17px;
  line-height: 1.65;
}

.vvs-professional-note {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 520px;
  margin-top: 23px;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(33, 141, 209, .2);
  border-radius: 3px;
  background: rgba(255, 255, 255, .66);
}

.vvs-professional-note > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--vvs-ink);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.vvs-professional-note p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  color: #7a8a92;
  font-size: 10px;
  line-height: 1.35;
}

.vvs-professional-note strong {
  color: var(--vvs-ink);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vvs-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}

.vvs-primary-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  background: var(--vvs-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.vvs-primary-button:hover,
.vvs-primary-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #147cb9;
  box-shadow: 0 12px 24px rgba(33, 141, 209, .2);
  color: #fff;
  transform: translateY(-2px);
}

.vvs-primary-button.dark {
  width: fit-content;
  background: var(--vvs-ink);
}

.vvs-primary-button.light {
  background: #fff;
  color: var(--vvs-ink);
}

.vvs-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 750;
}

.vvs-text-link span,
.vvs-featured-head > a span {
  color: var(--vvs-blue);
}

.vvs-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 46px;
}

.vvs-proof-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--vvs-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}

.vvs-proof p {
  margin: 0;
  color: #70808a;
  font-size: 11px;
  line-height: 1.45;
}

.vvs-proof strong {
  color: var(--vvs-ink);
  font-size: 12px;
}

.vvs-hero-art {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 3px 3px 120px 3px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .9) 0 5%, transparent 18%),
    linear-gradient(145deg, #d9eff8 0%, #a9d9ee 38%, #76c0e3 75%, #54a7d2 100%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .34);
}

.vvs-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.vvs-orbit.orbit-one {
  top: -40%;
  right: -12%;
  width: 720px;
  height: 720px;
}

.vvs-orbit.orbit-two {
  right: -33%;
  bottom: -60%;
  width: 800px;
  height: 800px;
}

.vvs-iris {
  position: absolute;
  top: 50%;
  left: 51%;
  width: min(37vw, 510px);
  height: min(37vw, 510px);
  border: 4px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 3deg, rgba(255, 255, 255, .38) 0 1deg, transparent 1deg 6deg),
    radial-gradient(circle, #163a4b 0 14%, #2d8bb8 15% 32%, #7dc6e3 33% 56%, #bde6f4 57% 62%, transparent 63%);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, .07), 0 24px 70px rgba(18, 94, 132, .28);
  transform: translate(-50%, -50%);
}

.vvs-iris::before,
.vvs-iris::after {
  position: absolute;
  top: 14%;
  left: 20%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  content: "";
}

.vvs-iris::before {
  width: 66px;
  height: 30px;
  filter: blur(2px);
  transform: rotate(-35deg);
}

.vvs-iris::after {
  top: 22%;
  left: 28%;
  width: 23px;
  height: 16px;
}

.vvs-pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 26%;
  height: 26%;
  border: 5px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #37697d 0 4%, #0d2c3a 17%, #04151c 70%);
  transform: translate(-50%, -50%);
}

.vvs-pupil span {
  position: absolute;
  top: 17%;
  left: 21%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
}

.vvs-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(31, 86, 111, .14);
  backdrop-filter: blur(10px);
}

.vvs-floating-card small {
  color: #6c8793;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.vvs-floating-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--vvs-display);
  font-size: 14px;
}

.vvs-practice-card {
  top: 16%;
  left: 6%;
  gap: 13px;
  padding: 15px 18px;
  border-radius: 3px;
}

.vvs-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #56ba98;
  box-shadow: 0 0 0 5px rgba(86, 186, 152, .13);
}

.vvs-focus-card {
  right: 5%;
  bottom: 13%;
  display: block;
  min-width: 170px;
  padding: 19px 21px;
  border-radius: 3px;
}

.vvs-focus-card strong {
  font-size: 21px;
  line-height: 1.12;
}

.vvs-mini-eye {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 31px;
  height: 18px;
  border: 1px solid var(--vvs-blue);
  border-radius: 70% 15% 70% 15%;
  transform: rotate(-35deg);
}

.vvs-mini-eye::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vvs-blue);
  content: "";
  transform: translate(-50%, -50%);
}

.vvs-hero-caption {
  position: absolute;
  bottom: 34px;
  left: 35px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.vvs-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--vvs-line);
  border-bottom: 1px solid var(--vvs-line);
  background: #fff;
}

.vvs-trust-strip > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 28px clamp(18px, 3vw, 46px);
  border-right: 1px solid var(--vvs-line);
}

.vvs-trust-strip > div:last-child {
  border-right: 0;
}

.vvs-trust-strip span {
  grid-row: span 2;
  color: var(--vvs-blue);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.vvs-trust-strip strong {
  font-size: 12px;
}

.vvs-trust-strip small {
  margin-top: 3px;
  color: #87939a;
  font-size: 10px;
}

.vvs-category-section,
.vvs-featured-section {
  padding: 110px clamp(24px, 6vw, 92px);
}

.vvs-section-heading,
.vvs-featured-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.vvs-section-heading h2,
.vvs-featured-head h2,
.vvs-story-copy h2,
.vvs-contact-band h2 {
  margin-top: 15px;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1;
}

.vvs-section-heading > p {
  max-width: 420px;
  margin: 0 4% 5px 0;
  color: var(--vvs-muted);
  font-size: 14px;
  line-height: 1.65;
}

.vvs-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 58px;
}

.vvs-category-card {
  position: relative;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.vvs-category-card:hover,
.vvs-category-card:focus-visible {
  z-index: 2;
  box-shadow: var(--vvs-shadow);
  transform: translateY(-5px);
}

.accent-blue { background: #e2f3fb; }
.accent-mint { background: #e6f1ed; }
.accent-peach { background: #f4e9df; }
.accent-lilac { background: #eceaf5; }
.accent-ice { background: #e7f2f4; }
.accent-sand { background: #efe9df; }
.accent-sage { background: #e3ede6; }
.accent-rose { background: #f2e6e8; }

.vvs-category-number {
  color: rgba(14, 43, 57, .45);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.vvs-category-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 130px;
  margin: 7px 0 15px;
}

.vvs-category-icon::before {
  width: 108px;
  height: 72px;
  border: 1.5px solid rgba(33, 141, 209, .6);
  border-radius: 70% 15% 70% 15%;
  content: "";
  transform: rotate(-36deg);
}

.vvs-category-icon span {
  position: absolute;
  width: 55px;
  height: 55px;
  border: 8px solid rgba(33, 141, 209, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
}

.vvs-category-icon i {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--vvs-blue);
  box-shadow: inset 5px 4px 0 rgba(255, 255, 255, .25);
}

.vvs-category-card h3 {
  max-width: 210px;
  margin: 0;
  font-family: var(--vvs-display);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.vvs-category-card p {
  max-width: 230px;
  margin: 13px 0 25px;
  color: #61717a;
  font-size: 11px;
  line-height: 1.55;
}

.vvs-category-card b {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(14, 43, 57, .12);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vvs-featured-section {
  background: var(--vvs-ink);
  color: #fff;
}

.vvs-featured-section .section-kicker {
  color: #6cc0ed;
}

.vvs-featured-head > a {
  display: flex;
  gap: 26px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  font-size: 11px;
  font-weight: 750;
}

.vvs-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 55px;
}

.vvs-product-card {
  overflow: hidden;
  background: #fff;
  color: var(--vvs-ink);
}

.vvs-product-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(145deg, #edf6f8, #d8eaf1);
}

.vvs-product-visual img {
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
  transition: transform .25s ease;
}

.vvs-product-card:hover .vvs-product-visual img {
  transform: scale(1.03);
}

.vvs-product-placeholder {
  position: relative;
  display: block;
  width: 105px;
  height: 68px;
  border: 2px solid rgba(33, 141, 209, .5);
  border-radius: 70% 15% 70% 15%;
  transform: rotate(-35deg);
}

.vvs-product-placeholder::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 8px solid rgba(33, 141, 209, .18);
  border-radius: 50%;
  background: var(--vvs-blue);
  content: "";
  transform: translate(-50%, -50%);
}

.vvs-product-info {
  padding: 20px;
}

.vvs-product-info small {
  color: var(--vvs-blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vvs-product-info h3 {
  min-height: 48px;
  margin: 7px 0 12px;
  font-family: var(--vvs-display);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.vvs-product-info > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #e2e7e8;
}

.vvs-product-info > div > span {
  color: #7a888e;
  font-size: 10px;
}

.vvs-product-info > div > a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vvs-sky);
  color: var(--vvs-blue);
  font-size: 19px;
  transition: background .2s, color .2s;
}

.vvs-product-info > div > a:hover {
  background: var(--vvs-blue);
  color: #fff;
}

.vvs-catalogue-progress {
  position: relative;
  max-width: 920px;
  margin-top: 55px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 86% 24%, rgba(72, 175, 229, .18), transparent 28%),
    var(--vvs-ink-soft);
}

.vvs-catalogue-progress > span {
  color: #72c5ef;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vvs-catalogue-progress h3 {
  max-width: 650px;
  margin: 16px 0;
  font-family: var(--vvs-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.vvs-catalogue-progress p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #b8cbd4;
  font-size: 14px;
}

.vvs-story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: var(--vvs-cream);
}

.vvs-story-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #a4d6e9, #5aaed6);
}

.vvs-story-visual::before {
  position: absolute;
  top: 10%;
  left: 12%;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  content: "";
}

.vvs-story-eye {
  position: relative;
  width: 68%;
  height: 38%;
  border: 4px solid rgba(255, 255, 255, .78);
  border-radius: 70% 14% 70% 14%;
  transform: rotate(-38deg);
}

.vvs-story-eye div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border: 20px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: var(--vvs-ink);
  box-shadow: inset 12px 12px 0 rgba(255, 255, 255, .13);
  transform: translate(-50%, -50%);
}

.vvs-story-visual > span {
  position: absolute;
  right: 34px;
  bottom: 30px;
  color: rgba(255, 255, 255, .85);
  font-family: var(--vvs-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.vvs-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px clamp(35px, 7vw, 105px);
}

.vvs-story-lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--vvs-muted);
  font-size: 15px;
  line-height: 1.7;
}

.vvs-story-points {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.vvs-story-points > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: start;
}

.vvs-story-points > div > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dcefe9;
  color: #388d72;
  font-size: 11px;
}

.vvs-story-points p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  color: #7a888f;
  font-size: 10px;
  line-height: 1.4;
}

.vvs-story-points strong {
  color: var(--vvs-ink);
  font-size: 12px;
}

.vvs-contact-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  min-height: 350px;
  padding: 70px clamp(24px, 7vw, 105px);
  overflow: hidden;
  background: var(--vvs-blue);
  color: #fff;
}

.vvs-contact-watermark {
  position: absolute;
  right: -10px;
  bottom: -72px;
  color: rgba(255, 255, 255, .07);
  font-family: var(--vvs-display);
  font-size: 270px;
  font-weight: 800;
  letter-spacing: -.1em;
}

.section-kicker.light {
  color: #d5effb;
}

.vvs-contact-band h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.vvs-contact-actions {
  position: relative;
  z-index: 2;
  justify-self: end;
  min-width: min(100%, 340px);
}

.vvs-contact-actions a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .42);
  font-size: 12px;
  font-weight: 700;
}

.vvs-contact-actions a:nth-of-type(2) {
  border-bottom: 1px solid rgba(255, 255, 255, .42);
}

.vvs-contact-actions p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.65;
}

.vvs-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px clamp(24px, 5vw, 78px);
  background: #09232f;
  color: #fff;
}

.vvs-footer-brand img {
  width: 48px;
  height: 38px;
  border-radius: 3px;
  background: #fff;
  object-fit: contain;
}

.vvs-footer-brand strong {
  font-family: var(--vvs-display);
  font-size: 13px;
}

.vvs-footer p,
.vvs-footer small {
  color: #8fa3ad;
  font-size: 9px;
}

.vvs-footer nav {
  display: flex;
  gap: 25px;
  font-size: 10px;
  font-weight: 650;
}

.vvs-footer > small {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.vvs-page-shell,
.vvs-shop-shell {
  min-height: 60vh;
  padding: clamp(70px, 9vw, 130px) clamp(22px, 7vw, 105px);
}

.vvs-page,
.vvs-shop-shell > * {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.vvs-page-header,
.vvs-shop-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.vvs-page-header h1,
.vvs-not-found h1 {
  margin-top: 15px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
}

.vvs-page-content {
  max-width: 780px;
  color: #415a66;
  font-size: 16px;
}

.vvs-page-content h2,
.vvs-page-content h3 {
  color: var(--vvs-ink);
  font-family: var(--vvs-display);
  letter-spacing: -.03em;
}

.vvs-page-content h2 {
  margin-top: 2em;
  font-size: 34px;
}

.vvs-page-content a {
  color: var(--vvs-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vvs-not-found > div {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 30px;
}

.vvs-post-list {
  display: grid;
  gap: 18px;
}

.vvs-post-card {
  padding: 30px;
  border: 1px solid var(--vvs-line);
  background: #fff;
}

.vvs-post-card h2 {
  margin-top: 0;
  font-family: var(--vvs-display);
}

/* WooCommerce */
.vvs-shop-heading {
  max-width: 1180px;
}

.vvs-shop-heading > p {
  max-width: 650px;
  color: var(--vvs-muted);
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 28px;
  color: #7d8c93;
  font-size: 11px;
}

.woocommerce-products-header__title.page-title {
  margin: 0 0 35px;
  font-family: var(--vvs-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 30px;
  color: var(--vvs-muted);
  font-size: 12px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--vvs-line);
  border-radius: 3px;
  background: #fff;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 35px 0 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: 100% !important;
  min-width: 0;
  margin: 0;
  padding: 0 0 22px;
  overflow: hidden;
  border: 1px solid #e4eaed;
  background: #fff;
  transition: box-shadow .22s ease, transform .22s ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--vvs-shadow);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 290px;
  margin: 0 0 20px;
  padding: 26px;
  background: linear-gradient(145deg, #f4f8f9, #e5f1f5);
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-right: 20px;
  margin-left: 20px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 60px;
  padding: 0;
  color: var(--vvs-ink);
  font-family: var(--vvs-display);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price,
.vvs-request-price {
  color: var(--vvs-blue);
  font-size: 12px;
  font-weight: 750;
}

.woocommerce ul.products li.product .button {
  min-height: 42px;
  margin-top: 15px;
  padding: 0 16px;
  background: var(--vvs-ink);
  font-size: 11px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 48px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin: 0 3px;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 40px;
  padding: 10px;
  border-radius: 50%;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--vvs-blue);
  color: #fff;
}

.woocommerce div.product {
  max-width: 1180px;
  margin: 20px auto 0;
}

.woocommerce div.product div.images img {
  padding: 30px;
  background: #f1f7f9;
  object-fit: contain;
}

.woocommerce div.product .product_title {
  margin: 0 0 18px;
  font-family: var(--vvs-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--vvs-blue);
  font-size: 18px;
  font-weight: 750;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--vvs-muted);
  font-size: 15px;
}

.vvs-single-enquiry {
  max-width: 560px;
  margin: 28px 0;
  padding: 22px;
  border-left: 3px solid var(--vvs-blue);
  background: var(--vvs-pale-blue);
}

.vvs-single-enquiry p {
  margin: 0 0 15px;
  color: var(--vvs-muted);
  line-height: 1.6;
}

.woocommerce div.product .product_meta {
  padding-top: 20px;
  border-top: 1px solid var(--vvs-line);
  color: #75858d;
  font-size: 11px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: var(--vvs-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid var(--vvs-blue);
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs .panel {
  color: #415a66;
}

.woocommerce .quantity .qty {
  min-height: 48px;
  border: 1px solid var(--vvs-line);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--vvs-blue);
  background: #f1f7fa;
}

@media (max-width: 1100px) {
  .vvs-header {
    grid-template-columns: 1fr auto;
  }

  .vvs-primary-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 25px;
    border-bottom: 1px solid var(--vvs-line);
    background: #fff;
    box-shadow: 0 14px 30px rgba(14, 43, 57, .1);
  }

  .vvs-primary-nav.is-open {
    display: flex;
  }

  .vvs-primary-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f1;
  }

  .vvs-header-actions {
    display: none;
  }

  .vvs-menu-toggle {
    display: grid;
    gap: 6px;
    padding: 10px 0 10px 18px;
  }

  .vvs-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--vvs-ink);
  }

  .vvs-category-grid,
  .vvs-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .vvs-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .vvs-professional-bar {
    display: block;
    font-size: 9px;
    line-height: 1.5;
  }

  .vvs-professional-bar span {
    display: none;
  }

  .vvs-header {
    min-height: 72px;
    padding: 0 20px;
  }

  .vvs-brand img {
    width: 51px;
    height: 42px;
  }

  .vvs-brand > span {
    font-size: 13px;
  }

  .vvs-primary-nav {
    top: 72px;
  }

  .vvs-hero {
    display: flex;
    flex-direction: column;
    padding: 15px 20px 45px;
  }

  .vvs-hero-copy {
    padding: 50px 0 40px;
  }

  .vvs-hero h1 {
    font-size: clamp(50px, 16vw, 74px);
  }

  .vvs-hero-copy > p {
    font-size: 15px;
  }

  .vvs-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .vvs-proof {
    margin-top: 35px;
  }

  .vvs-hero-art {
    min-height: 430px;
    border-radius: 3px 3px 70px 3px;
  }

  .vvs-iris {
    width: 330px;
    height: 330px;
  }

  .vvs-practice-card {
    top: 8%;
  }

  .vvs-focus-card {
    min-width: 145px;
  }

  .vvs-focus-card strong {
    font-size: 17px;
  }

  .vvs-trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .vvs-trust-strip > div {
    padding: 22px 18px;
    border-bottom: 1px solid var(--vvs-line);
  }

  .vvs-category-section,
  .vvs-featured-section {
    padding: 76px 20px;
  }

  .vvs-section-heading,
  .vvs-featured-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vvs-section-heading h2,
  .vvs-featured-head h2,
  .vvs-story-copy h2,
  .vvs-contact-band h2 {
    font-size: 44px;
  }

  .vvs-category-grid,
  .vvs-product-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .vvs-category-card {
    min-height: 340px;
  }

  .vvs-catalogue-progress {
    padding: 30px 24px;
  }

  .vvs-story-section {
    grid-template-columns: 1fr;
  }

  .vvs-story-visual {
    min-height: 460px;
  }

  .vvs-story-copy {
    padding: 70px 22px;
  }

  .vvs-contact-band {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 70px 22px;
  }

  .vvs-contact-actions {
    justify-self: stretch;
  }

  .vvs-footer {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 35px 22px;
  }

  .vvs-page-shell,
  .vvs-shop-shell {
    padding: 70px 20px;
  }

  .vvs-page-header h1,
  .vvs-not-found h1 {
    font-size: 48px;
  }

  .vvs-not-found > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .woocommerce ul.products li.product a img {
    height: 320px;
  }
}

@media (max-width: 450px) {
  .vvs-brand > span {
    display: none;
  }

  .vvs-trust-strip {
    grid-template-columns: 1fr;
  }

  .vvs-floating-card.vvs-practice-card {
    left: 4%;
  }

  .vvs-focus-card {
    right: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
