/* =====================================================
   TOLUFE GUMILE MEAL PREP COACHING — MAIN STYLESHEET
   Warm Palette Design System
   ===================================================== */


:root {
  
  --color-background-primary: #fdf8f2;
  --color-background-secondary: #f9f3ea;
  --color-background-tertiary: #f4ebe0;
  --color-background-dark: #2c2118;
  --color-background-dark-secondary: #3d2e20;

  --color-text-primary: #2c2118;
  --color-text-secondary: #5c4a38;
  --color-text-muted: #8a7060;
  --color-text-on-dark: #fdf8f2;
  --color-text-on-dark-muted: #c9b8a8;

  --color-accent-terracotta: #c2603e;
  --color-accent-terracotta-light: #d4785c;
  --color-accent-terracotta-dark: #a34e2e;
  --color-accent-amber: #d4922a;
  --color-accent-warm-green: #5a7a4a;
  --color-accent-warm-green-light: #6e9460;
  --color-accent-cream-border: #e8d9c8;
  --color-accent-cream-border-light: #f0e4d4;

  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-pill: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(44,33,24,0.08), 0 1px 2px rgba(44,33,24,0.05);
  --shadow-md: 0 4px 12px rgba(44,33,24,0.10), 0 2px 6px rgba(44,33,24,0.06);
  --shadow-lg: 0 10px 30px rgba(44,33,24,0.12), 0 4px 12px rgba(44,33,24,0.08);
  --shadow-xl: 0 20px 50px rgba(44,33,24,0.14), 0 8px 20px rgba(44,33,24,0.09);
  --shadow-card-hover: 0 16px 40px rgba(194,96,62,0.15), 0 6px 16px rgba(44,33,24,0.10);
  --shadow-inset: inset 0 1px 3px rgba(44,33,24,0.10);

  
  --font-family-primary: 'Nunito Sans', system-ui, sans-serif;

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  
  --container-max: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-primary);
  background-color: var(--color-background-primary);
  color: var(--color-text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-terracotta);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  font-family: var(--font-family-primary);
  border: none;
  background: none;
}


.main-navigation-container,
.homepage-hero-inner-container,
.homepage-stats-bar-container,
.homepage-about-container,
.homepage-how-it-works-container,
.homepage-gallery-container,
.homepage-program-features-container,
.homepage-newsletter-strip-container,
.homepage-timeline-container,
.homepage-packages-preview-container,
.footer-large-cta-container,
.footer-main-content-container,
.footer-legal-bar-container,
.inner-page-hero-container,
.values-core-container,
.values-approach-container,
.packages-full-container,
.packages-faq-container,
.weekly-routine-overview-container,
.weekly-routine-phases-container,
.weekly-routine-ingredients-container,
.weekly-routine-support-container,
.contact-main-container,
.contact-map-container,
.thanks-page-container,
.legal-page-header-container,
.legal-page-two-column-layout {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}


.homepage-section-eyebrow-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-terracotta);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: rgba(194,96,62,0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(194,96,62,0.2);
}

.homepage-section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.homepage-section-main-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.homepage-section-description-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.main-site-header {
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-accent-cream-border);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.main-navigation-container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.main-navigation-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.main-navigation-logo-image {
  height: 44px;
  width: auto;
}

.main-navigation-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-left: auto;
}

.main-navigation-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-base);
}

.main-navigation-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-terracotta);
  border-radius: var(--radius-pill);
  transition: width var(--transition-base);
}

.main-navigation-link:hover,
.main-navigation-link--active {
  color: var(--color-accent-terracotta);
}

.main-navigation-link:hover::after,
.main-navigation-link--active::after {
  width: 100%;
}

.main-navigation-cta-button {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-terracotta);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-shadow: 0 4px 14px rgba(194,96,62,0.35);
  white-space: nowrap;
}

.main-navigation-cta-button:hover {
  background: var(--color-accent-terracotta-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,96,62,0.45);
}

.main-navigation-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.mobile-menu-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-background-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.mobile-menu-curtain.mobile-menu-curtain--open {
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.mobile-menu-navigation-link {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-text-on-dark);
  text-decoration: none;
  opacity: 0;
  transform: translateY(-30px);
  transition: color var(--transition-base), opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-curtain--open .mobile-menu-navigation-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-curtain--open .mobile-menu-navigation-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-curtain--open .mobile-menu-navigation-link:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu-curtain--open .mobile-menu-navigation-link:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu-curtain--open .mobile-menu-navigation-link:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu-curtain--open .mobile-menu-navigation-link:nth-child(5) { transition-delay: 0.42s; }

.mobile-menu-navigation-link:hover {
  color: var(--color-accent-terracotta-light);
}

.mobile-menu-close-button {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-on-dark-muted);
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-base), border-color var(--transition-base);
  min-height: 44px;
}

