/* ==========================================================================
   SX66 — Men's Daily Wellness
   Stylesheet: bammana.shop
   Palette: Mist / Silber / Mint / Grün / Tiefgrün
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  --mist:        #f4f8f6;
  --paper:       #ffffff;
  --paper-warm:  #fbfdfc;
  --silver:      #dde5e1;
  --silver-line: #e6ece9;
  --silver-ink:  #74867f;
  --mint-soft:   #e6f6ef;
  --mint:        #a7e6cd;
  --mint-deep:   #6ecdac;
  --green:       #17a673;
  --green-hover: #0f8f61;
  --forest:      #115240;
  --forest-deep: #0b3b2e;
  --ink:         #0c1c17;

  --shadow-s: 0 2px 6px rgba(11, 59, 46, .05);
  --shadow-m: 0 14px 34px -18px rgba(11, 59, 46, .28);
  --shadow-l: 0 34px 70px -34px rgba(11, 59, 46, .40);

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 26px;

  --unit: 8px;
  --gutter: clamp(20px, 4vw, 56px);
  --band: clamp(64px, 8vw, 118px);
  --wrap: 1220px;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, "Liberation Mono", monospace;
}

/* --- 2. Base ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: -.012em;
  margin: 0 0 calc(var(--unit) * 2);
  line-height: 1.16;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.18rem, 1.7vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 calc(var(--unit) * 2); }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--tight { max-width: 880px; }

.band { padding-block: var(--band); }
.band--paper { background: var(--paper); }
.band--mist { background: var(--mist); }
.band--soft { background: linear-gradient(168deg, var(--mint-soft), var(--mist) 72%); }
.band--forest { background: var(--forest-deep); color: #dcece5; }
.band--forest h2, .band--forest h3 { color: #f2faf6; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest-deep); color: #fff;
  padding: 12px 20px; z-index: 200; border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --- 3. Editorial signature: eyebrow rail ------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver-ink);
  margin-bottom: calc(var(--unit) * 2);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--mint-deep); border-radius: 2px;
}
.band--forest .eyebrow { color: var(--mint); }
.band--forest .eyebrow::before { background: var(--mint-deep); }

.section-head { max-width: 720px; margin-bottom: calc(var(--unit) * 6); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: #46605a; font-size: 1.06rem; }
.band--forest .section-head p { color: #b9d5cb; }

.lede { font-size: 1.13rem; color: #3f5952; }

/* --- 4. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-size: .97rem; font-weight: 600; letter-spacing: .01em;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-m); }
.btn--primary:hover { background: var(--green-hover); color: #fff; transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--forest-deep); border-color: var(--silver); }
.btn--ghost:hover { border-color: var(--mint-deep); background: var(--mint-soft); color: var(--forest-deep); }

.btn--light { background: var(--mint); color: var(--forest-deep); }
.btn--light:hover { background: #bdeed9; color: var(--forest-deep); }

.btn--wide { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: .87rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- 5. Header ---------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 90;
  background: rgba(244, 248, 246, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silver-line);
}
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.logo { display: inline-flex; align-items: baseline; gap: 9px; }
.logo__mark {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 700;
  color: var(--forest-deep); letter-spacing: .01em;
}
.logo__tag {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--silver-ink);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .93rem; color: #33514a; position: relative; padding-block: 4px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--mint-deep); transition: width .25s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.masthead__cta { display: flex; align-items: center; gap: 16px; }
.masthead__phone { font-size: .92rem; font-weight: 600; color: var(--forest-deep); white-space: nowrap; }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--silver);
  background: var(--paper); border-radius: 50%; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.burger span {
  display: block; width: 18px; height: 2px; background: var(--forest-deep);
  position: relative; transition: background .2s ease;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--forest-deep); transition: transform .25s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* --- 6. Hero ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #eef6f2 0%, var(--mist) 60%); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 70px); align-items: center;
  padding-block: clamp(52px, 7vw, 96px);
}
.hero__title { margin-bottom: calc(var(--unit) * 3); }
.hero__title em { font-style: normal; color: var(--green); }
.hero__text { font-size: 1.12rem; color: #3f5952; max-width: 54ch; margin-bottom: calc(var(--unit) * 4); }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: calc(var(--unit) * 4.5); padding-top: calc(var(--unit) * 3);
  border-top: 1px solid var(--silver-line);
}
.hero__meta span {
  font-size: .86rem; color: #4a635c; display: inline-flex; align-items: center; gap: 8px;
}
.hero__meta span::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint-deep); flex: none;
}

.hero__figure {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  box-shadow: var(--shadow-l); background: var(--mint-soft);
  aspect-ratio: 4 / 3;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }

.hero__stamp {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255, 255, 255, .93);
  border-radius: var(--radius-m); padding: 14px 18px;
  box-shadow: var(--shadow-s); max-width: 60%;
}
.hero__stamp strong { display: block; font-size: .95rem; color: var(--forest-deep); }
.hero__stamp span { font-size: .8rem; color: var(--silver-ink); }

/* --- 7. Marquee strip --------------------------------------------------- */
.strip { background: var(--forest-deep); color: #cfe6dc; }
.strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-block: 26px;
}
.strip__item {
  font-size: .87rem; display: flex; align-items: center; gap: 12px;
  border-left: 1px solid rgba(167, 230, 205, .26); padding-left: 18px;
}
.strip__item:first-child { border-left: 0; padding-left: 0; }
.strip__item b { color: #f2faf6; font-weight: 600; }

/* --- 8. Split blocks ---------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-l); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--mint-soft); box-shadow: var(--shadow-m);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.checklist { list-style: none; margin: calc(var(--unit) * 3) 0 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
  position: relative; padding-left: 34px; font-size: .99rem; color: #3f5952;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint-soft); border: 1px solid var(--mint);
}
.checklist li::after {
  content: ""; position: absolute; left: 7px; top: 13px;
  width: 6px; height: 3px; border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green); transform: rotate(-45deg);
}

/* --- 9. Cards ----------------------------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-m); padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: var(--mint); }
.card h3 { margin-bottom: 0; }
.card p { font-size: .96rem; color: #4a635c; }

.card__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--mint-soft); border: 1px solid var(--mint);
  display: grid; place-items: center; margin-bottom: 6px;
}
.card__icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.6; }

.card--flat { background: transparent; border: 0; padding: 0; }
.card--flat:hover { transform: none; box-shadow: none; }

.ingredient {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-m); padding: 26px;
}
.ingredient__name {
  font-family: var(--serif); font-size: 1.15rem; color: var(--forest-deep); margin-bottom: 6px;
}
.ingredient__latin {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--silver-ink); display: block; margin-bottom: 12px;
}
.ingredient p { font-size: .93rem; color: #4a635c; margin: 0; }

/* --- 9b. Produktkarte (Showcase) ---------------------------------------- */
.showcase {
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 3.6vw, 56px); align-items: center;
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-l); padding: clamp(24px, 3vw, 44px);
  box-shadow: var(--shadow-m);
}
.showcase__figure {
  position: relative; aspect-ratio: 4 / 5;
  background: linear-gradient(168deg, var(--mint-soft), #ffffff 78%);
  border: 1px solid var(--silver-line); border-radius: var(--radius-m);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(18px, 2.4vw, 32px); overflow: hidden; min-height: 0;
}
.showcase__figure img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.showcase__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--forest-deep); color: #eafaf3;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.showcase__kicker {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--silver-ink); display: block; margin-bottom: 10px;
}
.showcase__body h3 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-bottom: 12px; }
.showcase__body > p { color: #46605a; max-width: 58ch; }

.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin: calc(var(--unit) * 3.5) 0 0;
  background: var(--silver-line); border: 1px solid var(--silver-line);
  border-radius: var(--radius-m); overflow: hidden;
}
.spec { background: var(--paper-warm); padding: 16px 18px; }
.spec dt {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--silver-ink); margin-bottom: 5px;
}
.spec dd { margin: 0; font-size: .93rem; color: var(--forest-deep); font-weight: 600; }

