/* ==========================================================================
   CSS VARIABLE DECLARATIONS (Custom theme based on Movement & Joint Wellness)
   ========================================================================== */
:root {
  /* Natural light wellness palette */
  --mov-bg-base: #f7faf9;
  --mov-surface-card: #ffffff;
  --mov-brand-primary: #1b4d3e;      /* Forest/Sage Green - representing dynamic strength */
  --mov-brand-accent: #d97706;       /* Sunset Amber - representing movement energy */
  --mov-brand-soft: #e6f0ec;         /* Soft green tint */
  --mov-brand-hover: #143b2f;
  --mov-brand-accent-hover: #b45309;
  --mov-text-dark: #111827;
  --mov-text-muted: #4b5563;
  --mov-border-color: #e5e7eb;
  
  /* Gradients */
  --mov-gradient-main: linear-gradient(135deg, #1b4d3e 0%, #2d6a4f 100%);
  --mov-gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  --mov-gradient-overlay: linear-gradient(180deg, rgba(27, 77, 62, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
  
  /* Fonts from parameters */
  --mov-font-display: 'Montserrat', sans-serif;
  --mov-font-body: 'Inter', sans-serif;
  
  /* Visual scales */
  --mov-radius-soft: 20px;
  --mov-shadow-raised: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --mov-shadow-hover: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -8px rgba(0, 0, 0, 0.1);
  --mov-padding-section: 10dvh;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--mov-font-body);
  color: var(--mov-text-dark);
  background-color: var(--mov-bg-base);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Typography styles matching parameters */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mov-font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--mov-brand-primary);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--mov-text-muted);
}

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

/* ==========================================================================
   SCROLL PROGRESS BAR & SCROLL-DRIVEN ANIMATIONS
   ========================================================================== */
@keyframes progress-grow {
  from { width: 0%; }
  to { width: 100%; }
}

.mov-scroll-progress {
  height: 3px;
  width: 0;
  background: var(--mov-brand-accent);
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 9999;
  animation: progress-grow linear-gradient;
  animation-timeline: scroll();
}

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

.reveal {
  animation: slide-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

/* ==========================================================================
   HEADER / NAVIGATION Panel
   ========================================================================== */
.mov-top-bar {
  background-color: var(--mov-surface-card);
  border-bottom: 1px solid var(--mov-border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.mov-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mov-brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mov-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--mov-brand-primary);
}

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

.mov-nav-links-wrap {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.mov-nav-item a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--mov-brand-primary);
  position: relative;
  padding: 0.5rem 0;
}

.mov-nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--mov-brand-accent);
  transition: width 0.3s ease;
}

.mov-nav-item a:hover::after {
  width: 100%;
}

/* Hamburger Menu CSS-Only */
.mov-toggle-menu {
  display: none;
}

.mov-hamburger-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mov-hamburger-label span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--mov-brand-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   BUTTONS / INTERACTIVES
   ========================================================================== */
.mov-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--mov-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  border-radius: var(--mov-radius-soft);
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
}

.mov-action-primary {
  background: var(--mov-gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.mov-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.mov-action-secondary {
  background: transparent;
  color: var(--mov-brand-primary);
  border: 2px solid var(--mov-brand-primary);
}

.mov-action-secondary:hover {
  background: var(--mov-brand-soft);
}

/* ==========================================================================
   HERO SEGMENT
   ========================================================================== */
.mov-showcase-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--mov-padding-section) 0;
}

.mov-showcase-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mov-gradient-overlay);
  z-index: 1;
}

.mov-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.mov-hero-text-block {
  max-width: 700px;
}

.mov-hero-text-block h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.mov-hero-text-block p {
  color: #e5e7eb;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.mov-hero-button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   BENTO GRID SECTION (Preset I Elements)
   ========================================================================== */
.mov-bento-section {
  padding: var(--mov-padding-section) 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mov-bento-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mov-bento-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--mov-brand-primary);
  margin-bottom: 1rem;
}

.mov-bento-header p {
  max-width: 600px;
  margin: 0 auto;
}

.mov-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.mov-bento-box {
  background-color: var(--mov-surface-card);
  border-radius: var(--mov-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--mov-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mov-bento-box:hover {
  transform: scale(1.02);
  box-shadow: var(--mov-shadow-hover);
}

.mov-bento-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mov-brand-soft);
  margin-bottom: 1.5rem;
}