.mobile-menu-close-button:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}


.homepage-hero-section {
  background: var(--color-background-primary);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  position: relative;
}

.homepage-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.homepage-hero-inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.homepage-hero-eyebrow-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-terracotta);
  margin-bottom: var(--space-lg);
  padding: var(--space-xs) var(--space-md);
  background: rgba(194,96,62,0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(194,96,62,0.2);
}

.homepage-hero-main-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.homepage-hero-description-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.homepage-hero-action-group {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.homepage-hero-primary-button {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-terracotta);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  box-shadow: 0 6px 20px rgba(194,96,62,0.40);
  min-height: 48px;
}

.homepage-hero-primary-button:hover {
  background: var(--color-accent-terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(194,96,62,0.50);
}

.homepage-hero-secondary-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-base), gap var(--transition-base);
}

.homepage-hero-secondary-link:hover {
  color: var(--color-accent-terracotta);
  gap: var(--space-md);
}


.homepage-hero-cards-column {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-hero-feature-card {
  position: absolute;
  width: 280px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-accent-cream-border-light);
}

.homepage-hero-feature-card--back {
  transform: rotate(-6deg) translateX(-30px) translateY(20px);
  background: var(--color-background-tertiary);
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.homepage-hero-feature-card--mid {
  transform: rotate(2deg) translateX(20px) translateY(-10px);
  z-index: 2;
  background: #fff;
}

.homepage-hero-feature-card--front {
  transform: rotate(-2deg) translateX(-10px) translateY(-40px);
  z-index: 3;
  background: var(--color-background-dark);
}

.homepage-hero-feature-card--front .homepage-hero-feature-card-heading,
.homepage-hero-feature-card--front .homepage-hero-feature-card-text {
  color: var(--color-text-on-dark);
}

.homepage-hero-feature-card--front .homepage-hero-feature-card-text {
  color: var(--color-text-on-dark-muted);
}

.homepage-hero-feature-card-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(194,96,62,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-accent-terracotta);
  font-size: 1.1rem;
}

.homepage-hero-feature-card--front .homepage-hero-feature-card-icon-wrap {
  background: rgba(194,96,62,0.25);
}

.homepage-hero-feature-card-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.homepage-hero-feature-card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}


.homepage-stats-bar-section {
  background: var(--color-background-dark);
  padding: var(--space-xl) 0;
}

.homepage-stats-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.homepage-stats-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-on-dark);
}

.homepage-stats-bar-icon {
  font-size: 1.2rem;
  color: var(--color-accent-amber);
}

.homepage-stats-bar-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-on-dark-muted);
  white-space: nowrap;
}

.homepage-stats-bar-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}


.homepage-about-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-background-secondary);
}

.homepage-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.homepage-about-image-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.homepage-about-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.homepage-about-image-frame:hover .homepage-about-main-image {
  transform: scale(1.03);
}

.homepage-about-image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  background: rgba(44,33,24,0.85);
  backdrop-filter: blur(8px);
  color: var(--color-text-on-dark);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.homepage-about-image-badge i {
  color: var(--color-accent-warm-green);
}

.homepage-about-section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.homepage-about-body-text {
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.homepage-about-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.homepage-about-feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.homepage-about-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--color-accent-terracotta);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.homepage-about-feature-item strong {
  display: block;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.homepage-about-feature-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.homepage-about-learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-accent-terracotta);
  transition: gap var(--transition-base), color var(--transition-base);
}

.homepage-about-learn-more-link:hover {
  gap: var(--space-md);
  color: var(--color-accent-terracotta-dark);
}


.homepage-how-it-works-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-background-primary);
}

.homepage-how-it-works-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

.homepage-process-step-card {
  background: var(--color-background-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-accent-cream-border);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.homepage-process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.homepage-process-step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(194,96,62,0.12);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.04em;
}

.homepage-process-step-icon {
  font-size: 1.4rem;
  color: var(--color-accent-terracotta);
  margin-bottom: var(--space-md);
}

.homepage-process-step-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.homepage-process-step-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.homepage-gallery-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-background-tertiary);
}

.homepage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.homepage-gallery-item {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.homepage-gallery-item--large {
  grid-row: span 2;
}

.homepage-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}

.homepage-gallery-item--large img {
  min-height: 420px;
}

.homepage-gallery-item:hover img {
  transform: scale(1.05);
}

.homepage-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,33,24,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: background var(--transition-base), opacity var(--transition-base);
  opacity: 0;
}

.homepage-gallery-item:hover .homepage-gallery-item-overlay {
  background: rgba(44,33,24,0.35);
  opacity: 1;
}


.homepage-program-features-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-background-primary);
}

.homepage-program-features-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.homepage-program-features-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.homepage-program-features-intro-text {
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}

