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

:root {
  --vitality-base-slate: #eef2f7;
  --vitality-bright-surface: #f7fafc;
  --vitality-dense-ink: #1e293b;
  --vitality-muted-ink: #64748b;
  --vitality-fresh-forest: #1e5c45;
  --vitality-fresh-forest-hover: #154231;
  --vitality-soft-glow: #e2e8f0;
  
  /* Neumorphic Shadows */
  --vitality-shadow-out: 10px 10px 20px #cbd5e1, -10px -10px 20px #ffffff;
  --vitality-shadow-in: inset 6px 6px 12px #cbd5e1, inset -6px -6px 12px #ffffff;
  --vitality-shadow-out-sm: 5px 5px 10px #cbd5e1, -5px -5px 10px #ffffff;
  --vitality-shadow-in-sm: inset 3px 3px 6px #cbd5e1, inset -3px -3px 6px #ffffff;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --site-roundness: 24px;
}

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

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

body {
  background-color: var(--vitality-base-slate);
  color: var(--vitality-dense-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--vitality-fresh-forest);
  width: 0%;
  z-index: 10000;
  animation: grow-progress linear;
  animation-timeline: scroll();
}

@keyframes grow-progress {
  to { width: 100%; }
}

/* Layout Enclosure */
.well-bound-enclosure {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Neumorphic Layout Blocks */
.vital-zone {
  padding: 6dvh 0;
}

/* Header Navigation */
.navigational-mast {
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out-sm);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navigation-bar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--vitality-fresh-forest);
}

.brand-badge svg {
  fill: var(--vitality-fresh-forest);
}

.nav-items-drawer {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link-item {
  text-decoration: none;
  color: var(--vitality-dense-ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: var(--site-roundness);
}

.nav-link-item:hover, .nav-link-item.link-active-marker {
  box-shadow: var(--vitality-shadow-in-sm);
  color: var(--vitality-fresh-forest);
}

/* Hamburger Menu (Pure CSS) */
.mobile-nav-toggle {
  display: none;
}

.hamburger-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: 8px;
  box-shadow: var(--vitality-shadow-out-sm);
}

.hamburger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--vitality-dense-ink);
  transition: 0.3s ease;
}

/* Hero Elements - Preset G */
.well-hero-stage {
  padding: 6dvh 0;
}

.split-hero-composition {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-narrative-block {
  flex: 1 1 500px;
  position: relative;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--vitality-dense-ink);
  margin-bottom: 20px;
}

.hero-supporting-text {
  font-size: 1.1rem;
  color: var(--vitality-muted-ink);
  margin-bottom: 32px;
}

.interactive-trigger {
  display: inline-block;
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
  background: var(--vitality-fresh-forest);
  border-radius: 999px;
  box-shadow: 4px 4px 10px rgba(30, 92, 69, 0.3);
  transition: all 0.3s ease;
}

.interactive-trigger:hover {
  background: var(--vitality-fresh-forest-hover);
  transform: translateY(-2px);
}

.neumorphic-floating-badge {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  z-index: 5;
}

.neumorphic-floating-badge svg {
  flex-shrink: 0;
}

.hero-scenic-frame {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.framed-scenic-image {
  width: 100%;
  max-width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--vitality-shadow-out);
  border: 10px solid var(--vitality-base-slate);
}

/* Problem & Solution Layout - Preset G */
.analysis-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.friction-point-block {
  background: #1e293b;
  color: #f8fafc;
  padding: 40px;
  border-radius: var(--site-roundness);
  box-shadow: var(--vitality-shadow-out);
}

.friction-point-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #f1f5f9;
}

.remedy-point-block {
  background: var(--vitality-fresh-forest);
  color: #ffffff;
  padding: 40px;
  border-radius: var(--site-roundness);
  box-shadow: var(--vitality-shadow-out);
}

.remedy-point-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.un-ordered-bullet-set {
  list-style: none;
}

.un-ordered-bullet-set li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.un-ordered-bullet-set svg {
  flex-shrink: 0;
  margin-top: 4px;
}

/* Panoramic Graphic Block */
.panoramic-image-strip {
  position: relative;
  height: 40dvh;
  min-height: 300px;
  border-radius: var(--site-roundness);
  overflow: hidden;
  box-shadow: var(--vitality-shadow-out);
  margin-top: 40px;
}

.panoramic-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panoramic-scenic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 92, 69, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.panoramic-overlay-title {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 2.2rem;
  max-width: 800px;
}

/* Features Sunken Grid */
.perks-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.sunken-plate-item {
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-in);
  padding: 40px;
  border-radius: var(--site-roundness);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sunken-plate-item:hover {
  box-shadow: var(--vitality-shadow-out);
  transform: translateY(-4px);
}

.plate-icon-nest {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.plate-icon-nest svg {
  fill: var(--vitality-fresh-forest);
}

.plate-feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--vitality-dense-ink);
}

/* Stepper Stepping Sequence */
.stepper-sequence-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.neumorphic-pill-step {
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out-sm);
  border-radius: 999px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  justify-content: center;
}

.pill-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vitality-fresh-forest);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pill-step-label {
  font-weight: 600;
  color: var(--vitality-dense-ink);
}

.stepper-dash-spacer {
  height: 2px;
  border-top: 2px dashed #cbd5e1;
  flex-grow: 1;
}

.stepper-subnarratives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step-description-bubble {
  background: var(--vitality-bright-surface);
  padding: 24px;
  border-radius: var(--site-roundness);
  box-shadow: var(--vitality-shadow-out-sm);
}

