/* Visual Harmony - Magazine Editorial Theme Style Sheet */
:root {
  /* Thematic CSS Variables - No forbidden footprints */
  --vis-clarity-canvas: #FDFBF7;
  --vis-clarity-ink: #1C1A17;
  --vis-clarity-ink-muted: #5A544C;
  --vis-clarity-sage: #1D4632;
  --vis-clarity-sage-light: #EBEFEA;
  --vis-clarity-coral: #C35E38;
  --vis-clarity-coral-light: #F6ECE8;
  --vis-clarity-sheet: #F6F3EC;
  --vis-clarity-border: #E5DFC9;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* Scale & Borders based on configuration */
  --vis-padd-spacious: 16dvh;
  --vis-padd-medium: 8dvh;
  --vis-padd-compact: 4dvh;
  --vis-radius-soft: 16px;
  --vis-radius-sharp: 4px;
  
  /* Raised Shadow Depth */
  --vis-shadow-raised: 0 12px 32px rgba(29, 70, 50, 0.06), 0 2px 4px rgba(29, 70, 50, 0.02);
  --vis-shadow-hover: 0 16px 40px rgba(195, 94, 56, 0.1), 0 4px 12px rgba(29, 70, 50, 0.04);
  
  --vis-transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Editorial Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--vis-clarity-canvas);
  color: var(--vis-clarity-ink);
}

body {
  font-family: var(--font-body);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

/* Headings in Case Normal as Configured */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vis-clarity-sage);
  line-height: 1.2;
}

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

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

/* Scroll-driven entries */
@keyframes vis-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.vis-scroll-reveal {
  animation: vis-slide-up 0.8s ease-out both;
}

@supports (animation-timeline: view()) {
  .vis-scroll-reveal {
    animation: vis-slide-up 1s linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
}

/* Header & Navigation Styling */
.vis-head-bar {
  background-color: var(--vis-clarity-canvas);
  border-bottom: 1px solid var(--vis-clarity-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
}

.vis-head-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vis-head-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vis-clarity-sage);
}

.vis-head-brand svg {
  flex-shrink: 0;
}

.vis-head-box {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.vis-head-anchor {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vis-clarity-ink);
  position: relative;
  letter-spacing: 0.05em;
}

.vis-head-anchor::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vis-clarity-coral);
  transition: var(--vis-transition-smooth);
}

.vis-head-anchor:hover {
  color: var(--vis-clarity-coral);
}

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

/* Mobile Hamburger Style */
.vis-menu-state-check {
  display: none;
}

.vis-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.vis-menu-trigger span {
  width: 100%;
  height: 2px;
  background-color: var(--vis-clarity-sage);
  transition: var(--vis-transition-smooth);
}

/* Hero Section Preset E (Magazine Editorial) */
.vis-hero-layout {
  display: flex;
  min-height: 85vh;
  border-bottom: 1px solid var(--vis-clarity-border);
}

.vis-editorial-left {
  width: 33%;
  background-color: var(--vis-clarity-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-right: 1px solid var(--vis-clarity-border);
}

.vis-editorial-left span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vis-clarity-sage);
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.vis-hero-visual {
  width: 67%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
}

.vis-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253, 251, 247, 0.95) 45%, rgba(253, 251, 247, 0.6) 100%);
  z-index: 1;
}

.vis-hero-inner-txt {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.vis-hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--vis-clarity-sage);
}

.vis-hero-desc {
  font-size: 1.15rem;
  color: var(--vis-clarity-ink-muted);
  margin-bottom: 3rem;
  max-width: 580px;
}

/* Button & Action styling */
.vis-button-editorial {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background-color: transparent;
  color: var(--vis-clarity-sage);
  border: 1px solid var(--vis-clarity-sage);
  border-radius: var(--vis-radius-soft);
  cursor: pointer;
  box-shadow: var(--vis-shadow-raised);
  transition: var(--vis-transition-smooth);
}

.vis-button-editorial:hover {
  background-color: var(--vis-clarity-sage);
  color: var(--vis-clarity-canvas);
  box-shadow: var(--vis-shadow-hover);
  transform: translateY(-2px);
}

.vis-button-editorial-accent {
  background-color: var(--vis-clarity-coral);
  color: var(--vis-clarity-canvas);
  border-color: var(--vis-clarity-coral);
}

.vis-button-editorial-accent:hover {
  background-color: transparent;
  color: var(--vis-clarity-coral);
}

/* Pull-Quote Block (Preset E Component) */
.vis-editorial-quote {
  background-color: var(--vis-clarity-sheet);
  border-bottom: 1px solid var(--vis-clarity-border);
  padding: var(--vis-padd-compact) 2rem;
  text-align: center;
}

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

.vis-quote-box::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 8rem;
  position: absolute;
  top: -4.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--vis-clarity-coral);
  opacity: 0.2;
  line-height: 1;
}

