/* ============================================================
   Green Dell — Neo-Modernist Design System
   Golden Ratio: φ = 1.618
   Base unit: 1rem = 16px
   Scale: 0.618rem · 1rem · 1.618rem · 2.618rem · 4.236rem · 6.854rem
   ============================================================ */

/* --- FONTS --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/playfair-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-700.ttf') format('truetype');
}

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Golden Ratio spacing scale */
  --phi: 1.618;
  --space-xs: 0.382rem;   /* 1 - φ⁻¹ */
  --space-sm: 0.618rem;   /* φ⁻¹ */
  --space-md: 1rem;
  --space-lg: 1.618rem;
  --space-xl: 2.618rem;
  --space-2xl: 4.236rem;
  --space-3xl: 6.854rem;

  /* Typography scale (golden ratio) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.618rem;
  --text-2xl: 2.058rem;
  --text-3xl: 2.618rem;
  --text-4xl: 4.236rem;
  --text-5xl: 5.25rem;

  /* Palette — earthy greens + warm neutrals */
  --clr-forest: #1a3c2a;
  --clr-moss: #2d5a3f;
  --clr-sage: #7a9e7e;
  --clr-mint: #b8d4bb;
  --clr-cream: #f5f0e8;
  --clr-warm: #faf7f2;
  --clr-white: #ffffff;
  --clr-charcoal: #2c2c2c;
  --clr-text: #3a3a3a;
  --clr-text-light: #6b6b6b;
  --clr-accent: #c4956a;
  --clr-accent-light: #e8d5c0;
  --clr-border: #e0dbd3;
  --clr-overlay: rgba(26, 60, 42, 0.85);

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 880px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.35s;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
}

/* --- RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--phi);
  color: var(--clr-text);
  background: var(--clr-warm);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease);
}
ul, ol { list-style: none; }
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow {
  max-width: var(--max-w-narrow);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--clr-forest);
  line-height: 1.2;
}
h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-sage);
  margin-bottom: var(--space-md);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--clr-text-light);
  max-width: 38em;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-forest);
  color: var(--clr-white);
}
.btn--primary:hover {
  background: var(--clr-moss);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--clr-forest);
  border: 1.5px solid var(--clr-forest);
}
.btn--secondary:hover {
  background: var(--clr-forest);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn--accent:hover {
  background: #b8874f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-xs);
}
.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-base);
}

/* --- HEADER / NAV --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: all var(--duration) var(--ease);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.header__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.header__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--clr-white);
}
.header__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--clr-forest);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text);
  position: relative;
  padding: var(--space-xs) 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-forest);
  transition: width var(--duration) var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__link:hover {
  color: var(--clr-forest);
}

/* Mobile menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-forest);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}
.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
  padding-top: calc(80px + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  width: 100%;
}
.hero__content {
  max-width: 540px;
  text-align: left;
  margin-right: auto;
  padding-right: var(--space-md);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-lg);
  background: var(--clr-mint);
  color: var(--clr-forest);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}
.hero__title {
  margin: 0 0 var(--space-lg);
  line-height: 1.12;
}
.hero__title em {
  font-style: normal;
  color: var(--clr-sage);
}
.hero__desc {
  font-size: var(--text-lg);
  color: var(--clr-text-light);
  margin: 0 0 var(--space-xl);
  line-height: 1.7;
  max-width: 28em;
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
}
.hero__img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__float-card {
  position: absolute;
  bottom: var(--space-xl);
  left: calc(-1 * var(--space-xl));
  background: var(--clr-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 280px;
}
.hero__float-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--clr-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__float-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-forest);
  fill: none;
}
.hero__float-text strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--clr-forest);
}
.hero__float-text span {
  font-size: var(--text-xs);
  color: var(--clr-text-light);
}

/* Golden spiral decorative element */
.hero__spiral {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  opacity: 0.03;
  pointer-events: none;
}

