/* HWTS — static site */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --ink: #121820;
  --muted: #3d4654;
  --yellow: #f0c12e;
  --yellow-deep: #e0a800;
  --paper: #f4f2ee;
  --white: #ffffff;
  --line: rgba(18, 24, 32, 0.12);
  --max: 1120px;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  background: var(--white);
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--yellow-deep);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--yellow-deep);
}

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

.btn-dark:hover {
  background: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
}

.site-header.is-solid {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.site-header.is-fixed {
  position: fixed;
  width: 100%;
}

.site-header.is-auto-hide {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.28s ease, visibility 0.28s;
}

.site-header.is-auto-hide.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
  background: transparent;
}

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

.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--white);
}

.nav-links a:hover,
.nav-links a[aria-current="page"]:not(.btn) {
  color: var(--yellow);
}

.site-header.is-solid .nav-links a {
  color: var(--ink);
}

.site-header.is-solid .nav-links a:hover,
.site-header.is-solid .nav-links a[aria-current="page"]:not(.btn) {
  color: var(--yellow-deep);
}

.nav-links .btn {
  border-radius: 6px;
  padding: 0.7rem 1.2rem;
}

.nav-links .btn.btn-primary,
.nav-links .btn.btn-primary:hover,
.nav-links .btn.btn-primary[aria-current="page"],
.site-header.is-solid .nav-links .btn.btn-primary,
.site-header.is-solid .nav-links .btn.btn-primary:hover,
.site-header.is-solid .nav-links .btn.btn-primary[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.site-header.is-solid .nav-toggle {
  color: var(--ink);
}

/* Hero — full viewport, text left, image right */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(8, 12, 18, 0.82) 0%,
    rgba(8, 12, 18, 0.55) 42%,
    rgba(8, 12, 18, 0.25) 68%,
    rgba(8, 12, 18, 0.35) 100%
  );
}

.hero-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) 0 4.5rem;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  text-align: left;
  max-width: 42rem;
  margin: 0;
  padding-left: 1.35rem;
  border-left: 3px solid var(--yellow);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: none;
  margin: 0 0 1.15rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero-content h1 .hero-line {
  white-space: nowrap;
}

.hero-content h1 .accent {
  color: var(--yellow);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34ch;
  margin: 0 0 1.75rem;
  line-height: 1.5;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
}

.hero-actions .btn {
  border-radius: 6px;
  gap: 0.55rem;
}

.hero-actions .btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
}

.page-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.35), rgba(8, 12, 18, 0.7));
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  margin: 0;
}

.page-hero--contact {
  min-height: 48vh;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
}

.page-hero--contact::after {
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.45), rgba(8, 12, 18, 0.62));
}

.page-hero--contact .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--contact h1 {
  color: var(--yellow);
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.page-hero--contact p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5.75rem 0;
}

.section-services {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(240, 193, 46, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f3ef 100%);
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.section-values {
  background:
    linear-gradient(135deg, rgba(240, 193, 46, 0.08), transparent 40%),
    var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.section-values .section-head h2 {
  color: var(--white);
}

.section-values .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.section-values .value h3 {
  color: var(--white);
}

.section-values .value p {
  color: rgba(255, 255, 255, 0.62);
}

.section-values .value {
  border-right-color: rgba(255, 255, 255, 0.12);
}

.section-clients {
  background: #f7f7f5;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-muted {
  background: #f7f7f7;
}

.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}

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

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}

.section-head h2 .accent,
.accent {
  color: var(--yellow);
}

.section-head p {
  margin-bottom: 0;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.65;
}

.rule {
  width: 3.25rem;
  height: 3px;
  background: var(--yellow);
  border: 0;
  margin: 0 auto 1.1rem;
}

.mini-rule {
  width: 1.75rem;
  height: 2px;
  background: var(--yellow);
  border: 0;
  margin: 0 auto 0.85rem;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 820px;
  margin-inline: auto;
}

