/* style.css - Clean Architectural Stylesheet based on Preset H (Bold Typography + Asymmetric Blocks) */

:root {
  --vis-bg-base: #fcfbfa;
  --vis-surface-neutral: #f4f2ee;
  --vis-surface-contrast: #12171a;
  --vis-brand-tone: #1c3d3a;
  --vis-brand-accent: #cc5a37;
  --vis-brand-light: #e4ecea;
  --vis-text-lead: #12171a;
  --vis-text-subtle: #4a5457;
  --vis-text-inverse: #fcfbfa;
  --vis-border-hairline: #d1cbc4;
  --vis-border-focus: #1c3d3a;
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --vis-radius-soft: 16px;
  --vis-shadow-raised: 0 10px 30px rgba(18, 23, 26, 0.05), 0 1px 3px rgba(18, 23, 26, 0.02);
  --vis-transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --vis-padding-scale: 10dvh;
}

/* Reset & Core Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--vis-bg-base);
  color: var(--vis-text-lead);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--vis-transition-smooth);
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
}

/* Scroll Progress Bar */
.vis-scroll-gauge {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--vis-brand-accent);
  width: 0%;
  z-index: 10000;
  animation: vis-gauge-anim linear;
  animation-timeline: scroll();
}

@keyframes vis-gauge-anim {
  to { width: 100%; }
}

/* Scroll-Driven Entry Transitions */
.vis-reveal-element {
  animation: vis-reveal-anim linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 45%;
}

@keyframes vis-reveal-anim {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header & Navigation */
.vis-header-navigation {
  background-color: var(--vis-bg-base);
  border-bottom: 1px solid var(--vis-border-hairline);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.vis-brand-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vis-brand-svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--vis-brand-tone);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vis-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--vis-brand-tone);
}

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

.vis-menu-anchor {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vis-text-subtle);
  position: relative;
  padding: 0.5rem 0;
}

.vis-menu-anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vis-brand-accent);
  transition: var(--vis-transition-smooth);
}

.vis-menu-anchor:hover {
  color: var(--vis-brand-tone);
}

.vis-menu-anchor:hover::after {
  width: 100%;
}

/* Mobile Hamburger Menu (CSS Only) */
.vis-hamburger-toggle {
  display: none;
}

.vis-hamburger-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.vis-hamburger-label span {
  width: 30px;
  height: 3px;
  background-color: var(--vis-brand-tone);
  transition: var(--vis-transition-smooth);
  border-radius: 2px;
}

/* Preset H: Word-by-Word Hero */
.vis-hero-wordwrap {
  padding: calc(var(--vis-padding-scale) * 1.5) 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 85px);
  background: radial-gradient(circle at 80% 20%, var(--vis-brand-light) 0%, transparent 60%);
}

.vis-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.vis-hero-asymmetric-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vis-hero-typographic-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vis-hero-line-one, .vis-hero-line-two, .vis-hero-line-three {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.vis-hero-line-one {
  align-self: flex-start;
  color: var(--vis-brand-tone);
}

.vis-hero-line-two {
  align-self: flex-end;
  text-align: right;
  color: var(--vis-brand-accent);
}

.vis-hero-line-three {
  align-self: flex-start;
  color: var(--vis-text-lead);
  border-bottom: 6px solid var(--vis-brand-accent);
  padding-bottom: 1rem;
}

.vis-hero-sub-block {
  margin-top: 3.5rem;
  max-width: 550px;
  align-self: flex-start;
}

.vis-hero-paragraph {
  font-size: 1.15rem;
  color: var(--vis-text-subtle);
  margin-bottom: 2.5rem;
}

.vis-major-action {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--vis-brand-tone);
  color: var(--vis-text-inverse);
  padding: 1.25rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
}

.vis-major-action:hover {
  background-color: var(--vis-brand-accent);
  transform: translateY(-3px);
}