.homepage-program-features-cta-button {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-terracotta);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  box-shadow: 0 4px 16px rgba(194,96,62,0.35);
  min-height: 48px;
}

.homepage-program-features-cta-button:hover {
  background: var(--color-accent-terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,96,62,0.45);
}

.homepage-program-feature-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-accent-cream-border-light);
  position: relative;
}

.homepage-program-feature-item:last-child {
  border-bottom: none;
}

.homepage-program-feature-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(194,96,62,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-accent-terracotta);
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.homepage-program-feature-item:hover .homepage-program-feature-item-icon {
  background: rgba(194,96,62,0.18);
}

.homepage-program-feature-item-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.homepage-program-feature-item-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.homepage-tooltip-indicator {
  font-size: 0.75rem;
  color: var(--color-accent-amber);
  cursor: help;
  position: relative;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-background-dark);
  color: var(--color-text-on-dark);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  white-space: normal;
  width: 240px;
  text-align: left;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  transform: translateX(-50%) translateY(6px);
  z-index: 50;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.homepage-newsletter-strip-section {
  background: var(--color-accent-terracotta);
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.homepage-newsletter-strip-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.homepage-newsletter-strip-heading {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.homepage-newsletter-strip-subtext {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.homepage-newsletter-strip-form {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.homepage-newsletter-strip-email-input {
  font-family: var(--font-family-primary);
  font-size: 0.95rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: #fff;
  outline: none;
  min-width: 260px;
  transition: border-color var(--transition-base), background var(--transition-base);
  min-height: 48px;
}

.homepage-newsletter-strip-email-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.homepage-newsletter-strip-email-input:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.2);
}

.homepage-newsletter-strip-submit-button {
  font-family: var(--font-family-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent-terracotta);
  background: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-fast);
  min-height: 48px;
}

.homepage-newsletter-strip-submit-button:hover {
  background: var(--color-background-tertiary);
  transform: translateY(-1px);
}


.homepage-timeline-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-background-secondary);
}

.homepage-timeline-track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.homepage-timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent-cream-border);
  transform: translateX(-50%);
}

.homepage-timeline-item {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  position: relative;
  align-items: flex-start;
}

.homepage-timeline-item--left {
  flex-direction: row-reverse;
  padding-left: calc(50% + 2rem);
}

.homepage-timeline-item--right {
  padding-right: calc(50% + 2rem);
}

.homepage-timeline-item-marker {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-accent-terracotta);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(194,96,62,0.15);
  flex-shrink: 0;
}

.homepage-timeline-item-content {
  background: var(--color-background-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--color-accent-cream-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.homepage-timeline-item-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.homepage-timeline-item-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent-terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-xs);
}

.homepage-timeline-item-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.homepage-timeline-item-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.homepage-packages-preview-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-background-primary);
}

.homepage-packages-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.homepage-package-preview-card {
  background: var(--color-background-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-accent-cream-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.homepage-package-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.homepage-package-preview-card--featured {
  background: var(--color-background-dark);
  border-color: transparent;
  transform: scale(1.02);
}

.homepage-package-preview-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.homepage-package-preview-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-terracotta);
  background: rgba(194,96,62,0.15);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.homepage-package-preview-card-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.homepage-package-preview-card--featured .homepage-package-preview-card-name {
  color: var(--color-text-on-dark);
}

.homepage-package-preview-card-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.homepage-package-preview-card--featured .homepage-package-preview-card-tagline {
  color: var(--color-text-on-dark-muted);
}

.homepage-package-preview-card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.homepage-package-preview-card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.homepage-package-preview-card--featured .homepage-package-preview-card-features li {
  color: var(--color-text-on-dark-muted);
}

.homepage-package-preview-card-features li i {
  color: var(--color-accent-warm-green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.homepage-package-preview-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-terracotta);
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--color-accent-terracotta);
  border-radius: var(--radius-pill);
  transition: background var(--transition-base), color var(--transition-base);
  min-height: 44px;
}

.homepage-package-preview-card-link:hover {
  background: var(--color-accent-terracotta);
  color: #fff;
}

.homepage-package-preview-card-link--featured {
  background: var(--color-accent-terracotta);
  color: #fff;
  border-color: var(--color-accent-terracotta);
}

.homepage-package-preview-card-link--featured:hover {
  background: var(--color-accent-terracotta-light);
  border-color: var(--color-accent-terracotta-light);
  color: #fff;
}


.main-site-footer {
  background: var(--color-background-dark);
  color: var(--color-text-on-dark);
}

.footer-large-cta-section {
  background: var(--color-accent-terracotta);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}

.footer-large-cta-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-large-cta-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.footer-large-cta-button {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent-terracotta);
  background: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  min-height: 52px;
}