.showcase__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 26px; margin-top: calc(var(--unit) * 4);
  padding-top: calc(var(--unit) * 3); border-top: 1px solid var(--silver-line);
}
.showcase__price { display: grid; }
.showcase__from {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--silver-ink);
}
.showcase__price strong {
  font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--forest-deep); line-height: 1.2;
}
.showcase__note { font-size: .84rem; color: var(--silver-ink); }
.showcase__legal {
  margin-top: calc(var(--unit) * 3); font-size: .82rem; color: var(--silver-ink); max-width: 70ch;
}

/* --- 10. Steps ---------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: clamp(18px, 2.4vw, 26px); grid-template-columns: repeat(4, 1fr); }
.step {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-m); padding: 30px 26px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--mono); font-size: .78rem; letter-spacing: .12em;
  color: var(--green); display: block; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .94rem; color: #4a635c; margin: 0; }

/* --- 11. Packages ------------------------------------------------------- */
.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); align-items: stretch; }
.pack {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-l); padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pack:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.pack--feature { border-color: var(--mint-deep); box-shadow: var(--shadow-m); }

.pack__figure {
  aspect-ratio: 4 / 3; background: linear-gradient(165deg, var(--mint-soft), #ffffff);
  border-radius: var(--radius-m); margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; overflow: hidden; min-height: 0;
}
.pack__figure img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }

