/* --- CSS VARIABLES FOR THE SIGHT PROJECT (LIGHT THEME, SOFT PRESETS, UNIQUE THEME NAMES) --- */
:root {
  --sight-bg-warm: #FAF8F5;
  --sight-surface-clean: #FFFFFF;
  --sight-accent-leaf: #2A6F60;
  --sight-accent-dark: #1A332E;
  --sight-text-charcoal: #2D2D2D;
  --sight-text-muted: #666666;
  --sight-border-subtle: #E0DCD5;
  --sight-border-dark: #1A332E;
  --sight-gradient-glowing: linear-gradient(135deg, #2A6F60, #4A9C80);
  
  --font-display-raleway: 'Raleway', sans-serif;
  --font-body-poppins: 'Poppins', sans-serif;
  
  --sight-radius-soft: 16px;
  --sight-shadow-raised: 0 8px 24px rgba(42, 111, 96, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* --- RESET & GENERAL STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body.vision-body-layout {
  background-color: var(--sight-bg-warm);
  color: var(--sight-text-charcoal);
  font-family: var(--font-body-poppins);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll-driven animations progress bar */
@keyframes progress-grow {
  to { width: 100%; }
}

/* --- HEADER AND NAVIGATION (PRESET H - LOGO DISPLAY FONT, THIN SMALL CAPS NAV) --- */
.vision-head-bar {
  background-color: var(--sight-surface-clean);
  border-bottom: 1px solid var(--sight-border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.vision-scroll-loader {
  height: 4px;
  background: var(--sight-gradient-glowing);
  width: 0%;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

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

.vision-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--sight-accent-dark);
}

.vision-logo-icon {
  width: 38px;
  height: 38px;
  color: var(--sight-accent-leaf);
}

.vision-brand-title {
  font-family: var(--font-display-raleway);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hamburger state style triggers */
.vision-burger-input {
  display: none;
}

.vision-burger-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.vision-burger-label span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--sight-accent-dark);
  transition: all 0.3s ease;
}

.vision-header-navigation {
  display: flex;
  gap: 2.5rem;
}

.vision-nav-element {
  font-family: var(--font-display-raleway);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sight-text-charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.vision-nav-element:hover {
  color: var(--sight-accent-leaf);
}

.vision-nav-element.vision-nav-active {
  color: var(--sight-accent-leaf);
  font-weight: 700;
}

.vision-nav-element.vision-nav-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--sight-accent-leaf);
}

/* --- HERO SECTION (PRESET H - WORD BY WORD ASYMMETRIC) --- */
.eye-word-display-wall {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
}

.eye-hero-typography {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eye-word-row {
  display: block;
  font-family: var(--font-display-raleway);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.eye-align-left {
  text-align: left;
  margin-left: 5%;
}

.eye-align-center {
  text-align: center;
}

.eye-align-right {
  text-align: right;
  margin-right: 5%;
}

.eye-highlight-leaf {
  color: var(--sight-accent-leaf);
}

.eye-small-word {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 4px;
}

.eye-hero-lead-action {
  max-width: 600px;
  margin: 3rem auto 0 auto;
  text-align: center;
}

.eye-lead-subtitle {
  font-size: 1.2rem;
  color: var(--sight-text-muted);
  margin-bottom: 2rem;
}

.eye-action-trigger-pill {
  display: inline-block;
  background: var(--sight-gradient-glowing);
  color: var(--sight-surface-clean);
  padding: 1.25rem 2.5rem;
  font-family: var(--font-display-raleway);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-raised);
  transition: transform 0.2s, box-shadow 0.2s;
}

.eye-action-trigger-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(42, 111, 96, 0.15);
}

/* --- EDITORIAL MASONRY BLOCK (PRESET H) --- */
.reading-masonry-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
}

.asymmetric-section-title {
  font-family: var(--font-display-raleway);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--sight-accent-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.asymmetric-section-subtitle {
  font-size: 1.1rem;
  color: var(--sight-text-muted);
  max-width: 600px;
  margin-bottom: 4rem;
}

.masonry-column-container {
  columns: 3;
  column-gap: 3.5rem;
  column-rule: 1px solid var(--sight-border-subtle);
}

.masonry-column-block {
  break-inside: avoid;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.masonry-subheading {
  font-family: var(--font-display-raleway);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sight-accent-leaf);
  margin-bottom: 1.25rem;
}

.masonry-paragraph {
  font-size: 0.95rem;
  color: var(--sight-text-charcoal);
  margin-bottom: 1.5rem;
}

.masonry-icon-svg {
  width: 24px;
  height: 24px;
  color: var(--sight-accent-leaf);
}

/* --- SCENIC OVERLAY BANNER --- */
.scenic-wide-banner {
  height: 55vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  margin: 4dvh 0;
}

.scenic-text-overlay {
  max-width: 800px;
  margin-left: 5%;
  color: var(--sight-surface-clean);
}

.scenic-banner-title {
  font-family: var(--font-display-raleway);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.scenic-banner-lead {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* --- MANIFESTO LINES (PRESET H - INLINE BORDERS, NO CARDS) --- */
.manifesto-strip-stack {
  max-width: 1000px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.manifesto-intro-header {
  margin-bottom: 3rem;
}

.manifesto-line-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--sight-border-subtle);
}

.manifesto-line-item:last-of-type {
  border-bottom: none;
}

.manifesto-numeral {
  font-family: var(--font-display-raleway);
  font-size: 2rem;
  font-weight: 900;
  color: var(--sight-accent-leaf);
}

.manifesto-detail {
  display: flex;
  flex-direction: column;
}

.manifesto-item-title {
  font-family: var(--font-display-raleway);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sight-accent-dark);
}

.manifesto-description {
  font-size: 1rem;
  color: var(--sight-text-muted);
  margin-top: 0.5rem;
}

/* --- STEP ROTATOR FLOW (PRESET H - ROTATED GIANT STEP NUMBERS) --- */
.step-rotator-flow {
  background-color: var(--sight-surface-clean);
  padding: 10dvh 2rem;
}

.step-flow-header {
  max-width: 1200px;
  margin: 0 auto 5rem auto;
}

.step-asymmetric-nodes-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
}

.step-asymmetric-node {
  flex: 1;
  position: relative;
  padding-top: calc(var(--offset-top, 0px));
}

.step-giant-digit {
  display: block;
  font-family: var(--font-display-raleway);
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--sight-accent-leaf);
  opacity: 0.15;
  transform: rotate(var(--rotation-deg, 0deg));
  position: absolute;
  top: -40px;
  left: -10px;
  z-index: 1;
}

.step-info-card {
  position: relative;
  z-index: 2;
  background-color: var(--sight-surface-clean);
  padding: 1.5rem;
}

.step-card-heading {
  font-family: var(--font-display-raleway);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--sight-accent-dark);
  margin-bottom: 1rem;
}