.footer-large-cta-button:hover {
  background: var(--color-background-tertiary);
  color: var(--color-accent-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.footer-main-content-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-main-content-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand-logo-image {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand-description-text {
  font-size: 0.9rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-brand-contact-address p {
  font-size: 0.875rem;
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-brand-contact-address i {
  color: var(--color-accent-terracotta-light);
  width: 16px;
}

.footer-brand-contact-address a {
  color: var(--color-text-on-dark-muted);
  transition: color var(--transition-base);
}

.footer-brand-contact-address a:hover {
  color: var(--color-text-on-dark);
}

.footer-links-column-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-lg);
}

.footer-links-column-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links-column-list a {
  font-size: 0.9rem;
  color: var(--color-text-on-dark-muted);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-links-column-list a:hover {
  color: var(--color-text-on-dark);
  padding-left: var(--space-sm);
}

.footer-legal-bar-section {
  padding: var(--space-lg) 0;
}

.footer-legal-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal-bar-copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-base);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}


.back-to-top-button {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  background: var(--color-accent-terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-spring), background var(--transition-base);
  z-index: 90;
  pointer-events: none;
}

.back-to-top-button.back-to-top-button--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top-button:hover {
  background: var(--color-accent-terracotta-dark);
  transform: translateY(-3px);
}


.inner-page-hero-section {
  background: var(--color-background-secondary);
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--color-accent-cream-border);
}

.inner-page-hero-container {
  max-width: 700px;
}

.inner-page-hero-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.inner-page-hero-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}


.values-core-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-primary);
}

.values-core-intro-image-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.values-core-intro-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.values-principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.values-principle-card {
  background: var(--color-background-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--color-accent-cream-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.values-principle-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.values-principle-card-icon {
  font-size: 1.6rem;
  color: var(--color-accent-terracotta);
  margin-bottom: var(--space-lg);
}

.values-principle-card-heading {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.values-principle-card-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.values-principle-card-text:last-child {
  margin-bottom: 0;
}

.values-approach-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-secondary);
}

.values-approach-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.values-approach-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.values-approach-body-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.values-approach-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}


.packages-full-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-primary);
}

.packages-full-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.packages-full-card {
  background: var(--color-background-secondary);
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-accent-cream-border);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
  transition: box-shadow var(--transition-base);
}

.packages-full-card:hover {
  box-shadow: var(--shadow-lg);
}

.packages-full-card--featured {
  background: var(--color-background-dark);
  border-color: rgba(194,96,62,0.3);
  box-shadow: var(--shadow-xl);
}

.packages-full-card-featured-badge {
  position: absolute;
  top: -14px;
  left: clamp(1.5rem, 4vw, 3rem);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-accent-terracotta);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-pill);
}

.packages-full-card-tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-terracotta);
  margin-bottom: var(--space-sm);
}

.packages-full-card-name {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.packages-full-card--featured .packages-full-card-name {
  color: var(--color-text-on-dark);
}

.packages-full-card-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.packages-full-card--featured .packages-full-card-description {
  color: var(--color-text-on-dark-muted);
}

.packages-full-card-cta-button {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-terracotta);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-spring);
  box-shadow: 0 4px 16px rgba(194,96,62,0.35);
  min-height: 48px;
}

.packages-full-card-cta-button:hover {
  background: var(--color-accent-terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
}

.packages-full-card-cta-button--featured {
  background: var(--color-accent-amber);
  box-shadow: 0 4px 16px rgba(212,146,42,0.35);
}

.packages-full-card-cta-button--featured:hover {
  background: #b87d20;
}

.packages-full-card-includes-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.packages-full-card--featured .packages-full-card-includes-heading {
  color: var(--color-text-on-dark-muted);
}

.packages-full-card-includes-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.packages-full-card-includes-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.packages-full-card-includes-list li i {
  color: var(--color-accent-warm-green);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.packages-full-card-includes-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.packages-full-card--featured .packages-full-card-includes-list strong {
  color: var(--color-text-on-dark);
}

.packages-full-card-includes-list span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.packages-full-card--featured .packages-full-card-includes-list span {
  color: var(--color-text-on-dark-muted);
}

.packages-faq-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-secondary);
}

.packages-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.packages-faq-item {
  background: var(--color-background-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-accent-cream-border);
}

.packages-faq-item-question {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--color-text-primary);
}

.packages-faq-item-question i {
  color: var(--color-accent-terracotta);
  margin-top: 2px;
  flex-shrink: 0;
}

.packages-faq-item-answer {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.weekly-routine-overview-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-primary);
}

.weekly-routine-overview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.weekly-routine-overview-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  cursor: zoom-in;
}

.weekly-routine-overview-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.weekly-routine-overview-body-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.weekly-routine-phases-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-secondary);
}

