:root {
  --primary: #2b3c2b;
  --primary-deep: #172b1d;
  --primary-light: #3d5a3d;
  --accent: #8b7355;
  --accent-warm: #b39560;
  --accent-soft: #e6d9c2;
  --light: #f5f0e8;
  --light-warm: #eee5d8;
  --white: #fefdfb;
  --text: #2e2e2e;
  --text-light: #6b6560;
  --border: #ddd5c8;
  --success: #1e6b43;
  --error: #a13e32;
  --shadow-sm: 0 8px 24px rgba(30, 41, 31, 0.08);
  --shadow-md: 0 20px 50px rgba(30, 41, 31, 0.13);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --container: 1140px;
  --measure: 67ch;
  --header-height: 78px;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-wrap: anywhere;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--primary-light);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: auto;
}

a:hover {
  color: var(--accent);
}

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

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

:focus-visible {
  outline: 3px solid #d7aa52;
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.narrow {
  max-width: 760px;
}

.section {
  padding: clamp(74px, 8vw, 112px) 0;
}

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

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

.section--warm {
  background: var(--light-warm);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.84);
}

.section--dark::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.07) 0 9px, transparent 10px);
  background-size: 220px 220px;
  content: "";
  pointer-events: none;
}

.section--dark > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.section--dark h2,
.section--dark h3,
.page-hero h1 {
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.page-hero .eyebrow {
  color: #e1bf80;
}

.lead {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.muted {
  color: var(--text-light);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--primary-deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(31, 55, 36, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(23, 43, 29, 0.985);
  box-shadow: 0 12px 30px rgba(10, 24, 14, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin-inline: auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  color: #f5e5c4;
  font-size: 1.2rem;
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(15px, 1.8vw, 28px);
}

.primary-nav > .header-phone,
.primary-nav > .button {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.language-link,
.header-phone {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.language-link:hover,
.header-phone:hover {
  color: #f0d39d;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.language-link {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-sm);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--accent-warm);
  color: #172418;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #c0a16a;
  color: #172418;
  box-shadow: var(--shadow-sm);
}

.button:active {
  transform: scale(0.96);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.button--dark {
  background: var(--primary-deep);
  color: var(--white);
}

.button--dark:hover {
  background: var(--primary-light);
  color: var(--white);
}

.button--text {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.button--text:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.microcopy {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 66px) 0 86px;
  background: radial-gradient(circle at 80% 10%, rgba(179, 149, 96, 0.15), transparent 38%), linear-gradient(128deg, var(--primary-deep), #243e2a 72%, #2e4933);
  color: rgba(255, 255, 255, 0.84);
}

.page-hero--service {
  min-height: 610px;
}

.page-hero--article {
  min-height: 520px;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 72px;
}

.page-hero > .container {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
}

.page-hero__content {
  min-width: 0;
  max-width: 720px;
}

.page-hero__content .lead {
  max-width: 56ch;
}

.page-hero__support {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.55;
}

.page-hero__visual {
  position: relative;
  width: 100%;
  margin: 0;
  transform: translateY(18px);
}

.page-hero__visual::before {
  position: absolute;
  inset: -17px 17px 17px -17px;
  border: 1px solid rgba(226, 195, 139, 0.5);
  border-radius: var(--radius-lg);
  content: "";
}

.page-hero__visual img {
  position: relative;
  width: 100%;
  height: min(37vw, 480px);
  min-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 30px 65px rgba(7, 18, 10, 0.3);
}

.page-hero--article .page-hero__visual img {
  height: 335px;
  min-height: 0;
}

.breadcrumb {
  margin-bottom: 34px;
  font-size: 0.91rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.46);
  content: "/";
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.hero-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
}

.grid-2,
.grid-3,
.grid-4,
.grid-6 {
  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));
}

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

.card,
.path-card,
.service-card,
.principle-card,
.process-step,
.scope-item,
.image-card,
.focus-card,
.checklist-card,
.editorial-note,
.warning-card,
.author-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.path-card,
.service-card,
.principle-card,
.process-step,
.scope-item,
.focus-card,
.checklist-card,
.editorial-note,
.warning-card,
.author-card {
  padding: 30px;
}

.path-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 38px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--white), #f8f4ed);
}

.path-card:nth-child(2) {
  background: linear-gradient(145deg, #fffdf7, #eef1e9);
}

.path-card::before {
  width: 48px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 4px;
  background: var(--accent-warm);
  content: "";
}

.path-card .button-row {
  margin-top: auto;
  padding-top: 26px;
}

.transparency-note {
  max-width: 880px;
  margin: 30px auto 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent-warm);
  background: rgba(255, 255, 255, 0.54);
  color: var(--text-light);
  font-size: 0.96rem;
}

.service-card,
.principle-card,
.process-step,
.scope-item {
  height: 100%;
}

.service-card,
.process-step {
  box-shadow: 0 10px 30px rgba(35, 49, 36, 0.055);
}

.service-card {
  border-top: 3px solid var(--accent-warm);
}

.service-card p,
.path-card p,
.section-heading > p:not(.eyebrow) {
  max-width: var(--measure);
  text-wrap: pretty;
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.scope-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
}

.scope-item {
  border: 0;
  border-radius: 0;
}

.scope-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.image-card {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.image-card__body {
  padding: 24px;
}

.image-card__body h3 {
  font-size: 1.55rem;
}

.image-card__body p {
  color: var(--text-light);
  font-size: 0.98rem;
}

.split-layout,
.about-grid,
.contact-grid,
.author-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
}

.checklist-card,
.editorial-note,
.warning-card {
  border-color: #d8c7aa;
  background: #f1e6d4;
}

.checklist-card h3,
.warning-card h3 {
  color: var(--primary-deep);
}

.check-list,
.plain-list,
.source-list {
  padding-left: 1.25rem;
}

.check-list li,
.plain-list li,
.source-list li {
  margin-bottom: 10px;
}

.check-list li::marker,
.plain-list li::marker {
  color: var(--accent);
  font-weight: 800;
}

.about-photo-wrap {
  position: relative;
  max-width: 500px;
}

.about-photo-wrap::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 62%;
  height: 48%;
  border: 1px solid var(--accent-warm);
  border-radius: var(--radius-md);
  content: "";
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  padding: 3px 12px;
  border-inline-start: 2px solid var(--accent-warm);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.table-wrap:focus-visible {
  outline-offset: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

caption {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-align: left;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  overflow-wrap: normal;
  word-break: normal;
}

th {
  background: var(--light);
  color: var(--primary-deep);
  font-size: 0.95rem;
}

tbody tr:nth-child(even) {
  background: #faf7f1;
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 27px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 780px;
  padding: 0 54px 24px 0;
  color: var(--text-light);
}

.manifesto {
  padding: 90px 0;
}

.manifesto .narrow {
  position: relative;
  z-index: 1;
}

.contact-section {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.78);
}

.contact-section h2,
.contact-section h3 {
  color: var(--white);
}

.contact-grid {
  align-items: start;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

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

.form-field {
  min-width: 0;
}

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

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: max(1rem, 16px);
}

.form-hint {
  display: block;
  margin-block-start: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.4;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #e1bf80;
  outline: 3px solid rgba(225, 191, 128, 0.28);
  outline-offset: 0;
}

.consent-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.88rem;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.consent-field a,
.contact-card a {
  color: #e7c889;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.form-status.is-success {
  color: #98e0b7;
}

.form-status.is-error {
  color: #ffbbb0;
}

.contact-card {
  padding-top: 10px;
}

.contact-details {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  margin-bottom: 10px;
}

.site-footer {
  padding: 56px 0 26px;
  background: #102218;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: #e7c889;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: #20c968;
  color: #0c351f;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.whatsapp-float:hover {
  background: #45df84;
  color: #0c351f;
}

.whatsapp-float.is-contact-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(31, 55, 36, 0.985);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner:not([hidden]) ~ .whatsapp-float {
  bottom: 100px;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-copy {
  margin: 0;
}

.cookie-copy a {
  color: #e7c889;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.88rem;
}

.article-intro {
  padding-bottom: 54px;
}

.quick-checklist {
  counter-reset: checklist;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.quick-checklist li {
  counter-increment: checklist;
  position: relative;
  min-height: 72px;
  padding: 16px 18px 16px 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(30, 41, 31, 0.045);
  line-height: 1.42;
}

.quick-checklist li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--accent-warm);
  border-radius: 50%;
  color: var(--primary-deep);
  content: counter(checklist);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  max-height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #f8f4ed;
  font-size: 0.88rem;
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-deep);
}

.article-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.article-toc li {
  margin-bottom: 8px;
}

.article-toc a {
  color: var(--text-light);
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--accent);
}

.article-toc a:focus-visible {
  color: var(--primary-deep);
}

.mobile-toc {
  display: none;
  margin-bottom: 36px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light);
}

