:root {
  --ink: #202b27;
  --ink-soft: #52615b;
  --forest: #233d32;
  --forest-2: #17342f;
  --teal: #0c5960;
  --olive: #697833;
  --olive-dark: #4f5d24;
  --sage: #e9efe4;
  --sage-2: #d9e2cf;
  --paper: #f7f2e8;
  --paper-2: #ece4d3;
  --clay: #a96343;
  --clay-dark: #884b32;
  --surface: #fffefa;
  --white: #ffffff;
  --line: rgba(32, 43, 39, 0.14);
  --line-strong: rgba(32, 43, 39, 0.22);
  --shadow: 0 22px 54px rgba(32, 43, 39, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--olive), var(--clay), var(--teal));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
li,
address,
label,
button {
  overflow-wrap: anywhere;
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - 1160px) / 2));
  background: rgba(255, 254, 250, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 142px;
  height: auto;
}

.brand img.brand-globe {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  opacity: 0.92;
  transform: rotate(var(--orb-progress, 0deg));
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
  will-change: transform;
}

.brand:hover img.brand-globe,
.brand:focus-visible img.brand-globe {
  opacity: 1;
  transform: rotate(var(--orb-progress, 0deg)) scale(1.08);
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  padding: 9px 10px;
  color: var(--forest);
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--surface);
  background: var(--forest);
  outline: none;
}

.site-nav a.is-active,
.site-nav a[aria-current="location"] {
  color: var(--surface);
  background: var(--olive);
}

.language-switch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px;
  background: rgba(233, 239, 228, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-option {
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 8px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  border-radius: 6px;
}

.language-option:hover,
.language-option:focus-visible,
.language-option[aria-current="page"] {
  color: var(--surface);
  background: var(--forest);
  outline: none;
}

.global-orb {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.global-orb-button {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(255, 254, 250, 0.9);
  border: 1px solid rgba(32, 43, 39, 0.16);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(32, 43, 39, 0.18);
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(16px);
}

.global-orb-progress {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) var(--orb-progress, 0deg), rgba(32, 43, 39, 0.12) 0deg);
}

.global-orb-progress::after {
  position: absolute;
  inset: 4px;
  background: rgba(255, 254, 250, 0.94);
  border-radius: 50%;
  content: "";
}

.global-orb-button img {
  position: relative;
  z-index: 1;
  width: 39px;
  height: 39px;
  animation: globe-breathe 6s ease-in-out infinite;
  transition: transform 220ms ease;
}

.global-orb-button:hover img,
.global-orb-button:focus-visible img,
.global-orb.is-open .global-orb-button img {
  transform: rotate(15deg) scale(1.08);
}

.global-orb-button:focus-visible {
  outline: 3px solid rgba(12, 89, 96, 0.22);
  outline-offset: 5px;
}

.global-orb-menu {
  position: absolute;
  right: 0;
  bottom: 84px;
  min-width: 188px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 254, 250, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(32, 43, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.global-orb.is-open .global-orb-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.global-orb-menu a {
  padding: 8px 10px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  border-radius: 6px;
}

.global-orb-menu a:hover,
.global-orb-menu a:focus-visible,
.global-orb-menu a.is-active,
.global-orb-menu a[aria-current="location"] {
  color: var(--surface);
  background: var(--olive);
  outline: none;
}

@keyframes globe-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-1px) rotate(5deg);
  }
}

.hero {
  position: relative;
  min-height: calc(78svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.98) 0%, rgba(255, 254, 250, 0.94) 38%, rgba(247, 242, 232, 0.66) 64%, rgba(247, 242, 232, 0.18) 100%),
    var(--paper);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.54;
  filter: saturate(0.9) contrast(0.95) sepia(0.05);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.35), rgba(255, 254, 250, 0.88)),
    linear-gradient(90deg, rgba(255, 254, 250, 0.86), rgba(255, 254, 250, 0.22));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 68px 0 58px;
}

.keep-together {
  white-space: nowrap;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section-kicker::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 720px);
  box-sizing: border-box;
  margin: 0 0 14px;
  padding: 7px 11px;
  color: rgba(32, 43, 39, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(32, 43, 39, 0.1);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(32, 43, 39, 0.08);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
  font-size: 4.55rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 790px;
  margin: 18px 0 0;
  color: var(--teal);
  font-size: 1.85rem;
  font-weight: 850;
  line-height: 1.2;
}

.subtitle-line {
  white-space: nowrap;
}

.hero-description {
  max-width: 735px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.section {
  padding: 92px 0;
}

#source,
#site,
#specialities,
#sectors,
#partners,
#contact {
  scroll-margin-top: 94px;
}

