/* ============================================
   SEGREDO DOS MONGES - Landing Page CSS
   Mobile-first, clean, modern
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #e7bf6a;
  --gold-dark: #da9b49;
  --gold-light: #f3e38a;
  --gold-gradient: linear-gradient(45deg, #da9b49 0%, #f3e38a 99%);
  --gold-border: #D4A33A;
  --bg-cream: #FDF4DB;
  --bg-warm: #f6e8d5;
  --bg-light: #FAF4ED;
  --bg-section-alt: #FCF9F5;
  --text-dark: #2C2926;
  --text-muted: #5d544f;
  --text-light: #7f7060;
  --white: #ffffff;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 2px 6px rgba(44, 41, 38, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 41, 38, 0.12);
  --shadow-btn: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --transition: all 0.25s ease;
  --max-width: 900px;
  --section-px: 1.25rem;
  --section-py: 4rem;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-border);
  text-decoration: none;
  transition: var(--transition);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 600;
}

ul, ol {
  list-style: none;
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(231, 191, 106, 0.15);
  border: 1px solid rgba(231, 191, 106, 0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.gold-line {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 99px;
  margin: 1rem 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--gold-gradient);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.1em 2em;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(218, 155, 73, 0.4);
  color: var(--text-dark);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1.25em 2.5em;
}

.btn-meta {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-top: 0.6rem;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f6e8d5 0%, #faf4d1 100%);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/malloops_A_pattern_of_white_and_gold_liquid_swirls_on_an_all-wh_cd39af0e-78fa-4e88-ad40-d7cc51f267c4.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 5rem var(--section-px) 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(231, 191, 106, 0.2);
  border: 1px solid rgba(231, 191, 106, 0.5);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-dark);
}

.hero-problem {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-img {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   MING SAN SECTION
   ============================================ */
.ming-san {
  background: var(--white);
  padding-block: var(--section-py);
}

.ming-san-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.ming-san-img {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(231, 191, 106, 0.3);
}

.ming-san-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ming-san-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.ming-san-text .author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.ming-san-text .author-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231, 191, 106, 0.3);
  font-style: italic;
}

/* ============================================
   PRINCIPLES SECTION
   ============================================ */
.principles {
  background: linear-gradient(135deg, #2C2926 0%, #47423e 100%);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.principles::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/malloops_A_pattern_of_white_and_gold_liquid_swirls_on_an_all-wh_cd39af0e-78fa-4e88-ad40-d7cc51f267c4.png');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.principles .container {
  position: relative;
  z-index: 1;
}

.principles .section-label {
  color: var(--gold-light);
  background: rgba(231, 191, 106, 0.1);
  border-color: rgba(231, 191, 106, 0.25);
}

.principles h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.principles-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2rem;
}

.principles p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  max-width: 680px;
}

.principles-img {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
}

.principles-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   BOOKS SECTION (4 Livros)
   ============================================ */
.books {
  background: var(--bg-section-alt);
  padding-block: var(--section-py);
}

.books h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.books .section-intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.books-grid {
  display: grid;
  gap: 1.5rem;
}

.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(231, 191, 106, 0.2);
}

.book-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.book-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.book-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-card:hover .book-card-img img {
  transform: scale(1.04);
}

.book-card-body {
  padding: 1.5rem;
}

.book-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.book-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.book-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   NUTRITION SECTION
   ============================================ */
.nutrition {
  background: var(--white);
  padding-block: var(--section-py);
}

.nutrition h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.nutrition > .container > p {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 3rem;
}

.nutrition-intro {
  color: var(--text-muted) !important;
  margin-bottom: 2rem !important;
}

.food-categories h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.food-categories .section-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.food-grid {
  display: grid;
  gap: 1.25rem;
}

.food-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.food-card:hover {
  background: rgba(231, 191, 106, 0.08);
}

.food-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.food-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.food-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   EATING TIPS SECTION
   ============================================ */