/* --- SECTION BASE --- */
.section {
  padding: var(--space-3xl) 0;
}
.section--cream {
  background: var(--clr-cream);
}
.section--forest {
  background: var(--clr-forest);
  color: var(--clr-white);
}
.section--forest h2,
.section--forest h3,
.section--forest h4 {
  color: var(--clr-white);
}
.section--forest .section-label {
  color: var(--clr-mint);
}
.section--forest .section-subtitle {
  color: var(--clr-mint);
}
.section__header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
  max-width: 100%;
}
.section__header h2 {
  margin: 0 0 var(--space-md);
}
.section__header .section-label {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.section__header .section-subtitle {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --- HOW IT WORKS --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}
.step {
  text-align: center;
  padding: var(--space-xl);
  counter-increment: step;
}
.step__number {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--clr-mint);
  opacity: 0.5;
  margin-bottom: var(--space-md);
}
.step__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--clr-forest);
  fill: none;
}
.step__title {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--clr-forest);
  margin-bottom: var(--space-sm);
}
.step__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: 1.7;
  margin: 0;
}

/* --- MEAL PLANS GRID --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.plan-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--clr-border);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.plan-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.plan-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.plan-card:hover .plan-card__img img {
  transform: scale(1.05);
}
.plan-card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--clr-white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-forest);
}
.plan-card__body {
  padding: var(--space-lg);
}
.plan-card__title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  color: var(--clr-forest);
  margin-bottom: var(--space-sm);
}
.plan-card__price {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-sage);
  margin: 0 0 var(--space-md);
}
.plan-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.plan-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-forest);
}
.plan-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  transition: transform var(--duration) var(--ease);
}
.plan-card__link:hover svg {
  transform: translateX(4px);
}

/* --- PLAN SLIDER --- */
.plan-slider {
  position: relative;
  width: 100%;
}
.plan-slider__viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
}
.plan-slider__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.plan-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 0.382fr 0.618fr;
  align-items: stretch;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-sizing: border-box;
}
.plan-slide__visual {
  min-height: 420px;
  overflow: hidden;
}
.plan-slide__visual .img-placeholder,
.plan-slide__visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}
.plan-slide__content {
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow-y: auto;
}
.plan-slide__tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--clr-cream);
  color: var(--clr-forest);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  align-self: flex-start;
}
.plan-slide__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--clr-forest);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}
.plan-slide__price {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--clr-sage);
  margin: 0 0 var(--space-md);
}
.plan-slide__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.plan-slide__perks {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.plan-slide__perks li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--clr-text);
  line-height: 1.5;
}
.plan-slide__perks li svg {
  flex-shrink: 0;
  color: var(--clr-sage);
  margin-top: 1px;
}

/* Plan slider navigation */
.plan-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.plan-slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-forest);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}
.plan-slider__arrow:hover:not(:disabled) {
  background: var(--clr-forest);
  color: var(--clr-white);
  border-color: var(--clr-forest);
}
.plan-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.plan-slider__arrow:disabled:hover {
  background: var(--clr-white);
  color: var(--clr-forest);
  border-color: var(--clr-border);
}
.plan-slider__dots {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.plan-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--clr-border);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  padding: 0;
  flex-shrink: 0;
}
.plan-slider__dot:hover {
  background: var(--clr-sage);
}
.plan-slider__dot.active {
  background: var(--clr-forest);
  width: 28px;
}
.plan-slider__counter {
  text-align: center;
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--clr-text-light);
}
.plan-slider__current {
  font-weight: 700;
  color: var(--clr-forest);
}

@media (max-width: 1024px) {
  .plan-slide {
    grid-template-columns: 1fr;
  }
  .plan-slide__visual {
    min-height: 300px;
    max-height: 340px;
  }
}
@media (max-width: 768px) {
  .plan-slider__viewport {
    border-radius: var(--radius-lg);
  }
  .plan-slide {
    border-radius: var(--radius-lg);
  }
  .plan-slide__content {
    padding: var(--space-lg);
  }
  .plan-slide__visual {
    min-height: 240px;
    max-height: 280px;
  }
  .plan-slider__nav {
    margin-top: var(--space-lg);
    gap: var(--space-md);
  }
  .plan-slider__arrow {
    width: 44px;
    height: 44px;
  }
  .plan-slider__dot {
    width: 8px;
    height: 8px;
  }
  .plan-slider__dot.active {
    width: 22px;
  }
}

