:root {
  --bio-mov-bg: #FCFBF9;
  --bio-mov-surface: #F3EFE9;
  --bio-mov-accent: #2D6A4F;
  --bio-mov-accent-hover: #1B4332;
  --bio-mov-accent-light: #E8F5E9;
  --bio-mov-ink: #1B201E;
  --bio-mov-ink-muted: #525B56;
  --bio-mov-white: #FFFFFF;
  --bio-mov-border: #D3CBBF;
  
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Mulish', sans-serif;
  
  --bio-mov-radius: 16px;
  --bio-mov-shadow: 0 10px 30px rgba(45, 106, 79, 0.08);
  --bio-mov-shadow-sm: 0 4px 12px rgba(45, 106, 79, 0.04);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bio-mov-bg);
  color: var(--bio-mov-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bio-mov-ink);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header & Nav */
.bio-mov-header-bar {
  background-color: var(--bio-mov-white);
  border-bottom: 1px solid var(--bio-mov-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.bio-mov-header-bar:focus-within {
  box-shadow: var(--bio-mov-shadow);
}

.bio-mov-header-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bio-mov-logo-element {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bio-mov-accent);
}

.bio-mov-logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--bio-mov-accent);
}

.bio-mov-nav-toggle {
  display: none;
}

.bio-mov-nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 110;
}

.bio-mov-nav-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--bio-mov-accent);
  transition: all 0.3s;
}

.bio-mov-nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.bio-mov-nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bio-mov-ink-muted);
}

.bio-mov-nav-link:hover {
  color: var(--bio-mov-accent);
}

.bio-mov-nav-link.active {
  color: var(--bio-mov-accent);
  border-bottom: 2px solid var(--bio-mov-accent);
  padding-bottom: 4px;
}

/* Scroll progress bar */
.bio-mov-scroll-tracker {
  height: 3px;
  width: 100%;
  background: var(--bio-mov-surface);
  position: absolute;
  bottom: 0;
  left: 0;
}

.bio-mov-scroll-progress {
  height: 100%;
  width: 0%;
  background: var(--bio-mov-accent);
}