.step-card-text {
  font-size: 0.95rem;
  color: var(--sight-text-muted);
}

/* --- CTA STRIP (PRESET H - ACCENT GRAPHIC BANNER) --- */
.highlight-slogan-strip {
  background-color: var(--sight-accent-dark);
  padding: 6rem 2rem;
  color: var(--sight-surface-clean);
}

.highlight-strip-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.highlight-strip-slogan {
  font-family: var(--font-display-raleway);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 700px;
}

.highlight-ghost-link {
  display: inline-block;
  border: 2px solid var(--sight-surface-clean);
  color: var(--sight-surface-clean);
  padding: 1rem 2rem;
  font-family: var(--font-display-raleway);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--sight-radius-soft);
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.highlight-ghost-link:hover {
  background-color: var(--sight-surface-clean);
  color: var(--sight-accent-dark);
}

/* --- EXPERT EDITORIAL PAGE STYLES --- */
.expert-editorial-grid {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expert-large-dropcap {
  font-size: 1.15rem;
  color: var(--sight-text-charcoal);
  margin-bottom: 2rem;
}

.drop-character {
  font-family: var(--font-display-raleway);
  font-size: 4.5rem;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  color: var(--sight-accent-leaf);
}

.expert-bio-secondary {
  color: var(--sight-text-muted);
  font-size: 1rem;
}

.expert-portrait-container {
  height: 550px;
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-raised);
}

.expert-stat-plain-stack {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.expert-stat-plain-item {
  flex: 1;
  min-width: 220px;
}

.expert-stat-number {
  display: block;
  font-family: var(--font-display-raleway);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--sight-accent-leaf);
}

.expert-stat-label {
  font-size: 0.95rem;
  color: var(--sight-text-muted);
}

.expert-internal-cta-link {
  display: inline-block;
  background-color: var(--sight-surface-clean);
  color: var(--sight-accent-dark);
  padding: 1rem 2rem;
  margin-top: 2rem;
  text-decoration: none;
  font-family: var(--font-display-raleway);
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--sight-radius-soft);
  transition: transform 0.2s;
}

.expert-internal-cta-link:hover {
  transform: scale(1.03);
}