.mobile-toc summary {
  color: var(--primary-deep);
  font-weight: 800;
  cursor: pointer;
}

.mobile-toc ol {
  margin: 16px 0 0;
  padding-left: 1.2rem;
}

.article-main {
  min-width: 0;
}

.article-section {
  padding: 22px 0 62px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.article-section p,
.article-section li {
  max-width: var(--measure);
}

.article-section p {
  text-wrap: pretty;
}

.article-section + .article-section {
  border-top: 1px solid var(--border);
  padding-top: 62px;
}

.article-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-section h3 {
  margin-top: 36px;
}

.article-section p,
.article-section li {
  max-width: var(--measure);
}

.source-note {
  padding: 12px 16px;
  border-left: 3px solid var(--accent-warm);
  background: var(--light);
  color: var(--text-light);
  font-size: 0.9rem;
}

.records-diagram {
  margin: 38px 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light);
}

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

.records-diagram__card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.records-diagram__card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--primary-deep);
}

.records-diagram figcaption {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.92rem;
  text-align: center;
}

.field-figure {
  margin: 34px 0;
}

.field-figure img {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.field-figure figcaption {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 0.92rem;
}

.decision-table td {
  min-width: 150px;
  height: 80px;
}

.decision-table {
  min-width: 1050px;
}

.table-hint {
  display: none;
  color: var(--text-light);
  font-size: 0.92rem;
}

.article-intro .container.narrow {
  max-width: 1050px;
}

.article-intro .focus-card {
  max-width: 900px;
  margin-bottom: 54px;
  border-left: 4px solid var(--accent-warm);
  box-shadow: var(--shadow-sm);
}

.article-intro .focus-card p {
  max-width: var(--measure);
}

.author-grid {
  align-items: start;
}

.author-card {
  height: 100%;
}

.source-list a {
  word-break: break-word;
}

.print-url {
  display: none;
}

@media (max-width: 1100px) {
  .header-phone,
  .nav-links li:nth-child(6) {
    display: none;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 22px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--primary-deep);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links li,
  .nav-links li:nth-child(6),
  .header-phone {
    display: block;
  }

  .nav-links a,
  .header-phone {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .primary-nav .header-phone {
    display: block;
    margin-top: 10px;
  }

  .primary-nav > .button {
    display: inline-flex;
    width: 100%;
    margin-top: 16px;
  }

  .header-actions .button,
  .header-actions .header-phone {
    display: none;
  }

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

  .article-shell {
    display: block;
  }

  .article-toc {
    display: none;
  }

  .mobile-toc {
    display: block;
  }

  .page-hero > .container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
    gap: 26px;
  }

  .page-hero__visual img {
    height: 360px;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .page-hero,
  .page-hero--service,
  .page-hero--article {
    min-height: auto;
    padding: calc(var(--header-height) + 58px) 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 10vw, 4.15rem);
  }

  .page-hero > .container {
    grid-template-columns: 1fr;
  }

  .page-hero__visual {
    max-width: 520px;
    margin: 8px auto 0;
    transform: none;
  }

  .page-hero__visual img,
  .page-hero--article .page-hero__visual img {
    height: 230px;
  }

  .page-hero__visual::before {
    inset: -9px 9px 9px -9px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6,
  .scope-strip,
  .split-layout,
  .about-grid,
  .contact-grid,
  .author-grid,
  .form-grid,
  .quick-checklist,
  .records-diagram__cards {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
    padding: 28px;
  }

  .path-card .button-row {
    margin-top: 10px;
  }

  .about-photo-wrap {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-photo-wrap::before {
    right: -10px;
  }

  .contact-form {
    padding: 24px;
  }

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

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

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .button {
    flex: 1 1 0;
  }

  .cookie-banner:not([hidden]) ~ .whatsapp-float {
    bottom: 176px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .whatsapp-float.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .whatsapp-float.is-contact-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .table-wrap--responsive {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-wrap--responsive table,
  .table-wrap--responsive thead,
  .table-wrap--responsive tbody,
  .table-wrap--responsive tr,
  .table-wrap--responsive th,
  .table-wrap--responsive td {
    display: block;
  }

  .table-wrap--responsive table {
    min-width: 0;
  }

  .table-wrap--responsive thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .table-wrap--responsive caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .table-wrap--responsive tr {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .table-wrap--responsive td {
    min-width: 0;
    height: auto;
    padding: 13px 16px;
  }

  .table-wrap--responsive td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--text-light);
    content: attr(data-label);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .table-wrap--scroll {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
  }

  .table-wrap--scroll table {
    display: table;
    min-width: 1050px;
  }

  .table-wrap--scroll thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .table-wrap--scroll tbody {
    display: table-row-group;
  }

  .table-wrap--scroll tr {
    display: table-row;
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .table-wrap--scroll th,
  .table-wrap--scroll td {
    display: table-cell;
    min-width: 150px;
    height: 80px;
    border-bottom: 1px solid var(--border);
  }

  .table-wrap--scroll td::before {
    display: none;
  }

  .table-wrap--scroll caption {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .table-hint {
    display: block;
  }
}

@media (max-width: 440px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    font-size: 1.4rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-link {
    min-width: 40px;
    min-height: 40px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .path-card,
  .service-card,
  .principle-card,
  .process-step,
  .scope-item,
  .focus-card,
  .checklist-card,
  .editorial-note,
  .warning-card,
  .author-card {
    padding: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  @page {
    margin: 16mm;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .breadcrumb,
  .article-toc,
  .mobile-toc,
  .button,
  .button-row,
  .contact-section,
  .manifesto,
  .cookie-banner,
  .whatsapp-float {
    display: none !important;
  }

  .page-hero,
  .page-hero--article,
  .section,
  .article-section {
    min-height: 0;
    padding: 12pt 0;
    background: #fff !important;
    color: #111;
  }

  .page-hero::before,
  .section--dark::before {
    display: none;
  }

  .page-hero h1,
  .page-hero .eyebrow,
  .page-hero .lead,
  .page-hero__support,
  .section--dark h2,
  .section--dark p {
    color: #111;
  }

  .article-shell {
    display: block;
  }

  .article-section {
    break-inside: avoid;
  }

  .table-wrap {
    overflow: visible;
    box-shadow: none;
  }

  .table-wrap--responsive table {
    display: table;
  }

  .table-wrap--responsive thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .table-wrap--responsive tbody {
    display: table-row-group;
  }

  .table-wrap--responsive tr {
    display: table-row;
  }

  .table-wrap--responsive th,
  .table-wrap--responsive td {
    display: table-cell;
  }

  .table-wrap--responsive td::before {
    display: none;
  }

  a {
    color: #111;
  }

  .print-url {
    display: block;
    margin-top: 18pt;
    font-size: 9pt;
  }
}