/* Announcement Bar */
.bio-mov-announcement {
  background-color: var(--bio-mov-accent);
  color: var(--bio-mov-white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bio-mov-announcement a {
  text-decoration: underline;
  margin-left: 0.5rem;
  color: var(--bio-mov-white);
}

/* Hero Section */
.bio-mov-hero-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 80vh;
  background-color: var(--bio-mov-surface);
}

.bio-mov-hero-content {
  padding: 10dvh 5rem 10dvh 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 750px;
  margin-left: auto;
}

.bio-mov-hero-tag {
  color: var(--bio-mov-accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

.bio-mov-hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.bio-mov-hero-text {
  font-size: 1.1rem;
  color: var(--bio-mov-ink-muted);
  margin-bottom: 2.5rem;
}

.bio-mov-action-btn {
  display: inline-block;
  background-color: var(--bio-mov-accent);
  color: var(--bio-mov-white);
  padding: 1rem 2.5rem;
  border-radius: var(--bio-mov-radius);
  font-weight: 700;
  font-size: 1.05rem;
  align-self: flex-start;
  box-shadow: var(--bio-mov-shadow);
  border: 1px solid transparent;
}

.bio-mov-action-btn:hover {
  background-color: var(--bio-mov-accent-hover);
  transform: translateY(-2px);
}

.bio-mov-hero-media {
  position: relative;
  overflow: hidden;
}

.bio-mov-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Journal Content Strip */
.bio-mov-editorial-strip {
  height: 45vh;
  width: 100%;
}

.bio-mov-editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-mov-journal-grid {
  max-width: 1200px;
  margin: -50px auto 10dvh auto;
  background: var(--bio-mov-white);
  padding: 3rem 2rem;
  border-radius: var(--bio-mov-radius);
  box-shadow: var(--bio-mov-shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 5;
}

.bio-mov-journal-col {
  border-top: 3px solid var(--bio-mov-accent);
  padding-top: 1.5rem;
}

.bio-mov-journal-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.bio-mov-journal-desc {
  color: var(--bio-mov-ink-muted);
  font-size: 0.95rem;
}

/* Masonry Feature Elements */
.bio-mov-features-wrap {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.bio-mov-section-tag {
  text-align: center;
  color: var(--bio-mov-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.bio-mov-section-heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

.bio-mov-masonry-container {
  columns: 3;
  gap: 1.5rem;
}

.bio-mov-masonry-card {
  break-inside: avoid;
  background: var(--bio-mov-white);
  border: 1px solid var(--bio-mov-border);
  border-radius: var(--bio-mov-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--bio-mov-shadow-sm);
  transition: all 0.3s ease;
}

.bio-mov-masonry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bio-mov-shadow);
  border-color: var(--bio-mov-accent);
}

.bio-mov-masonry-icon-holder {
  background-color: var(--bio-mov-accent-light);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.bio-mov-masonry-icon {
  width: 24px;
  height: 24px;
  fill: var(--bio-mov-accent);
}

.bio-mov-masonry-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.bio-mov-masonry-text {
  color: var(--bio-mov-ink-muted);
  font-size: 0.95rem;
}

.bio-mov-image-deco {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: calc(var(--bio-mov-radius) - 4px);
  margin-top: 1rem;
}

/* Horizontal Progress Track / How it works */
.bio-mov-stepper-wrap {
  background-color: var(--bio-mov-surface);
  padding: 10dvh 2rem;
}

.bio-mov-stepper-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bio-mov-progress-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
  gap: 2rem;
}

.bio-mov-step-puck {
  flex: 1;
  position: relative;
  text-align: center;
}

.bio-mov-step-dot {
  width: 48px;
  height: 48px;
  background-color: var(--bio-mov-white);
  border: 3px solid var(--bio-mov-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.bio-mov-step-puck.active .bio-mov-step-dot {
  border-color: var(--bio-mov-accent);
  background-color: var(--bio-mov-accent);
  color: var(--bio-mov-white);
  box-shadow: 0 0 0 10px var(--bio-mov-accent-light);
}

.bio-mov-step-line {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  border-top: 2px dashed var(--bio-mov-border);
  z-index: 1;
}

.bio-mov-step-puck:last-child .bio-mov-step-line {
  display: none;
}

.bio-mov-step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.bio-mov-step-desc {
  font-size: 0.9rem;
  color: var(--bio-mov-ink-muted);
  max-width: 250px;
  margin: 0 auto;
}

/* CTA Strip */
.bio-mov-banner-strip {
  background: var(--bio-mov-accent);
  color: var(--bio-mov-white);
  padding: 8dvh 2rem;
  text-align: center;
}

.bio-mov-banner-inner {
  max-width: 800px;
  margin: 0 auto;
}

.bio-mov-banner-title {
  color: var(--bio-mov-white);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.bio-mov-banner-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.bio-mov-banner-btn {
  display: inline-block;
  background-color: var(--bio-mov-white);
  color: var(--bio-mov-accent);
  padding: 1rem 2.5rem;
  border-radius: var(--bio-mov-radius);
  font-weight: 700;
  box-shadow: var(--bio-mov-shadow);
}

.bio-mov-banner-btn:hover {
  background-color: var(--bio-mov-surface);
  transform: translateY(-2px);
}

/* Footer Section */
.bio-mov-footer-block {
  background-color: var(--bio-mov-ink);
  color: var(--bio-mov-white);
  padding: 5rem 2rem 2rem 2rem;
  font-size: 0.9rem;
}

.bio-mov-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 2fr 2fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.bio-mov-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bio-mov-white);
  margin-bottom: 1rem;
}

.bio-mov-footer-logo svg {
  fill: var(--bio-mov-white);
}

.bio-mov-footer-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.bio-mov-footer-nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bio-mov-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bio-mov-footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.bio-mov-footer-links a:hover {
  color: var(--bio-mov-white);
  text-decoration: underline;
}

.bio-mov-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.bio-mov-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* Cookie Banner styling */
.bio-mov-cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bio-mov-ink);
  color: var(--bio-mov-white);
  padding: 1.5rem;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 3px solid var(--bio-mov-accent);
}

.bio-mov-cookie-box p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.bio-mov-cookie-box select {
  background-color: transparent;
  color: var(--bio-mov-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

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

.bio-mov-cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
}

.bio-mov-cookie-btn-accept {
  background-color: var(--bio-mov-accent);
  color: var(--bio-mov-white);
}

.bio-mov-cookie-btn-decline {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--bio-mov-white);
}

/* Expert Page Layout (Light Split) */
.bio-mov-expert-split {
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 1200px;
  margin: 6dvh auto 10dvh auto;
  gap: 4rem;
  padding: 0 2rem;
  align-items: center;
}

.bio-mov-expert-frame {
  position: relative;
  border-radius: var(--bio-mov-radius);
  overflow: hidden;
  box-shadow: var(--bio-mov-shadow);
  height: 550px;
}

.bio-mov-expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-mov-expert-body h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.bio-mov-expert-biography {
  font-size: 1.05rem;
  color: var(--bio-mov-ink-muted);
  margin-bottom: 2rem;
}

/* Statistics Horizontal Strip */
.bio-mov-stats-row {
  background-color: var(--bio-mov-surface);
  padding: 4rem 2rem;
}

.bio-mov-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.bio-mov-stat-box {
  background: var(--bio-mov-white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--bio-mov-radius);
  box-shadow: var(--bio-mov-shadow-sm);
}

.bio-mov-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--bio-mov-accent);
  margin-bottom: 0.5rem;
}

.bio-mov-stat-lbl {
  font-size: 0.95rem;
  color: var(--bio-mov-ink-muted);
  font-weight: 600;
}

/* Accordion Educational Approaches */
.bio-mov-acc-section {
  max-width: 900px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.bio-mov-acc-block {
  border: 1px solid var(--bio-mov-border);
  border-radius: var(--bio-mov-radius);
  margin-bottom: 1.5rem;
  background-color: var(--bio-mov-white);
  overflow: hidden;
}

.bio-mov-acc-header {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bio-mov-surface);
  border-bottom: 1px solid var(--bio-mov-border);
}

.bio-mov-acc-content {
  padding: 2rem;
  color: var(--bio-mov-ink-muted);
}

/* Reserve Page Layout (2 columns split) */
.bio-mov-reservation-split {
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 1200px;
  margin: 8dvh auto;
  gap: 4rem;
  padding: 0 2rem;
}

.bio-mov-cards-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bio-mov-bullet-card {
  background: var(--bio-mov-white);
  border: 1px solid var(--bio-mov-border);
  border-radius: var(--bio-mov-radius);
  padding: 2.22rem;
  box-shadow: var(--bio-mov-shadow-sm);
}

.bio-mov-bullet-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bio-mov-bullet-title {
  font-size: 1.25rem;
}

.bio-mov-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bio-mov-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--bio-mov-ink-muted);
}