.vis-quote-p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--vis-clarity-sage);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.vis-quote-author {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vis-clarity-coral);
  font-weight: 600;
}

/* Alternate Content Split Panels */
.vis-split-holder {
  display: flex;
  min-height: 70vh;
}

.vis-split-holder-rev {
  flex-direction: row-reverse;
}

.vis-split-image {
  width: 45%;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.vis-split-info {
  width: 55%;
  padding: var(--vis-padd-medium) 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--vis-clarity-canvas);
}

.vis-split-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.vis-split-body {
  font-size: 1.05rem;
  color: var(--vis-clarity-ink-muted);
  margin-bottom: 2rem;
}

/* Features Grid (Bento/Editorial Grid - Preset E style) */
.vis-magazine-grid-sec {
  padding: var(--vis-padd-spacious) 2rem;
  border-bottom: 1px solid var(--vis-clarity-border);
}

.vis-magazine-grid-h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 4rem;
}

.vis-magazine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.vis-lead-item {
  grid-column: span 6;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--vis-radius-soft);
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  overflow: hidden;
  box-shadow: var(--vis-shadow-raised);
}

.vis-lead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(29, 70, 50, 0.95) 20%, rgba(29, 70, 50, 0.2) 100%);
  z-index: 1;
}

.vis-lead-content {
  position: relative;
  z-index: 2;
}

.vis-lead-tag {
  color: var(--vis-clarity-coral);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.vis-lead-h3 {
  color: var(--vis-clarity-canvas);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vis-lead-p {
  color: rgba(253, 251, 247, 0.8);
}

.vis-sub-stack {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vis-sub-item {
  background-color: var(--vis-clarity-sheet);
  border-top: 4px solid var(--vis-clarity-coral);
  border-radius: var(--vis-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--vis-shadow-raised);
  transition: var(--vis-transition-smooth);
}

.vis-sub-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--vis-shadow-hover);
}

.vis-card-icon {
  margin-bottom: 1.5rem;
}

.vis-sub-h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.vis-sub-p {
  color: var(--vis-clarity-ink-muted);
}

/* How It Works - Horizontal Steps (Preset E) */
.vis-process-layout {
  padding: var(--vis-padd-spacious) 2rem;
  background-color: var(--vis-clarity-sage-light);
  border-bottom: 1px solid var(--vis-clarity-border);
}

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

.vis-process-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.vis-process-header p {
  color: var(--vis-clarity-ink-muted);
}

.vis-process-track {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.vis-process-node {
  position: relative;
  background-color: var(--vis-clarity-canvas);
  padding: 3rem 2rem;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
}

.vis-process-num {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: var(--vis-clarity-sage);
  opacity: 0.08;
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
}

.vis-process-h4 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  position: relative;
}

.vis-process-desc {
  color: var(--vis-clarity-ink-muted);
}

/* CTA Strip (Preset E) */
.vis-cta-strip-editorial {
  padding: var(--vis-padd-medium) 2rem;
  background-color: var(--vis-clarity-canvas);
  border-bottom: 1px solid var(--vis-clarity-border);
}

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

.vis-cta-h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.5rem;
}

.vis-cta-desc {
  font-size: 1.1rem;
  color: var(--vis-clarity-ink-muted);
  margin-bottom: 2.5rem;
}

/* Stats Row for Expert */
.vis-stat-strip {
  background-color: var(--vis-clarity-sheet);
  border-bottom: 1px solid var(--vis-clarity-border);
  padding: var(--vis-padd-compact) 2rem;
}

.vis-stat-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.vis-stat-box h3 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--vis-clarity-coral);
  margin-bottom: 0.5rem;
}

.vis-stat-box p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vis-clarity-ink-muted);
}

/* Reservation / Form layout elements */
.vis-booking-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: var(--vis-padd-medium) auto 0;
  padding: 0 2rem;
}

.vis-booking-info-box {
  background-color: var(--vis-clarity-canvas);
  border-top: 3px solid var(--vis-clarity-sage);
  padding: 2rem;
  box-shadow: var(--vis-shadow-raised);
}

.vis-booking-info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vis-booking-info-box p {
  color: var(--vis-clarity-ink-muted);
}

.vis-form-wrapper {
  max-width: 700px;
  margin: var(--vis-padd-medium) auto;
  padding: 3rem;
  background-color: var(--vis-clarity-sheet);
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
}

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

.vis-form-title h2 {
  font-size: 2.2rem;
}

.vis-form-element {
  margin-bottom: 1.5rem;
}

.vis-form-element label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.vis-form-element input,
.vis-form-element textarea {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--vis-clarity-canvas);
  border: 1px solid var(--vis-clarity-border);
  border-radius: var(--vis-radius-soft);
  color: var(--vis-clarity-ink);
  transition: var(--vis-transition-smooth);
}

