/* ============================================================
   CB-Praxis – Design System
   Farbwelt aus dem Logo: Grün-Spirale, warmes Creme, Anthrazit
   Datenschutzfreundlich: System-Schriften, keine externen Anfragen
   ============================================================ */

:root {
  /* Grün (aus Logo-Spirale, hell -> tief) */
  --green-300: #9cc972;
  --green-400: #79b04c;
  --green-500: #5a9438;
  --green-600: #43792f;   /* Primär */
  --green-700: #2f5d28;
  --green-800: #234621;

  /* Neutral / warm */
  --ink:       #23281f;   /* Haupttext, warmes Anthrazit */
  --ink-soft:  #565c4f;   /* Sekundärtext */
  --ink-mute:  #8a8f80;
  --cream:     #f8f5ee;   /* Seitenhintergrund */
  --cream-2:   #f0ebdf;   /* Alternierende Sektionen */
  --card:      #ffffff;
  --line:      rgba(35, 40, 31, 0.10);
  --line-soft: rgba(35, 40, 31, 0.06);

  /* Effekte */
  --shadow-sm: 0 1px 3px rgba(35, 40, 31, .06), 0 1px 2px rgba(35, 40, 31, .04);
  --shadow-md: 0 8px 30px rgba(35, 40, 31, .08);
  --shadow-lg: 0 20px 50px rgba(35, 40, 31, .12);

  /* Maße */
  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Schrift */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-500); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; }