.weekly-routine-phases-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.weekly-routine-phase-item {
  border-radius: var(--radius-lg);
  background: var(--color-background-primary);
  border: 1px solid var(--color-accent-cream-border);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.weekly-routine-phase-item:hover {
  box-shadow: var(--shadow-md);
}

.weekly-routine-phase-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-base);
  min-height: 70px;
}

.weekly-routine-phase-toggle:hover {
  background: var(--color-background-secondary);
}

.weekly-routine-phase-toggle-number {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-terracotta);
  white-space: nowrap;
  min-width: 60px;
}

.weekly-routine-phase-toggle-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  flex: 1;
}

.weekly-routine-phase-toggle-icon {
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.weekly-routine-phase-item--open .weekly-routine-phase-toggle-icon {
  transform: rotate(180deg);
}

.weekly-routine-phase-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.weekly-routine-phase-item--open .weekly-routine-phase-content {
  max-height: 600px;
}

.weekly-routine-phase-content-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  border-top: 1px solid var(--color-accent-cream-border-light);
}

.weekly-routine-phase-content-inner p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.weekly-routine-phase-content-tips {
  background: var(--color-background-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-md);
}

.weekly-routine-phase-content-tips h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.weekly-routine-phase-content-tips ul {
  list-style: disc;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.weekly-routine-phase-content-tips li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.weekly-routine-ingredients-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-primary);
}

.weekly-routine-ingredients-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.weekly-routine-ingredients-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.weekly-routine-ingredients-body-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.weekly-routine-ingredients-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.weekly-routine-ingredient-category-card {
  background: var(--color-background-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-accent-cream-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: default;
}

.weekly-routine-ingredient-category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.weekly-routine-ingredient-category-icon {
  font-size: 1.3rem;
  color: var(--color-accent-terracotta);
  margin-bottom: var(--space-sm);
}

.weekly-routine-ingredient-category-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.weekly-routine-ingredient-category-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.weekly-routine-ingredients-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: var(--space-xl);
}

.weekly-routine-support-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-secondary);
}

.weekly-routine-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.weekly-routine-support-card {
  background: var(--color-background-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-accent-cream-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.weekly-routine-support-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.weekly-routine-support-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.weekly-routine-support-card-content {
  padding: var(--space-xl);
}

.weekly-routine-support-card-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.weekly-routine-support-card-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.contact-main-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--color-background-primary);
}

.contact-main-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-wizard-form-wrapper {
  background: var(--color-background-secondary);
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--color-accent-cream-border);
  box-shadow: var(--shadow-md);
}

.contact-wizard-step-indicator-bar {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.contact-wizard-step-indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.contact-wizard-step-indicator-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-cream-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), color var(--transition-base);
}

.contact-wizard-step-indicator-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.contact-wizard-step-indicator-item--active .contact-wizard-step-indicator-dot {
  background: var(--color-accent-terracotta);
  color: #fff;
}

.contact-wizard-step-indicator-item--active span {
  color: var(--color-accent-terracotta);
}

.contact-wizard-step-indicator-item--completed .contact-wizard-step-indicator-dot {
  background: var(--color-accent-warm-green);
  color: #fff;
}

.contact-wizard-step-indicator-connector {
  flex: 1;
  height: 2px;
  background: var(--color-accent-cream-border);
  margin: 0 var(--space-sm);
  margin-bottom: var(--space-lg);
  transition: background var(--transition-base);
}

.contact-wizard-step-indicator-connector--completed {
  background: var(--color-accent-warm-green);
}

.contact-wizard-step-panel {
  display: none;
}

.contact-wizard-step-panel--active {
  display: block;
  animation: contactStepFadeIn 0.3s ease;
}

@keyframes contactStepFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.contact-wizard-step-panel-heading {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
}

.contact-form-field-group {
  margin-bottom: var(--space-lg);
}

.contact-form-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.contact-form-field-input,
.contact-form-field-select,
.contact-form-field-textarea {
  width: 100%;
  font-family: var(--font-family-primary);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: var(--color-background-primary);
  border: 1.5px solid var(--color-accent-cream-border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 48px;
}

.contact-form-field-input:focus,
.contact-form-field-select:focus,
.contact-form-field-textarea:focus {
  border-color: var(--color-accent-terracotta);
  box-shadow: 0 0 0 3px rgba(194,96,62,0.12);
}

.contact-form-field-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form-field-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form-field-group--checkbox {
  display: flex;
  align-items: flex-start;
}

.contact-form-privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.contact-form-privacy-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--color-accent-terracotta);
  cursor: pointer;
}

.contact-form-privacy-checkbox-label a {
  color: var(--color-accent-terracotta);
}

.contact-wizard-navigation-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-wizard-back-button {
  font-family: var(--font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: 1.5px solid var(--color-accent-cream-border);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  min-height: 44px;
}

.contact-wizard-back-button:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-muted);
  background: var(--color-background-primary);
}