.step-description-header {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--vitality-fresh-forest);
}

/* CTA Strips */
.centered-callout-plate {
  max-width: 700px;
  margin: 0 auto;
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out);
  padding: 48px;
  border-radius: var(--site-roundness);
  text-align: center;
}

.callout-plate-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.callout-plate-tagline {
  color: var(--vitality-muted-ink);
  margin-bottom: 32px;
}

/* Expert Page Layout G */
.centered-scene-wrapper {
  max-width: 800px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.scene-portrait-card {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--site-roundness);
  box-shadow: var(--vitality-shadow-out);
  border: 12px solid var(--vitality-base-slate);
  margin-bottom: 24px;
}

.stats-numerical-mesh {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.numerical-mesh-card {
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-in);
  padding: 32px;
  border-radius: var(--site-roundness);
  text-align: center;
}

.mesh-card-metric {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vitality-fresh-forest);
  margin-bottom: 8px;
}

.mesh-card-label {
  font-size: 1rem;
  color: var(--vitality-dense-ink);
  font-weight: 500;
}

.alternating-columns-manifest {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.manifest-row-alignment {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.manifest-row-alignment:nth-child(even) {
  flex-direction: row-reverse;
}

.manifest-text-cell {
  flex: 1 1 400px;
}

/* Reservation Page Layout G */
.reserve-central-shield {
  max-width: 620px;
  margin: 0 auto 48px auto;
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out);
  padding: 48px;
  border-radius: var(--site-roundness);
}

.reserve-shield-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
}

.interactive-entry-field {
  margin-bottom: 24px;
}

.interactive-entry-field label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--vitality-dense-ink);
}

.interactive-entry-field input, .interactive-entry-field textarea {
  width: 100%;
  border: none;
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-in-sm);
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--vitality-dense-ink);
  outline: none;
  transition: all 0.3s ease;
}

.interactive-entry-field input:focus, .interactive-entry-field textarea:focus {
  box-shadow: var(--vitality-shadow-out-sm);
}

.consent-statement-ticker {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  cursor: pointer;
}

.consent-statement-ticker input {
  margin-top: 4px;
}

.payout-mail-anchor {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--vitality-fresh-forest);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion-stack {
  max-width: 800px;
  margin: 48px auto 0 auto;
}

.accordion-details-unit {
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out-sm);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-summary-bar {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.accordion-summary-bar::-webkit-details-marker {
  display: none;
}

.accordion-summary-bar::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--vitality-fresh-forest);
}

.accordion-details-unit[open] .accordion-summary-bar::after {
  content: '−';
}

.accordion-extended-passage {
  padding: 0 24px 20px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--vitality-muted-ink);
}

/* Informative reserve-cards */
.info-row-mesh {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.info-bullet-card {
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out-sm);
  padding: 24px;
  border-radius: var(--site-roundness);
}

.info-bullet-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--vitality-fresh-forest);
}

.ordered-numbered-lineup {
  list-style: none;
}

.ordered-numbered-lineup li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.numbered-bead {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vitality-fresh-forest);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Privacy/Terms Base */
.document-prose-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--vitality-base-slate);
  box-shadow: var(--vitality-shadow-out);
  padding: 48px;
  border-radius: var(--site-roundness);
}

.document-prose-container h1 {
  font-family: var(--font-display);
  margin-bottom: 24px;
}

.document-prose-container h2 {
  font-family: var(--font-display);
  margin-top: 32px;
  margin-bottom: 16px;
}

.document-prose-container p {
  margin-bottom: 16px;
  color: var(--vitality-muted-ink);
}

/* Scroll-driven reveal animation (CSS only) */
.reveal-on-viewport-entry {
  animation: slide-up-viewport linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes slide-up-viewport {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Element */
.corporate-footer-zone {
  background: #1e293b;
  color: #f1f5f9;
  padding: 48px 0 24px 0;
  margin-top: 80px;
}

.footer-inner-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.footer-nav-links {
  display: flex;
  gap: 24px;
}

.footer-nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav-links a:hover {
  color: #ffffff;
}

.footer-disclaimer-panel {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.copyright-credit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* Cookie Banner container */
.cookie-approval-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--vitality-base-slate);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: none;
}

.cookie-approval-strip.cookie-visible {
  display: block;
}

.cookie-flex-alignment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-explanatory-text {
  font-size: 0.95rem;
  color: var(--vitality-dense-ink);
  max-width: 800px;
}

.cookie-action-buttons {
  display: flex;
  gap: 12px;
}

.cookie-accept-trigger {
  background: var(--vitality-fresh-forest);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--vitality-shadow-out-sm);
}

.cookie-decline-trigger {
  background: var(--vitality-base-slate);
  color: var(--vitality-dense-ink);
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--vitality-shadow-out-sm);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hamburger-label {
    display: flex;
  }
  
  .nav-items-drawer {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--vitality-base-slate);
    padding: 24px;
    box-shadow: var(--vitality-shadow-out);
    gap: 16px;
  }
  
  .mobile-nav-toggle:checked ~ .nav-items-drawer {
    display: flex;
  }
  
  .hero-main-title {
    font-size: 2.2rem;
  }
  
  .analysis-split-wrapper {
    grid-template-columns: 1fr;
  }
  
  .stats-numerical-mesh {
    grid-template-columns: 1fr;
  }
  
  .split-hero-composition {
    gap: 24px;
  }
  
  .hero-scenic-frame {
    order: -1;
  }
}