.eating-tips {
  background: linear-gradient(135deg, #f6e8d5 0%, #faf4d1 100%);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.eating-tips::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/malloops_A_pattern_of_white_and_gold_liquid_swirls_on_an_all-wh_cd39af0e-78fa-4e88-ad40-d7cc51f267c4.png');
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
}

.eating-tips .container {
  position: relative;
  z-index: 1;
}

.eating-tips h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.eating-tips > .container > p {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.tips-list {
  display: grid;
  gap: 1.25rem;
}

.tip-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.tip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
}

.tip-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.tip-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tips-closing {
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.9rem;
}

/* ============================================
   HOW IT WORKS (6 Steps)
   ============================================ */
.how-it-works {
  background: var(--bg-section-alt);
  padding-block: var(--section-py);
}

.how-it-works h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.how-it-works .section-intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.steps-list {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(231, 191, 106, 0.2);
  transition: var(--transition);
}

.step-item:hover {
  box-shadow: var(--shadow-md);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
}

.step-item h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   IMBALANCE SIGNALS SECTION
   ============================================ */
.imbalance {
  background: var(--white);
  padding-block: var(--section-py);
}

.imbalance-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.imbalance-img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.imbalance-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.imbalance-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.imbalance-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: rgba(231, 191, 106, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.imbalance-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ============================================
   YOUR PATH SECTION (Disclaimer + CTA)
   ============================================ */
.your-path {
  background: var(--bg-cream);
  padding-block: var(--section-py);
}

.your-path h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 2rem;
}

.disclaimer-box {
  background: rgba(231, 191, 106, 0.1);
  border: 1px solid rgba(231, 191, 106, 0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.disclaimer-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.disclaimer-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.path-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ============================================
   TARGET AUDIENCE
   ============================================ */
.target {
  background: var(--bg-section-alt);
  padding-block: var(--section-py);
}

.target-grid {
  display: grid;
  gap: 2rem;
}

.target-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.target-col.yes {
  border-top: 4px solid var(--gold);
}

.target-col.no {
  border-top: 4px solid #e0d5cb;
}

.target-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.target-col.yes h3 {
  color: var(--gold-dark);
}

.target-col.no h3 {
  color: var(--text-muted);
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-block: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(44, 41, 38, 0.06);
}

.target-list li:last-child {
  border-bottom: none;
}

.target-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.target-col.yes .target-list li::before {
  width: 8px;
  height: 8px;
  background: var(--gold-gradient);
  border-radius: 50%;
}

.target-col.no .target-list li::before {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

/* ============================================
   CTA SECTION (Middle CTA)
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #2C2926 0%, #47423e 100%);
  padding-block: var(--section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/malloops_A_pattern_of_white_and_gold_liquid_swirls_on_an_all-wh_cd39af0e-78fa-4e88-ad40-d7cc51f267c4.png');
  background-size: cover;
  opacity: 0.06;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--white);
  padding-block: var(--section-py);
}

.faq h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(231, 191, 106, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(231, 191, 106, 0.08);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--gold-gradient);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-inline: 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, #f6e8d5 0%, #faf4d1 100%);
  padding-block: var(--section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/malloops_A_pattern_of_white_and_gold_liquid_swirls_on_an_all-wh_cd39af0e-78fa-4e88-ad40-d7cc51f267c4.png');
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.final-cta p {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.final-cta .btn-wrap {
  margin-top: 2.5rem;
}

.final-cta-img {
  max-width: 360px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(231, 191, 106, 0.4);
}

.final-cta-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   FOOTER / DISCLAIMER
   ============================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding-block: 2.5rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.8rem;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.site-footer strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-px: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 6rem;
  }

  .hero-img {
    max-width: none;
  }

  .ming-san-inner {
    grid-template-columns: 1fr 1fr;
  }

  .ming-san-img {
    max-width: none;
  }

  .books-grid {
    grid-template-columns: 1fr 1fr;
  }

  .food-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tips-list {
    grid-template-columns: 1fr 1fr;
  }

  .steps-list {
    grid-template-columns: 1fr 1fr;
  }

  .imbalance-inner {
    grid-template-columns: 1fr 1fr;
  }

  .imbalance-img {
    max-width: none;
  }

  .target-grid {
    grid-template-columns: 1fr 1fr;
  }

  .principles-img {
    float: right;
    width: 42%;
    margin: 0 0 1.5rem 2rem;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-px: 2.5rem;
    --section-py: 5rem;
  }

  .books-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .food-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tips-list {
    grid-template-columns: 1fr 1fr;
  }

  .steps-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   SCROLL REVEAL ANIMATION (optional)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .hero::before,
  .principles::after,
  .eating-tips::before,
  .cta-section::before,
  .final-cta::before {
    display: none;
  }
}