p { color: var(--ink-soft); }
p + p { margin-top: 1rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--alt { background: var(--cream-2); }
.section--green { background: var(--green-700); color: #fff; }
.section--green h2, .section--green h3 { color: #fff; }
.section--green p { color: rgba(255,255,255,.85); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}
.section--green .eyebrow { color: var(--green-300); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--green-700); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-600); color: var(--green-700); }
.btn--light { background: #fff; color: var(--green-700); }
.btn--light:hover { background: var(--cream); color: var(--green-800); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 245, 238, .82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand:hover { color: inherit; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-sans); font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.01em; }
.brand__tag { font-size: .72rem; color: var(--ink-mute); letter-spacing: .02em; }

.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav__links a {
  display: inline-block;
  padding: .5rem .9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .98rem;
}
.nav__links a:hover { color: var(--ink); background: rgba(35,40,31,.05); }
.nav__links a.active { color: var(--green-700); background: rgba(67,121,47,.10); }
.nav__cta { margin-left: .5rem; }
/* CTA-Button im Menü: Schrift immer weiß (überschreibt die graue Menü-Link-Farbe) */
.nav__links .nav__cta a { color: #fff; }
.nav__links .nav__cta a:hover { color: #fff; background: var(--green-700); }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; border-radius: 10px;
}
.nav__toggle:hover { background: rgba(35,40,31,.05); }
.nav__toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle span + span { margin-top: 5px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: 1.3rem; }
.hero .lead { margin-bottom: 2rem; max-width: 38ch; }
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__art { position: relative; display: grid; place-items: center; }
.hero__art .spiral { width: min(380px, 80%); height: auto; filter: drop-shadow(0 18px 40px rgba(67,121,47,.18)); }
.hero__portrait { width: min(400px, 100%); height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__photo { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 60% at 70% 30%, rgba(121,176,76,.18), transparent 70%);
}

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Methoden-Bildkarten ---------- */
.method-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.method-card__img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; display: block; }
.method-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.method-card h3 { margin-bottom: .45rem; }
.method-card p { font-size: .98rem; }

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(67,121,47,.10); color: var(--green-600);
  margin-bottom: 1.2rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: 1rem; }

/* ---------- Prozess (Schritte) ---------- */
.steps { display: grid; gap: 1.25rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 1.8rem 2rem; box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: linear-gradient(145deg, var(--green-400), var(--green-700));
  color: #fff; box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: .35rem; }
.step p { font-size: 1rem; }

/* ---------- Split (Text + Bild/Block) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--cream-2), #fff);
  border: 1px solid var(--line-soft);
  min-height: 320px; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.split__media .spiral { width: 60%; opacity: .92; }
.split__media--photo { background: none; border: none; box-shadow: none; padding: 0; min-height: 0; }
.split__media--photo img { width: 100%; max-width: 420px; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.prose p { margin-bottom: 1rem; }
.prose h2 { margin-bottom: 1rem; }
.prose h3 { margin: 1.6rem 0 .5rem; }

/* ---------- Honorar / Preise ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--green-400); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured::before {
  content: "Empfohlen"; position: absolute; top: -12px; left: 2.2rem;
  background: var(--green-600); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.price-card .duration { color: var(--ink-mute); font-size: .92rem; margin-bottom: 1.2rem; }
.price-card .amount { font-family: var(--font-serif); font-size: 2.2rem; color: var(--green-700); font-weight: 700; line-height: 1; }
.price-card .amount small { font-size: .9rem; color: var(--ink-mute); font-weight: 400; font-family: var(--font-sans); }
.price-card .vat { font-size: .85rem; color: var(--ink-mute); margin-top: .35rem; }
.price-card p { font-size: .98rem; margin-top: 1.1rem; }

.note {
  background: rgba(67,121,47,.06); border: 1px solid rgba(67,121,47,.15);
  border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-top: 2rem;
}
.note p { font-size: .95rem; margin: 0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-list { list-style: none; display: grid; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(67,121,47,.10); color: var(--green-600); }
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.contact-item p, .contact-item a { font-size: 1rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--green-600); }

/* ---------- Formular ---------- */
.form { display: grid; gap: 1.1rem; background: var(--card); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.form label { font-weight: 600; font-size: .92rem; margin-bottom: .35rem; display: block; color: var(--ink); }
.form input, .form textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(67,121,47,.12); background: #fff; }
.form textarea { resize: vertical; min-height: 130px; }
.form .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form .consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.form .consent input { width: auto; margin-top: .25rem; }
.form__hint { font-size: .85rem; color: var(--ink-mute); }

/* ---------- Produkt (CB-Essentia) ---------- */
.product { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.product__media {
  display: grid; place-items: center;
  background: radial-gradient(70% 70% at 50% 40%, #ffffff, #f3efe6);
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-sm); min-height: 300px;
}
.product__media img { width: min(320px, 90%); height: auto; }
.product__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #9a7b1f;
  background: rgba(199, 158, 53, .14); border: 1px solid rgba(199, 158, 53, .3);
  padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem;
}
.product__list { list-style: none; display: grid; gap: .7rem; margin: 1.4rem 0; }
.product__list li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.product__list li::before {
  content: ""; position: absolute; left: 0; top: .45rem;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: #2f9e8f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/0.72rem no-repeat;
}
.product__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.product__intro { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; color: var(--green-700); line-height: 1; }
.product__old { font-size: 1.05rem; color: var(--ink-mute); text-decoration: line-through; }
.product__until { font-size: .85rem; color: #9a7b1f; background: rgba(199,158,53,.12); padding: .2rem .6rem; border-radius: 999px; }

/* ---------- Allergie-Typen (CB-Essentia) ---------- */
.allergy-head { text-align: center; max-width: 640px; margin: 3rem auto 1.6rem; }
.allergy-head h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: .4rem; }
.allergy-head p { font-size: 1rem; }
.allergy-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.6rem 1.2rem; text-align: center;
  box-shadow: var(--shadow-sm); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.allergy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(47,158,143,.4); color: var(--ink); }
.allergy-card__icon {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(47,158,143,.12); color: #2f9e8f; margin-bottom: .2rem;
}
.allergy-card__icon svg { width: 28px; height: 28px; }
.allergy-card h4 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; margin: 0; }
.allergy-card p { font-size: .88rem; margin: 0; color: var(--ink-soft); }

/* ---------- Produkt-Intro (zentriert, ohne Logo) ---------- */
.product-intro { max-width: 760px; margin-inline: auto; text-align: center; }
.product-intro .product__badge { margin-bottom: 1rem; }
.product-intro .product__price { justify-content: center; margin-top: 1.6rem; }
.product-features { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin: 1.6rem 0 .2rem; }
.product-features li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 999px;
  padding: .5rem 1rem; font-size: .92rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.product-features svg { width: 18px; height: 18px; color: #2f9e8f; flex: none; }

/* ---------- Zitat / Leitsatz ---------- */
.pull-quote { max-width: 780px; margin-inline: auto; text-align: center; }
.pull-quote blockquote {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.05rem); line-height: 1.32;
  color: var(--ink); margin: 0 0 1.1rem; text-wrap: balance;
}
.pull-quote blockquote::before { content: "„"; color: var(--green-500); }
.pull-quote blockquote::after { content: "“"; color: var(--green-500); }
.pull-quote cite { font-style: normal; font-size: .95rem; color: var(--ink-mute); letter-spacing: .03em; }

/* ---------- Bewertungen / Testimonials ---------- */
.reviews-badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  font-weight: 700; color: var(--ink); background: var(--card);
  border: 1px solid var(--line-soft); border-radius: 999px; padding: .5rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: #e8b007; letter-spacing: 1px; }
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 880px; margin-inline: auto; }
.testimonial {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column;
}
.testimonial .stars { font-size: 1.05rem; letter-spacing: 2px; margin-bottom: .9rem; }
.testimonial__text { color: var(--ink); font-size: 1.02rem; margin: 0 0 1.4rem; }
.testimonial__author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testimonial__avatar {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  background: linear-gradient(145deg, var(--green-400), var(--green-700)); color: #fff;
  display: grid; place-items: center; font-family: var(--font-serif); font-weight: 700;
}
.testimonial__meta { line-height: 1.3; }
.testimonial__name { font-weight: 700; font-size: .97rem; color: var(--ink); }
.testimonial__src { font-size: .82rem; color: var(--ink-mute); }
.testimonial--featured { max-width: 820px; margin: 0 auto 1.5rem; }
.testimonial--featured .testimonial__text { font-size: 1.12rem; line-height: 1.7; }