.contact-wizard-next-button,
.contact-wizard-submit-button {
  font-family: var(--font-family-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-terracotta);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: background var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  box-shadow: 0 4px 14px rgba(194,96,62,0.35);
  min-height: 48px;
}

.contact-wizard-next-button:hover,
.contact-wizard-submit-button:hover {
  background: var(--color-accent-terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,96,62,0.45);
}


.contact-info-details-card {
  background: var(--color-background-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-accent-cream-border);
  margin-bottom: var(--space-xl);
}

.contact-info-details-heading {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--space-xl);
}

.contact-info-detail-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.contact-info-detail-item:last-child {
  margin-bottom: 0;
}

.contact-info-detail-item > i {
  font-size: 1rem;
  color: var(--color-accent-terracotta);
  width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.contact-info-detail-item p,
.contact-info-detail-item a {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.contact-info-detail-item a:hover {
  color: var(--color-accent-terracotta);
}


.contact-news-events-section {
  background: var(--color-background-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-accent-cream-border);
}

.contact-news-events-heading {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--space-xl);
}

.contact-news-event-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-accent-cream-border-light);
}

.contact-news-event-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-news-event-date-badge {
  background: var(--color-accent-terracotta);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  flex-shrink: 0;
  min-width: 52px;
}

.contact-news-event-month {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.contact-news-event-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-news-event-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.contact-news-event-description {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.contact-map-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--color-background-secondary);
}

.contact-map-section-heading {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--space-xl);
}

.contact-map-iframe-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-accent-cream-border);
}


.thanks-page-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.thanks-page-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.thanks-page-container {
  max-width: 640px;
  text-align: center;
}

.thanks-page-main-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.thanks-page-description-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.thanks-page-homepage-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-terracotta);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  box-shadow: 0 4px 16px rgba(194,96,62,0.35);
  margin-bottom: var(--space-3xl);
  min-height: 48px;
}

.thanks-page-homepage-button:hover {
  background: var(--color-accent-terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,96,62,0.45);
}

.thanks-page-journey-timeline {
  text-align: left;
  background: var(--color-background-secondary);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  border: 1px solid var(--color-accent-cream-border);
}

.thanks-page-journey-heading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: 0.8rem;
}

.thanks-page-timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.thanks-page-timeline-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding-bottom: var(--space-xl);
  position: relative;
}

.thanks-page-timeline-item:last-child {
  padding-bottom: 0;
}

.thanks-page-timeline-connector {
  width: 2px;
  height: var(--space-xl);
  background: var(--color-accent-cream-border);
  margin-left: 22px;
}

.thanks-page-timeline-item-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 2px solid var(--color-accent-cream-border);
  background: var(--color-background-primary);
  color: var(--color-text-muted);
}

.thanks-page-timeline-item--completed .thanks-page-timeline-item-marker {
  background: var(--color-accent-warm-green);
  border-color: var(--color-accent-warm-green);
  color: #fff;
}

.thanks-page-timeline-item--current .thanks-page-timeline-item-marker {
  background: var(--color-accent-terracotta);
  border-color: var(--color-accent-terracotta);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(194,96,62,0.15);
}

.thanks-page-timeline-item--upcoming .thanks-page-timeline-item-marker {
  opacity: 0.5;
}

.thanks-page-timeline-item-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.thanks-page-timeline-item--upcoming .thanks-page-timeline-item-heading {
  color: var(--color-text-muted);
}

.thanks-page-timeline-item-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.thanks-page-timeline-item--upcoming .thanks-page-timeline-item-text {
  opacity: 0.7;
}


.legal-page-header-section {
  background: var(--color-background-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--color-accent-cream-border);
}

.legal-page-main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.legal-page-last-updated {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.legal-page-intro-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 720px;
}

.legal-page-intro-text a {
  color: var(--color-accent-terracotta);
}

.legal-page-two-column-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.legal-page-sidebar-navigation {
  position: sticky;
  top: var(--space-xl);
}

.legal-sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  background: var(--color-background-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-accent-cream-border);
}

.legal-sidebar-nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base), padding-left var(--transition-base);
  line-height: 1.5;
}

.legal-sidebar-nav-link:hover {
  color: var(--color-accent-terracotta);
  background: rgba(194,96,62,0.06);
  padding-left: var(--space-md);
}

.legal-page-content-column {
  min-width: 0;
}

.legal-content-section {
  margin-bottom: var(--space-3xl);
  scroll-margin-top: var(--space-xl);
}

.legal-content-section-heading {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent-cream-border);
  color: var(--color-text-primary);
}

.legal-content-subsection-heading {
  font-size: 1rem;
  font-weight: 700;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text-secondary);
}

.legal-content-section p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content-section p:last-child {
  margin-bottom: 0;
}