.bio-mov-bullet-marker {
  width: 18px;
  height: 18px;
  background-color: var(--bio-mov-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Right side Reservation Form */
.bio-mov-form-container {
  background-color: var(--bio-mov-white);
  border: 1px solid var(--bio-mov-border);
  border-radius: var(--bio-mov-radius);
  padding: 3rem;
  box-shadow: var(--bio-mov-shadow);
  align-self: start;
}

.bio-mov-form-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.bio-mov-form-subtitle {
  color: var(--bio-mov-ink-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.bio-mov-form-group {
  margin-bottom: 1.5rem;
}

.bio-mov-form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bio-mov-form-input, .bio-mov-form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--bio-mov-border);
  border-radius: var(--bio-mov-radius);
  font-family: inherit;
  font-size: 1rem;
}

.bio-mov-form-input:focus, .bio-mov-form-textarea:focus {
  outline: none;
  border-color: var(--bio-mov-accent);
}

.bio-mov-form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--bio-mov-ink-muted);
}

.bio-mov-form-consent input {
  margin-top: 3px;
}

.bio-mov-form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
}

.bio-mov-mailto-anchor {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--bio-mov-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.bio-mov-mailto-anchor:hover {
  text-decoration: underline;
}

/* FAQ Accordion at the bottom of Reserve */
.bio-mov-faq-wrap {
  max-width: 900px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.bio-mov-faq-item {
  border: 1px solid var(--bio-mov-border);
  border-radius: var(--bio-mov-radius);
  margin-bottom: 1rem;
}

.bio-mov-faq-title {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.15rem;
  background: var(--bio-mov-surface);
  border-radius: var(--bio-mov-radius) var(--bio-mov-radius) 0 0;
}

.bio-mov-faq-answer {
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
  color: var(--bio-mov-ink-muted);
  border-top: 1px solid var(--bio-mov-border);
}

/* Static legal text styling */
.bio-mov-legal-shell {
  max-width: 800px;
  margin: 6vh auto;
  padding: 0 2rem;
  min-height: 80vh;
}

.bio-mov-legal-shell h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--bio-mov-accent);
  padding-bottom: 1rem;
}

.bio-mov-legal-shell h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.bio-mov-legal-shell p {
  color: var(--bio-mov-ink-muted);
  margin-bottom: 1.25rem;
}

.bio-mov-legal-shell ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--bio-mov-ink-muted);
}

.bio-mov-legal-shell li {
  margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .bio-mov-hero-split,
  .bio-mov-expert-split,
  .bio-mov-reservation-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bio-mov-hero-content {
    padding: 6dvh 2rem;
    margin-left: initial;
    max-width: 100%;
  }

  .bio-mov-hero-media {
    height: 400px;
  }
  
  .bio-mov-journal-grid {
    grid-template-columns: 1fr;
    margin-top: -30px;
    gap: 2rem;
  }
  
  .bio-mov-masonry-container {
    columns: 2;
  }
  
  .bio-mov-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bio-mov-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .bio-mov-expert-frame {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .bio-mov-nav-label {
    display: flex;
  }
  
  .bio-mov-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bio-mov-white);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--bio-mov-border);
    gap: 1.5rem;
    box-shadow: var(--bio-mov-shadow);
  }
  
  .bio-mov-nav-toggle:checked ~ .bio-mov-nav-menu {
    display: flex;
  }
  
  .bio-mov-masonry-container {
    columns: 1;
  }
  
  .bio-mov-progress-track {
    flex-direction: column;
    gap: 3rem;
  }
  
  .bio-mov-step-line {
    display: none;
  }
  
  .bio-mov-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .bio-mov-cookie-box {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}