@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --vista-canvas: #FAFAF9;
  --vista-surface: #FFFFFF;
  --vista-surface-alt: #F4F4F5;
  --vista-primary: #0D9488;
  --vista-primary-hover: #0F766E;
  --vista-primary-soft: #F0FDFA;
  --vista-ink: #18181B;
  --vista-ink-soft: #71717A;
  --vista-border: #E4E4E7;
  --vista-tint-alert: #E11D48;
  --vista-font-headline: 'Montserrat', sans-serif;
  --vista-font-body: 'Poppins', sans-serif;
  --vista-radius-soft: 12px;
  --vista-shadow-raised: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --vista-shadow-ambient: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  --vista-pad-normal: 10dvh;
}

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

body {
  background-color: var(--vista-canvas);
  color: var(--vista-ink);
  font-family: var(--vista-font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--vista-font-headline);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vista-ink);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* === HEADER COMPONENT === */
.vista-outer-header {
  background-color: var(--vista-surface);
  border-bottom: 1px solid var(--vista-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.vista-outer-header:focus-within,
.vista-outer-header:hover {
  box-shadow: var(--vista-shadow-raised);
}

.vista-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vista-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vista-brand-logo-svg {
  width: 36px;
  height: 36px;
  fill: var(--vista-primary);
}

.vista-brand-text {
  font-family: var(--vista-font-headline);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--vista-ink);
}

.vista-navigation-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vista-nav-url {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vista-ink-soft);
  position: relative;
  padding: 0.5rem 0;
}

.vista-nav-url:hover,
.vista-nav-url.vista-active-link {
  color: var(--vista-primary);
}

.vista-nav-url::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vista-primary);
  transition: width 0.3s ease;
}

.vista-nav-url:hover::after,
.vista-nav-url.vista-active-link::after {
  width: 100%;
}

.vista-menu-toggle-checkbox {
  display: none;
}

