:root {
  --vascu-bg: #F8FAFC;
  --vascu-surface: #FFFFFF;
  --vascu-tone: #0F4C81;
  --vascu-tone-hover: #0B3860;
  --vascu-vivid: #E05638;
  --vascu-vivid-soft: #FFF1EE;
  --vascu-ink: #1E293B;
  --vascu-muted: #64748B;
  --vascu-border: #E2E8F0;
  --vascu-shadow: 0 10px 25px -5px rgba(15, 76, 129, 0.08);
  --vascu-deep-shadow: 0 20px 35px -10px rgba(15, 76, 129, 0.12);
  --vascu-gradient: linear-gradient(135deg, #0F4C81 0%, #1A609B 100%);
  --vascu-vivid-gradient: linear-gradient(135deg, #E05638 0%, #F06A4B 100%);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-soft: 16px;
  --radius-pill: 999px;
  --scale-padding-normal: 10dvh;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--vascu-bg);
  color: var(--vascu-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scroll Progress Timeline */
.v-scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--vascu-vivid-gradient);
  transform-origin: 0 50%;
  z-index: 1000;
  animation: v-progress-grow linear;
  animation-timeline: scroll();
}

@keyframes v-progress-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Header Preset B */
.v-head-bar {
  background-color: var(--vascu-surface);
  border-bottom: 1px solid var(--vascu-border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}

.v-head-bar:focus-within,
.v-head-bar:hover {
  box-shadow: var(--vascu-shadow);
}

.v-head-inner-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v-head-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--vascu-tone);
}

.v-brand-icon-svg {
  width: 32px;
  height: 32px;
}

.v-brand-title-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--vascu-tone);
}

.v-menu-checkbox-input {
  display: none;
}

.v-head-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.v-head-toggler span {
  width: 24px;
  height: 2px;
  background-color: var(--vascu-ink);
  transition: all 0.3s ease;
}

.v-head-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.v-head-nav-item {
  text-decoration: none;
  color: var(--vascu-ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.v-head-nav-item:hover,
.v-head-nav-item.v-nav-active {
  color: var(--vascu-tone);
}

.v-head-btn-link {
  background-color: var(--vascu-tone);
  color: #FFFFFF !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.v-head-btn-link:hover {
  background-color: var(--vascu-tone-hover);
  transform: translateY(-1px);
}

/* Announcement Bar */
.v-promo-bar {
  background-color: var(--vascu-vivid);
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  text-align: center;
}

.v-promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.v-promo-arrow-link {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.v-promo-arrow-link:hover {
  opacity: 0.9;
}

/* Hero Split Screen */
.v-main-split-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--scale-padding-normal) * 0.5) 1.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  min-height: 75vh;
}

.v-main-split-text {
  flex: 0 0 55%;
}

.v-main-split-media {
  flex: 0 0 45%;
  height: 420px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--vascu-shadow);
}

.v-media-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-category-badge-tag {
  display: inline-block;
  background-color: var(--vascu-vivid-soft);
  color: var(--vascu-vivid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.v-main-split-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--vascu-ink);
  margin-bottom: 1.25rem;
}

.v-main-description-para {
  font-size: 1.1rem;
  color: var(--vascu-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.v-hero-action-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.v-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25 ease;
  cursor: pointer;
  border: none;
}

.v-trigger-primary {
  background-color: var(--vascu-vivid);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(224, 86, 56, 0.3);
}

.v-trigger-primary:hover {
  background-color: #D04527;
  transform: translateY(-2px);
}

.v-trigger-secondary {
  background-color: transparent;
  color: var(--vascu-tone);
  border: 2px solid var(--vascu-tone);
}

.v-trigger-secondary:hover {
  background-color: var(--vascu-tone);
  color: #FFFFFF;
}

/* Full Width Strip */
.v-full-banner-strip {
  width: 100%;
  height: 45vh;
  overflow: hidden;
  margin: 2rem 0;
}

.v-strip-img-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Journal Triple Panel */
.v-journal-triple-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem var(--scale-padding-normal) 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.v-journal-item {
  border-top: 3px solid var(--vascu-vivid);
  padding-top: 1.5rem;
  background: var(--vascu-surface);
  padding: 1.8rem;
  border-radius: 0 0 var(--radius-soft) var(--radius-soft);
  box-shadow: var(--vascu-shadow);
}

.v-journal-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vascu-vivid);
  display: block;
  margin-bottom: 0.5rem;
}

.v-journal-head {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--vascu-ink);
  margin-bottom: 0.75rem;
}

.v-journal-body {
  color: var(--vascu-muted);
  font-size: 0.95rem;
}

/* Section Common Headings */
.v-section-head-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.v-section-main-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--vascu-ink);
  margin-bottom: 0.5rem;
}

.v-section-sub-heading {
  color: var(--vascu-muted);
  font-size: 1.05rem;
}

/* Masonry Features */
.v-masonry-section-holder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem var(--scale-padding-normal) 1.5rem;
}

.v-masonry-board {
  column-count: 3;
  column-gap: 1.5rem;
}

