:root {
  --vital-life-bg: #fdfbf7;
  --vital-life-surface: #ffffff;
  --vital-life-tint: #ecf3ee;
  --vital-life-accent: #2d6a4f;
  --vital-life-accent-hover: #1b4332;
  --vital-life-glow: #ffb703;
  --vital-life-ink: #1a291e;
  --vital-life-muted: #5c6b60;
  --vital-life-gradient: linear-gradient(135deg, #ecf3ee 0%, #fff3b0 100%);
  --vital-life-wave-gradient: linear-gradient(90deg, #2d6a4f 0%, #40916c 100%);
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Mulish', sans-serif;
}

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

body {
  background-color: var(--vital-life-bg);
  color: var(--vital-life-ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--vital-life-ink);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scroll Progress Bar */
.vital-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--vital-life-glow);
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 10000;
  animation: vital-scroll-anim linear;
  animation-timeline: scroll();
}

@keyframes vital-scroll-anim {
  to { transform: scaleX(1); }
}

/* Smooth Fade on Scroll */
.vital-scroll-fade {
  animation: vital-fade-in linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes vital-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Common Layout Wrapper */
.vital-shell {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* Buttons / Pills */
.vital-pill-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--vital-life-accent);
  color: var(--vital-life-surface);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
}

.vital-pill-trigger:hover {
  background-color: var(--vital-life-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.3);
}

.vital-pill-secondary {
  background-color: transparent;
  color: var(--vital-life-accent);
  border: 2px solid var(--vital-life-accent);
  box-shadow: none;
}

.vital-pill-secondary:hover {
  background-color: var(--vital-life-tint);
  color: var(--vital-life-accent-hover);
  border-color: var(--vital-life-accent-hover);
  box-shadow: none;
}

/* Header Styles (Preset N) */
.vital-topbar {
  background: var(--vital-life-gradient);
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.vital-topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}

.vital-logo-holder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vital-logo-blob {
  background-color: var(--vital-life-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  transition: border-radius 0.4s ease;
}

.vital-logo-blob:hover {
  border-radius: 40% 60% 40% 60% / 50% 50% 50% 50%;
}

.vital-logo-blob svg {
  width: 24px;
  height: 24px;
  fill: var(--vital-life-surface);
}

.vital-brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--vital-life-accent);
}

/* Hamburger Menu Switch */
.vital-toggle-hidden {
  display: none;
}

.vital-hamburger-switch {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.vital-hamburger-switch span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vital-life-accent);
  border-radius: 2px;
  transition: 0.3s ease;
}

.vital-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vital-link-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.vital-nav-anchor {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vital-life-ink);
  position: relative;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.vital-nav-anchor::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--vital-life-accent);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.vital-nav-anchor:hover {
  color: var(--vital-life-accent);
}

.vital-nav-anchor:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Hero Section (Preset N - split with organic blob graphics) */
.vital-main-intro {
  padding: 10dvh 0;
  background: var(--vital-life-gradient);
  overflow: hidden;
  position: relative;
}

.vital-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.vital-intro-text h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--vital-life-ink);
  margin-bottom: 24px;
}

.vital-intro-text p {
  font-size: 1.2rem;
  color: var(--vital-life-muted);
  margin-bottom: 36px;
}

.vital-intro-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vital-intro-blob-frame {
  width: 90%;
  aspect-ratio: 1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(45, 106, 79, 0.15);
  background-color: var(--vital-life-tint);
}

.vital-intro-blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Perks Section (Features) */
.vital-perks-section {
  padding: 10dvh 0;
}

.vital-perks-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.vital-perks-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.vital-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.vital-perk-card {
  background-color: var(--vital-life-surface);
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vital-perk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.vital-perk-blob-wrapper {
  background-color: var(--vital-life-tint);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  transition: border-radius 0.6s ease;
}

.vital-perk-card:hover .vital-perk-blob-wrapper {
  border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
}

.vital-perk-blob-wrapper svg {
  width: 32px;
  height: 32px;
  fill: var(--vital-life-accent);
}

.vital-perk-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* Mid-Content (Alternative Wave Sections) */
.vital-middle-highlight {
  padding: 10dvh 0;
  background-color: var(--vital-life-surface);
}

.vital-highlight-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vital-highlight-image {
  clip-path: ellipse(50% 46% at 55% 50%);
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vital-highlight-details h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.vital-highlight-details p {
  color: var(--vital-life-muted);
  margin-bottom: 24px;
}

.vital-wave-showcase {
  position: relative;
  padding: 14dvh 0;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--vital-life-surface);
  text-align: center;
}

.vital-wave-contents {
  max-width: 800px;
  margin: 0 auto;
}

.vital-wave-contents h2 {
  color: var(--vital-life-surface);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.vital-wave-contents p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* How It Works Section */
.vital-journey-track {
  padding: 10dvh 0;
  position: relative;
}

.vital-journey-track h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.vital-journey-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.vital-connector-svg {
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}

.vital-connector-svg path {
  stroke: var(--vital-life-accent);
  stroke-dasharray: 8, 8;
  fill: none;
}

.vital-journey-stop {
  text-align: center;
  position: relative;
  z-index: 2;
}

.vital-bubble-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  background-color: var(--vital-life-tint);
  border-radius: 55% 45% 48% 52% / 50% 50% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vital-life-accent);
  box-shadow: 0 8px 20px rgba(45, 106, 79, 0.1);
}