.legal-content-list {
  list-style: disc;
  padding-left: var(--space-xl);
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal-content-list li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-content-list li strong {
  color: var(--color-text-secondary);
  font-weight: 700;
}

.legal-content-contact-address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  background: var(--color-background-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-accent-cream-border);
  margin-top: var(--space-md);
}

.legal-content-contact-address a {
  color: var(--color-accent-terracotta);
}


.legal-cookie-block {
  background: var(--color-background-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-accent-cream-border);
}

.legal-cookie-block--essential {
  border-color: rgba(90,122,74,0.3);
  background: rgba(90,122,74,0.04);
}

.legal-cookie-block-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.legal-cookie-block-header .legal-content-section-heading {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-cookie-block-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: rgba(194,96,62,0.12);
  color: var(--color-accent-terracotta);
}

.legal-cookie-block-badge--always-on {
  background: rgba(90,122,74,0.15);
  color: var(--color-accent-warm-green);
}

.legal-cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-lg);
  font-size: 0.875rem;
}

.legal-cookie-table th {
  text-align: left;
  font-weight: 700;
  color: var(--color-text-secondary);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-background-primary);
  border-bottom: 2px solid var(--color-accent-cream-border);
}

.legal-cookie-table td {
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-accent-cream-border-light);
  vertical-align: top;
  line-height: 1.6;
}

.legal-cookie-table tr:last-child td {
  border-bottom: none;
}


.cookie-consent-bar-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.cookie-consent-bar-inner {
  background: var(--color-background-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-bar-inner--visible {
  transform: translateY(0);
}

.cookie-consent-bar-text-block {
  flex: 1;
  min-width: 200px;
}

.cookie-consent-bar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-xs);
}

.cookie-consent-bar-description {
  font-size: 0.8rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.5;
}

.cookie-consent-bar-description a {
  color: var(--color-accent-terracotta-light);
}

.cookie-consent-bar-buttons-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-consent-button {
  font-family: var(--font-family-primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  min-height: 40px;
  white-space: nowrap;
}

.cookie-consent-button--accept {
  background: var(--color-accent-terracotta);
  color: #fff;
  box-shadow: 0 2px 10px rgba(194,96,62,0.4);
}

.cookie-consent-button--accept:hover {
  background: var(--color-accent-terracotta-dark);
  transform: translateY(-1px);
}

.cookie-consent-button--reject {
  background: rgba(255,255,255,0.1);
  color: var(--color-text-on-dark-muted);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-consent-button--reject:hover {
  background: rgba(255,255,255,0.18);
  color: var(--color-text-on-dark);
}

.cookie-consent-button--customize {
  background: none;
  color: var(--color-text-on-dark-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0.55rem 0.5rem;
  font-size: 0.8rem;
}

.cookie-consent-button--customize:hover {
  color: var(--color-text-on-dark);
}

.cookie-consent-bar-customize-panel {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) var(--space-xl);
  display: none;
}

.cookie-consent-bar-customize-panel--open {
  display: block;
  animation: cookieExpandIn 0.3s ease;
}

@keyframes cookieExpandIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-consent-customize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cookie-consent-category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.cookie-consent-category-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-on-dark-muted);
}

.cookie-consent-category-sublabel {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-top: 2px;
}

.cookie-consent-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-consent-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-consent-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-consent-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.cookie-consent-toggle-switch input:checked + .cookie-consent-toggle-slider {
  background: var(--color-accent-terracotta);
}

.cookie-consent-toggle-switch input:checked + .cookie-consent-toggle-slider::before {
  transform: translateX(18px);
}

.cookie-consent-toggle-switch input:disabled + .cookie-consent-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-consent-bar-save-button {
  font-family: var(--font-family-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-accent-warm-green);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-fast);
  min-height: 40px;
}

.cookie-consent-bar-save-button:hover {
  background: var(--color-accent-warm-green-light);
  transform: translateY(-1px);
}


.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate--delay-1 { transition-delay: 0.1s; }
.scroll-animate--delay-2 { transition-delay: 0.2s; }
.scroll-animate--delay-3 { transition-delay: 0.3s; }
.scroll-animate--delay-4 { transition-delay: 0.4s; }


