@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@400;700&display=swap');

:root {
  --wellness-bg: #FDFCFB; /* Light creamy background */
  --wellness-surface: #FFFFFF; /* Pure white for cards and surfaces */
  --wellness-ink: #1A2524; /* Dark text for readability */
  --wellness-accent: #00796B; /* A deep, calming teal */
  --wellness-accent-hover: #004D40; /* Darker teal for interactions */
  --wellness-border-soft: #EAE5E0; /* Soft border color */
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --padding-normal: 10dvh;
  --radius-soft: 16px;
  --shadow-raised: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-deep: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--wellness-ink);
  background-color: var(--wellness-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  max-width: 75ch;
}

a {
  color: var(--wellness-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--wellness-accent-hover);
}

img, picture {
  max-width: 100%;
  display: block;
}

/* --- Layout & Utility --- */
.page-core {
  width: 100%;
  overflow-x: hidden;
}

.content-zone {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding-top: var(--padding-normal);
  padding-bottom: var(--padding-normal);
}

/* --- Header & Navigation --- */
.global-header {
  background-color: var(--wellness-surface);
  border-bottom: 1px solid var(--wellness-border-soft);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.global-header:focus-within, .header-scrolled {
  box-shadow: var(--shadow-raised);
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wellness-ink);
}

.site-brand svg {
  width: 32px;
  height: 32px;
  fill: var(--wellness-accent);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  font-weight: 700;
  padding: 0.5rem 0;
  position: relative;
  color: var(--wellness-ink);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--wellness-accent);
  transition: width 0.3s ease;
}

.main-navigation a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
}
#menu-checkbox {
  display: none;
}

/* --- Announcement Bar --- */
.info-strip {
  background-color: var(--wellness-accent);
  color: var(--wellness-surface);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.info-strip a {
  color: var(--wellness-surface);
  font-weight: bold;
  text-decoration: underline;
}

/* --- Hero Section (Preset B) --- */
.introduction-area {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80dvh;
  align-items: center;
}

.intro-text-pane {
  padding: 4rem 2rem;
  background-color: #f1f8f7;
}

.intro-text-pane h1 {
  margin-bottom: 1rem;
}

.intro-text-pane .sub-headline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 60ch;
}

.action-button {
  display: inline-block;
  background-color: var(--wellness-accent);
  color: var(--wellness-surface);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-soft);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-raised);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.action-button:hover {
  background-color: var(--wellness-accent-hover);
  transform: translateY(-3px);
  color: var(--wellness-surface);
}

.intro-media-pane {
  background: url('img/bg.webp') no-repeat center center/cover;
  min-height: 400px;
  height: 100%;
}

/* --- Content Section (Preset B) --- */
.visual-divider-strip {
  height: 45vh;
  background: url('img/bg2.webp') no-repeat center center/cover;
}

.thematic-journal-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding-top: 3rem;
}
.journal-column {
  border-top: 3px solid var(--wellness-accent);
  padding-top: 1.5rem;
}

.journal-column h3 {
  margin-bottom: 1rem;
}

/* --- Features Section (Masonry) --- */
.benefits-masonry-view {
  columns: 3;
  column-gap: 2rem;
}

.benefit-item {
  background-color: var(--wellness-surface);
  padding: 1.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-raised);
  margin-bottom: 2rem;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.benefit-item img {
  border-radius: calc(var(--radius-soft) - 8px);
  margin-bottom: 1rem;
}

.benefit-item h4 {
  color: var(--wellness-accent);
  margin-bottom: 0.5rem;
}

/* --- "How it works" Section (Preset B) --- */
.process-track-horizontal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  flex: 1;
}

.step-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--wellness-accent);
  color: var(--wellness-surface);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-raised);
}

.step-connector {
    display: none; /* Hide connector in vertical mobile view */
}