.section-copy {
  max-width: 630px;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 0;
  color: var(--forest);
  font-size: 3.1rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy p:not(.section-kicker),
.contact-copy address {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 1.01rem;
}

.service-list li {
  padding-left: 3px;
}

.section-copy a {
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.editorial-grid,
.site-grid,
.list-and-image {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.image-panel,
.wide-image {
  margin: 0;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid rgba(32, 43, 39, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform:
    perspective(1100px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.image-panel {
  aspect-ratio: 5 / 4;
}

.image-panel-tall {
  aspect-ratio: 4 / 5;
}

.specialty-image {
  aspect-ratio: 16 / 10;
}

.wide-image {
  aspect-ratio: 21 / 9;
}

.image-panel img,
.wide-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96) sepia(0.05);
  transform:
    scale(var(--image-scale, 1.025))
    translate3d(var(--image-shift-x, 0), var(--image-shift-y, 0), 0);
  transition: transform 260ms ease;
}

.image-panel:hover,
.wide-image:hover {
  box-shadow: 0 28px 66px rgba(32, 43, 39, 0.16);
}

.section-source {
  background:
    linear-gradient(180deg, var(--surface), var(--white));
}

.section-site {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(35, 61, 50, 0.98), rgba(12, 89, 96, 0.94)),
    var(--forest);
}

.section-site .image-panel {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.section-site .section-copy h2,
.section-site .section-copy p:not(.section-kicker) {
  color: var(--surface);
}

.section-site .section-copy p:not(.section-kicker) {
  color: rgba(255, 254, 250, 0.82);
}

.section-site .service-list {
  color: rgba(255, 254, 250, 0.82);
}

.section-site .section-kicker {
  color: #f0c49d;
}

.section-site .section-copy a {
  color: var(--surface);
}

.section-specialities {
  background: var(--surface);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-intro {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.structured-list,
.sector-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.structured-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.structured-list li {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 20px 22px;
  color: var(--forest);
  font-weight: 900;
  background: rgba(255, 254, 250, 0.92);
}

.scope-label {
  display: block;
  color: var(--clay);
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.specialties-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.specialties-copy {
  display: grid;
  gap: 20px;
}

.specialty-primary {
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 28px 30px;
  color: var(--forest);
  background:
    linear-gradient(90deg, rgba(233, 239, 228, 0.9), rgba(247, 242, 232, 0.94));
  border: 1px solid var(--line);
  border-left: 5px solid var(--olive);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(32, 43, 39, 0.08);
}

.specialty-primary h3,
.specialty-service-heading h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.65rem;
  line-height: 1.15;
}

.specialty-primary .scope-label {
  color: var(--olive-dark);
}

.specialty-service-group {
  border-top: 1px solid var(--line);
}

.specialty-service-heading {
  padding: 18px 0 14px;
}

.specialty-service-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--clay-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.specialty-service-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.specialty-service-list li {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--forest);
  font-weight: 850;
  background: rgba(255, 254, 250, 0.92);
}

.section-sectors {
  background:
    linear-gradient(180deg, var(--sage), #f5f7f2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.sector-list li {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--forest);
  font-weight: 900;
  text-align: center;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid rgba(32, 43, 39, 0.11);
  border-radius: 8px;
}

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

.partner-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.partner-row {
  display: grid;
  grid-template-columns: minmax(390px, 450px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.partner-logo {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(32, 43, 39, 0.11);
  outline: none;
  transform: translateY(-1px);
}

.partner-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 94px;
  object-fit: contain;
}

.partner-logo-kracht {
  min-height: 172px;
  padding: 26px 20px;
}

.partner-logo-kracht img {
  width: min(100%, 420px);
  max-height: none;
}

.partner-logo-rema {
  min-height: 230px;
  padding: 24px 34px;
}

.partner-logo-rema img {
  width: min(100%, 360px);
  max-height: none;
}

.partner-copy h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.65rem;
  line-height: 1.15;
}

.partner-copy p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 760;
}

.partner-copy .partner-website {
  margin-top: 12px;
}

.partner-website a {
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.partner-copy .partner-trademark {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.partner-detail-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 760;
}

.section-contact {
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.96), rgba(233, 239, 228, 0.84)),
    url("assets/hilwee-banner.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 540px);
  justify-content: start;
}

.contact-copy {
  max-width: 430px;
  padding: 32px;
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy address {
  color: var(--forest);
  font-style: normal;
  font-weight: 750;
}

.site-footer {
  padding: 34px 0;
  color: var(--surface);
  background: var(--forest-2);
}

.footer-inner {
  width: min(1160px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin: 0 auto;
}

.footer-inner img {
  width: 142px;
  padding: 10px;
  background: rgba(255, 254, 250, 0.9);
  border-radius: 8px;
}

.footer-copy {
  display: grid;
  gap: 9px;
  justify-items: end;
}

.footer-inner p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 254, 250, 0.72);
  font-size: 0.92rem;
  text-align: right;
}

.footer-inner .footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 254, 250, 0.86);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--surface);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.legal-hero {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.98), rgba(233, 239, 228, 0.88)),
    url("assets/hilwee-banner.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

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

.legal-hero p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-summary {
  margin: 0;
  padding: 20px;
  color: var(--forest);
  font-style: normal;
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  border-radius: 8px;
}

.legal-summary strong {
  display: block;
  margin-bottom: 7px;
}

.legal-content {
  padding: 76px 0;
  background: var(--surface);
}

.legal-document {
  max-width: 960px;
}

.legal-content-plain {
  background:
    linear-gradient(180deg, var(--paper) 0, var(--paper) 248px, var(--surface) 248px);
}

.legal-exact {
  padding: 32px;
  background: rgba(255, 254, 250, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pasted-legal h1 {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.pasted-legal h1:not(:first-child) {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.pasted-legal p {
  max-width: 850px;
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.pasted-legal strong {
  color: var(--forest);
}

.pasted-legal a {
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.pasted-legal meta {
  display: none;
}

.legal-logo {
  width: 170px;
  height: auto;
  margin-bottom: 24px;
}

.legal-pre {
  margin: 0;
  color: var(--ink-soft);
  font: inherit;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: normal;
  overflow-wrap: anywhere;
}

.legal-disclosure-pre::first-line {
  color: var(--forest);
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1.08;
}

.gtc-layout {
  display: grid;
  grid-template-columns: minmax(220px, 268px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.gtc-sidebar {
  position: sticky;
  top: 96px;
}

.gtc-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.gtc-print-button {
  min-height: 36px;
  padding: 7px 12px;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gtc-print-button:hover {
  color: var(--forest);
  background: rgba(106, 120, 53, 0.08);
  border-color: var(--line-strong);
}

.gtc-print-button:focus-visible {
  outline: 2px solid rgba(105, 120, 51, 0.38);
  outline-offset: 2px;
}

.gtc-print-button:active {
  background: rgba(106, 120, 53, 0.13);
}

.gtc-layout .toc {
  overflow: hidden;
  background: rgba(255, 254, 250, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gtc-layout .toc-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.gtc-layout .toc-heading::-webkit-details-marker,
.gtc-layout .toc-summary::-webkit-details-marker {
  display: none;
}

.gtc-layout .toc-heading:hover,
.gtc-layout .toc-heading:focus-visible,
.gtc-layout .toc-summary:hover,
.gtc-layout .toc-summary:focus-visible {
  background: rgba(106, 120, 53, 0.09);
  outline: none;
}

.gtc-layout .toc-panel-label {
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
}

.gtc-layout .toc-panel-label::before {
  content: "Show";
}

.gtc-layout .toc-panel[open] .toc-panel-label::before {
  content: "Hide";
}

.gtc-layout .toc-panel-label::after {
  color: var(--olive);
  font-weight: 900;
  content: " +";
}

.gtc-layout .toc-panel[open] .toc-panel-label::after {
  content: " -";
}

.gtc-layout .toc-start,
.gtc-layout .toc-main,
.gtc-layout .toc-sub {
  display: block;
  color: var(--forest);
  border-radius: 6px;
  text-decoration: none;
  text-wrap: balance;
}

.gtc-layout .toc-start:hover,
.gtc-layout .toc-main:hover,
.gtc-layout .toc-sub:hover,
.gtc-layout .toc-start:focus-visible,
.gtc-layout .toc-main:focus-visible,
.gtc-layout .toc-sub:focus-visible {
  color: var(--teal);
  background: rgba(106, 120, 53, 0.09);
  outline: none;
}

.gtc-layout .toc-start {
  margin: 0 7px 4px;
  padding: 5px 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 760;
}

.gtc-layout .toc-grid {
  display: grid;
  gap: 1px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  padding: 0 7px 7px;
}

.gtc-layout .toc-group {
  padding: 2px 0;
}

.gtc-layout .toc-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  border-radius: 6px;
  cursor: pointer;
  list-style: none;
}

.gtc-layout .toc-main {
  flex: 1;
  padding: 5px 7px;
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.28;
}

.gtc-layout .toc-summary .toc-main:hover,
.gtc-layout .toc-summary .toc-main:focus-visible {
  background: transparent;
}

.gtc-layout .expand-chip {
  flex: 0 0 auto;
  margin: 5px 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.gtc-layout .expand-chip::after {
  color: var(--olive);
  font-weight: 900;
  content: " +";
}

.gtc-layout .toc-details[open] .expand-chip::after {
  content: " -";
}

.gtc-layout .toc-children {
  margin: 2px 0 4px;
}

.gtc-layout .toc-sub {
  margin-left: 10px;
  padding: 3px 7px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.25;
}

.gtc-document {
  color: var(--ink);
  font-size: 0.8rem;
}

.gtc-document .document-title {
  margin: 0 auto;
  color: var(--forest);
  font-size: clamp(1.38rem, 2.2vw, 1.78rem);
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.gtc-document .company-block {
  margin: 14px 0 20px;
  padding: 10px 0 14px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  line-height: 1.48;
  text-align: center;
}

.gtc-document .company-block a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gtc-document h2,
.gtc-document h3 {
  scroll-margin-top: 96px;
  color: var(--forest);
  text-wrap: balance;
}

.gtc-document h2 {
  margin: 22px 0 9px;
  padding: 10px 12px;
  background: rgba(106, 120, 53, 0.08);
  border-left: 4px solid var(--olive);
  border-radius: 6px;
  font-size: 0.93rem;
  line-height: 1.26;
}

.gtc-document h3 {
  margin: 17px 0 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.28;
}

.gtc-document p {
  max-width: 740px;
  margin: 0 0 9px;
}

.gtc-document ul {
  max-width: 720px;
  margin: -1px 0 12px;
  padding-left: 22px;
}

.gtc-document li {
  margin: 3px 0;
  padding-left: 3px;
}

.gtc-document .closing-acknowledgement {
  margin: 24px auto 0;
  text-align: center;
  font-weight: 850;
}

.gtc-document .gtc-updated {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-style: italic;
  text-align: center;
}

.legal-section {
  padding: 29px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 1.45rem;
  line-height: 1.25;
}

.legal-section h3 {
  margin: 22px 0 9px;
  color: var(--olive-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.legal-section p {
  max-width: 850px;
  margin: 0;
  color: var(--ink-soft);
}

.legal-section p + p,
.legal-section ul + p {
  margin-top: 13px;
}

.legal-section a,
.legal-summary a {
  color: var(--teal);
  font-weight: 900;
}

.legal-list {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.legal-updated {
  color: var(--forest) !important;
  font-weight: 900;
}

.enhanced .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.enhanced .reveal.delay-1 {
  transition-delay: 80ms;
}

.enhanced .reveal.delay-2 {
  transition-delay: 140ms;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 86px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .language-switch {
    align-self: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 58px 0 50px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .editorial-grid,
  .site-grid,
  .list-and-image,
  .specialties-layout,
  .gtc-layout,
  .legal-hero-grid {
    grid-template-columns: 1fr;
  }

  .gtc-sidebar {
    position: static;
  }

  .gtc-layout .toc-grid {
    max-height: none;
  }

  .gtc-document p,
  .gtc-document ul {
    max-width: none;
  }

  .section-copy {
    max-width: none;
  }

  .image-panel-tall {
    aspect-ratio: 16 / 10;
  }

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

  .partner-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-copy {
    order: -1;
  }

  .partner-logo-kracht {
    min-height: 150px;
  }

  .partner-logo-rema {
    min-height: 220px;
  }

  #source,
  #site,
  #specialities,
  #sectors,
  #partners,
  #contact {
    scroll-margin-top: 116px;
  }
}

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

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

  .image-panel,
  .wide-image,
  .image-panel img,
  .wide-image img,
  .brand img.brand-globe,
  .global-orb-button img {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .footer-inner {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    width: 124px;
  }

  .site-nav {
    gap: 0;
    flex-wrap: wrap;
    white-space: normal;
  }

  .site-nav a {
    padding: 6px 7px;
    font-size: 0.8rem;
  }

  .global-orb {
    right: 16px;
    bottom: 16px;
  }

  .global-orb-button {
    width: 60px;
    height: 60px;
  }

  .global-orb-button img {
    width: 33px;
    height: 33px;
  }

  .global-orb-menu {
    bottom: 72px;
    max-width: calc(100vw - 32px);
  }

  .hero-inner {
    padding: 42px 0 40px;
  }

  .hero h1 {
    font-size: 2.42rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .legal-hero h1 {
    font-size: 2.08rem;
  }

  .editorial-grid,
  .site-grid,
  .list-and-image,
  .specialties-layout {
    gap: 30px;
  }

  .wide-image img {
    aspect-ratio: 16 / 10;
  }

  .structured-list,
  .sector-list {
    grid-template-columns: 1fr;
  }

  .structured-list li {
    min-height: 74px;
  }

  .partner-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-copy {
    order: -1;
  }

  .partner-logo {
    min-height: 110px;
    padding: 18px;
  }

  .partner-logo-kracht {
    min-height: 132px;
  }

  .partner-logo-kracht img {
    width: 100%;
  }

  .partner-logo-rema {
    min-height: 180px;
  }

  .partner-logo-rema img {
    width: min(100%, 310px);
  }

  .contact-copy {
    padding: 22px;
  }

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

  .footer-copy {
    justify-items: start;
  }

  .footer-inner p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-content {
    padding: 54px 0;
  }

  .legal-exact {
    padding: 18px;
  }

  .pasted-legal h1 {
    font-size: 2rem;
  }

  .legal-disclosure-pre::first-line {
    font-size: 2rem;
  }

  .legal-logo {
    width: 140px;
  }

  .gtc-content {
    padding-top: 32px;
  }

  .gtc-layout {
    gap: 16px;
  }

  .gtc-document {
    font-size: 0.82rem;
    padding: 20px 18px;
  }

  .gtc-document .document-title {
    font-size: 1.52rem;
  }

  .gtc-document h2 {
    font-size: 0.95rem;
  }
}

@page {
  size: A4;
  margin: 12mm 14mm 13mm;
}

@media print {
  html,
  body {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #171b19;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9.5pt;
    line-height: 1.42;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .gtc-page .scroll-progress,
  .gtc-page .site-header,
  .gtc-page .global-orb,
  .gtc-page .gtc-sidebar,
  .gtc-page .gtc-actions,
  .gtc-page .site-footer {
    display: none !important;
  }

  .gtc-page main,
  .gtc-page .gtc-content,
  .gtc-page .section-shell,
  .gtc-page .gtc-layout,
  .gtc-page .gtc-document {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .gtc-page .gtc-layout {
    display: block;
  }

  .gtc-page .gtc-document {
    color: #171b19;
    font-size: 9.5pt;
    line-height: 1.42;
  }

  .gtc-page .gtc-document .document-title {
    margin: 0 0 4mm;
    color: #17342f;
    font-size: 19pt;
    line-height: 1.12;
    text-align: left;
  }

  .gtc-page .gtc-document .company-block {
    margin: 0 0 7mm;
    padding: 3mm 0 4mm;
    color: #303b36;
    border-color: #aeb7b2;
    font-size: 8.7pt;
    line-height: 1.38;
    text-align: left;
  }

  .gtc-page .gtc-document h2,
  .gtc-page .gtc-document h3 {
    color: #17342f;
    break-after: avoid-page;
    break-inside: avoid-page;
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  .gtc-page .gtc-document h2 {
    margin: 5mm 0 2.4mm;
    padding: 2.2mm 3mm;
    background: #eef1e9;
    border-left: 2.5pt solid #697833;
    border-radius: 0;
    font-size: 11.5pt;
    line-height: 1.24;
  }

  .gtc-page .gtc-document h3 {
    margin: 3.8mm 0 2mm;
    padding: 0 0 1.5mm;
    border-color: #c8ceca;
    font-size: 10pt;
    line-height: 1.26;
  }

  .gtc-page .gtc-document h2 + p,
  .gtc-page .gtc-document h3 + p {
    break-before: avoid-page;
    page-break-before: avoid;
  }

  .gtc-page .gtc-document p,
  .gtc-page .gtc-document ul {
    max-width: none;
  }

  .gtc-page .gtc-document p {
    margin: 0 0 2.2mm;
    orphans: 3;
    widows: 3;
  }

  .gtc-page .gtc-document ul {
    margin: 0 0 3mm;
    padding-left: 6mm;
  }

  .gtc-page .gtc-document li {
    margin: 0 0 1mm;
    padding-left: 1mm;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .gtc-page .gtc-document a {
    color: inherit;
    text-decoration-color: #7c8781;
  }

  .gtc-page .gtc-document .closing-acknowledgement,
  .gtc-page .gtc-document .gtc-updated {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .gtc-page .gtc-document .closing-acknowledgement {
    margin-top: 7mm;
  }

  .gtc-page .gtc-document .gtc-updated {
    margin-top: 4mm;
    color: #4c5752;
    font-size: 8pt;
  }
}