.pack__label {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--silver-ink); margin-bottom: 8px; display: block;
}
.pack--feature .pack__label { color: var(--green); }
.pack h3 { margin-bottom: 6px; }
.pack__units { font-size: .9rem; color: var(--silver-ink); margin-bottom: 18px; }
.pack__price {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px;
  font-family: var(--serif); font-size: 2rem; color: var(--forest-deep);
}
.pack__per { font-family: var(--sans); font-size: .86rem; color: var(--silver-ink); margin-bottom: 20px; }
.pack__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.pack__list li { font-size: .92rem; color: #4a635c; padding-left: 22px; position: relative; }
.pack__list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 2px;
  background: var(--mint-deep); border-radius: 2px;
}
.pack .btn { margin-top: auto; }

.packs-note {
  margin-top: calc(var(--unit) * 4); font-size: .87rem; color: var(--silver-ink);
  text-align: center; max-width: 760px; margin-inline: auto;
}

/* --- 12. Testimonials --------------------------------------------------- */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.voice {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-m); padding: 30px; display: flex; flex-direction: column;
}
.voice__quote { font-size: .99rem; color: #3f5952; margin-bottom: 22px; }
.voice__quote::before {
  content: "„"; font-family: var(--serif); font-size: 2.6rem; line-height: 0;
  color: var(--mint-deep); vertical-align: -.35em; margin-right: 4px;
}
.voice__meta { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.voice__initials {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--mint-soft); border: 1px solid var(--mint);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: .78rem; color: var(--forest);
}
.voice__name { font-size: .93rem; font-weight: 600; color: var(--forest-deep); }
.voice__place { font-size: .82rem; color: var(--silver-ink); }

/* --- 13. Trust band ----------------------------------------------------- */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 34px); }
.trust__item { border-top: 1px solid rgba(167, 230, 205, .28); padding-top: 22px; }
.trust__item h3 { font-size: 1.12rem; margin-bottom: 8px; }
.trust__item p { font-size: .94rem; color: #b9d5cb; margin: 0; }

/* --- 14. FAQ ------------------------------------------------------------ */
.faq { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--silver-line); }
.faq__item { border-bottom: 1px solid var(--silver-line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.1rem; color: var(--forest-deep);
  padding: 24px 48px 24px 0; position: relative;
}
.faq__q::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg); transition: transform .28s ease;
}
.faq__item.is-open .faq__q::after { transform: translateY(-20%) rotate(225deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { font-size: .97rem; color: #4a635c; padding-bottom: 24px; max-width: 68ch; }

/* --- 15. Form ----------------------------------------------------------- */
.consult {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.consult__aside .checklist { margin-top: calc(var(--unit) * 3); }
.consult__box {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-l); padding: clamp(26px, 3.2vw, 42px);
  box-shadow: var(--shadow-m);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--forest-deep); }
.field label .req { color: var(--green); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .97rem; color: var(--ink);
  background: var(--paper-warm); border: 1px solid var(--silver);
  border-radius: var(--radius-s); padding: 14px 15px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--mint-deep); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(167, 230, 205, .38);
}
.field .hint { font-size: .78rem; color: var(--silver-ink); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b8543f; background: #fdf6f4; }
.error-msg { font-size: .78rem; color: #b8543f; min-height: 0; }

.consent-row { display: flex; gap: 12px; align-items: flex-start; grid-column: 1 / -1; }
.consent-row input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--green); }
.consent-row label { font-size: .84rem; font-weight: 400; color: #4a635c; line-height: 1.55; }

.form-note {
  grid-column: 1 / -1; font-size: .8rem; color: var(--silver-ink);
  border-top: 1px solid var(--silver-line); padding-top: 16px;
}

/* --- 16. Contact -------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.contact-card {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-m); padding: 30px;
}
.contact-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.contact-card p, .contact-card address {
  font-style: normal; font-size: .95rem; color: #4a635c; margin: 0 0 6px;
}
.contact-card a { font-weight: 600; }
.contact-dl { display: grid; gap: 10px; margin: 0; }
.contact-dl dt {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--silver-ink);
}
.contact-dl dd { margin: 0 0 8px; font-size: .95rem; color: #35514a; }

/* --- 17. Footer --------------------------------------------------------- */
.footer { background: var(--forest-deep); color: #a9c8bc; padding-block: clamp(48px, 6vw, 78px) 34px; }
.footer a { color: #d7ece3; }
.footer a:hover { color: var(--mint); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(24px, 3vw, 44px); }
.footer__brand .logo__mark { color: #f2faf6; }
.footer__brand p { font-size: .9rem; color: #a9c8bc; margin-top: 16px; max-width: 34ch; }
.footer h4 {
  color: #f2faf6; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer li, .footer address { font-size: .9rem; font-style: normal; line-height: 1.7; }
.footer__bottom {
  margin-top: clamp(34px, 4vw, 54px); padding-top: 24px;
  border-top: 1px solid rgba(167, 230, 205, .2);
  display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center;
  font-size: .82rem;
}
.footer__disclosure { font-size: .8rem; color: #8fb3a6; margin-top: 18px; max-width: 90ch; }
.linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: #d7ece3; text-decoration: underline; text-underline-offset: 3px;
}
.linkbtn:hover { color: var(--mint); }

/* --- 18. Legal & article pages ------------------------------------------ */
.page-head { background: linear-gradient(165deg, var(--mint-soft), var(--mist) 70%); padding-block: clamp(48px, 6vw, 84px); }
.page-head p { color: #46605a; max-width: 62ch; }

.prose { max-width: 78ch; }
.prose h2 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin-top: calc(var(--unit) * 6); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: calc(var(--unit) * 4); font-size: 1.12rem; }
.prose p, .prose li { color: #3f5952; font-size: 1rem; }
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 9px; margin: 0 0 calc(var(--unit) * 2); }
.prose table { width: 100%; border-collapse: collapse; margin: calc(var(--unit) * 2) 0; font-size: .93rem; }
.prose th, .prose td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--silver-line); vertical-align: top; }
.prose th { background: var(--mint-soft); color: var(--forest-deep); font-weight: 600; }
.prose__note {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-left: 3px solid var(--mint-deep);
  border-radius: var(--radius-s); padding: 20px 24px; margin: calc(var(--unit) * 3) 0;
  font-size: .95rem; color: #46605a;
}
.updated { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-ink); }

.article-hero {
  border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-m); margin-bottom: calc(var(--unit) * 6);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

.topic-card {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-m); overflow: hidden; display: flex; flex-direction: column;
}
.topic-card__figure { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mint-soft); }
.topic-card__figure img { width: 100%; height: 100%; object-fit: cover; }
.topic-card__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.topic-card__body h3 { margin-bottom: 0; }
.topic-card__body p { font-size: .95rem; color: #4a635c; }

/* --- 19. Success page --------------------------------------------------- */
.success { display: grid; place-items: center; text-align: center; padding-block: clamp(70px, 10vw, 130px); }
.success__mark {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--mint-soft); border: 1px solid var(--mint);
  display: grid; place-items: center; margin-bottom: 26px;
}
.success__mark svg { width: 36px; height: 36px; stroke: var(--green); fill: none; stroke-width: 2; }
.success p { max-width: 58ch; color: #3f5952; margin-inline: auto; }
.success__panel {
  background: var(--paper); border: 1px solid var(--silver-line);
  border-radius: var(--radius-l); padding: clamp(24px, 3vw, 36px);
  margin-top: calc(var(--unit) * 5); text-align: left; max-width: 620px; width: 100%;
}

/* --- 20. Cookie banner & preferences ------------------------------------ */
.cookiebar {
  position: fixed; inset: auto 0 0 0; z-index: 120;
  background: var(--paper); border-top: 1px solid var(--silver);
  box-shadow: 0 -18px 40px -28px rgba(11, 59, 46, .5);
  transform: translateY(110%); transition: transform .38s ease; padding: 22px 0;
}
.cookiebar.is-visible { transform: translateY(0); }
.cookiebar__inner { display: grid; grid-template-columns: 1.6fr auto; gap: 26px; align-items: center; }
.cookiebar h2 { font-size: 1.16rem; margin-bottom: 8px; }
.cookiebar p { font-size: .89rem; color: #4a635c; max-width: 70ch; }
.cookiebar__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.cookiebar__actions .btn { flex: 0 0 auto; }

.modal {
  position: fixed; inset: 0; z-index: 130; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(11, 59, 46, .55);
}
.modal.is-open { display: flex; }
.modal__panel {
  background: var(--paper); border-radius: var(--radius-l);
  max-width: 620px; width: 100%; max-height: 88vh; overflow-y: auto;
  padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-l);
}
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal__close {
  background: none; border: 1px solid var(--silver); border-radius: 50%;
  width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; color: var(--forest-deep); flex: none;
}
.modal__close:hover { border-color: var(--mint-deep); background: var(--mint-soft); }
.modal p { font-size: .92rem; color: #4a635c; }

.consent-item {
  border: 1px solid var(--silver-line); border-radius: var(--radius-m);
  padding: 18px 20px; margin-bottom: 14px;
}
.consent-item__top { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.consent-item__top h3 { font-size: 1.02rem; margin: 0; }
.consent-item p { font-size: .87rem; margin: 8px 0 0; }

.switch { position: relative; display: inline-block; width: 48px; height: 27px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__track {
  position: absolute; inset: 0; background: var(--silver); border-radius: 999px;
  transition: background .22s ease; cursor: pointer;
}
.switch__track::before {
  content: ""; position: absolute; left: 3px; top: 3px; width: 21px; height: 21px;
  background: #fff; border-radius: 50%; transition: transform .22s ease; box-shadow: var(--shadow-s);
}
.switch input:checked + .switch__track { background: var(--green); }
.switch input:checked + .switch__track::before { transform: translateX(21px); }
.switch input:disabled + .switch__track { background: var(--mint-deep); cursor: not-allowed; opacity: .75; }
.switch input:focus-visible + .switch__track { outline: 3px solid var(--green); outline-offset: 2px; }

.modal__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.modal__actions .btn { flex: 1 1 180px; }

/* --- 21. Responsive ----------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper); border-bottom: 1px solid var(--silver-line);
    padding: 12px var(--gutter) 26px; display: none; box-shadow: var(--shadow-m);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--silver-line); }
  .nav a::after { display: none; }
  .burger { display: inline-flex; }
  .masthead__phone { display: none; }
  .masthead__cta .btn { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { aspect-ratio: 16 / 11; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .consult { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .strip__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .packs, .voices, .trust, .contact-grid, .grid--3 { grid-template-columns: 1fr 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__figure { aspect-ratio: 16 / 10; }
  .cookiebar__inner { grid-template-columns: 1fr; }
  .cookiebar__actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  body { font-size: 16.4px; }
  .packs, .voices, .trust, .contact-grid, .grid--2, .grid--3, .grid--4, .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .showcase__figure { aspect-ratio: 4 / 5; }
  .showcase__foot { flex-direction: column; align-items: flex-start; }
  .strip__inner { grid-template-columns: 1fr; }
  .strip__item { border-left: 0; padding-left: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__stamp { max-width: 78%; }
  .article-hero { aspect-ratio: 16 / 10; }
  .modal__actions .btn { flex: 1 1 100%; }
}