/* ---------- Online-Coaching Hinweisband ---------- */
.tipbar { background: var(--green-600); color: #fff; }
.tipbar .container { display: flex; align-items: center; justify-content: center; gap: 1rem 1.5rem; flex-wrap: wrap; padding-block: .9rem; text-align: center; }
.tipbar p { color: #fff; margin: 0; font-weight: 500; }
.tipbar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.tipbar a:hover { color: var(--cream); }

/* ---------- CTA-Band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 50ch; margin: 0 auto 2rem; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-800); color: rgba(255,255,255,.8); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h4 { font-family: var(--font-sans); color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: rgba(255,255,255,.6); }
.footer-links { list-style: none; display: grid; gap: .6rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Rechtstexte (Legal) ---------- */
.legal { max-width: 800px; }
.legal h1 { margin-bottom: .5rem; }
.legal .updated { color: var(--ink-mute); font-size: .9rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .8rem; }
.legal h3 { margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { margin: .5rem 0 1rem 1.2rem; }
.legal li { margin-bottom: .4rem; }
.legal address { font-style: normal; margin: .5rem 0; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { display: none; }
  .hero__art.has-photo { display: grid; max-width: 320px; }
  .grid--3, .grid--4, .price-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .75rem 1.5rem 1.5rem; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
  }
  .nav__links.open { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: .85rem .5rem; border-radius: 10px; }
  .nav__cta { margin: .6rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: block; }
  .grid--3, .grid--4, .grid--2, .price-grid, .split, .contact-grid, .footer-grid, .product, .testimonials { grid-template-columns: 1fr; }
  .allergy-types { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 0; }
  .form .form__row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .step__num { margin-bottom: .5rem; }
}