/* Preset H: 3-Col Masonry Content */
.vis-architectural-content-split {
  padding: var(--vis-padding-scale) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vis-masonry-wrapper {
  columns: 3;
  column-gap: 3.5rem;
  column-rule: 1px solid var(--vis-border-hairline);
}

.vis-masonry-column-card {
  break-inside: avoid;
  margin-bottom: 3rem;
}

.vis-column-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--vis-brand-tone);
  margin-bottom: 1.25rem;
}

.vis-column-desc {
  color: var(--vis-text-subtle);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.vis-column-lead-svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--vis-brand-accent);
  stroke-width: 1.5;
}

/* Full Width bg2.webp Block */
.vis-full-strip-hero {
  height: 55vh;
  position: relative;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.vis-full-strip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(18, 23, 26, 0.85) 0%, rgba(18, 23, 26, 0.3) 100%);
  z-index: 1;
}

.vis-full-strip-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.vis-full-strip-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--vis-text-inverse);
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.vis-full-strip-p {
  color: var(--vis-text-inverse);
  opacity: 0.9;
  max-width: 600px;
  font-size: 1.1rem;
}

/* Preset H: Inline Manifesto Lines */
.vis-manifesto-container {
  padding: var(--vis-padding-scale) 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vis-manifesto-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--vis-brand-tone);
  margin-bottom: 4rem;
  text-align: center;
}

.vis-manifesto-stack {
  display: flex;
  flex-direction: column;
}

.vis-manifesto-row {
  display: flex;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--vis-border-hairline);
  gap: 2rem;
}

.vis-manifesto-row:last-child {
  border-bottom: none;
}

.vis-manifesto-index {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--vis-brand-accent);
  min-width: 60px;
}

.vis-manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.vis-manifesto-concept {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
}

.vis-manifesto-phrase {
  font-size: 1rem;
  color: var(--vis-text-subtle);
}

/* Preset H: Rotated Step Steps */
.vis-rotated-workflow-section {
  padding: var(--vis-padding-scale) 2rem;
  background-color: var(--vis-surface-neutral);
  overflow: hidden;
}

.vis-rotated-workflow-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vis-rotated-workflow-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
  text-align: center;
  margin-bottom: 5rem;
}

.vis-asymm-steps-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.vis-asymm-step-block {
  position: relative;
  padding: 2rem 0;
}

.vis-asymm-step-block:nth-child(2) {
  margin-top: 30px;
}

.vis-asymm-step-block:nth-child(3) {
  margin-top: 60px;
}

.vis-rotated-huge-glyph {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--vis-brand-accent);
  opacity: 0.12;
  position: absolute;
  top: -30px;
  left: -10px;
  transform: rotate(-12deg);
  line-height: 1;
  pointer-events: none;
}

.vis-step-info-block {
  position: relative;
  z-index: 2;
}

.vis-step-subtitle {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
  margin-bottom: 1rem;
}

.vis-step-paragraph {
  color: var(--vis-text-subtle);
  font-size: 0.95rem;
}

/* Preset H: CTA Typographic Strip */
.vis-typo-cta-belt {
  background-color: var(--vis-surface-contrast);
  color: var(--vis-text-inverse);
  padding: calc(var(--vis-padding-scale) * 1.2) 2rem;
}

.vis-typo-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.vis-typo-cta-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 750px;
  letter-spacing: -0.02em;
}

.vis-ghost-interactive {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--vis-brand-accent);
  color: var(--vis-text-inverse);
  padding: 1.25rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  border-radius: var(--vis-radius-soft);
  transition: var(--vis-transition-smooth);
}

.vis-ghost-interactive:hover {
  background-color: var(--vis-brand-accent);
  color: var(--vis-text-inverse);
  transform: scale(1.03);
}

/* --- EXPERT PAGE STYLES (Preset H Editorial Style) --- */
.vis-expert-editorial-layout {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: var(--vis-padding-scale) 2rem;
  gap: 5rem;
}

.vis-expert-left-narrative {
  width: 55%;
}

.vis-expert-paragraph-lead::first-letter {
  font-size: 4.5rem;
  font-weight: 900;
  float: left;
  line-height: 1;
  padding-right: 12px;
  color: var(--vis-brand-accent);
  font-family: var(--font-display);
}

