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

:root {
  --vis-cream-bg: #FDFBF7;
  --vis-charcoal-ink: #1C221E;
  --vis-sage-accent: #4A6B5D;
  --vis-terracotta-soft: #D48C70;
  --vis-paper-surface: #F5EFEB;
  --vis-border-gray: #E2DDD5;
  --vis-white: #FFFFFF;
  --vis-shadow-soft: 0 4px 15px rgba(28, 34, 30, 0.06);
  --vis-shadow-raised: 0 8px 30px rgba(28, 34, 30, 0.08);
  --font-display: 'Merriweather', serif;
  --font-body: 'Poppins', sans-serif;
}

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

body {
  background-color: var(--vis-cream-bg);
  color: var(--vis-charcoal-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vis-charcoal-ink);
  line-height: 1.25;
}

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

/* HEADER BASE (Magazine Editorial Style) */
.vis-masthead {
  background-color: var(--vis-cream-bg);
  border-bottom: 1px solid var(--vis-border-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.vis-masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vis-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vis-logo-icon {
  width: 35px;
  height: 35px;
  fill: var(--vis-sage-accent);
}

.vis-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.vis-navigation-menu {
  display: flex;
  align-items: center;
}

.vis-nav-links-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.vis-nav-item-link {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}

.vis-nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--vis-sage-accent);
  transition: width 0.3s ease;
}

.vis-nav-item-link:hover::after,
.vis-nav-item-link.vis-active-link::after {
  width: 100%;
}

/* HAMBURGER FOR MOBILE */
.vis-menu-checkbox {
  display: none;
}

.vis-menu-trigger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.vis-menu-trigger-label span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--vis-charcoal-ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* HERO: Editorial Split */
.vis-story-hero {
  display: flex;
  min-height: 80vh;
  border-bottom: 1px solid var(--vis-border-gray);
}

.vis-hero-vertical-accent {
  width: 8%;
  background-color: var(--vis-sage-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.vis-vertical-slogan {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--vis-cream-bg);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
}

.vis-hero-editorial-cover {
  width: 92%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.vis-hero-dark-shield {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(28,34,30,0.85) 0%, rgba(28,34,30,0.4) 100%);
}

.vis-hero-text-shell {
  position: relative;
  z-index: 2;
  color: var(--vis-white);
  max-width: 680px;
  padding: 4rem;
}

.vis-hero-heading {
  color: var(--vis-white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.vis-hero-heading strong {
  font-weight: 700;
  display: block;
  color: var(--vis-terracotta-soft);
}

.vis-hero-caption {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.95;
}

.vis-action-button {
  display: inline-block;
  background-color: var(--vis-terracotta-soft);
  color: var(--vis-white);
  padding: 1rem 2.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 1px solid var(--vis-terracotta-soft);
  border-radius: 2px;
}

.vis-action-button:hover {
  background-color: transparent;
  color: var(--vis-white);
  border-color: var(--vis-white);
  transform: translateY(-2px);
}

.vis-action-button-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--vis-sage-accent);
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid var(--vis-sage-accent);
  border-radius: 2px;
}

.vis-action-button-outline:hover {
  background-color: var(--vis-sage-accent);
  color: var(--vis-white);
}

/* SECTION PADDING SCALE: NORMAL */
.vis-editorial-block {
  padding: 10dvh 0;
  border-bottom: 1px solid var(--vis-border-gray);
}

/* PULL-QUOTE BLOCK */
.vis-quote-break-stripe {
  background-color: var(--vis-paper-surface);
  text-align: center;
  padding: 8dvh 2rem;
  position: relative;
}

.vis-pullquote-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.vis-pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--vis-sage-accent);
  line-height: 1.4;
  position: relative;
}

.vis-pullquote-text::before {
  content: '“';
  font-size: 6rem;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--vis-terracotta-soft);
  opacity: 0.3;
  font-family: var(--font-display);
}

.vis-pullquote-author {
  margin-top: 1.5rem;
  display: block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--vis-charcoal-ink);
  font-weight: 600;
}

/* MAGAZINE SPLIT CONTENT */
.vis-split-journal-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: center;
}

.vis-journal-media-frame {
  height: 550px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: var(--vis-shadow-raised);
}

.vis-journal-copy-zone {
  padding-right: 2rem;
}

.vis-journal-badge {
  display: inline-block;
  color: var(--vis-terracotta-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vis-journal-main-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.vis-journal-paragraph {
  font-size: 1.05rem;
  color: #4A4F4B;
  margin-bottom: 1.5rem;
}

.vis-journal-points-list {
  list-style: none;
  margin-bottom: 2rem;
}

.vis-journal-point-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.vis-point-bullet {
  color: var(--vis-sage-accent);
  font-weight: bold;
}

/* FEATURES: EDITORIAL MAGAZINE-GRID */
.vis-features-magazine-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vis-section-header-editorial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.vis-section-pretitle {
  color: var(--vis-sage-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.vis-section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
}

.vis-magazine-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vis-editorial-large-card {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--vis-shadow-raised);
}

.vis-card-dark-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(28,34,30,0) 40%, rgba(28,34,30,0.9) 100%);
}