.vista-menu-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.vista-menu-toggle-label span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vista-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === ANNOUNCEMENT BAR === */
.vista-promo-bar {
  background-color: var(--vista-primary);
  color: var(--vista-surface);
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.vista-promo-bar a {
  color: var(--vista-surface);
  text-decoration: underline;
  margin-left: 0.5rem;
  font-weight: 600;
}

.vista-promo-bar a:hover {
  opacity: 0.9;
}

/* === HERO SPLIT SECTION === */
.vista-landing-hero {
  display: flex;
  min-height: 75vh;
  background-color: var(--vista-surface-alt);
  position: relative;
}

.vista-landing-hero-left {
  flex: 1 1 55%;
  padding: var(--vista-pad-normal) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vista-landing-hero-right {
  flex: 1 1 45%;
  position: relative;
}

.vista-landing-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.vista-hero-pretitle {
  color: var(--vista-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.vista-hero-maintitle {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.vista-hero-desc {
  color: var(--vista-ink-soft);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.vista-interactive-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--vista-primary);
  color: var(--vista-surface);
  padding: 1rem 2.25rem;
  border-radius: var(--vista-radius-soft);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: var(--vista-shadow-raised);
}

.vista-interactive-trigger:hover {
  background-color: var(--vista-primary-hover);
  transform: translateY(-2px);
}

/* === JOURNAL SPLIT SECTION === */
.vista-journalistic-banner {
  width: 100%;
  height: 45vh;
}

.vista-journalistic-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vista-journal-presentation {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vista-pad-normal) 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.vista-journal-column {
  border-top: 3px solid var(--vista-primary);
  padding-top: 2rem;
}

.vista-journal-col-num {
  font-family: var(--vista-font-headline);
  font-size: 0.85rem;
  color: var(--vista-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.vista-journal-col-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vista-journal-col-body {
  color: var(--vista-ink-soft);
  font-size: 0.95rem;
}

/* === MASONRY FEATURES === */
.vista-masonry-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vista-pad-normal) 2rem;
}

.vista-section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vista-section-subline {
  color: var(--vista-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  display: block;
}

.vista-section-headline {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vista-section-lead-text {
  color: var(--vista-ink-soft);
}

.vista-masonry-columns {
  columns: 3 320px;
  column-gap: 2rem;
}

.vista-masonry-card {
  break-inside: avoid;
  background-color: var(--vista-surface);
  border: 1px solid var(--vista-border);
  border-radius: var(--vista-radius-soft);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--vista-shadow-ambient);
}

.vista-masonry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vista-shadow-raised);
}

.vista-card-icon-frame {
  background-color: var(--vista-primary-soft);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.vista-card-icon-frame svg {
  width: 26px;
  height: 26px;
  fill: var(--vista-primary);
}

.vista-card-header {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.vista-card-body {
  color: var(--vista-ink-soft);
  font-size: 0.95rem;
}

/* === PROGRESS TRACK === */
.vista-timeline-section {
  background-color: var(--vista-surface-alt);
  padding: var(--vista-pad-normal) 2rem;
}

.vista-timeline-content {
  max-width: 1200px;
  margin: 0 auto;
}

.vista-horizontal-track {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.vista-horizontal-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2px dashed var(--vista-border);
  z-index: 1;
}

.vista-track-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vista-node-indicator {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--vista-surface);
  border: 2px solid var(--vista-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-family: var(--vista-font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--vista-ink-soft);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.vista-track-node.vista-node-active .vista-node-indicator {
  background-color: var(--vista-primary);
  border-color: var(--vista-primary);
  color: var(--vista-surface);
  box-shadow: 0 0 0 6px var(--vista-primary-soft);
}

.vista-node-caption {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.vista-node-description {
  color: var(--vista-ink-soft);
  font-size: 0.9rem;
  max-width: 260px;
  margin: 0 auto;
}

/* === CTA ACCENT STRIP === */
.vista-highlight-cta-strip {
  background-color: var(--vista-primary);
  color: var(--vista-surface);
  padding: var(--vista-pad-normal) 2rem;
  text-align: center;
}

.vista-highlight-content {
  max-width: 800px;
  margin: 0 auto;
}

.vista-highlight-title {
  color: var(--vista-surface);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.vista-highlight-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.vista-highlight-action {
  background-color: var(--vista-surface);
  color: var(--vista-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  border-radius: var(--vista-radius-soft);
  font-weight: 700;
  box-shadow: var(--vista-shadow-raised);
}

.vista-highlight-action:hover {
  background-color: var(--vista-surface-alt);
  transform: translateY(-2px);
}

/* === EXPERT PAGE BIOGRAPHY === */
.vista-expert-intro-canvas {
  background-color: var(--vista-surface-alt);
  padding: 4rem 2rem;
  text-align: center;
}

.vista-bio-split-layout {
  display: flex;
  max-width: 1200px;
  margin: var(--vista-pad-normal) auto;
  padding: 0 2rem;
  gap: 4rem;
  align-items: center;
}

.vista-bio-portrait {
  flex: 1 1 50%;
}

.vista-bio-portrait img {
  border-radius: var(--vista-radius-soft);
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  box-shadow: var(--vista-shadow-raised);
}

.vista-bio-narrative {
  flex: 1 1 50%;
}

.vista-bio-badge {
  color: var(--vista-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.vista-bio-fullname {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vista-bio-p1 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--vista-ink);
}

.vista-bio-p2 {
  color: var(--vista-ink-soft);
  margin-bottom: 2rem;
}

/* === STATS BLOCK === */
.vista-horizontal-stats {
  background-color: var(--vista-surface);
  border-top: 1px solid var(--vista-border);
  border-bottom: 1px solid var(--vista-border);
  padding: 3.5rem 2rem;
}

.vista-stats-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.vista-stat-card-item {
  display: flex;
  flex-direction: column;
}

.vista-stat-digit {
  font-family: var(--vista-font-headline);
  font-size: 3rem;
  font-weight: 900;
  color: var(--vista-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vista-stat-label {
  font-size: 0.9rem;
  color: var(--vista-ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === ACCORDION === */
.vista-accordion-display {
  max-width: 800px;
  margin: var(--vista-pad-normal) auto;
  padding: 0 2rem;
}

.vista-accordion-item-element {
  background-color: var(--vista-surface);
  border: 1px solid var(--vista-border);
  border-radius: var(--vista-radius-soft);
  margin-bottom: 1.5rem;
  padding: 2rem;
  box-shadow: var(--vista-shadow-ambient);
}

.vista-accordion-item-title-section {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--vista-border);
  padding-bottom: 1rem;
}

.vista-accordion-item-index {
  font-family: var(--vista-font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--vista-primary);
}

.vista-accordion-item-headline {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.vista-accordion-item-narrative {
  color: var(--vista-ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === RESERVE SPLIT LAYOUT === */
.vista-reserve-canvas {
  max-width: 1200px;
  margin: var(--vista-pad-normal) auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
}

.vista-reserve-left-sidebar {
  flex: 1 1 45%;
}

.vista-reserve-right-content {
  flex: 1 1 55%;
}

.vista-sidebar-card-block {
  background-color: var(--vista-surface);
  border: 1px solid var(--vista-border);
  border-radius: var(--vista-radius-soft);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--vista-shadow-ambient);
}

.vista-sidebar-card-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vista-sidebar-card-icon {
  width: 28px;
  height: 28px;
  fill: var(--vista-primary);
}

.vista-sidebar-card-label {
  font-size: 1.2rem;
}

.vista-sidebar-bullet-list {
  list-style: none;
}

.vista-sidebar-bullet-item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--vista-ink-soft);
}

.vista-sidebar-bullet-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--vista-primary);
  border-radius: 50%;
}

/* === FORM === */
.vista-booking-envelope {
  background-color: var(--vista-surface);
  border: 1px solid var(--vista-border);
  border-radius: var(--vista-radius-soft);
  padding: 3rem;
  box-shadow: var(--vista-shadow-raised);
}

.vista-booking-header {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.vista-booking-subtext {
  color: var(--vista-ink-soft);
  margin-bottom: 2rem;
}

.vista-field-containment {
  margin-bottom: 1.5rem;
}

.vista-field-input-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--vista-ink);
}

.vista-text-field-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--vista-border);
  border-radius: var(--vista-radius-soft);
  font-family: var(--vista-font-body);
  font-size: 1rem;
  background-color: var(--vista-canvas);
  color: var(--vista-ink);
  transition: border-color 0.3s ease;
}

.vista-text-field-input:focus {
  outline: none;
  border-color: var(--vista-primary);
}

.vista-field-consent-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vista-field-consent-checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--vista-primary);
}

.vista-field-consent-p {
  font-size: 0.85rem;
  color: var(--vista-ink-soft);
}

.vista-field-consent-p a {
  color: var(--vista-primary);
  text-decoration: underline;
}

.vista-lead-referral-anchor {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--vista-primary);
  font-weight: 600;
}

.vista-lead-referral-anchor:hover {
  text-decoration: underline;
}

/* === FAQ COMPONENT === */
.vista-faq-containment {
  max-width: 900px;
  margin: var(--vista-pad-normal) auto;
  padding: 0 2rem;
}

.vista-faq-item-card {
  background-color: var(--vista-surface);
  border-radius: var(--vista-radius-soft);
  border: 1px solid var(--vista-border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.vista-faq-query {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.vista-faq-resolution {
  color: var(--vista-ink-soft);
  font-size: 0.95rem;
}

/* === LEGAL PAGES COMPONENT === */
.vista-legal-wrapper {
  max-width: 800px;
  margin: var(--vista-pad-normal) auto;
  padding: 0 2rem;
}

.vista-legal-heading {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--vista-primary);
  padding-bottom: 1rem;
}

.vista-legal-subheading {
  font-size: 1.35rem;
  margin: 2rem 0 1rem 0;
}

.vista-legal-paragraph {
  color: var(--vista-ink-soft);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* === FOOTER COMPONENT === */
.vista-outer-footer {
  background-color: var(--vista-ink);
  color: var(--vista-surface);
  border-top: 3px solid var(--vista-primary);
  padding: 5rem 2rem 3rem 2rem;
}

.vista-footer-core-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.vista-footer-about-col {
  flex: 1 1 350px;
}

.vista-footer-brand-svg {
  width: 42px;
  height: 42px;
  fill: var(--vista-primary);
  margin-bottom: 1.5rem;
}

.vista-footer-brand-title {
  color: var(--vista-surface);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vista-footer-brand-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.vista-footer-links-col {
  flex: 1 1 200px;
}

.vista-footer-links-headline {
  color: var(--vista-surface);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.vista-footer-url-list {
  list-style: none;
}

.vista-footer-url-item {
  margin-bottom: 0.75rem;
}

.vista-footer-url-anchor {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.vista-footer-url-anchor:hover {
  color: var(--vista-primary);
}

.vista-disclaimer-wrapper {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.vista-disclaimer-p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.vista-copyright-p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === COOKIE BANNER === */
.vista-banner-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vista-surface);
  border-top: 2px solid var(--vista-border);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vista-banner-cookies.vista-cookie-visible {
  transform: translateY(0);
}

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

.vista-cookie-message {
  font-size: 0.9rem;
  color: var(--vista-ink-soft);
}

.vista-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vista-cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--vista-radius-soft);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}

.vista-cookie-accept {
  background-color: var(--vista-primary);
  color: var(--vista-surface);
}

.vista-cookie-accept:hover {
  background-color: var(--vista-primary-hover);
}

.vista-cookie-decline {
  background-color: var(--vista-canvas);
  color: var(--vista-ink);
  border: 1px solid var(--vista-border);
}

.vista-cookie-decline:hover {
  background-color: var(--vista-surface-alt);
}

/* === THANK YOU PAGE === */
.vista-thankyou-shell {
  max-width: 600px;
  margin: var(--vista-pad-normal) auto;
  text-align: center;
  padding: 0 2rem;
}

.vista-thankyou-checkmark {
  width: 80px;
  height: 80px;
  background-color: var(--vista-primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.vista-thankyou-checkmark svg {
  width: 40px;
  height: 40px;
  fill: var(--vista-primary);
}

.vista-thankyou-photo-frame {
  margin: 2rem 0;
  border-radius: var(--vista-radius-soft);
  overflow: hidden;
  box-shadow: var(--vista-shadow-raised);
}

.vista-thankyou-photo-frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}


/* === RESPONSIVE RULES === */
@media (max-width: 992px) {
  .vista-landing-hero {
    flex-direction: column;
  }
  .vista-landing-hero-left {
    padding: 4rem 2rem;
  }
  .vista-landing-hero-right {
    height: 400px;
  }
  .vista-journal-presentation {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vista-stats-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .vista-bio-split-layout {
    flex-direction: column;
    gap: 3rem;
  }
  .vista-reserve-canvas {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .vista-menu-toggle-label {
    display: flex;
  }
  .vista-navigation-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vista-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--vista-border);
    border-bottom: 2px solid var(--vista-border);
    box-shadow: var(--vista-shadow-raised);
    display: none;
    z-index: 100;
  }
  .vista-menu-toggle-checkbox:checked ~ .vista-navigation-links {
    display: flex;
  }
  .vista-horizontal-track {
    flex-direction: column;
    gap: 3rem;
  }
  .vista-horizontal-track::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .vista-stats-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .vista-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}