@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --wellness-surface: #ffffff;
  --wellness-base: #fdfaf6;
  --wellness-ink: #1e1e2d;
  --wellness-accent: #ff4a5a;
  --wellness-accent-hover: #e03846;
  --wellness-contrast: #2a2a40;
  --wellness-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --spacing-compact: 6dvh;
  --spacing-normal: 10dvh;
  --spacing-spacious: 16dvh;
  
  --radius-soft: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--wellness-ink);
  background-color: var(--wellness-base);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0;
}

/* Typography */
.display-huge { font-size: clamp(3.5rem, 8vw, 5rem); line-height: 1.1; }
.display-large { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; }
.display-medium { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.3; }

/* Thematic structural classes (Preset C) */
.wellness-top-ribbon {
  background-color: var(--wellness-accent);
  color: #ffffff;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.wellness-top-ribbon a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.wellness-top-ribbon a:hover {
  opacity: 0.8;
}

/* CSS Only Hamburger */
.mobile-toggle-check { display: none; }
.mobile-menu-icon { display: none; cursor: pointer; }
.nav-links-cluster { display: flex; gap: 2rem; align-items: center; }

@media (max-width: 768px) {
  .mobile-menu-icon { display: block; }
  .nav-links-cluster {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--wellness-accent);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .mobile-toggle-check:checked ~ .nav-links-cluster {
    display: flex;
  }
}

/* Preset C Specific Blocks */
.vitality-splash-zone {
  padding: var(--spacing-normal) 5%;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.knowledge-offset-wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: var(--spacing-normal) 5%;
}
.knowledge-img-layer {
  flex: 1;
  margin-left: -2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-radius: var(--radius-soft);
  overflow: hidden;
}
@media (max-width: 768px) {
  .knowledge-offset-wrap { flex-direction: column; }
  .knowledge-img-layer { margin-left: 0; margin-bottom: 2rem; }
}

.habits-row-group {
  padding: var(--spacing-normal) 5%;
  background-color: var(--wellness-surface);
}
.habit-horizontal-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--wellness-base);
}
.habit-horizontal-strip:last-child { border-bottom: none; }
.icon-bubble {
  width: 80px;
  height: 80px;
  background-color: var(--wellness-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.process-vertical-stream {
  padding: var(--spacing-normal) 5%;
}
.process-node {
  display: flex;
  position: relative;
  padding-left: 4rem;
  margin-bottom: 3rem;
}
.process-node::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: -3rem;
  width: 4px;
  background-color: var(--wellness-accent);
  opacity: 0.3;
}
.process-node:last-child::before { display: none; }
.process-node-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--wellness-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-display);
}

.action-trigger-banner {
  padding: var(--spacing-normal) 5%;
  position: relative;
  text-align: center;
  color: #fff;
}
.action-trigger-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 42, 64, 0.85);
  z-index: 1;
}
.action-trigger-content {
  position: relative;
  z-index: 2;
}

.bold-push-button {
  display: inline-block;
  background-color: var(--wellness-contrast);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: var(--radius-soft);
  font-family: var(--font-display);
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
  border: none;
  cursor: pointer;
}
.bold-push-button:hover {
  background-color: var(--wellness-ink);
  transform: translateY(-2px);
}
.bold-push-button.theme-accent {
  background-color: var(--wellness-accent);
}
.bold-push-button.theme-accent:hover {
  background-color: var(--wellness-accent-hover);
}

.footer-base-zone {
  background-color: var(--wellness-contrast);
  color: #fff;
  padding: 4rem 5% 2rem;
  text-align: center;
}

/* Forms & Accordion */
.booking-split-arena {
  display: flex;
  gap: 4rem;
  padding: var(--spacing-normal) 5%;
}
.booking-form-area { flex: 0 0 60%; }
.booking-info-area { flex: 0 0 40%; }
@media(max-width: 900px) {
  .booking-split-arena { flex-direction: column; }
}

.input-field-bold {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-soft);
  font-family: var(--font-body);
}
.input-field-bold:focus {
  outline: none;
  border-color: var(--wellness-accent);
}

.faq-group-zone {
  padding: var(--spacing-normal) 5%;
  background-color: var(--wellness-surface);
}
.faq-item-open {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cookie-alert-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--wellness-contrast);
  color: #fff;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}
@media(max-width: 600px) {
  .cookie-alert-bar { flex-direction: column; gap: 1rem; text-align: center; }
}