.feature-card {
  background: var(--white);
  text-align: center;
  padding: 2.75rem 1.75rem 2.35rem;
  border-radius: 12px;
  border: 1px solid rgba(18, 24, 32, 0.08);
  box-shadow: 0 10px 30px rgba(18, 24, 32, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
  display: block;
}

.feature-card:hover {
  border-color: rgba(240, 193, 46, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 24, 32, 0.08);
  color: inherit;
}

.feature-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.25rem;
  color: var(--ink);
  background: rgba(240, 193, 46, 0.18);
  border: 1px solid rgba(240, 193, 46, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.feature-card:hover .feature-icon {
  background: var(--yellow);
}

.feature-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.feature-card p {
  margin: 0 0 1.1rem;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 26ch;
  margin-inline: auto;
}

.feature-more {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--ink);
}

.feature-card:hover .feature-more {
  color: var(--yellow-deep);
}

/* Legacy photo service cards (diensten page etc.) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card .body {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  background: linear-gradient(180deg, transparent, rgba(8, 12, 18, 0.92) 45%);
}

.service-card h3 {
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
}

.value {
  text-align: center;
  padding: 1rem 1.5rem 0.5rem;
  border-right: 1px solid rgba(18, 24, 32, 0.1);
}

.value:last-child {
  border-right: 0;
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.15rem;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: rgba(240, 193, 46, 0.1);
  border: 1px solid rgba(240, 193, 46, 0.35);
  border-radius: 50%;
}

.value-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.value h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.value p {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.55;
}

/* Clients marquee */
.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin: 0 auto;
  max-width: 1120px;
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: clients-scroll 32s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-card {
  flex: 0 0 auto;
  width: 168px;
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid rgba(18, 24, 32, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(18, 24, 32, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 193, 46, 0.45);
  box-shadow: 0 14px 28px rgba(18, 24, 32, 0.07);
}

.client-card img {
  display: block;
  max-height: 52px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.client-card:hover img {
  filter: none;
  opacity: 1;
}

.clients-cta {
  text-align: center;
  margin-top: 2.25rem;
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    max-width: 980px;
    margin-inline: auto;
    justify-content: center;
  }

  .clients-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .clients-track .client-card[aria-hidden="true"] {
    display: none;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-projects {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
}

.gallery-projects img {
  aspect-ratio: 1 / 1.15;
}

/* CTA band (diensten) */
.cta-band {
  background: var(--yellow);
  padding: 3.25rem 0;
  text-align: center;
}

.cta-band h1 {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
}

.cta-band .btn-dark {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Diensten tabs layout */
.diensten-section {
  padding-top: 3rem;
}

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

.dienst-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.dienst-tab {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 1rem 1.1rem;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: #ececec;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.dienst-tab:hover {
  background: #e2e2e2;
}

.dienst-tab.is-active {
  background: var(--yellow);
}

.dienst-panel[hidden] {
  display: none;
}

.dienst-panel h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.dienst-panel p {
  margin: 0 0 1rem;
  max-width: 52ch;
}

.dienst-panel ul {
  margin: 0 0 0.5rem;
  padding-left: 1.2rem;
}

.dienst-panel li {
  margin-bottom: 0.35rem;
}

/* Split content */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.split ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
}

.split li {
  margin-bottom: 0.45rem;
}

/* Contact */
.contact-section {
  padding: 4.5rem 0;
}

.contact-info {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.contact-info h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-info .rule {
  margin-left: auto;
  margin-right: auto;
}

.contact-list {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  justify-content: center;
  color: var(--ink);
  font-size: 1.05rem;
  text-align: left;
}

.contact-icon {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  color: var(--ink);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-list a {
  color: var(--ink);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--yellow-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-card {
  background: var(--paper);
  padding: 2rem;
}

.contact-card h3 {
  font-size: 1.6rem;
}

.contact-card a {
  color: var(--ink);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--yellow-deep);
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--yellow);
  border-color: transparent;
}

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

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Footer */
.site-footer {
  background: #0e141b;
  color: rgba(255, 255, 255, 0.65);
  padding: 3.25rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem 3rem;
  padding-bottom: 2.5rem;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-logo img {
  display: block;
  height: 52px;
  width: auto;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-list a:hover {
  color: var(--yellow);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-jobs-note {
  margin: 1.35rem 0 0.35rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.footer-jobs-link {
  color: var(--yellow);
  font-size: 0.95rem;
}

.footer-jobs-link:hover {
  text-decoration: underline;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding: 1rem 0;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.45);
}

.back-to-top {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.back-to-top svg {
  width: 1rem;
  height: 1rem;
}

.back-to-top:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .service-card,
  .value {
    animation: rise 0.7s ease both;
  }

  .service-card:nth-child(2),
  .value:nth-child(2) {
    animation-delay: 0.08s;
  }
  .value:nth-child(3) {
    animation-delay: 0.16s;
  }
  .value:nth-child(4) {
    animation-delay: 0.24s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .service-grid,
  .feature-grid,
  .split,
  .contact-grid,
  .diensten-layout {
    grid-template-columns: 1fr;
  }

  .dienst-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dienst-tab {
    flex: 1 1 10rem;
  }

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

  .value {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 24, 32, 0.1);
    padding: 1.5rem 1rem;
  }

  .section-values .value {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .value:nth-child(3),
  .value:nth-child(4) {
    border-bottom: 0;
  }

  .clients-marquee {
    max-width: 100%;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    right: 1.25rem;
    left: 1.25rem;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links .btn {
    margin-top: 0.75rem;
  }

  .site-header.is-solid .nav-links {
    background: var(--white);
    border: 1px solid var(--line);
  }

  .site-header.is-solid .nav-links a {
    border-bottom-color: var(--line);
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(100% - 1.5rem, var(--max));
  }

  .hero-content {
    padding-left: 1rem;
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

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

  .value {
    border-bottom: 1px solid rgba(18, 24, 32, 0.1);
  }

  .value:last-child {
    border-bottom: 0;
  }

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

  .clients-track {
    gap: 0.75rem;
    animation-duration: 26s;
  }

  .client-card {
    width: 140px;
    min-height: 88px;
    padding: 1rem 0.75rem;
  }

  .client-card img {
    max-height: 44px;
    max-width: 110px;
  }

  .logo img {
    height: 40px;
  }

  .service-card {
    min-height: 340px;
  }
}