/* --- RESERVATION PAGE STYLES (PRESET H - UNDERLINE FORM AND ASYMMETRIC BLOCKS) --- */
.reserve-page-main {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.reserve-content-headline {
  max-width: 800px;
  margin-bottom: 5rem;
}

.reserve-main-typographic-title {
  font-family: var(--font-display-raleway);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--sight-accent-dark);
  margin-bottom: 1.5rem;
}

.reserve-secondary-lead-text {
  font-size: 1.15rem;
  color: var(--sight-text-muted);
}

.reserve-asymmetric-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.reserve-bullet-item {
  border-top: 2px solid var(--sight-accent-leaf);
  padding-top: 1.5rem;
}

.reserve-bullet-title {
  font-family: var(--font-display-raleway);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sight-accent-dark);
  margin-bottom: 1rem;
}

.reserve-bullet-desc {
  font-size: 0.95rem;
  color: var(--sight-text-muted);
  margin-bottom: 1.5rem;
}

.reserve-bullet-list {
  list-style: none;
}

.reserve-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.reserve-bullet-dot {
  width: 8px;
  height: 8px;
  background-color: var(--sight-accent-leaf);
  border-radius: 50%;
  display: inline-block;
}

/* Underline fields form style */
.reserve-visual-form-enclosure {
  max-width: 640px;
  margin: 0 auto 6rem auto;
  background-color: var(--sight-surface-clean);
  padding: 3rem;
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-raised);
}

.reserve-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-input-pair {
  position: relative;
}

.reserve-underline-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sight-border-subtle);
  padding: 0.75rem 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--sight-text-charcoal);
  transition: border-bottom-color 0.2s;
}

.reserve-underline-field:focus {
  outline: none;
  border-bottom-color: var(--sight-accent-leaf);
}

.reserve-floating-label {
  position: absolute;
  top: 0.75rem;
  left: 0;
  color: var(--sight-text-muted);
  pointer-events: none;
  transition: transform 0.2s, font-size 0.2s, color 0.2s;
}

/* Float label logic when input has value or focus */
.reserve-underline-field:focus ~ .reserve-floating-label,
.reserve-underline-field:not(:placeholder-shown) ~ .reserve-floating-label {
  transform: translateY(-1.5rem);
  font-size: 0.8rem;
  color: var(--sight-accent-leaf);
}

.reserve-checkbox-agreement {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.reserve-custom-checkbox {
  margin-top: 0.25rem;
  accent-color: var(--sight-accent-leaf);
}

.reserve-consent-text {
  font-size: 0.85rem;
  color: var(--sight-text-muted);
}

.reserve-legal-link {
  color: var(--sight-accent-leaf);
  text-decoration: underline;
}

.reserve-submit-action-btn {
  background: var(--sight-gradient-glowing);
  color: var(--sight-surface-clean);
  border: none;
  padding: 1.25rem;
  font-family: var(--font-display-raleway);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--sight-radius-soft);
  cursor: pointer;
  box-shadow: var(--sight-shadow-raised);
  transition: transform 0.2s;
}

.reserve-submit-action-btn:hover {
  transform: translateY(-2px);
}

.reserve-direct-contact-block {
  margin-top: 3rem;
  text-align: center;
  border-top: 1px dashed var(--sight-border-subtle);
  padding-top: 2rem;
}

.reserve-contact-intro-text {
  font-size: 0.9rem;
  color: var(--sight-text-muted);
  margin-bottom: 0.5rem;
}

.reserve-mailto-active-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sight-accent-leaf);
  text-decoration: none;
}

/* FAQ Accordion Section (CSS pure technique) */
.faq-accordion-stack {
  max-width: 800px;
  margin: 6rem auto 0 auto;
}

.faq-main-title {
  font-family: var(--font-display-raleway);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--sight-accent-dark);
}

.faq-accordion-item {
  border-bottom: 1px solid var(--sight-border-subtle);
  margin-bottom: 1rem;
}

.faq-accordion-toggle {
  display: none;
}

.faq-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-display-raleway);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sight-accent-dark);
  cursor: pointer;
}

.faq-accordion-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--sight-accent-leaf);
  transition: transform 0.2s;
}

.faq-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-accordion-panel p {
  padding-bottom: 1.5rem;
  color: var(--sight-text-muted);
  font-size: 0.95rem;
}

/* Open accordion when input checked */
.faq-accordion-toggle:checked ~ .faq-accordion-panel {
  max-height: 200px;
}

.faq-accordion-toggle:checked ~ .faq-accordion-trigger::after {
  transform: rotate(45deg);
}