.mov-bento-icon-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--mov-brand-primary);
}

.mov-bento-box h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--mov-brand-primary);
}

/* Bento spans */
.mov-bento-span-4 {
  grid-column: span 4;
  background: var(--mov-gradient-main);
  color: #ffffff;
}

.mov-bento-span-4 h3, .mov-bento-span-4 p {
  color: #ffffff;
}

.mov-bento-span-4 .mov-bento-icon-badge {
  background-color: rgba(255,255,255,0.15);
}

.mov-bento-span-4 .mov-bento-icon-badge svg {
  fill: #ffffff;
}

.mov-bento-span-2 {
  grid-column: span 2;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mov-bento-stat-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--mov-brand-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mov-bento-span-3 {
  grid-column: span 3;
}

.mov-bento-span-6 {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}

.mov-bento-span-6 .mov-bento-left {
  flex-shrink: 0;
}

.mov-bento-span-6 .mov-bento-right {
  flex-grow: 1;
}

/* ==========================================================================
   MIDDLE GROUND IMAGE CONTENT BLOCK (Alternating / Zigzag context)
   ========================================================================== */
.mov-middle-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  margin: 4rem 0;
}

.mov-middle-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
}

.mov-middle-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.mov-middle-banner-content h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.mov-middle-banner-content p {
  color: #f3f4f6;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   HOW IT WORKS (3 steps horizontally)
   ========================================================================== */
.mov-process-section {
  padding: var(--mov-padding-section) 0;
  background-color: var(--mov-surface-card);
}

.mov-process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mov-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.mov-process-step {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.mov-step-bg-num {
  font-size: 8rem;
  font-weight: 900;
  color: var(--mov-brand-primary);
  opacity: 0.05;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  line-height: 1;
}

.mov-step-content {
  position: relative;
  z-index: 2;
}

.mov-step-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* ==========================================================================
   CTA SEGMENT STRIP
   ========================================================================== */
.mov-cta-strip {
  background: var(--mov-gradient-accent);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.mov-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mov-cta-inner h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.mov-cta-inner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.mov-cta-inner .mov-action-primary {
  background: var(--mov-brand-primary);
  box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.mov-cta-inner .mov-action-primary:hover {
  background: var(--mov-brand-hover);
}

/* ==========================================================================
   EXPERT BIOGRAPHY (For expert.html)
   ========================================================================== */
.mov-expert-bio-wrap {
  padding: var(--mov-padding-section) 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mov-expert-flex {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.mov-expert-image {
  flex: 1;
  max-width: 500px;
}

.mov-expert-image img {
  width: 100%;
  border-radius: var(--mov-radius-soft);
  box-shadow: var(--mov-shadow-raised);
  object-fit: cover;
}

.mov-expert-text {
  flex: 1;
}

.mov-expert-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mov-expert-text .mov-role {
  font-family: var(--mov-font-display);
  font-weight: 700;
  color: var(--mov-brand-accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

/* ==========================================================================
   RESERVATIONS FORM & DETAILS (For reserve.html)
   ========================================================================== */
.mov-reserve-layout {
  padding: var(--mov-padding-section) 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mov-reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.mov-reserve-info h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.mov-info-card {
  background: var(--mov-surface-card);
  border-radius: var(--mov-radius-soft);
  padding: 2rem;
  box-shadow: var(--mov-shadow-raised);
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--mov-brand-accent);
}

.mov-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.mov-info-card ul {
  list-style: none;
  padding-top: 0.5rem;
}

.mov-info-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.mov-bullet-point {
  width: 8px;
  height: 8px;
  background-color: var(--mov-brand-accent);
  border-radius: 50%;
  display: inline-block;
}

.mov-form-card {
  background: var(--mov-surface-card);
  border-radius: var(--mov-radius-soft);
  padding: 3rem;
  box-shadow: var(--mov-shadow-raised);
}

.mov-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.mov-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--mov-brand-primary);
}

.mov-input-group input, 
.mov-input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--mov-border-color);
  border-radius: 10px;
  font-family: var(--mov-font-body);
  font-size: 1rem;
  color: var(--mov-text-dark);
  transition: border-color 0.3s;
}

.mov-input-group input:focus, 
.mov-input-group textarea:focus {
  outline: none;
  border-color: var(--mov-brand-primary);
}

.mov-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mov-consent-check input {
  margin-top: 0.25rem;
}

.mov-consent-check label {
  font-size: 0.85rem;
  color: var(--mov-text-muted);
}

.mov-consent-check label a {
  color: var(--mov-brand-accent);
  text-decoration: underline;
}

/* ==========================================================================
   FAQ SECTION (reserve.html accordion)
   ========================================================================== */
.mov-faq-container {
  max-width: 800px;
  margin: 5rem auto 0;
}

.mov-faq-container h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.mov-accordion-item {
  background: var(--mov-surface-card);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--mov-shadow-raised);
}

.mov-accordion-trigger {
  display: none;
}

.mov-accordion-header {
  padding: 1.5rem;
  font-family: var(--mov-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: var(--mov-brand-primary);
}

.mov-accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--mov-brand-accent);
  transition: transform 0.3s ease;
}

.mov-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem;
}

.mov-accordion-content p {
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

.mov-accordion-trigger:checked ~ .mov-accordion-content {
  max-height: 300px;
}

.mov-accordion-trigger:checked ~ .mov-accordion-header::after {
  transform: rotate(45deg);
}

/* ==========================================================================
   LEGAL / GENERAL STATIC PAGES (Terms & Privacy)
   ========================================================================== */
.mov-static-page-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--mov-padding-section) 1.5rem;
  min-height: 80vh;
}