.v-masonry-unit {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background-color: var(--vascu-surface);
  padding: 1.8rem;
  border-radius: var(--radius-soft);
  border: 1px solid var(--vascu-border);
  box-shadow: var(--vascu-shadow);
}

.v-unit-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--vascu-vivid-soft);
  color: var(--vascu-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.v-unit-icon-bubble svg {
  width: 24px;
  height: 24px;
}

.v-unit-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.v-unit-desc {
  color: var(--vascu-muted);
  font-size: 0.95rem;
}

.v-unit-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: calc(var(--radius-soft) - 4px);
  margin-bottom: 1.25rem;
}

/* Progress Track "How it works" */
.v-progress-track-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem var(--scale-padding-normal) 1.5rem;
}

.v-progress-steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.5rem;
}

.v-progress-steps-row::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed var(--vascu-border);
  z-index: 1;
}

.v-progress-step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: var(--vascu-bg);
  padding: 0 0.5rem;
}

.v-progress-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--vascu-surface);
  border: 2px solid var(--vascu-border);
  color: var(--vascu-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem auto;
}

.v-step-active .v-progress-dot {
  background-color: var(--vascu-tone);
  border-color: var(--vascu-tone);
  color: #FFFFFF;
}

.v-step-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.v-step-text {
  color: var(--vascu-muted);
  font-size: 0.9rem;
}

/* Callout Strip Panel */
.v-banner-callout-panel {
  background: var(--vascu-gradient);
  color: #FFFFFF;
  padding: 4rem 1.5rem;
  text-align: center;
  margin-top: auto;
}

.v-callout-content-box {
  max-width: 800px;
  margin: 0 auto;
}

.v-callout-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.v-callout-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.v-trigger-light {
  background-color: #FFFFFF;
  color: var(--vascu-tone);
}

.v-trigger-light:hover {
  background-color: var(--vascu-vivid-soft);
  color: var(--vascu-vivid);
}

/* Expert Page Layout */
.v-expert-hero-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--scale-padding-normal) * 0.5) 1.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.v-expert-media-side {
  flex: 0 0 50%;
  height: 460px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--vascu-shadow);
}

.v-expert-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-expert-bio-side {
  flex: 0 0 50%;
}

.v-stat-row-flex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem var(--scale-padding-normal) 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.v-stat-card-unit {
  background-color: var(--vascu-surface);
  border: 1px solid var(--vascu-border);
  border-radius: var(--radius-soft);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--vascu-shadow);
}

.v-stat-number-text {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--vascu-tone);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.v-stat-label-text {
  color: var(--vascu-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.v-method-accordion-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem var(--scale-padding-normal) 1.5rem;
}

.v-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.v-accordion-block {
  background-color: var(--vascu-surface);
  border: 1px solid var(--vascu-border);
  border-radius: var(--radius-soft);
  padding: 1.5rem;
  box-shadow: var(--vascu-shadow);
}

.v-accordion-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--vascu-tone);
  margin-bottom: 0.5rem;
}

.v-accordion-content {
  color: var(--vascu-muted);
  font-size: 0.95rem;
}

/* Reserve Page Layout */
.v-reserve-dual-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--scale-padding-normal) * 0.5) 1.5rem var(--scale-padding-normal) 1.5rem;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.v-reserve-info-col {
  flex: 0 0 50%;
}

.v-reserve-form-col {
  flex: 0 0 50%;
}

.v-benefit-item-card {
  background-color: var(--vascu-surface);
  border: 1px solid var(--vascu-border);
  border-radius: var(--radius-soft);
  padding: 1.8rem;
  box-shadow: var(--vascu-shadow);
  margin-top: 2rem;
}

.v-benefit-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.v-benefit-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.v-benefit-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--vascu-ink);
}

.v-bullet-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--vascu-vivid);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v-contact-direct-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: var(--vascu-vivid-soft);
  border-radius: var(--radius-soft);
}

.v-contact-label {
  font-size: 0.875rem;
  color: var(--vascu-muted);
}

.v-contact-email-link {
  color: var(--vascu-vivid);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

.v-form-panel-box {
  background-color: var(--vascu-surface);
  border: 1px solid var(--vascu-border);
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  box-shadow: var(--vascu-deep-shadow);
}

.v-form-head-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.v-form-sub-text {
  color: var(--vascu-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.v-field-group-unit {
  margin-bottom: 1.25rem;
}

.v-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--vascu-ink);
}

.v-field-input,
.v-field-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--vascu-border);
  border-radius: calc(var(--radius-soft) - 6px);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--vascu-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.v-field-textarea {
  resize: vertical;
  min-height: 100px;
}

.v-field-input:focus,
.v-field-textarea:focus {
  outline: none;
  border-color: var(--vascu-tone);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

.v-checkbox-group-unit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.v-checkbox-input {
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
  accent-color: var(--vascu-vivid);
}

.v-checkbox-label {
  font-size: 0.85rem;
  color: var(--vascu-muted);
}

.v-inline-link {
  color: var(--vascu-tone);
  text-decoration: underline;
}

.v-form-submit-btn {
  width: 100%;
}

.v-faq-list-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem var(--scale-padding-normal) 1.5rem;
}

