@font-face {
  font-family: "General Sans Variable";
  font-style: normal;
  font-weight: 200;
  src: local("General Sans"), url("https://fonts.cdnfonts.com/s/85793/GeneralSans-Extralight.woff") format("woff");
}

@font-face {
  font-family: "General Sans Variable";
  font-style: normal;
  font-weight: 300;
  src: local("General Sans"), url("https://fonts.cdnfonts.com/s/85793/GeneralSans-Light.woff") format("woff");
}

@font-face {
  font-family: "General Sans Variable";
  font-style: normal;
  font-weight: 400;
  src: local("General Sans"), url("https://fonts.cdnfonts.com/s/85793/GeneralSans-Regular.woff") format("woff");
}

@font-face {
  font-family: "General Sans Variable";
  font-style: normal;
  font-weight: 500;
  src: local("General Sans"), url("https://fonts.cdnfonts.com/s/85793/GeneralSans-Medium.woff") format("woff");
}

@font-face {
  font-family: "General Sans Variable";
  font-style: normal;
  font-weight: 600;
  src: local("General Sans"), url("https://fonts.cdnfonts.com/s/85793/GeneralSans-Semibold.woff") format("woff");
}

@font-face {
  font-family: "General Sans Variable";
  font-style: normal;
  font-weight: 700;
  src: local("General Sans"), url("https://fonts.cdnfonts.com/s/85793/GeneralSans-Bold.woff") format("woff");
}

:root {
  --ink: #272727;
  --sage: #9bb2a3;
  --porcelain: #f8f9f3;
  --sand: #ddd5c7;
  --mauve: #aa9794;
  --forest: #2a3827;
  --muted: #8b8c88;
  --line: rgba(248, 249, 243, 0.62);
  --line-dark: rgba(39, 39, 39, 0.62);
  --font-sans: "General Sans Variable", Arial, sans-serif;
  --font-serif: "General Sans Variable", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0;
  width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background: var(--ink);
  color: var(--porcelain);
}

.desktop-nav {
  position: relative;
  width: min(1900px, calc(100% - 96px));
  height: 164px;
  margin: 0 auto;
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.34em;
}

.desktop-nav > a,
.desktop-nav > .language-switch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.desktop-nav > a:nth-of-type(1) {
  left: 14%;
}

.desktop-nav > a:nth-of-type(2) {
  left: 30%;
}

.desktop-nav > a:nth-of-type(4) {
  left: 65%;
}

.desktop-nav > a:nth-of-type(5) {
  left: 80%;
}

.desktop-nav > .language-switch {
  right: 0;
}

.desktop-nav a:not(.logo-link),
.language-switch {
  opacity: 0.76;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.language-switch button:hover,
.language-switch button:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  opacity: 1;
}

.logo-link {
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 230px;
}

.logo-link img,
.mobile-logo img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.language-switch button,
.mobile-languages button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"],
.mobile-languages button[aria-pressed="true"] {
  color: var(--porcelain);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.mobile-bar,
.mobile-menu {
  display: none;
}

.hero {
  background: var(--porcelain);
  padding: 95px 24px 58px;
}

.hero-image-wrap {
  width: min(1062px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 44px;
}

.button {
  min-width: 228px;
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0 28px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1.3;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--porcelain);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--porcelain);
  border-color: var(--ink);
  color: var(--ink);
}

.button-light,
.button-outline-light {
  background: transparent;
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible,
.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: var(--ink);
  color: var(--porcelain);
}

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

.intro {
  min-height: 520px;
  padding: 104px 24px 98px;
  text-align: center;
}

.section-rule {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1px auto 1px;
  gap: 17px;
  color: rgba(248, 249, 243, 0.66);
}

.section-rule span {
  display: block;
  background: currentColor;
}

.section-rule h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1.35;
}

.intro-copy {
  width: min(1017px, 100%);
  margin: 55px auto 0;
  color: var(--porcelain);
  font-family: "General Sans Variable", var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 1.4px;
}