/* --- PHILOSOPHY / GOLDEN SECTION LAYOUT --- */
.phi-grid {
  display: grid;
  grid-template-columns: 1.618fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.phi-grid--reverse {
  grid-template-columns: 1fr 1.618fr;
}
.phi-grid__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1.618/1;
}
.phi-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phi-grid__content {
  padding: var(--space-xl) 0;
  text-align: left;
}
.phi-grid__content .section-label {
  display: block;
  margin-bottom: var(--space-md);
}
.phi-grid__content h2 {
  margin: 0 0 var(--space-lg);
}
.phi-grid__content p {
  color: var(--clr-text-light);
  line-height: 1.8;
  margin: 0 0 var(--space-lg);
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.feature-list__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-sage);
  fill: none;
}
.feature-list__text {
  font-size: var(--text-sm);
  line-height: 1.6;
}
.feature-list__text strong {
  color: var(--clr-forest);
}

/* --- BENEFITS MOSAIC --- */
.benefits-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.benefit-tile {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--clr-border);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.benefit-tile:hover::before {
  transform: scaleX(1);
}
.benefit-tile:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-tile__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-tile__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-forest);
  fill: none;
}
.benefit-tile__title {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-forest);
  margin: 0 0 var(--space-sm);
}
.benefit-tile__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: 1.7;
  margin: 0;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-slider {
  position: relative;
  width: 100%;
}
.testimonials-slider__viewport {
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
}
.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-xl);
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - var(--space-xl)) / 2);
  min-width: 0;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--clr-border);
  box-sizing: border-box;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}
.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-accent);
}
.testimonial-card__text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--clr-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--clr-cream);
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--clr-forest);
}
.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--clr-text-light);
}

/* Testimonials slider nav */
.testimonials-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.testimonials-slider__nav .btn {
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  .testimonials-slider__nav {
    margin-top: var(--space-lg);
  }
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--clr-forest);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}
.cta-banner p {
  color: var(--clr-mint);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(122,158,126,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,212,187,0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* --- FOOTER --- */
.footer {
  background: var(--clr-charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.618fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 28em;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-white);
}
.footer__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--clr-white);
}
.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__links a {
  font-size: var(--text-sm);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover {
  color: var(--clr-white);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}
.footer__legal {
  display: flex;
  gap: var(--space-lg);
}
.footer__legal a:hover {
  color: var(--clr-white);
}
.footer__disclaimer {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: var(--text-sm);
}
.footer__disclaimer p {
  margin: 0;
  max-width: 56em;
}
.footer__disclaimer a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.footer__disclaimer a:hover {
  color: var(--clr-white);
}
.footer__research {
  margin-bottom: var(--space-xl);
}
.footer__research .footer__heading {
  margin-bottom: var(--space-md);
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding-top: calc(80px + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background: var(--clr-cream);
  text-align: center;
}
.page-hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}
.page-hero p {
  color: var(--clr-text-light);
  font-size: var(--text-lg);
  max-width: 36em;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--text-xs);
  color: var(--clr-text-light);
}
.breadcrumb a:hover {
  color: var(--clr-forest);
}
.breadcrumb__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-text-light);
}

/* --- LEGAL / TEXT PAGES --- */
.legal-content {
  padding: var(--space-2xl) 0 var(--space-3xl);
}
.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}
.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.legal-content p {
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}
.legal-content li {
  list-style: disc;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}
.legal-content a {
  color: var(--clr-forest);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--clr-moss);
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin: var(--space-lg) 0;
}
.legal-content th,
.legal-content td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.legal-content th {
  background: var(--clr-cream);
  font-weight: 600;
  color: var(--clr-forest);
}
.legal-content tr:last-child td {
  border-bottom: none;
}
.legal-content__table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  -webkit-overflow-scrolling: touch;
}

/* --- ABOUT PAGE --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}
.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-forest);
  fill: none;
}
.value-card__title {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-forest);
  margin-bottom: var(--space-sm);
}
.value-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.team-member {
  text-align: center;
}
.team-member__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-md);
  background: var(--clr-cream);
}
.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--clr-forest);
}
.team-member__role {
  font-size: var(--text-xs);
  color: var(--clr-text-light);
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: var(--space-2xl);
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-forest);
  fill: none;
}
.contact-info__label {
  font-size: var(--text-xs);
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}
.contact-info__value {
  font-size: var(--text-sm);
  color: var(--clr-text);
  line-height: 1.6;
}
.contact-form {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--clr-border);
}
.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-forest);
  margin-bottom: var(--space-sm);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-warm);
  color: var(--clr-text);
  transition: border-color var(--duration) var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,0.15);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* --- MEAL PLAN DETAIL --- */