.v-faq-stack-holder {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.v-faq-item-card {
  background-color: var(--vascu-surface);
  border: 1px solid var(--vascu-border);
  border-radius: var(--radius-soft);
  padding: 1.5rem;
  box-shadow: var(--vascu-shadow);
}

.v-faq-question-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--vascu-tone);
  margin-bottom: 0.5rem;
}

.v-faq-answer-text {
  color: var(--vascu-muted);
  font-size: 0.95rem;
}

/* Thank You Page */
.v-thank-wrapper-main {
  max-width: 800px;
  margin: calc(var(--scale-padding-normal) * 0.5) auto;
  padding: 0 1.5rem;
  text-align: center;
}

.v-thank-card-panel {
  background-color: var(--vascu-surface);
  border: 1px solid var(--vascu-border);
  border-radius: var(--radius-soft);
  padding: 3rem 2rem;
  box-shadow: var(--vascu-deep-shadow);
}

.v-thank-badge-icon {
  width: 64px;
  height: 64px;
  background-color: #D1FAE5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.v-thank-badge-icon svg {
  width: 32px;
  height: 32px;
}

.v-thank-img-holder {
  max-width: 400px;
  height: 240px;
  margin: 2rem auto;
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.v-thank-img-file {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Legal Documents */
.v-legal-doc-holder {
  max-width: 850px;
  margin: calc(var(--scale-padding-normal) * 0.5) auto var(--scale-padding-normal) auto;
  padding: 0 1.5rem;
  min-height: 70vh;
}

.v-legal-h1-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.v-legal-update-date {
  color: var(--vascu-muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--vascu-border);
}

.v-legal-section-block {
  margin-bottom: 2rem;
}

.v-legal-h2-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--vascu-tone);
  margin-bottom: 0.75rem;
}

.v-legal-text-p {
  color: var(--vascu-ink);
  font-size: 0.975rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.v-legal-list {
  margin: 0 0 1rem 1.5rem;
  color: var(--vascu-ink);
  font-size: 0.975rem;
}

.v-legal-list li {
  margin-bottom: 0.4rem;
}

/* Footer Common */
.v-foot-area {
  background-color: #0F172A;
  color: #94A3B8;
  padding-top: 4rem;
  margin-top: auto;
}

.v-foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.v-foot-brand {
  color: #FFFFFF !important;
  margin-bottom: 1rem;
}

.v-foot-tagline {
  font-size: 0.9rem;
  max-width: 320px;
}

.v-foot-link-heading {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.v-foot-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v-foot-link {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.v-foot-link:hover {
  color: #FFFFFF;
}

.v-foot-disclaimer-box {
  border-top: 1px solid #1E293B;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.v-disclaimer-text {
  color: #CBD5E1;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.v-copyright-text {
  color: #64748B;
}

/* Cookie Notice Banner */
.v-cookie-notice-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vascu-surface);
  border-top: 2px solid var(--vascu-vivid);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.v-cookie-inner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.v-cookie-text-para {
  font-size: 0.9rem;
  color: var(--vascu-ink);
  flex: 1;
}

.v-cookie-btn-group {
  display: flex;
  gap: 0.75rem;
}

.v-cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.v-cookie-accept {
  background-color: var(--vascu-tone);
  color: #FFFFFF;
}

.v-cookie-decline {
  background-color: var(--vascu-bg);
  color: var(--vascu-muted);
  border: 1px solid var(--vascu-border);
}

/* View Timeline Scroll Animations */
@supports (animation-timeline: view()) {
  .v-journal-item,
  .v-masonry-unit,
  .v-progress-step-item,
  .v-stat-card-unit,
  .v-faq-item-card {
    animation: v-fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  @keyframes v-fade-in-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .v-main-split-area,
  .v-expert-hero-split,
  .v-reserve-dual-frame {
    flex-direction: column;
    min-height: auto;
  }

  .v-main-split-text,
  .v-main-split-media,
  .v-expert-media-side,
  .v-expert-bio-side,
  .v-reserve-info-col,
  .v-reserve-form-col {
    flex: 0 0 100%;
    width: 100%;
  }

  .v-main-split-media,
  .v-expert-media-side {
    height: 300px;
  }

  .v-masonry-board {
    column-count: 2;
  }

  .v-journal-triple-panel,
  .v-stat-row-flex {
    grid-template-columns: repeat(2, 1fr);
  }

  .v-foot-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .v-head-toggler {
    display: flex;
  }

  .v-head-nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vascu-surface);
    border-bottom: 1px solid var(--vascu-border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
    box-shadow: var(--vascu-shadow);
  }

  .v-menu-checkbox-input:checked ~ .v-head-nav-wrapper {
    display: flex;
  }

  .v-masonry-board,
  .v-journal-triple-panel,
  .v-stat-row-flex {
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .v-progress-steps-row {
    flex-direction: column;
  }

  .v-progress-steps-row::before {
    display: none;
  }

  .v-full-banner-strip {
    height: 30vh;
  }
}