/* --- CTA Strip --- */
.action-call-strip {
  background-color: var(--wellness-accent);
  color: var(--wellness-surface);
  text-align: center;
}
.action-call-strip h2 {
  max-width: 25ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.action-call-strip .action-button {
  background-color: var(--wellness-surface);
  color: var(--wellness-ink);
}
.action-call-strip .action-button:hover {
  background-color: #f1f1f1;
}


/* --- Footer --- */
.global-footer {
  background-color: var(--wellness-ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.footer-brand {
    color: var(--wellness-surface);
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-links a:hover {
  color: var(--wellness-surface);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.6);
}
.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}


/* --- Cookie Banner --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--wellness-ink);
  color: var(--wellness-surface);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}
.cookie-consent-banner.active {
    display: flex;
}
.cookie-consent-banner p {
  margin: 0;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--radius-soft);
  cursor: pointer;
  font-weight: bold;
}
#accept-cookie {
  background-color: var(--wellness-accent);
  color: var(--wellness-surface);
}
#decline-cookie {
  background-color: transparent;
  color: var(--wellness-surface);
  border: 1px solid var(--wellness-surface);
}

/* --- Expert Page Specifics --- */
.minimal-hero {
    background-color: #f1f8f7;
    text-align: center;
    padding: 6dvh 0;
}

.bio-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    background-color: var(--wellness-surface);
}
.bio-image {
    min-height: 400px;
    height: 100%;
    background: url('img/bg3.webp') no-repeat center center/cover;
}
.bio-text-content {
    padding: 3rem 2rem;
}
.stats-bar-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background-color: var(--wellness-border-soft);
    border-top: 1px solid var(--wellness-border-soft);
    border-bottom: 1px solid var(--wellness-border-soft);
}
.stat-block {
    background: var(--wellness-surface);
    padding: 2rem;
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--wellness-accent);
    line-height: 1;
}
.stat-label {
    margin-top: 0.5rem;
    color: var(--wellness-ink);
    font-weight: bold;
}
.approach-accordion {
    max-width: 900px;
}
.accordion-item {
    border-bottom: 1px solid var(--wellness-border-soft);
}
.accordion-item summary {
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none; /* remove arrow */
}
.accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-item p {
    padding-bottom: 1.5rem;
}


/* --- Reserve Page Specifics --- */
.reservation-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.info-cards-column .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.info-item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #e0f2f1;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.info-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--wellness-accent);
}
.info-item-text-content ul {
    list-style-type: none;
    padding-left: 0;
  margin-top: 0.5rem;
}
.info-item-text-content li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5rem;
}
.info-item-text-content li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--wellness-accent);
}

.reservation-form-wrapper {
    background-color: var(--wellness-surface);
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-deep);
}
.form-field {
    margin-bottom: 1.5rem;
}
.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.form-field input[type="text"], .form-field input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--wellness-border-soft);
    border-radius: var(--radius-soft);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus {
    outline: none;
    border-color: var(--wellness-accent);
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.2);
}
.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.checkbox-field input {
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- Generic Content Page (Privacy, Terms) --- */
.legal-content-article {
  padding: var(--padding-normal) 0;
  min-height: 70dvh;
}
.legal-content-article h1, .legal-content-article h2 {
    margin-bottom: 1.5rem;
}
.legal-content-article p {
    margin-bottom: 1rem;
}
.legal-content-article ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

/* --- Thank You Page --- */
.thank-you-vista {
    min-height: 80dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('img/bg3.webp') no-repeat center center/cover;
}
.thank-you-vista h1 {
    margin-bottom: 1rem;
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
  .introduction-area {
    grid-template-columns: 55% 45%;
  }
  .intro-text-pane {
    padding: 4rem;
  }
  .benefits-masonry-view {
    columns: 2;
  }
  .process-track-horizontal {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .process-step {
      align-items: center;
      text-align: center;
  }
  .step-connector {
    display: block;
    height: 2px;
    border-top: 2px dashed var(--wellness-border-soft);
    flex-grow: 1;
    margin-top: 24px;
  }
  .footer-grid {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: left;
  }
  .footer-links ul {
      justify-content: flex-end;
  }
  .bio-split-layout {
    grid-template-columns: 50% 50%;
  }
  .bio-text-content {
      padding: 4rem;
  }
  .reservation-page-grid {
      grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .benefits-masonry-view {
    columns: 3;
  }
}

@media (max-width: 767px) {
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--wellness-surface);
    box-shadow: var(--shadow-deep);
    border-top: 1px solid var(--wellness-border-soft);
  }
  .main-navigation ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  .main-navigation li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--wellness-border-soft);
  }
  .main-navigation li:last-child a {
      border-bottom: none;
  }
  .main-navigation a::after {
      display: none;
  }
  .mobile-menu-toggle {
    display: block;
    cursor: pointer;
  }
  .mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--wellness-ink);
    transition: all 0.3s ease-in-out;
  }
  #menu-checkbox:checked ~ .main-navigation {
    display: block;
  }
  #menu-checkbox:checked ~ .mobile-menu-toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #menu-checkbox:checked ~ .mobile-menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  #menu-checkbox:checked ~ .mobile-menu-toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .cookie-consent-banner {
      flex-direction: column;
      text-align: center;
  }
}