.mov-static-page-wrap h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--mov-brand-accent);
  padding-bottom: 0.5rem;
}

.mov-static-page-wrap h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.mov-static-page-wrap p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ==========================================================================
   COOKIE CONSENT DISPLAY
   ========================================================================== */
.mov-cookie-banner-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--mov-text-dark);
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: none;
}

.mov-cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.mov-cookie-banner-inner p {
  color: #d1d5db;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.mov-cookie-banner-buttons {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}

.mov-cookie-action-btn {
  padding: 0.6rem 1.75rem;
  font-family: var(--mov-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: var(--mov-radius-soft);
  cursor: pointer;
  border: none;
}

.mov-cookie-accept {
  background: var(--mov-brand-accent);
  color: #ffffff;
}

.mov-cookie-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ==========================================================================
   FOOTER segment
   ========================================================================== */
.mov-base-footer {
  background-color: var(--mov-brand-primary);
  color: #ffffff;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mov-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mov-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.mov-footer-brand-side h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mov-footer-brand-side h3 svg {
  fill: var(--mov-brand-accent);
  width: 28px;
  height: 28px;
}

.mov-footer-brand-side p {
  color: #a7f3d0;
  max-width: 450px;
}

.mov-footer-links-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mov-footer-links-side a {
  color: #a7f3d0;
  font-weight: 600;
}

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

.mov-disclaimer-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: #d1d5db;
  text-align: center;
}

.mov-footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #a7f3d0;
}

/* ==========================================================================
   RESPONSIVENESS (Media queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .mov-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mov-bento-span-4, .mov-bento-span-2, .mov-bento-span-3, .mov-bento-span-6 {
    grid-column: span 2;
  }
  .mov-bento-span-6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  /* Navigation Mobile */
  .mov-hamburger-label {
    display: flex;
  }
  
  .mov-nav-links-wrap {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--mov-surface-card);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-bottom: 1px solid var(--mov-border-color);
  }
  
  .mov-nav-item {
    width: 100%;
    text-align: center;
  }
  
  .mov-nav-item a {
    display: block;
    padding: 1.25rem;
  }
  
  .mov-toggle-menu:checked ~ .mov-nav-links-wrap {
    max-height: 300px;
  }
  
  .mov-toggle-menu:checked ~ .mov-hamburger-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mov-toggle-menu:checked ~ .mov-hamburger-label span:nth-child(2) {
    opacity: 0;
  }
  
  .mov-toggle-menu:checked ~ .mov-hamburger-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Process steps vertically */
  .mov-process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Expert Flex */
  .mov-expert-flex {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  /* Reserve Layout */
  .mov-reserve-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mov-form-card {
    padding: 1.5rem;
  }

  /* Bento responsive */
  .mov-bento-grid {
    grid-template-columns: 1fr;
  }
  .mov-bento-span-4, .mov-bento-span-2, .mov-bento-span-3, .mov-bento-span-6 {
    grid-column: span 1;
  }
  
  /* Cookie Consent Mobile */
  .mov-cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .mov-cookie-banner-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  /* Footer */
  .mov-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}