:root {
  --cream: #F3F1E9;
  --paper: #FFFDF7;
  --ink: #22302A;
  --green-dark: #2C5E42;
  --green: #3E7C59;
  --amber: #C68A3E;
  --terracotta: #A8503A;
  --white: #FFFFFF;
  --border: rgba(34, 48, 42, 0.16);
  --shadow: 0 18px 45px rgba(34, 48, 42, 0.10);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max-width: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--green-dark);
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--paper {
  background: var(--paper);
}

.section--green {
  color: var(--white);
  background: var(--green-dark);
}

.section--ink {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--green .eyebrow,
.section--ink .eyebrow {
  color: #DDEADF;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.14;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.038em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.lead {
  max-width: 740px;
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.small {
  font-size: 0.91rem;
}

.muted {
  color: rgba(34, 48, 42, 0.72);
}

.section--green .muted,
.section--ink .muted {
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner .muted,
.site-footer .muted,
.contact-panel .muted {
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(243, 241, 233, 0.90);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(34, 48, 42, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  margin-top: 5px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(62, 124, 89, 0.12);
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(198, 138, 62, 0.48);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(44, 94, 66, 0.22);
}

.btn--primary:hover {
  background: #244E37;
}

.btn--secondary {
  color: var(--green-dark);
  background: transparent;
  border-color: rgba(44, 94, 66, 0.35);
}

.btn--secondary:hover {
  background: rgba(62, 124, 89, 0.10);
}

.btn--light {
  color: var(--green-dark);
  background: var(--white);
}

.btn--ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 92px;
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -190px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(62, 124, 89, 0.17), rgba(62, 124, 89, 0));
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 66px;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-card {
  position: absolute;
  inset: 28px 0 0 44px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(34, 48, 42, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card--photo {
  background: var(--green-dark);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-portrait {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 48px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-dark), var(--green));
}

.hero-portrait svg {
  width: min(100%, 360px);
}

.floating-note {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 44px;
  display: flex;
  align-items: center;
  max-width: 255px;
  gap: 12px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 700;
}

.floating-note .icon {
  flex: 0 0 auto;
}

.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 253, 247, 0.48);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  min-height: 112px;
  gap: 14px;
  padding: 24px 30px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-dark);
  background: rgba(62, 124, 89, 0.12);
  border-radius: 50%;
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 26px rgba(34, 48, 42, 0.04);
}

.card--hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card--hover:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 124, 89, 0.4);
  box-shadow: var(--shadow);
}

.card .icon {
  margin-bottom: 24px;
}

.card p:last-child {
  margin-bottom: 0;
}



.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-card__header h3 {
  margin: 16px 0 0;
}

.price {
  flex: 0 0 auto;
  margin: 0;
  text-align: right;
}

.price strong,
.price span {
  display: block;
}

.price strong {
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  margin-top: 8px;
  color: rgba(34, 48, 42, 0.68);
  font-size: 0.88rem;
  font-weight: 750;
}