.vis-form-element input:focus,
.vis-form-element textarea:focus {
  outline: none;
  border-color: var(--vis-clarity-coral);
  box-shadow: 0 0 0 3px var(--vis-clarity-coral-light);
}

.vis-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.vis-checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.vis-contact-email {
  text-align: center;
  margin-top: 2rem;
  color: var(--vis-clarity-sage);
  font-weight: 600;
}

/* Accordion FAQ */
.vis-faq-sec {
  max-width: 800px;
  margin: 0 auto var(--vis-padd-medium);
  padding: 0 2rem;
}

.vis-faq-h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

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

.vis-faq-q {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vis-clarity-sage);
  margin-bottom: 0.5rem;
}

.vis-faq-a {
  color: var(--vis-clarity-ink-muted);
}

/* Footer layout */
.vis-foot-bar {
  background-color: var(--vis-clarity-sage);
  color: var(--vis-clarity-canvas);
  padding: 5rem 2rem 3rem;
}

.vis-foot-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.vis-foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(253, 251, 247, 0.15);
  padding-bottom: 3rem;
}

.vis-foot-logo-area {
  max-width: 350px;
}

.vis-foot-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vis-clarity-canvas);
  margin-bottom: 1rem;
}

.vis-foot-desc {
  font-size: 0.9rem;
  color: rgba(253, 251, 247, 0.7);
}

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

.vis-foot-links h4 {
  color: var(--vis-clarity-canvas);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.vis-foot-legal-anchor {
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.9rem;
}

.vis-foot-legal-anchor:hover {
  color: var(--vis-clarity-canvas);
}

.vis-foot-bottom {
  text-align: center;
}

.vis-foot-disclaimer {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.5);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.vis-foot-copy {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.4);
}

/* Cookie Consent Banner Styling */
.vis-cookie-outer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vis-clarity-sheet);
  border-top: 1px solid var(--vis-clarity-border);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.06);
  display: none;
}

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

.vis-cookie-txt p {
  font-size: 0.95rem;
  color: var(--vis-clarity-ink);
}

.vis-cookie-actions {
  display: flex;
  gap: 1rem;
}

.vis-cookie-btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: var(--vis-radius-soft);
  cursor: pointer;
  transition: var(--vis-transition-smooth);
}

.vis-cookie-btn-ok {
  background-color: var(--vis-clarity-sage);
  color: var(--vis-clarity-canvas);
  border: 1px solid var(--vis-clarity-sage);
}

.vis-cookie-btn-ok:hover {
  background-color: transparent;
  color: var(--vis-clarity-sage);
}

.vis-cookie-btn-no {
  background-color: transparent;
  color: var(--vis-clarity-ink-muted);
  border: 1px solid var(--vis-clarity-border);
}

.vis-cookie-btn-no:hover {
  background-color: var(--vis-clarity-border);
}

/* Simple Informative Grid for privacy/terms content */
.vis-content-static-wrap {
  max-width: 900px;
  margin: var(--vis-padd-medium) auto;
  padding: 0 2rem;
}

.vis-content-static-wrap h1 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
}

.vis-content-static-wrap h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.vis-content-static-wrap p {
  font-size: 1.05rem;
  color: var(--vis-clarity-ink-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .vis-hero-layout {
    flex-direction: column;
  }
  
  .vis-editorial-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--vis-clarity-border);
    padding: 1.5rem;
  }
  
  .vis-editorial-left span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.5rem;
  }
  
  .vis-hero-visual {
    width: 100%;
    padding: 4rem 2rem;
  }
  
  .vis-magazine-grid {
    grid-template-columns: 1fr;
  }
  
  .vis-lead-item, .vis-sub-stack {
    grid-column: span 12;
  }
  
  .vis-process-track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vis-stat-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vis-booking-top-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vis-menu-trigger {
    display: flex;
  }
  
  .vis-head-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vis-clarity-canvas);
    border-bottom: 1px solid var(--vis-clarity-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .vis-menu-state-check:checked ~ .vis-head-box {
    display: flex;
  }
  
  .vis-menu-state-check:checked ~ .vis-menu-trigger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .vis-menu-state-check:checked ~ .vis-menu-trigger span:nth-child(2) {
    opacity: 0;
  }
  
  .vis-menu-state-check:checked ~ .vis-menu-trigger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .vis-split-holder {
    flex-direction: column;
  }
  
  .vis-split-image {
    width: 100%;
    height: 300px;
  }
  
  .vis-split-info {
    width: 100%;
    padding: 3rem 1.5rem;
  }
  
  .vis-foot-top {
    flex-direction: column;
    gap: 3rem;
  }
  
  .vis-cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .vis-form-wrapper {
    padding: 2rem 1.5rem;
  }
}