.vis-expert-paragraph-lead {
  font-size: 1.2rem;
  color: var(--vis-text-lead);
  margin-bottom: 2rem;
}

.vis-expert-body-copy {
  color: var(--vis-text-subtle);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.vis-expert-stats-flat {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vis-stat-row-plain {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.vis-stat-number-giant {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vis-brand-tone);
  line-height: 1;
  min-width: 140px;
}

.vis-stat-descriptor {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vis-text-lead);
}

.vis-expert-right-illustration {
  width: 45%;
  position: relative;
}

.vis-expert-photo-bracket {
  width: 100%;
  height: 600px;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
}

/* --- RESERVE PAGE STYLES (Preset H Typographic Form) --- */
.vis-reserve-architectural-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vis-padding-scale) 2rem;
}

.vis-reserve-title-giant {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
  line-height: 1;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.03em;
}

.vis-split-reserve-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.vis-reserve-form-block {
  background-color: var(--vis-surface-neutral);
  padding: 3.5rem 2.5rem;
  border-radius: var(--vis-radius-soft);
}

.vis-reserve-input-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.vis-reserve-field-group {
  position: relative;
}

.vis-reserve-input {
  width: 100%;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--vis-border-hairline);
  color: var(--vis-text-lead);
  font-size: 1.1rem;
  transition: var(--vis-transition-smooth);
}

.vis-reserve-input:focus {
  outline: none;
  border-bottom-color: var(--vis-border-focus);
}

.vis-reserve-label {
  position: absolute;
  top: 0.75rem;
  left: 0;
  color: var(--vis-text-subtle);
  pointer-events: none;
  transition: var(--vis-transition-smooth);
}

.vis-reserve-input:focus ~ .vis-reserve-label,
.vis-reserve-input:not(:placeholder-shown) ~ .vis-reserve-label {
  top: -1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vis-brand-accent);
}

.vis-reserve-consent-bar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 0.85rem;
  color: var(--vis-text-subtle);
}

.vis-reserve-consent-bar input {
  margin-top: 0.25rem;
}

.vis-submit-interactive-button {
  background-color: var(--vis-brand-tone);
  color: var(--vis-text-inverse);
  width: 100%;
  padding: 1.25rem 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--vis-radius-soft);
  cursor: pointer;
  box-shadow: var(--vis-shadow-raised);
  text-align: center;
}

.vis-submit-interactive-button:hover {
  background-color: var(--vis-brand-accent);
}

.vis-reserve-details-cluster {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vis-info-bullet-card {
  display: flex;
  gap: 1.5rem;
}

.vis-bullet-glyph-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--vis-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vis-bullet-glyph-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--vis-brand-tone);
  stroke-width: 2;
  fill: none;
}

.vis-bullet-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vis-bullet-info-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
}

.vis-bullet-info-p {
  color: var(--vis-text-subtle);
  font-size: 0.95rem;
}

.vis-bullet-ordered-points {
  margin-top: 0.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vis-bullet-ordered-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--vis-brand-tone);
}

.vis-bullet-point-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--vis-brand-accent);
}

.vis-mailto-highlight {
  display: block;
  margin-top: 2rem;
  font-weight: 700;
  color: var(--vis-brand-accent);
}

/* FAQ Section below booking */
.vis-faq-block {
  margin-top: calc(var(--vis-padding-scale) * 1.5);
  border-top: 1px solid var(--vis-border-hairline);
  padding-top: var(--vis-padding-scale);
}

.vis-faq-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
  text-align: center;
  margin-bottom: 3.5rem;
}

.vis-faq-stack {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vis-faq-item {
  border-bottom: 1px solid var(--vis-border-hairline);
  padding-bottom: 1.5rem;
}

.vis-faq-quest {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 850;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
  margin-bottom: 0.75rem;
}

.vis-faq-ans {
  color: var(--vis-text-subtle);
  font-size: 0.95rem;
}

/* --- OTHER PAGES STYLES --- */
.vis-plain-content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--vis-padding-scale) 2rem;
}