.plan-detail-hero {
  padding-top: calc(80px + var(--space-2xl));
  padding-bottom: var(--space-2xl);
}
.plan-detail-grid {
  display: grid;
  grid-template-columns: 1.618fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.plan-detail__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.plan-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan-detail__meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.plan-detail__tag {
  padding: var(--space-xs) var(--space-md);
  background: var(--clr-cream);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-forest);
}
.plan-detail__content h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}
.plan-detail__content p {
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.plan-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.plan-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--clr-cream);
  border-radius: var(--radius-md);
}
.plan-highlight svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-sage);
  fill: none;
  flex-shrink: 0;
}
.plan-highlight span {
  font-size: var(--text-sm);
  color: var(--clr-text);
}

/* Sample menu */
.sample-menu {
  padding: var(--space-2xl) 0;
}
.menu-day {
  margin-bottom: var(--space-xl);
}
.menu-day__title {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--clr-forest);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--clr-border);
}
.menu-meals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.menu-meal {
  padding: var(--space-md);
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}
.menu-meal__type {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-sage);
  margin-bottom: var(--space-xs);
}
.menu-meal__name {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--clr-forest);
  margin-bottom: var(--space-xs);
}
.menu-meal__desc {
  font-size: var(--text-xs);
  color: var(--clr-text-light);
  line-height: 1.6;
}

/* --- FAQ --- */
.faq-list {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--clr-forest);
  text-align: left;
}
.faq-item__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--duration) var(--ease);
}
.faq-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-sage);
  fill: none;
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.active .faq-item__answer {
  max-height: 400px;
  padding-bottom: var(--space-lg);
}
.faq-item__answer p {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: 1.8;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-charcoal);
  color: rgba(255,255,255,0.85);
  padding: var(--space-lg) var(--space-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: var(--text-sm);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner a {
  color: var(--clr-mint);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* --- ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
}

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--clr-cream) 0%, var(--clr-mint) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-sage);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* --- THANK YOU PAGE --- */
.thankyou-hero {
  padding-top: calc(80px + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--clr-cream);
}
.thankyou-icon {
  margin-bottom: var(--space-xl);
}
.thankyou-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}
.thankyou-text {
  font-size: var(--text-lg);
  color: var(--clr-text-light);
  max-width: 36em;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}
.thankyou-steps {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}
.thankyou-steps h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
}
.thankyou-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.thankyou-step {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
}
.thankyou-step__number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--clr-forest);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  margin: 0 auto var(--space-md);
}
.thankyou-step p {
  font-size: var(--text-sm);
  color: var(--clr-text-light);
  line-height: 1.6;
}
.thankyou-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .thankyou-steps__grid { grid-template-columns: 1fr; }
  .thankyou-hero { padding-top: calc(64px + var(--space-xl)); }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  h1 { font-size: var(--text-4xl); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero__content { max-width: 100%; }
  .hero { min-height: auto; padding-bottom: var(--space-2xl); }
  .phi-grid,
  .phi-grid--reverse { grid-template-columns: 1fr; }
  .phi-grid--reverse .phi-grid__img { order: -1; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-mosaic { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .plan-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 3rem;
    --text-4xl: 2.4rem;
    --text-3xl: 2rem;
  }
  .container { padding: 0 var(--space-lg); }
  .header__inner { height: 64px; }
  .hero { padding-top: calc(64px + var(--space-xl)); }
  .page-hero { padding-top: calc(64px + var(--space-xl)); }

  .nav__list {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-warm);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: var(--space-xl);
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease);
  }
  .nav__list.open {
    transform: translateX(0);
  }
  .nav__link {
    font-size: var(--text-lg);
    padding: var(--space-md) var(--space-xl);
    width: 100%;
    text-align: center;
  }
  .nav__toggle { display: flex; }

  .steps { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .benefits-mosaic { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .menu-meals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .plan-highlights { grid-template-columns: 1fr; }

  .hero__float-card { position: relative; left: 0; bottom: 0; margin-top: var(--space-lg); }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    --text-5xl: 2.2rem;
    --text-4xl: 1.8rem;
  }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
}