.vital-journey-stop h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* CTA Strip with wave clip-path */
.vital-promotional-wave {
  background: var(--vital-life-wave-gradient);
  color: var(--vital-life-surface);
  padding: 10dvh 0;
  text-align: center;
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  position: relative;
}

.vital-promotional-contents {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.vital-promotional-contents h2 {
  color: var(--vital-life-surface);
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.vital-promotional-contents p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Expert Page Specifics */
.vital-expert-hero {
  padding: 10dvh 0;
  background: var(--vital-life-gradient);
}

.vital-expert-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
  align-items: center;
}

.vital-expert-blob-frame {
  width: 100%;
  aspect-ratio: 0.9;
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vital-expert-blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vital-expert-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.vital-stat-bubble {
  background-color: var(--vital-life-surface);
  padding: 20px 15px;
  text-align: center;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.03);
}

.vital-stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vital-life-accent);
}

.vital-stat-label {
  font-size: 0.85rem;
  color: var(--vital-life-muted);
}

.vital-expert-quote-block {
  margin: 40px 0;
  padding-left: 24px;
  border-left: 4px solid var(--vital-life-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--vital-life-muted);
}

/* Reserve Page Specifics */
.vital-booking-panel {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
  padding: 8dvh 0;
}

.vital-booking-form-wrapper {
  background-color: var(--vital-life-surface);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.vital-booking-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.vital-input-group {
  margin-bottom: 20px;
}

.vital-input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--font-display);
}

.vital-input-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--vital-life-tint);
  border-radius: 8px;
  background-color: var(--vital-life-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.vital-input-control:focus {
  border-color: var(--vital-life-accent);
  background-color: var(--vital-life-surface);
}

.vital-checkbox-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--vital-life-muted);
  cursor: pointer;
}

.vital-checkbox-agree input {
  margin-top: 4px;
}

.vital-booking-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vital-info-blob-card {
  background-color: var(--vital-life-tint);
  padding: 30px;
  border-radius: 18px;
}

.vital-info-blob-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.vital-info-blob-card h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--vital-life-accent);
}

.vital-info-bullet-list {
  list-style: none;
  margin-top: 15px;
}

.vital-info-bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.vital-info-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--vital-life-glow);
}

/* FAQ Area CSS-only Accordions */
.vital-faq-area {
  padding: 8dvh 0;
}

.vital-faq-area h2 {
  text-align: center;
  margin-bottom: 40px;
}

.vital-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vital-faq-item {
  background-color: var(--vital-life-surface);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  overflow: hidden;
}

.vital-faq-question-label {
  display: block;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  background-color: var(--vital-life-tint);
}

.vital-faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.vital-faq-trigger {
  display: none;
}

.vital-faq-trigger:checked ~ .vital-faq-answer-content {
  max-height: 200px;
  padding: 20px 24px;
}

/* Static legal layout pages */
.vital-static-layout {
  padding: 10dvh 0;
}

.vital-static-layout h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.vital-static-layout p, .vital-static-layout h2 {
  margin-bottom: 20px;
}

.vital-static-layout section {
  margin-bottom: 40px;
}

/* Thank You Section */
.vital-thanks-window {
  padding: 12dvh 0;
  text-align: center;
}

.vital-thanks-window h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.vital-thanks-window p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--vital-life-muted);
}

/* Footer (Shared) */
.vital-bottom-anchor {
  background-color: var(--vital-life-ink);
  color: var(--vital-life-surface);
  padding: 80px 0 30px 0;
}

.vital-bottom-shell {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vital-bottom-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.vital-bottom-brand-space {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vital-bottom-brand-space .vital-logo-blob {
  background-color: var(--vital-life-glow);
}

.vital-bottom-brand-space .vital-brand-name {
  color: var(--vital-life-surface);
}

.vital-bottom-logo-desc {
  max-width: 300px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 15px;
}

.vital-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.vital-bottom-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.vital-bottom-links a:hover {
  color: var(--vital-life-glow);
}

.vital-bottom-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.vital-bottom-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
}

/* Cookie Advice Banner */
.vital-cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--vital-life-ink);
  color: var(--vital-life-surface);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  display: none;
}

.vital-cookies-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.vital-cookies-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
}

.vital-cookies-actions {
  display: flex;
  gap: 12px;
}

/* Responsive adjusters */
@media (max-width: 1024px) {
  .vital-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vital-intro-text {
    order: 2;
    text-align: center;
  }
  .vital-intro-graphic {
    order: 1;
  }
  .vital-highlight-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vital-expert-grid {
    grid-template-columns: 1fr;
  }
  .vital-expert-blob-frame {
    max-width: 450px;
    margin: 0 auto;
  }
  .vital-booking-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vital-hamburger-switch {
    display: flex;
  }
  
  .vital-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--vital-life-surface);
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .vital-link-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .vital-toggle-hidden:checked ~ .vital-navigation {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .vital-toggle-hidden:checked ~ .vital-hamburger-switch span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .vital-toggle-hidden:checked ~ .vital-hamburger-switch span:nth-child(2) {
    opacity: 0;
  }

  .vital-toggle-hidden:checked ~ .vital-hamburger-switch span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .vital-journey-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vital-connector-svg {
    display: none;
  }
  
  .vital-bottom-upper {
    flex-direction: column;
    text-align: center;
  }
}