.vis-plain-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
  margin-bottom: 2rem;
  border-bottom: 4px solid var(--vis-brand-accent);
  padding-bottom: 1rem;
}

.vis-plain-paragraph {
  font-size: 1rem;
  color: var(--vis-text-subtle);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.vis-anchored-privacy-section {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 2px dashed var(--vis-border-hairline);
}

/* Thank You layout */
.vis-thank-canvas {
  padding: calc(var(--vis-padding-scale) * 1.5) 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  min-height: 70vh;
  align-items: center;
}

.vis-thank-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.vis-thank-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--vis-brand-tone);
  line-height: 1;
}

.vis-thank-visual {
  height: 450px;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
}

/* Footer Styles */
.vis-footer-complex {
  background-color: var(--vis-surface-contrast);
  color: var(--vis-text-inverse);
  padding: var(--vis-padding-scale) 2rem 3rem;
  border-top: 6px solid var(--vis-brand-accent);
}

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

.vis-footer-bio {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.vis-footer-logo-svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--vis-text-inverse);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vis-footer-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--vis-text-inverse);
}

.vis-footer-slogan-desc {
  font-size: 0.95rem;
  opacity: 0.8;
}

.vis-footer-links-belt {
  display: flex;
  gap: 4rem;
}

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

.vis-footer-vertical-links h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vis-brand-accent);
}

.vis-footer-anchor {
  opacity: 0.75;
  font-size: 0.9rem;
}

.vis-footer-anchor:hover {
  opacity: 1;
  color: var(--vis-brand-accent);
}

.vis-footer-bottom-tier {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-footer-disclaimer-clause {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.6;
  border-left: 3px solid var(--vis-brand-accent);
  padding-left: 1rem;
}

.vis-copyright-assertion {
  font-size: 0.8rem;
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie Banner (fixed position bottom with vanilla JS) */
.vis-consent-popup-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--vis-surface-contrast);
  color: var(--vis-text-inverse);
  border-top: 4px solid var(--vis-brand-accent);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 9999;
}

.vis-consent-popup-sticky.is-visible {
  transform: translateY(0);
}

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

.vis-consent-text-p {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 800px;
}

.vis-consent-action-wrapper {
  display: flex;
  gap: 1rem;
}

.vis-consent-button-success {
  background-color: var(--vis-brand-accent);
  color: var(--vis-text-inverse);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vis-radius-soft);
  cursor: pointer;
  transition: var(--vis-transition-smooth);
}

.vis-consent-button-success:hover {
  background-color: var(--vis-brand-light);
  color: var(--vis-brand-tone);
}

.vis-consent-button-refuse {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--vis-text-inverse);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vis-radius-soft);
  cursor: pointer;
  transition: var(--vis-transition-smooth);
}

.vis-consent-button-refuse:hover {
  background-color: rgba(255,255,255,0.08);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .vis-masonry-wrapper {
    columns: 2;
  }
  .vis-asymm-steps-matrix {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vis-asymm-step-block {
    margin-top: 0 !important;
  }
  .vis-expert-editorial-layout {
    flex-direction: column;
    gap: 3rem;
  }
  .vis-expert-left-narrative, .vis-expert-right-illustration {
    width: 100%;
  }
  .vis-expert-photo-bracket {
    height: 400px;
  }
  .vis-split-reserve-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .vis-thank-canvas {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vis-thank-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  /* Hamburger responsive trigger */
  .vis-navigation-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background-color: var(--vis-bg-base);
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: flex-start;
    gap: 2rem;
    transition: var(--vis-transition-smooth);
  }
  
  .vis-hamburger-label {
    display: flex;
  }
  
  .vis-hamburger-toggle:checked ~ .vis-hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .vis-hamburger-toggle:checked ~ .vis-hamburger-label span:nth-child(2) {
    opacity: 0;
  }
  
  .vis-hamburger-toggle:checked ~ .vis-hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .vis-hamburger-toggle:checked ~ .vis-navigation-menu {
    left: 0;
  }

  .vis-masonry-wrapper {
    columns: 1;
  }

  .vis-manifesto-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .vis-manifesto-index {
    min-width: unset;
  }
}