/* --- LEGAL DOCUMENTS WRAPPER --- */
.legal-document-wrapper {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.legal-document-header {
  margin-bottom: 4rem;
  border-bottom: 2px solid var(--sight-border-subtle);
  padding-bottom: 2rem;
}

.legal-effective-date {
  font-size: 0.9rem;
  color: var(--sight-text-muted);
  margin-top: 1rem;
}

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

.legal-subtitle {
  font-family: var(--font-display-raleway);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sight-accent-dark);
  margin-bottom: 1.25rem;
}

.legal-paragraph {
  font-size: 0.98rem;
  color: var(--sight-text-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* --- THANK YOU PAGE BOX --- */
.thank-you-page-box {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.thank-you-inner-panel {
  max-width: 700px;
  background-color: var(--sight-surface-clean);
  padding: 4rem;
  border-radius: var(--sight-radius-soft);
  box-shadow: var(--sight-shadow-raised);
  text-align: center;
}

.thank-you-headline {
  font-family: var(--font-display-raleway);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--sight-accent-dark);
  margin-bottom: 1.5rem;
}

.thank-you-subheading {
  font-size: 1.15rem;
  color: var(--sight-accent-leaf);
  margin-bottom: 2.5rem;
}

.thank-you-instruction-card {
  text-align: left;
  background-color: var(--sight-bg-warm);
  padding: 2rem;
  border-radius: var(--sight-radius-soft);
  margin-bottom: 3rem;
}

.thank-you-text {
  font-size: 1rem;
  color: var(--sight-text-charcoal);
  margin-bottom: 1.5rem;
}

.thank-you-text-secondary {
  font-size: 0.9rem;
  color: var(--sight-text-muted);
}

.thank-you-home-returning-btn {
  display: inline-block;
  background: var(--sight-gradient-glowing);
  color: var(--sight-surface-clean);
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  font-family: var(--font-display-raleway);
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--sight-radius-soft);
}

/* --- COOKIE CONSENT BANNER STYLES --- */
.cookie-consent-fixed-panel {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sight-accent-dark);
  color: var(--sight-surface-clean);
  padding: 1.5rem 2rem;
  z-index: 9999;
}

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

.cookie-consent-message {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-consent-action-block {
  display: flex;
  gap: 1rem;
}

.cookie-consent-action-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display-raleway);
  font-weight: 700;
  border-radius: var(--sight-radius-soft);
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
}

.cookie-consent-action-btn.accept-btn {
  background-color: var(--sight-accent-leaf);
  color: var(--sight-surface-clean);
}

.cookie-consent-action-btn.decline-btn {
  background-color: transparent;
  color: var(--sight-surface-clean);
  border: 1px solid var(--sight-surface-clean);
}

/* --- FOOTER AREA --- */
.vision-footer-area {
  background-color: var(--sight-accent-dark);
  color: var(--sight-surface-clean);
  padding: 6rem 2rem 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-footer-main {
  margin-bottom: 4rem;
}

.vision-footer-tagline {
  margin-top: 1.5rem;
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
}

.vision-footer-links-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.vision-footer-link {
  color: var(--sight-surface-clean);
  text-decoration: none;
  font-family: var(--font-display-raleway);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vision-footer-link:hover {
  opacity: 1;
}

.vision-footer-disclaimer-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vision-footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.6;
  line-height: 1.5;
}

.vision-footer-copyright {
  font-size: 0.85rem;
  opacity: 0.5;
}

.text-white {
  color: var(--sight-surface-clean) !important;
}

/* --- RESPONSIVENESS AND COLLAPSIBLES --- */
@media (max-width: 1024px) {
  .step-asymmetric-nodes-container {
    flex-direction: column;
    gap: 4rem;
  }
  
  .step-asymmetric-node {
    padding-top: 0 !important;
  }

  .expert-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .expert-portrait-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* Dynamic visual hamburger switch */
  .vision-burger-label {
    display: flex;
  }

  .vision-header-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--sight-surface-clean);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--sight-border-subtle);
    gap: 2rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 500;
  }

  .vision-burger-input:checked ~ .vision-header-navigation {
    transform: translateY(0);
    opacity: 1;
  }

  /* Hamburger transformation into X */
  .vision-burger-input:checked ~ .vision-burger-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .vision-burger-input:checked ~ .vision-burger-label span:nth-child(2) {
    opacity: 0;
  }

  .vision-burger-input:checked ~ .vision-burger-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .masonry-column-container {
    columns: 1;
  }

  .reserve-asymmetric-info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .highlight-strip-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-inner-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .thank-you-inner-panel {
    padding: 2rem;
  }
}