.button-row--center {
  justify-content: center;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 800;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 210px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.step::before {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 66px;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 42px;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.visual-panel::after {
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.visual-panel--amber {
  background: var(--amber);
}

.visual-panel--terracotta {
  background: var(--terracotta);
}

.visual-panel--photo {
  min-height: 500px;
  padding: 0;
  background: var(--green-dark);
}

.visual-panel--photo::after {
  display: none;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 42%;
}

.visual-panel svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.check-list,
.plain-list,
.footer-links,
.meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(168, 80, 58, 0.09);
  border: 1px solid rgba(168, 80, 58, 0.25);
  border-radius: var(--radius-md);
}

.notice .icon {
  color: var(--terracotta);
  background: rgba(168, 80, 58, 0.12);
}

.notice p:last-child {
  margin-bottom: 0;
}

.quote {
  margin: 0;
  padding: 34px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 750;
  line-height: 1.35;
}

.quote footer {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 650;
}

.page-hero {
  padding: 70px 0 74px;
  border-bottom: 1px solid var(--border);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 60px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5.3vw, 4.8rem);
}

.page-hero-aside {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: rgba(62, 124, 89, 0.12);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  gap: 26px;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 21px;
  width: 2px;
  background: rgba(62, 124, 89, 0.24);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border: 7px solid var(--cream);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.timeline-content {
  padding: 2px 0 22px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--green-dark);
  background: rgba(62, 124, 89, 0.10);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-thumb {
  display: grid;
  min-height: 190px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
}

.article-thumb--amber {
  background: var(--amber);
}

.article-thumb--terracotta {
  background: var(--terracotta);
}

.article-thumb svg {
  width: 88px;
  height: 88px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.article-meta {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body 

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-card__header h3 {
  margin: 16px 0 0;
}

.price {
  flex: 0 0 auto;
  margin: 0;
  text-align: right;
}

.price strong,
.price span {
  display: block;
}

.price strong {
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  margin-top: 8px;
  color: rgba(34, 48, 42, 0.68);
  font-size: 0.88rem;
  font-weight: 750;
}

.button-row--center {
  justify-content: center;
}

.card-link {
  margin-top: auto;
  padding-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
}

.contact-panel {
  padding: 32px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius-lg);
}

.contact-panel a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}

.contact-panel .icon {
  color: var(--green-dark);
  background: var(--white);
}

.form-card {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(34, 48, 42, 0.24);
  border-radius: 12px;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.form-help,
.form-status {
  margin: 0;
  font-size: 0.86rem;
}

.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 10px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--green-dark);
  background: rgba(62, 124, 89, 0.12);
}

.form-status.is-error {
  color: var(--terracotta);
  background: rgba(168, 80, 58, 0.10);
}

.legal-content h2 {
  margin-top: 44px;
  font-size: 1.7rem;
}

.legal-content h3 {
  margin-top: 30px;
  font-size: 1.2rem;
}

.legal-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

.site-footer {
  padding: 70px 0 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
  padding-bottom: 52px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-title {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.cookie-banner {
  position: fixed;
  z-index: 150;
  right: 18px;
  bottom: 18px;
  display: none;
  max-width: 420px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1060px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .menu-open .main-nav {
    display: block;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links a {
    min-height: 50px;
    padding-inline: 16px;
    border-radius: 12px;
  }

  .nav-cta {
    width: 100%;
    margin: 12px 0 0;
  }

  .hero-grid,
  .split,
  .split--reverse,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-card {
    inset: 20px 40px 0 70px;
  }

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

  .article-grid,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 68px 0;
  }

  .section--tight {
    padding: 44px 0;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding: 48px 0 66px;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-card {
    inset: 10px 6px 0 36px;
  }

  .hero-portrait {
    padding: 30px;
  }

  .floating-note {
    bottom: 20px;
    max-width: 220px;
    padding: 14px;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .article-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .card,
  .form-card,
  .contact-panel,
  .page-hero-aside {
    padding: 24px;
  }

  /* Les cinq étapes restent aérées sur ordinateur, mais gagnent en
     compacité sur téléphone pour éviter une page inutilement longue. */
  .steps .step {
    min-height: 0;
    padding: 20px 20px 22px;
  }

  .steps .step::before {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .steps {
    gap: 18px !important;
  }

  .price-card__header {
    flex-direction: column;
  }

  .price {
    text-align: left;
  }

  .visual-panel {
    min-height: 350px;
    padding: 28px;
  }

  .visual-panel--photo {
    min-height: 430px;
    padding: 0;
  }

  .about-photo {
    min-height: 430px;
  }

  .page-hero {
    padding: 52px 0 58px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}


/* Explicit content panels replacing the former abstract body diagram */
.method-summary {
  display: grid;
  gap: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.method-summary__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 30px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.method-summary__item:last-child { border-bottom: 0; }
.method-summary__item > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-dark);
  background: var(--white);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
}
.method-summary__item strong { font-size: 1.35rem; }
.method-summary__item p { margin: 7px 0 0; color: rgba(255,255,255,.82); }

.safety-panel {
  padding: 36px;
  background: rgba(168,80,58,.10);
  border: 1px solid rgba(168,80,58,.26);
  border-radius: var(--radius-lg);
}
.safety-panel .eyebrow { color: var(--terracotta); }
.safety-panel__alert {
  margin: 24px 0 0;
  padding: 18px;
  color: #783629;
  background: rgba(255,255,255,.62);
  border-left: 4px solid var(--terracotta);
  border-radius: 10px;
  font-weight: 750;
}

.report-preview {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.report-preview__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: #7B531F;
  background: rgba(198,138,62,.16);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.report-preview__row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.report-preview__row > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--amber);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}
.report-preview__row p { margin: 5px 0 0; }

@media (max-width: 720px) {
  .method-summary__item { grid-template-columns: 48px 1fr; gap: 14px; padding: 24px; }
  .method-summary__item > span { width: 42px; height: 42px; }
  .safety-panel, .report-preview { padding: 25px; }
}


.legal-callout {
  margin-top: 24px;
  padding: 20px;
  background: rgba(62, 124, 89, 0.08);
  border: 1px solid rgba(44, 94, 66, 0.22);
  border-radius: var(--radius-sm);
}

.legal-callout p:last-child { margin-bottom: 0; }
.legal-callout a,
.legal-content a:not(.btn) {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-price-table,
.legal-data-table {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.legal-price-table > div,
.legal-data-table > div {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.legal-price-table span,
.legal-data-table span {
  color: var(--green-dark);
  font-weight: 800;
}

.legal-price-table p { margin-bottom: 0; }

.withdrawal-form {
  margin: 28px 0;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 26px rgba(34, 48, 42, 0.04);
}


.source-box {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.source-box h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.source-list {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
  padding-left: 1.35rem;
}

.source-list a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


/* Reservation and consent workflow */
.button-row--center {
  justify-content: center;
}

.numbered-list {
  display: grid;
  gap: 16px;
  margin: 26px 0;
  padding-left: 24px;
}

.numbered-list li {
  padding-left: 6px;
}

.consent-box,
.early-start-box {
  padding: 18px;
  background: rgba(62, 124, 89, 0.08);
  border: 1px solid rgba(44, 94, 66, 0.22);
  border-radius: 14px;
}

.consent-box--sensitive {
  background: rgba(198, 138, 62, 0.10);
  border-color: rgba(198, 138, 62, 0.32);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.checkbox-row + .checkbox-row {
  margin-top: 16px;
}

.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green-dark);
}

.checkbox-row a,
.legal-template a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.early-start-box[hidden] {
  display: none;
}

.legal-template {
  margin: 24px 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-left: 5px solid var(--green-dark);
  border-radius: var(--radius-sm);
}

.booking-steps .step {
  min-height: 235px;
}

@media (max-width: 720px) {
  input[type="datetime-local"] {
    min-width: 0;
  }

  .checkbox-row {
    grid-template-columns: 22px 1fr;
    font-size: 0.94rem;
  }
}


/* Information temporaire sur la reprise des consultations */
.opening-banner {
  color: var(--white);
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.opening-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px 12px;
  padding-block: 9px;
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.35;
}

.opening-banner__inner strong {
  font-weight: 850;
}

.availability-note {
  padding: 18px 0;
  color: var(--green-dark);
  background: rgba(62, 124, 89, 0.10);
  border-bottom: 1px solid rgba(44, 94, 66, 0.18);
}

.availability-note p {
  margin: 0;
  text-align: center;
}

@media (max-width: 720px) {
  .opening-banner__inner {
    align-items: center;
    flex-direction: column;
    gap: 1px;
    padding-block: 8px;
    font-size: 0.87rem;
  }
}

.mediator-card{font-style:normal;background:#F3F1E9;border-left:4px solid #3E7C59;padding:20px 22px;margin:18px 0 26px;border-radius:8px;line-height:1.75}.mediator-card a{overflow-wrap:anywhere}


/* Fil d’Ariane des articles */
.breadcrumb {
  padding: 17px 0 0;
  color: rgba(34, 48, 42, 0.76);
  background: var(--cream);
  font-size: 0.91rem;
  line-height: 1.45;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 9px;
  color: var(--amber);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--green);
}

.breadcrumb [aria-current="page"] span {
  overflow: hidden;
  max-width: 36rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb + .page-hero {
  padding-top: 48px;
}

@media (max-width: 720px) {
  .breadcrumb {
    padding-top: 14px;
    font-size: 0.84rem;
  }

  .breadcrumb [aria-current="page"] {
    flex-basis: 100%;
  }

  .breadcrumb [aria-current="page"]::before {
    margin-left: 0;
  }

  .breadcrumb [aria-current="page"] span {
    max-width: calc(100vw - 72px);
  }

  .breadcrumb + .page-hero {
    padding-top: 36px;
  }
}

/* Composants éditoriaux et liens sociaux communs */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--green-dark);
  border: 1px solid rgba(44, 94, 66, 0.32);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: var(--paper);
  border-color: var(--green);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 3px solid rgba(198, 138, 62, 0.38);
  outline-offset: 3px;
}

.social-link svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social {
  margin-top: 20px;
}

.footer-social .footer-title {
  margin-bottom: 8px;
}

.site-footer .social-link {
  color: var(--paper);
  background: transparent;
  border-color: rgba(243, 241, 233, 0.42);
}

.site-footer .social-link:hover {
  color: var(--white);
  background: rgba(243, 241, 233, 0.1);
  border-color: var(--paper);
}

.essential-summary {
  margin: 28px 0 34px;
  padding: 24px 26px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 20px;
}

.essential-summary h2 {
  margin: 0 0 14px !important;
  color: var(--white) !important;
  font-size: 1.32rem;
}

.essential-summary ul {
  margin: 0;
  padding-left: 1.2rem;
}

.essential-summary li {
  margin: 9px 0;
}

.evidence-ranking {
  margin: 28px 0 36px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(44, 94, 66, 0.2);
  border-radius: 20px;
}

.evidence-ranking h2 {
  margin: 0 0 18px !important;
  color: var(--green-dark) !important;
}

.evidence-levels {
  display: grid;
  gap: 12px;
}

.evidence-level {
  padding: 15px 17px;
  background: var(--paper);
  border-left: 5px solid var(--green);
  border-radius: 14px;
}

.evidence-level strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.evidence-level--amber {
  border-left-color: var(--amber);
}

.evidence-level--risk {
  border-left-color: var(--terracotta);
}

.article-visual--evidence {
  position: static !important;
  max-width: 760px;
  margin: 30px auto 38px !important;
}

.deep-dive {
  margin: 38px 0;
  padding: 0;
  overflow: hidden;
  background: #f7f6f0;
  border: 1px solid rgba(44, 94, 66, 0.2);
  border-radius: 18px;
}

.deep-dive > summary {
  padding: 20px 22px;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
  list-style-position: inside;
}

.deep-dive__content {
  padding: 0 22px 22px;
}

.deep-dive__content > :first-child {
  margin-top: 0;
}

.term-explanation {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-style: italic;
}

/* Choix explicite de la modalité de réponse du formulaire de rendez-vous */
.choice-group {
  margin: 0;
  padding: 18px;
  background: rgba(62, 124, 89, 0.08);
  border: 1px solid rgba(44, 94, 66, 0.22);
  border-radius: 14px;
}

.choice-group legend {
  margin-bottom: 12px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.choice-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.choice-row + .choice-row {
  margin-top: 12px;
}

.choice-row input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green-dark);
}

.choice-group .form-help {
  margin-top: 12px;
}

@media (max-width: 520px) {
  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .social-link {
    justify-content: center;
    width: 100%;
  }

  .essential-summary,
  .evidence-ranking {
    padding: 21px;
  }
}

/* Bloc de repli affiché lorsque l'application de messagerie ne s'ouvre pas.
   Ces règles vivaient dans finalisation-20260722.css ; elles sont reprises ici
   pour que le repli reste lisible même si ce fichier venait à manquer. */
.mail-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.mail-fallback__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(44, 94, 66, 0.32);
  border-radius: 999px;
  background: #fff;
  color: #2c5e42;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.mail-fallback__button:hover,
.mail-fallback__button:focus-visible {
  border-color: #2c5e42;
  background: #f3f1e9;
}

@media (max-width: 520px) {
  .mail-fallback {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Pastilles de niveau de preuve. Les modificateurs étaient utilisés dans les
   articles du dossier microbiote sans jamais avoir été définis : toutes les
   pastilles s'affichaient en vert, y compris « Non démontré ». */
.pill--green {
  color: #2c5e42;
  background: rgba(62, 124, 89, 0.14);
}

.pill--amber {
  color: #8a5a1e;
  background: rgba(198, 138, 62, 0.18);
}

.pill--red {
  color: #8c3d2a;
  background: rgba(168, 80, 58, 0.16);
}

.pill--grey {
  color: #56645c;
  background: rgba(86, 100, 92, 0.14);
}

/* Encadré « À retenir » utilisé dans les articles du dossier. */
.key-point {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 5px solid #3e7c59;
  border-radius: 0 16px 16px 0;
  background: #f3f1e9;
}

.key-point strong {
  display: block;
  margin-bottom: 6px;
  color: #2c5e42;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.key-point p:last-child {
  margin-bottom: 0;
}

/* Appels de note et retours vers le texte, repris du gabarit des articles
   du dossier microbiote, où ces règles n'existaient qu'en style de page. */
.ref {
  font-size: 0.68em;
  line-height: 0;
  vertical-align: super;
  white-space: nowrap;
}

.ref a {
  text-decoration: none;
}

.ref-back {
  color: #3e7c59;
  text-decoration: none;
  font-weight: 700;
}
/* 2026-09-20 — mobile: alignement strict des 3 repères de confiance.
   Une grille fixe empêche le troisième bloc de se décaler selon la longueur du texte. */
@media (max-width: 760px) {
  .trust-grid .trust-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
  }

  .trust-grid .trust-item > .icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin: 0;
    justify-self: start;
  }

  .trust-grid .trust-item > div {
    min-width: 0;
    margin: 0;
    padding: 0;
  }
}