@media (max-width: 1024px) {
  .homepage-hero-inner-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .homepage-hero-cards-column {
    height: 320px;
    order: -1;
  }

  .homepage-hero-feature-card {
    width: 240px;
  }

  .homepage-about-container {
    grid-template-columns: 1fr;
  }

  .homepage-about-main-image {
    height: 320px;
  }

  .homepage-program-features-container {
    grid-template-columns: 1fr;
  }

  .homepage-packages-preview-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .homepage-package-preview-card--featured {
    transform: none;
  }

  .homepage-package-preview-card--featured:hover {
    transform: translateY(-4px);
  }

  .footer-main-content-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .values-approach-container {
    grid-template-columns: 1fr;
  }

  .values-approach-image {
    height: 300px;
    order: -1;
  }

  .packages-full-card {
    grid-template-columns: 1fr;
  }

  .weekly-routine-overview-container {
    grid-template-columns: 1fr;
  }

  .weekly-routine-ingredients-container {
    grid-template-columns: 1fr;
  }

  .weekly-routine-ingredients-image {
    height: 300px;
    position: static;
  }

  .weekly-routine-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-container {
    grid-template-columns: 1fr;
  }

  .legal-page-two-column-layout {
    grid-template-columns: 1fr;
  }

  .legal-page-sidebar-navigation {
    position: static;
  }

  .legal-sidebar-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .legal-sidebar-nav-link {
    font-size: 0.78rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .homepage-timeline-track::before {
    left: 14px;
  }

  .homepage-timeline-item--left,
  .homepage-timeline-item--right {
    flex-direction: row;
    padding-left: 3rem;
    padding-right: 0;
  }

  .homepage-timeline-item-marker {
    left: 14px;
  }
}


@media (max-width: 768px) {
  .main-navigation-links,
  .main-navigation-cta-button {
    display: none;
  }

  .main-navigation-hamburger-button {
    display: flex;
  }

  .homepage-hero-cards-column {
    height: 260px;
  }

  .homepage-hero-feature-card {
    width: 200px;
    padding: var(--space-lg);
  }

  .homepage-hero-feature-card--back {
    transform: rotate(-5deg) translateX(-20px) translateY(15px);
  }

  .homepage-hero-feature-card--mid {
    transform: rotate(2deg) translateX(15px) translateY(-8px);
  }

  .homepage-hero-feature-card--front {
    transform: rotate(-2deg) translateX(-8px) translateY(-28px);
  }

  .homepage-stats-bar-container {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
  }

  .homepage-stats-bar-divider {
    display: none;
  }

  .homepage-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .homepage-gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .homepage-gallery-item--large img {
    min-height: 260px;
  }

  .homepage-newsletter-strip-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .homepage-newsletter-strip-form {
    width: 100%;
  }

  .homepage-newsletter-strip-email-input {
    min-width: 0;
    width: 100%;
    flex: 1;
  }

  .footer-main-content-container {
    grid-template-columns: 1fr;
  }

  .homepage-how-it-works-steps-grid {
    grid-template-columns: 1fr;
  }

  .values-principles-grid {
    grid-template-columns: 1fr;
  }

  .packages-faq-grid {
    grid-template-columns: 1fr;
  }

  .weekly-routine-ingredients-categories {
    grid-template-columns: 1fr;
  }

  .homepage-hero-action-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-wizard-navigation-buttons {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .contact-wizard-back-button,
  .contact-wizard-next-button,
  .contact-wizard-submit-button {
    justify-content: center;
    width: 100%;
  }

  .cookie-consent-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .cookie-consent-bar-buttons-group {
    width: 100%;
    justify-content: flex-start;
  }

  .homepage-packages-preview-grid {
    max-width: 100%;
  }

  .footer-legal-bar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-cookie-table {
    font-size: 0.8rem;
  }

  .legal-cookie-table th,
  .legal-cookie-table td {
    padding: var(--space-xs) var(--space-sm);
  }

  .contact-news-event-item {
    flex-direction: column;
  }

  .contact-news-event-date-badge {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    min-width: auto;
  }

  .contact-news-event-month,
  .contact-news-event-day {
    display: inline;
    font-size: 0.9rem;
  }

  .back-to-top-button {
    bottom: var(--space-lg);
    right: var(--space-md);
    width: 44px;
    height: 44px;
  }
}


@media (max-width: 480px) {
  .homepage-hero-cards-column {
    display: none;
  }

  .homepage-hero-section {
    padding: var(--space-2xl) 0;
  }

  .homepage-gallery-grid {
    grid-template-columns: 1fr;
  }

  .homepage-timeline-track::before {
    display: none;
  }

  .homepage-timeline-item--left,
  .homepage-timeline-item--right {
    padding-left: 0;
  }

  .homepage-timeline-item-marker {
    position: static;
    transform: none;
    flex-shrink: 0;
  }

  .homepage-timeline-item {
    flex-direction: row;
  }

  .contact-wizard-step-indicator-bar {
    gap: var(--space-sm);
  }

  .contact-wizard-step-indicator-item span {
    display: none;
  }

  .packages-full-card-cta-button,
  .packages-full-card-cta-button--featured {
    width: 100%;
    justify-content: center;
  }
}


@media print {
  .main-site-header,
  .mobile-menu-curtain,
  .back-to-top-button,
  .cookie-consent-bar-wrapper,
  .homepage-newsletter-strip-section {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}