.intro-copy p {
  margin: 0;
}

.intro-copy,
.services-copy,
.about-hero p,
.about-copy-panel p,
.about-dark-copy p,
.team-hero-copy p,
.diensten-intro p,
.contact-lead,
.contact-details,
address,
.hours,
.price-note,
.price-footnote {
  letter-spacing: 0;
}

.intro-copy p + p {
  margin-top: 27px;
}

.intro-button {
  margin-top: 42px;
  color: var(--porcelain);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  background: var(--porcelain);
  color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 502px;
  overflow: hidden;
  background: var(--ink);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.services {
  min-height: 475px;
  padding: 117px 24px 112px;
  text-align: center;
  background: var(--porcelain);
}

.section-rule-light {
  color: rgba(39, 39, 39, 0.62);
}

.services-copy {
  width: min(780px, 100%);
  margin: 52px auto 0;
  color: rgba(39, 39, 39, 0.45);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.services-button {
  margin-top: 42px;
}

.about-hero {
  min-height: 280px;
  padding: 116px 24px 104px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: rgba(248, 249, 243, 0.52);
  text-align: center;
}

.about-hero p {
  width: min(920px, 100%);
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.about-split {
  display: grid;
  grid-template-columns: 41% 59%;
}

.about-split-light {
  background: var(--porcelain);
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.about-portrait {
  height: 652px;
}

.about-portrait img {
  object-position: 44% 50%;
}

.about-copy-panel {
  min-height: 652px;
  padding: 166px 110px 80px 166px;
  color: rgba(39, 39, 39, 0.47);
}

.about-copy-panel p,
.about-dark-copy p {
  width: min(520px, 100%);
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.about-copy-panel p + p,
.about-dark-copy p + p {
  margin-top: 40px;
}

.about-copy-panel .button {
  margin-top: 70px;
}

.about-mobile-button {
  display: none;
}

.about-split-dark {
  grid-template-columns: 41% 59%;
  min-height: 816px;
  background: var(--ink);
  color: rgba(248, 249, 243, 0.5);
}

.about-dark-copy {
  padding: 140px 86px 120px;
}

.about-dark-copy .button {
  margin-top: 64px;
  color: var(--porcelain);
}

.about-team-image {
  height: 652px;
}

.about-team-image img {
  object-position: center 42%;
}

.about-page .site-footer {
  min-height: 590px;
  padding-top: 182px;
}

.team-hero {
  min-height: 358px;
  padding: 103px 24px 95px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: rgba(248, 249, 243, 0.52);
  text-align: center;
}

.team-hero-copy {
  width: min(690px, 100%);
}

.team-hero-copy p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75;
}

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

.team-grid-section {
  padding: 246px 24px 246px;
  background: var(--porcelain);
}

.team-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 144px;
  row-gap: 40px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 409 / 480;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.36);
}

.team-card h2,
.team-card p {
  margin: 0;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  line-height: 1.4;
  color: rgba(39, 39, 39, 0.52);
}

.team-card h2 {
  padding: 23px 0 13px;
  border-bottom: 1px solid rgba(39, 39, 39, 0.58);
}

.team-card p {
  min-height: 47px;
  padding-top: 15px;
  border-bottom: 1px solid rgba(39, 39, 39, 0.58);
  text-align: right;
}

.team-page .site-footer {
  min-height: 643px;
  padding-top: 280px;
}

.diensten-hero {
  display: grid;
  grid-template-columns: 41.3% 58.7%;
  min-height: 641px;
  background: var(--porcelain);
}

.diensten-product {
  overflow: hidden;
}

.diensten-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
  transform: scale(1.36);
  transform-origin: 54% 52%;
}

.diensten-intro {
  min-height: 641px;
  padding: 170px 120px 90px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 72px;
  color: rgba(39, 39, 39, 0.48);
  text-align: center;
}

.diensten-intro p {
  width: min(690px, 100%);
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.diensten-intro p + p {
  margin-top: 30px;
}

.joico-logo {
  width: 156px;
  filter: grayscale(1);
}

.service-picker {
  padding: 110px 24px 108px;
  background: var(--ink);
}

.service-picker-grid {
  width: min(1090px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 48px;
}

.service-option {
  min-height: 45px;
  border: 1px solid rgba(248, 249, 243, 0.86);
  background: transparent;
  color: rgba(248, 249, 243, 0.72);
  text-transform: uppercase;
  font: 600 13px / 1.2 var(--font-sans);
  letter-spacing: 0.42em;
  cursor: pointer;
}

.service-option[aria-pressed="true"],
.service-option:hover,
.service-option:focus-visible {
  background: var(--porcelain);
  color: var(--ink);
}

.price-section {
  background: var(--porcelain);
  color: rgba(39, 39, 39, 0.58);
}

.price-title {
  margin: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(39, 39, 39, 0.68);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.48em;
}

.price-panel {
  min-height: 443px;
  padding: 48px 24px 72px;
}

.price-note,
.price-footnote {
  margin: 0 auto;
  width: min(790px, 100%);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.price-table {
  width: min(820px, 100%);
  margin: 45px auto 0;
}

.price-table-simple {
  width: min(790px, 100%);
  margin-top: 70px;
}

.price-columns,
.price-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(270px, max-content);
  column-gap: 26px;
  align-items: center;
}

.price-columns {
  grid-template-columns: minmax(260px, 1fr) repeat(var(--price-columns), 92px);
}

.price-columns {
  min-height: 44px;
  border-top: 1px solid rgba(39, 39, 39, 0.68);
  border-bottom: 1px solid rgba(39, 39, 39, 0.68);
}

.price-columns span,
.price-row strong,
.price-values span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.42em;
}

.price-columns span,
.price-values span {
  text-align: center;
}

.price-row {
  min-height: 38px;
  margin-top: 18px;
}

.price-values {
  display: grid;
  grid-template-columns: repeat(var(--value-count), 92px);
  column-gap: 26px;
  justify-content: end;
}

.price-row strong {
  color: #272727;
  font-family: "General Sans Variable", var(--font-sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2.16px;
}

.price-values span {
  color: #272727;
  font-family: "General Sans Variable", var(--font-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.56px;
}

.price-footnote {
  margin-top: 64px;
}

.diensten-page .site-footer {
  min-height: 755px;
  padding-top: 320px;
}

.contact-page {
  background: var(--ink);
  color: rgba(248, 249, 243, 0.58);
}

.contact-main {
  background: var(--ink);
}

.contact-intro {
  width: min(1040px, calc(100% - 96px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.contact-intro .section-rule h1 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1.35;
}

.contact-lead {
  margin: 20px 0 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.contact-front {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(1);
}

.contact-details {
  display: grid;
  justify-items: end;
  gap: 9px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-details p {
  margin: 0;
}

.contact-divider {
  height: 1px;
  margin-top: 28px;
  background: rgba(248, 249, 243, 0.66);
}

.contact-map {
  margin-top: 50px;
  height: 500px;
  background: #d9d9d9;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(1);
}

.contact-page .site-footer {
  min-height: 755px;
  padding-top: 310px;
}

.service-links {
  display: none;
}

.site-footer {
  min-height: 822px;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 370px 98px 92px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 120px;
  background: var(--ink);
  color: rgba(248, 249, 243, 0.58);
}

.footer-brand img {
  width: 205px;
  margin-bottom: 68px;
}

.footer-brand ul {
  display: grid;
  gap: 23px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.36em;
}

.instagram {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--porcelain);
  color: var(--ink);
}

.instagram svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

address,
.hours {
  margin-top: 111px;
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

address h2,
.hours h2 {
  margin: 0 0 15px;
  color: rgba(248, 249, 243, 0.7);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.36em;
}

address h2:not(:first-child) {
  margin-top: 38px;
}

address p {
  margin: 0;
}

.hours dl {
  width: min(260px, 100%);
  margin: 0;
}

.hours dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.hours dt,
.hours dd {
  margin: 0;
  text-align: left;
}

@media (min-width: 761px) and (max-width: 1080px) {
  .desktop-nav {
    width: calc(100% - 32px);
    height: 116px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .desktop-nav > a:nth-of-type(1) {
    left: 0;
  }

  .desktop-nav > a:nth-of-type(2) {
    left: 19%;
  }

  .logo-link {
    width: 145px;
  }

  .desktop-nav > a:nth-of-type(4) {
    left: 61%;
  }

  .desktop-nav > a:nth-of-type(5) {
    left: 75%;
  }

  .language-switch {
    gap: 5px;
  }
}

@media (min-width: 761px) and (max-width: 860px) {
  .desktop-nav {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .logo-link {
    width: 122px;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .mobile-bar {
    height: 81px;
    padding: 0 30px 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-logo {
    width: 147px;
  }

  .menu-toggle {
    width: 18px;
    height: 18px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--porcelain);
    cursor: pointer;
  }

  .menu-toggle span {
    height: 1px;
    background: currentColor;
  }

  body.menu-open .mobile-logo {
    opacity: 0;
    pointer-events: none;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: 43px;
    left: 39px;
    z-index: 20;
    width: 13px;
    height: 13px;
    display: block;
  }

  body.menu-open .menu-toggle span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 13px;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 20px;
    min-height: 100svh;
    overflow-y: auto;
    padding: 86px 26px 58px 36px;
    background: var(--ink);
    color: var(--porcelain);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.36em;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a {
    width: fit-content;
    line-height: 1;
  }

  .mobile-languages {
    position: fixed;
    top: 48px;
    right: 45px;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 0;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.18em;
  }

  .mobile-menu-info {
    margin-top: clamp(190px, 29svh, 245px);
    color: rgba(248, 249, 243, 0.66);
    text-transform: none;
    letter-spacing: 0;
  }

  .mobile-menu-info address,
  .mobile-menu-info .hours {
    margin-top: 0;
    font-size: 8px;
    line-height: 1.75;
  }

  .mobile-menu-info address h2,
  .mobile-menu-info .hours h2 {
    margin: 0 0 13px;
    color: rgba(248, 249, 243, 0.78);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.36em;
  }

  .mobile-menu-info address h2:not(:first-child) {
    margin-top: 34px;
  }

  .mobile-menu-info address p {
    margin: 0;
  }

  .mobile-menu-info .hours {
    margin-top: 42px;
  }

  .mobile-menu-info .hours dl {
    width: 100%;
    max-width: 246px;
    margin: 0;
  }

  .mobile-menu-info .hours dl div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .mobile-menu-info .hours dt,
  .mobile-menu-info .hours dd {
    margin: 0;
    text-align: left;
  }

  .hero {
    padding: 46px 24px 73px;
  }

  .hero-image-wrap {
    width: min(309px, 100%);
  }

  .hero-image {
    aspect-ratio: 309 / 175;
    object-position: 49% 50%;
  }

  .hero-actions {
    width: min(309px, 100%);
    gap: 13px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }

  .button {
    min-width: 0;
    min-height: 30px;
    padding: 0 14px;
    font-size: 7px;
    letter-spacing: 0.48em;
    white-space: nowrap;
  }

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

  .intro {
    min-height: 311px;
    padding: 50px 49px 58px;
  }

  .section-rule {
    gap: 22px;
  }

  .section-rule h2 {
    display: none;
  }

  .intro-copy {
    margin-top: 24px;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.88;
    color: rgba(248, 249, 243, 0.55);
  }

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

  .intro-button {
    display: none;
  }

  .gallery {
    height: 151px;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
  }

  .gallery img {
    object-position: center;
  }

  .gallery img:nth-child(n + 4) {
    display: none;
  }

  .services {
    min-height: 0;
    padding: 0;
    background: var(--ink);
  }

  .about-hero {
    min-height: 167px;
    padding: 48px 50px 53px;
  }

  .about-hero p {
    font-size: 8px;
    font-weight: 400;
    line-height: 1.8;
  }

  .about-split {
    display: block;
  }

  .about-split-light {
    padding: 57px 0 0;
  }

  .about-portrait {
    width: 191px;
    height: 212px;
    margin: 0 auto;
  }

  .about-portrait img {
    object-position: 43% 50%;
  }

  .about-copy-panel {
    min-height: 0;
    padding: 50px 57px 66px;
    text-align: center;
  }

  .about-copy-panel p,
  .about-dark-copy p {
    width: 100%;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.9;
  }

  .about-desktop-button {
    display: none;
  }

  .about-mobile-button {
    display: inline-flex;
  }

  .about-copy-panel p + p,
  .about-dark-copy p + p {
    margin-top: 49px;
  }

  .about-mobile-button + p {
    margin-top: 49px;
  }

  .about-copy-panel .button {
    min-width: 160px;
    margin-top: 49px;
    color: var(--ink);
  }

  .about-team-image {
    height: auto;
  }

  .about-team-image img {
    aspect-ratio: 402 / 311;
    object-position: center 37%;
  }

  .about-split-dark {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .about-dark-copy {
    padding: 47px 57px 76px;
    text-align: center;
  }

  .about-dark-copy .button {
    min-width: 136px;
    margin-top: 49px;
  }

  .about-page .site-footer {
    padding-top: 0;
  }

  .about-page .footer-brand {
    display: none;
  }

  .team-hero {
    min-height: 0;
    padding: 29px 35px 42px;
    background: var(--porcelain);
    color: rgba(39, 39, 39, 0.47);
  }

  .team-hero-copy {
    width: 100%;
  }

  .team-hero-copy p {
    font-size: 8px;
    font-weight: 500;
    line-height: 1.65;
  }

  .team-hero-copy p + p {
    margin-top: 14px;
  }

  .team-grid-section {
    padding: 32px 80px 82px;
  }

  .team-grid {
    width: 100%;
    display: block;
  }

  .team-card + .team-card {
    margin-top: 61px;
  }

  .team-photo {
    aspect-ratio: 292 / 344;
  }

  .team-card h2,
  .team-card p {
    font-size: 7px;
    letter-spacing: 0.42em;
  }

  .team-card h2 {
    padding: 17px 0 12px;
  }

  .team-card p {
    min-height: 37px;
    padding-top: 12px;
  }

  .team-page .site-footer {
    padding-top: 64px;
  }

  .team-page .footer-brand {
    display: none;
  }

  .team-page .mobile-bar {
    height: 50px;
    padding: 0 25px 0 23px;
  }

  .team-page .mobile-logo {
    width: 107px;
  }

  .team-page .mobile-menu {
    inset: 50px 0 0;
  }

  .diensten-hero {
    display: block;
    min-height: 0;
  }

  .diensten-product {
    height: 400px;
  }

  .diensten-product img {
    object-position: 45% 50%;
  }

  .diensten-intro {
    min-height: 342px;
    padding: 57px 48px 55px;
    gap: 49px;
  }

  .diensten-intro p {
    font-size: 10px;
    line-height: 1.78;
  }

  .diensten-intro p + p {
    margin-top: 23px;
  }

  .joico-logo {
    width: 113px;
  }

  .service-picker {
    padding: 80px 46px;
  }

  .service-picker-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 31px;
  }

  .service-option {
    min-height: 30px;
    font-size: 8px;
    letter-spacing: 0.42em;
  }

  .price-title {
    min-height: 39px;
    font-size: 9px;
    letter-spacing: 0.48em;
  }

  .price-panel {
    min-height: 430px;
    padding: 45px 49px 57px;
  }

  .price-note,
  .price-footnote {
    font-size: 7px;
    line-height: 1.65;
  }

  .price-table {
    margin-top: 44px;
  }

  .price-columns {
    min-height: 33px;
    padding: 0;
    grid-template-columns: repeat(var(--price-columns), 1fr);
    column-gap: 12px;
  }

  .price-columns span {
    font-size: 8px;
    letter-spacing: 0.35em;
  }

  .price-columns span:first-child {
    display: none;
  }

  .price-row {
    display: block;
    min-height: 0;
    margin-top: 16px;
    padding: 24px 0 23px;
    border-bottom: 1px solid rgba(39, 39, 39, 0.25);
  }

  .price-row strong {
    display: block;
    padding-top: 0;
    margin-bottom: 23px;
    line-height: 1.6;
  }

  .price-values {
    display: grid;
    grid-template-columns: repeat(var(--value-count), 1fr);
    column-gap: 12px;
  }

  .price-columns span,
  .price-values span {
    text-align: left;
  }

  .price-columns span:nth-child(3),
  .price-values span:nth-child(2) {
    text-align: center;
  }

  .price-columns span:last-child,
  .price-values span:last-child {
    text-align: right;
  }

  .price-table-simple .price-values {
    display: flex;
    gap: 58px;
    justify-content: flex-start;
  }

  .price-table-simple .price-values span {
    text-align: left;
  }

  .price-footnote {
    margin-top: 44px;
  }

  .diensten-page .site-footer {
    padding-top: 64px;
  }

  .diensten-page .footer-brand {
    display: none;
  }

  .contact-intro {
    width: 100%;
    padding: 36px 0 0;
  }

  .contact-intro .section-rule {
    width: calc(100% - 88px);
  }

  .contact-intro .section-rule h1 {
    font-size: 9px;
    letter-spacing: 0.48em;
  }

  .contact-lead {
    width: calc(100% - 76px);
    margin: 18px auto 14px;
    font-size: 7px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .contact-front {
    height: 203px;
    object-position: center;
  }

  .contact-details {
    width: calc(100% - 76px);
    margin: 39px auto 0;
    gap: 10px;
    font-size: 7px;
    line-height: 1.6;
  }

  .contact-divider {
    width: calc(100% - 76px);
    margin: 15px auto 0;
  }

  .contact-map {
    display: none;
  }

  .contact-page .site-footer {
    padding-top: 114px;
  }

  .contact-page .footer-brand {
    display: none;
  }

  .services > .section-rule,
  .services-copy,
  .services-button {
    display: none;
  }

  .service-links {
    display: grid;
    background: var(--ink);
  }

  .service-links a {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.48em;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: rgba(248, 249, 243, 0.76);
  }

  .service-links a:nth-child(odd) {
    background: var(--porcelain);
    color: rgba(39, 39, 39, 0.74);
  }

  .site-footer {
    min-height: 0;
    padding: 76px 38px 72px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-brand img {
    width: 154px;
    margin-bottom: 42px;
  }

  .footer-brand ul {
    gap: 17px;
    margin-bottom: 28px;
    font-size: 10px;
    letter-spacing: 0.36em;
  }

  .instagram {
    width: 30px;
    height: 30px;
  }

  .instagram svg {
    width: 18px;
  }

  address,
  .hours {
    margin-top: 0;
    font-size: 10px;
    line-height: 1.9;
  }

  address h2,
  .hours h2 {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.36em;
  }

  address h2:not(:first-child) {
    margin-top: 30px;
  }

  .hours dl {
    width: 100%;
    max-width: 260px;
  }

  .hours dl div {
    gap: 20px;
  }
}

@media (max-width: 370px) {
  .hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }
}

body,
button,
input,
textarea,
select {
  font-family: "General Sans Variable", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.site-header,
.button,
.section-rule h2,
.intro-copy,
.services-copy,
.about-hero,
.about-copy-panel p,
.about-dark-copy p,
.team-hero-copy p,
.team-card h2,
.team-card p,
.diensten-intro,
.service-option,
.price-title,
.price-note,
.price-footnote,
.price-columns span,
.price-row strong,
.price-values span,
.contact-intro,
.footer-brand,
address,
.hours,
.mobile-menu,
.mobile-menu-info {
  font-family: "General Sans Variable", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.section-rule h2,
.team-card h2,
.price-title {
  font-size: 16px;
}

.section-dark .section-rule h2,
.service-links a {
  color: var(--porcelain);
}

.service-links a:nth-child(odd) {
  color: var(--ink);
}

.team-card p {
  font-size: 14px;
}

.price-row strong,
.price-values span {
  font-size: 14px;
}

body {
  font-size: 14px;
}

.button,
.service-links a,
.footer-brand ul,
address,
.hours,
address h2,
.hours h2,
.intro-copy,
.services-copy,
.about-hero p,
.about-copy-panel p,
.about-dark-copy p,
.team-hero-copy p,
.diensten-intro p,
.contact-lead,
.contact-details,
.price-note,
.price-footnote,
.price-columns span {
  font-size: 14px;
}

.section-rule h2,
.team-card h2,
.price-title {
  font-size: 16px;
}

.team-card p {
  font-size: 14px;
}

.price-row strong {
  font-size: 8px;
}

.price-values span {
  font-size: 12px;
}

body,
.section-rule-light,
.services-copy,
.about-copy-panel,
.about-copy-panel p,
.team-card h2,
.team-card p,
.diensten-intro,
.diensten-intro p,
.price-section,
.price-title,
.price-note,
.price-footnote,
.price-columns span,
.price-row strong,
.price-values span,
.contact-lead,
.contact-details,
.button-light,
.button-outline-light,
.service-links a:nth-child(odd) {
  color: var(--ink);
}

.site-header,
.desktop-nav,
.mobile-bar,
.mobile-menu,
.section-dark,
.intro-copy,
.intro-button,
.about-hero,
.about-dark-copy,
.about-dark-copy p,
.about-dark-copy .button,
.team-hero,
.service-picker,
.service-option,
.contact-page,
.contact-main,
.site-footer,
.footer-brand,
address,
.hours,
address h2,
.hours h2,
.footer-brand ul,
.footer-brand a,
.mobile-menu-info,
.mobile-menu-info address,
.mobile-menu-info .hours,
.mobile-menu-info address h2,
.mobile-menu-info .hours h2 {
  color: var(--porcelain);
}

.service-option[aria-pressed="true"],
.service-option:hover,
.service-option:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
}

.footer-brand a.instagram,
.instagram {
  color: var(--ink);
}

@media (max-width: 760px) {
  .button {
    padding: 0 14px;
    font-size: 7px;
    letter-spacing: 0.48em;
  }

  .mobile-menu {
    font-size: 13px;
  }

  .mobile-menu-info address,
  .mobile-menu-info .hours {
    font-size: 8px;
    line-height: 1.9;
  }

  .mobile-menu-info address h2,
  .mobile-menu-info .hours h2 {
    font-size: 10px;
  }

  .hero,
  .intro,
  .gallery,
  .services,
  .site-footer {
    width: 100vw;
    max-width: 100vw;
  }

  .intro-copy,
  .about-hero p,
  .about-copy-panel p,
  .about-dark-copy p,
  .team-hero-copy p {
    font-size: 8px;
  }

  .team-card h2,
  .team-card p {
    font-size: 7px;
  }

  .diensten-intro p {
    font-size: 10px;
  }

  .contact-lead,
  .contact-details {
    font-size: 7px;
  }

  .service-links a {
    font-size: 8px;
    letter-spacing: 0.48em;
  }

  .footer-brand ul,
  address,
  .hours,
  address h2,
  .hours h2 {
    font-size: 10px;
  }

  .price-title {
    font-size: 9px;
  }

  .price-note,
  .price-footnote {
    font-size: 7px;
  }

  .price-columns span {
    font-size: 8px;
    color: var(--ink);
  }

  .price-row strong {
    font-size: 8px;
  }

  .price-values span {
    font-size: 12px;
  }
}

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

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