.vis-card-rich-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  color: var(--vis-white);
}

.vis-large-card-title {
  color: var(--vis-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.vis-large-card-desc {
  font-size: 1rem;
  opacity: 0.9;
}

.vis-editorial-stack-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vis-editorial-small-text-card {
  background-color: var(--vis-paper-surface);
  padding: 2.5rem;
  border-radius: 12px;
  border-top: 4px solid var(--vis-sage-accent);
  box-shadow: var(--vis-shadow-soft);
  transition: transform 0.3s ease;
}

.vis-editorial-small-text-card:hover {
  transform: translateY(-4px);
}

.vis-small-card-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vis-small-card-icon {
  width: 30px;
  height: 30px;
  fill: var(--vis-sage-accent);
}

.vis-small-card-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.vis-small-card-body {
  font-size: 0.98rem;
  color: #4A4F4B;
}

/* "HOW IT WORKS" HORIZONTAL STEPS WITH GIANT BACKGROUND NUMBERS */
.vis-stepper-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vis-stepper-row-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.vis-step-editorial-cell {
  position: relative;
  padding-top: 4rem;
}

.vis-step-giant-number {
  position: absolute;
  top: -1rem;
  left: 0;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--vis-sage-accent);
  opacity: 0.12;
  line-height: 1;
}

.vis-step-header {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.vis-step-text-desc {
  font-size: 0.98rem;
  color: #4A4F4B;
  position: relative;
  z-index: 2;
}

/* CTA STRIP: EDITORIAL */
.vis-cta-editorial-banner {
  background-color: var(--vis-paper-surface);
  padding: 8dvh 2rem;
  text-align: center;
  border-top: 1px solid var(--vis-border-gray);
  border-bottom: 1px solid var(--vis-border-gray);
}

.vis-cta-panel-inner {
  max-width: 800px;
  margin: 0 auto;
}

.vis-cta-title-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.vis-cta-supporting-text {
  font-size: 1.1rem;
  color: #4A4F4B;
  margin-bottom: 2.5rem;
}

/* FOOTER */
.vis-editorial-footer {
  background-color: var(--vis-charcoal-ink);
  color: #D2D4D3;
  padding: 5rem 2rem 2rem 2rem;
  font-size: 0.9rem;
}

.vis-footer-upper-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid #2E3631;
  padding-bottom: 3rem;
}

.vis-footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-footer-brand-column .vis-logo-text {
  color: var(--vis-white);
}

.vis-footer-brand-column .vis-logo-icon {
  fill: var(--vis-terracotta-soft);
}

.vis-footer-brand-desc {
  max-width: 500px;
  line-height: 1.7;
}

.vis-footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vis-footer-column-label {
  color: var(--vis-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vis-footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-footer-nav-link-item {
  color: #B2B5B3;
  transition: color 0.3s ease;
}

.vis-footer-nav-link-item:hover {
  color: var(--vis-terracotta-soft);
}

.vis-footer-lower-strip {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-disclaimer-text-paragraph {
  font-size: 0.8rem;
  color: #8C908E;
  line-height: 1.6;
  border-left: 2px solid var(--vis-terracotta-soft);
  padding-left: 1rem;
}

.vis-copyright-notice-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #8C908E;
}

/* COOKIE NOTICE BANNER */
.vis-footprint-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vis-charcoal-ink);
  color: var(--vis-white);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  display: none;
}

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

.vis-footprint-notice-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.vis-footprint-action-box {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vis-cookie-accept-btn {
  background-color: var(--vis-terracotta-soft);
  color: var(--vis-white);
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vis-cookie-accept-btn:hover {
  background-color: #be7559;
}

.vis-cookie-decline-btn {
  background-color: transparent;
  color: #A2A5A3;
  border: 1px solid #4E5651;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vis-cookie-decline-btn:hover {
  color: var(--vis-white);
  border-color: var(--vis-white);
}

/* EXPERT PROFILE DETAILS */
.vis-expert-stat-strip {
  max-width: 1200px;
  margin: -40px auto 40px auto;
  background-color: var(--vis-white);
  box-shadow: var(--vis-shadow-raised);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2.5rem;
  position: relative;
  z-index: 10;
  border-radius: 12px;
}

.vis-expert-stat-cell {
  text-align: center;
  border-right: 1px solid var(--vis-border-gray);
}

.vis-expert-stat-cell:last-child {
  border-right: none;
}

.vis-expert-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vis-sage-accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vis-expert-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #6C726E;
  letter-spacing: 1px;
}

.vis-expert-alternating-layout {
  display: flex;
  flex-direction: column;
  gap: 8dvh;
}

/* BOOKING / RESERVE PAGE */
.vis-booking-highlights-row {
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.vis-booking-highlight-item {
  background-color: var(--vis-white);
  padding: 2.5rem;
  border-top: 4px solid var(--vis-terracotta-soft);
  border-radius: 12px;
  box-shadow: var(--vis-shadow-soft);
}

.vis-booking-hl-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.vis-booking-hl-desc {
  font-size: 0.95rem;
  color: #4A4F4B;
  margin-bottom: 1.5rem;
}

.vis-booking-hl-list {
  list-style: none;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-booking-hl-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vis-bullet-number-circle {
  width: 22px;
  height: 22px;
  background-color: var(--vis-paper-surface);
  color: var(--vis-terracotta-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
}

.vis-booking-center-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vis-booking-form {
  background-color: var(--vis-white);
  padding: 3.5rem;
  border-radius: 12px;
  box-shadow: var(--vis-shadow-raised);
}

.vis-form-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.vis-input-field-group {
  margin-bottom: 1.5rem;
}

.vis-input-field-label {
  display: block;
  font-size: 0.9rem;
  color: var(--vis-charcoal-ink);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vis-input-textbox {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--vis-border-gray);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  background-color: var(--vis-cream-bg);
  transition: border-color 0.3s ease;
}

.vis-input-textbox:focus {
  border-color: var(--vis-sage-accent);
}

.vis-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #4A4F4B;
  cursor: pointer;
  margin-bottom: 2rem;
}

.vis-checkbox-label input {
  margin-top: 0.2rem;
}

.vis-form-submit-btn {
  width: 100%;
  background-color: var(--vis-sage-accent);
  color: var(--vis-white);
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.vis-form-submit-btn:hover {
  background-color: #385247;
}

.vis-contact-mailto-block {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #6C726E;
}

.vis-mailto-link {
  color: var(--vis-terracotta-soft);
  font-weight: 600;
}

.vis-mailto-link:hover {
  text-decoration: underline;
}

/* FAQ: EDITORIAL ACCORDION STYLE */
.vis-faq-block-wrap {
  margin-top: 6rem;
}

.vis-faq-column-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-faq-card-item {
  background-color: var(--vis-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--vis-shadow-soft);
}

.vis-faq-question-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--vis-sage-accent);
}

.vis-faq-answer-text {
  font-size: 0.95rem;
  color: #4A4F4B;
  line-height: 1.6;
}

/* STATIC DOCUMENT PAGES (Privacy / Terms) */
.vis-doc-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 6dvh 2rem 10dvh 2rem;
}

.vis-doc-main-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  border-bottom: 1px solid var(--vis-border-gray);
  padding-bottom: 1rem;
}

.vis-doc-subheading {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.vis-doc-paragraph {
  font-size: 1rem;
  color: #4A4F4B;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* THANK YOU PAGE STYLE */
.vis-thank-card {
  max-width: 600px;
  margin: 8dvh auto;
  background-color: var(--vis-white);
  padding: 4rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: var(--vis-shadow-raised);
}

.vis-thank-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem auto;
  background-color: var(--vis-paper-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-thank-svg-check {
  width: 40px;
  height: 40px;
  fill: var(--vis-sage-accent);
}

.vis-thank-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.vis-thank-message {
  font-size: 1.05rem;
  color: #4A4F4B;
  margin-bottom: 2.5rem;
}

/* MEDIA QUERIES */
@media (max-width: 900px) {
  .vis-menu-trigger-label {
    display: flex;
  }

  .vis-navigation-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vis-cream-bg);
    border-bottom: 1px solid var(--vis-border-gray);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .vis-nav-links-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .vis-menu-checkbox:checked ~ .vis-navigation-links {
    display: flex;
  }

  /* Hamburger transform */
  .vis-menu-checkbox:checked ~ .vis-menu-trigger-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .vis-menu-checkbox:checked ~ .vis-menu-trigger-label span:nth-child(2) {
    opacity: 0;
  }
  .vis-menu-checkbox:checked ~ .vis-menu-trigger-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero adjust */
  .vis-story-hero {
    flex-direction: column-reverse;
  }

  .vis-hero-vertical-accent {
    width: 100%;
    height: 50px;
    padding: 0;
  }

  .vis-vertical-slogan {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .vis-hero-editorial-cover {
    width: 100%;
    min-height: 550px;
  }

  .vis-hero-text-shell {
    padding: 2.5rem;
  }

  /* Layout grids */
  .vis-split-journal-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vis-journal-media-frame {
    height: 350px;
  }

  .vis-magazine-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vis-editorial-large-card {
    height: 350px;
  }

  .vis-stepper-row-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vis-expert-stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .vis-expert-stat-cell {
    border-right: none;
  }

  .vis-expert-stat-cell:nth-child(odd) {
    border-right: 1px solid var(--vis-border-gray);
  }

  .vis-booking-highlights-row {
    grid-template-columns: 1fr;
  }

  .vis-footer-upper-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vis-copyright-notice-block {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .vis-footprint-notice-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .vis-footprint-action-box {
    justify-content: center;
  }

  .vis-expert-stat-strip {
    grid-template-columns: 1fr;
  }

  .vis-expert-stat-cell:nth-child(odd) {
    border-right: none;
  }

  .vis-expert-stat-cell {
    border-bottom: 1px solid var(--vis-border-gray);
    padding-bottom: 1rem;
  }

  .vis-expert-stat-cell:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .vis-booking-form {
    padding: 2rem 1.5rem;
  }
}