﻿.hoofdblok {
    width: 100%;       /* Op gsm pakt hij netjes de volle breedte */
    max-width: 1000px; /* Op pc wordt hij nooit breder dan 1000px */
}

:root {
  color-scheme: light;
  --bg: #ECEBE4;
  --surface: #FFFFFF;
  --muted: #C7C6C6;
  --accent: #BE1822;
  --text: #1C2E51;
  --text-soft: #222222;
  --border: #839DAE;
  --shadow: 0 28px 70px rgba(28, 46, 81, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #f5f4f2 100%);
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(190, 24, 34, 0.08), transparent 16%),
              radial-gradient(circle at 88% 20%, rgba(28, 46, 81, 0.06), transparent 14%);
  pointer-events: none;
}

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

  
}

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

a {
  color: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500 !important;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(131, 157, 174, 0.12);
  transform: none !important;
}

/* Compenseert de ruimte die de vaste header inneemt, zodat de inhoud
   er niet onder verdwijnt. --header-height wordt door script.js exact
   berekend; de waarde hier is enkel een veilige terugval-waarde. */
body {
  padding-top: var(--header-height, 90px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand-logo {
  width: clamp(104px, 14vw, 158px);
  max-height: 72px;
  height: auto;
  object-fit: contain;

}
/* Vlaggen taalkiezer */
.lang-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  padding: 4px;
  line-height: 1;
  border-radius: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}

.lang-switcher button:hover {
  transform: scale(1.15);
  background: #f1f1f1;
}

.lang-switcher button.active {
  background: #eef3ff;
  box-shadow: 0 0 0 2px #3b6fe0 inset;
}

/* Google Translate widget verbergen (alleen de motor gebruiken, niet hun UI) */
#google_translate_element {
  display: none;
}

body {
  top: 0 !important;
  position: static !important;
}
.goog-te-banner-frame {
  display: none !important;
}
.skiptranslate {
  display: none !important;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.main-nav a,
.nav-dropdown-toggle {
color: #222222;

  text-decoration: none;
  font-size: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--accent);
}

.nav-dropdown {
  position: relative;
}

/* Onzichtbare brug tussen het menu-woord en het uitklapmenu, zodat de
   muis-hover niet 'afbreekt' in de kleine tussenruimte. Hierdoor kan je
   direct doorklikken naar de submenu-links zonder eerst te moeten tikken. */
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.9rem;
}

.nav-dropdown-toggle::after {
  content: '▾';
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.nav-dropdown.open > .nav-dropdown-toggle::after {
  transform: rotate(-180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(28, 46, 81, 0.12);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(28, 46, 81, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  pointer-events: none;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.95rem 1.25rem;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 46, 81, 0.08);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--accent);
  background: rgba(190, 24, 34, 0.05);
}

.main-nav a.active,
.nav-dropdown-toggle.active,
.nav-dropdown-menu a.active {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 860px) {
  .main-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

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

  .nav-dropdown-menu a {
    border-bottom: 1px solid rgba(28, 46, 81, 0.08);
    padding-left: 0;
  }
}

.hero {
  padding: 4rem 0 4rem;
  min-height: calc(100vh - 76px);
  background-size: 108%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    background-size: 108%;
    background-position: 50% 50%;
  }
  100% {
    background-size: 122%;
    background-position: 58% 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
    background-size: cover;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 46, 81, 0.52), rgba(236, 235, 228, 0.18));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(190, 24, 34, 0.12), transparent 16%);
  pointer-events: none;
}

.hero-expo-poster {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3.8vw, 4.6rem);
  bottom: clamp(1.3rem, 5.2vh, 4rem);
  width: clamp(170px, 17vw, 310px);
  height: auto;
  clip-path: inset(0 2.8% 3.2% 0);
  filter: brightness(0.96) contrast(0.98);
  transform: rotate(-8deg);
  transform-origin: center;
  box-shadow: 0 20px 44px rgba(8, 8, 8, 0.3);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px - 8rem);
}

.hero-copy {
  max-width: 620px;
  color: #fff;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 1.8rem 0 2.4rem;
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow,
.section-eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  color: var(--accent);
}

.hero-actions,
.section-footer,
.social-links,
.gallery-controls {
  
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary,
.btn-secondary,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(190, 24, 34, 0.18);
}

.btn-secondary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(190, 24, 34, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 6rem 0;
}

.section-grid {
  display: grid;
  gap: 3rem;
}

.section-grid--compact {
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: center;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.05;
}

.section-copy,
.about-text p,
.highlight-text p,
.contact-panel p,
.footer-copy,
.map-card p,
.hero-panel p,
.lightbox-caption {
  color: var(--text-soft);
  line-height: 1.8;
}

.section-about {
  --bio-purple: #2f286e;
  --bio-bg: #efefef;
  background: var(--bio-bg);
  color: #080808;
  overflow: hidden;
}

.bio-composition {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.95fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.8rem);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2.5rem) 0;
}

.bio-portrait {
  position: relative;
  margin: 0;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.bio-portrait img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center center;
}

.bio-content {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 0.25rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.bio-content .section-eyebrow {
  margin: 0;
}

.bio-content h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.05;
}

.bio-intro {
  margin: 0;
  max-width: 68ch;
  color: #435766;
  font-size: 0.98rem;
  line-height: 1.7;
}

.bio-blocks {
  display: block;
}

.bio-block {
  margin: 0 0 1rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.bio-block h3 {
  margin: 0 0 0.35rem;
  padding: 0;
  border: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text);
}

.bio-block p {
  margin: 0 0 0.55rem;
  color: #435766;
  line-height: 1.68;
  font-size: 0.95rem;
}

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

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

.gallery-preview {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-card {
  position: relative;
  border: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  color: var(--text);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 32px 80px rgba(28, 46, 81, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
}

.gallery-card img,
.gallery-card .placeholder-background {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-card-label {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  background: rgba(28, 46, 81, 0.82);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gallery-card h3 {
  margin: 1rem;
  font-size: 1.15rem;
  line-height: 1.4;
}

.section-footer {
  margin-top: 2rem;
}

.section-design {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 235, 228, 0.8));
}

.design-showcase {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-image {
  width: min(1140px, calc(100% - 2rem));
  max-height: 560px;
  margin: 0 auto;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(28, 46, 81, 0.08);
}

.design-item {
  position: relative;
  overflow: hidden;
  background: hwb(0 100% 0%);
  box-shadow: 0 20px 50px rgba(28, 46, 81, 0.08);
  transition: transform 0.3s ease;
}

.design-item:hover {
  transform: translateY(-5px);
}

.design-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.design-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 46, 81, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.design-item:hover .design-overlay {
  opacity: 1;
}

.design-overlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.design-overlay p {
  margin: 0;
  font-size: 1rem;
}

.graphic-item {
  margin: 0;
  background: #fff;
  box-shadow: 0 20px 50px rgba(28, 46, 81, 0.08);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.graphic-item:hover {
  transform: translateY(-5px);
}

.graphic-item img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  background: #fff;
}

.graphic-item figcaption {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  text-align: center;
}

.graphic-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.portfolio-hero {
  padding: 6rem 0 4rem;
  background: #fff;
}

.portfolio-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
}

.portfolio-intro {
  margin: 1.5rem auto 0;
  max-width: 700px;
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1rem;
  white-space: pre-line;
}

.section-portfolio .section-header {
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid rgba(28, 46, 81, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(28, 46, 81, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px rgba(28, 46, 81, 0.12);
}

.portfolio-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.637);
  display: block;
}

.portfolio-card-content {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.portfolio-card h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.portfolio-label {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.portfolio-purpose {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.lightbox-card {
  width: min(980px, 100%);
  max-height: 90vh;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 40px 90px rgba(1, 9, 32, 0.25);
  position: relative;
}

.lightbox-content {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 60vh;
  background: #f7f6f3;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  border-radius: 50%;
  background: rgba(28, 46, 81, 0.58);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-media {
  width: 100%;
  display: grid;
  place-items: center;
}

.lightbox-media img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lightbox-info {
  padding: 2rem 2.5rem 2.5rem;
}

.lightbox-purpose {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.lightbox-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.lightbox-action {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(28, 46, 81, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}



.lightbox-action:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.highlights-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.highlight-card {
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 72px rgba(28, 46, 81, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.highlight-text {
  padding: 2rem;
}

.highlight-text h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
}

.highlight-subtitle {
  margin: 0 0 1rem;
  display: block;
  color: var(--text-soft);
  font-style: normal;
}

  .highlight-text .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 999px 999px 999px 999px / 50% 50% 40% 40%;
    background: linear-gradient(90deg, #839DAE 0%, #839DAE 35%, #839DAE 100%);
    box-shadow: 0 16px 30px rgba(61, 56, 57, 0.24);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    min-width: 220px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .highlight-text .btn-secondary:hover,
  .highlight-text .btn-secondary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(190, 24, 34, 0.32);
    background: linear-gradient(90deg, #839DAE 0%, #839DAE 40%, #839DAE 100%);
  }
.section-contact {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(236, 235, 228, 0.96) 0%, rgba(236, 235, 228, 0.86) 42%, rgba(28, 46, 81, 0.58) 100%),
    url("Afbeeldingen/tessa-schildert.jpg");
  background-size: cover;
  background-position: center;
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(28, 46, 81, 0.16));
  pointer-events: none;
}

.contact-simple {
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  gap: 1.5rem;
  width: min(620px, 100%);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 0px;
  box-shadow: 0 28px 70px rgba(28, 46, 81, 0.16);
  backdrop-filter: blur(10px);
}

.contact-content h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  color: var(--text-soft);
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(28, 46, 81, 0.12);
  border-radius: 50%;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(190, 24, 34, 0.12);
}

.social-links svg {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
}

.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;
}

.contact-visual {
  display: grid;
  align-items: center;
}

.map-card {
  min-height: 320px;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(28, 46, 81, 0.95), rgba(28, 46, 81, 0.72));
  color: #fff;
  box-shadow: 0 30px 70px rgba(28, 46, 81, 0.12);
}

.map-card span {
  display: block;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.map-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 2rem 0;
  background: rgba(28, 46, 81, 0.04);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-soft);
}

.footer-brand {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.footer-copy {
  margin: 0.35rem 0 0;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(8, 15, 25, 0.14);
  backdrop-filter: blur(1px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-card {
  width: min(1200px, 100%);
  height: auto;
  max-height: min(92vh, 960px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 46, 81, 0.08);
  box-shadow: 0 40px 90px rgba(1, 9, 32, 0.3);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-rows: minmax(0, 1fr);
  grid-template-areas: 'media details';
  align-items: stretch;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 8;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(1, 9, 32, 0.22);
}

.lightbox-media {
  grid-area: media;
  min-height: 0;
  background: #f6f4ef;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: min(70vh, 640px);
}

.lightbox-image-frame {
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: calc(90vh - 2.5rem);
  object-fit: contain;
  object-position: center center;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.lightbox-details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 1.4rem 1.6rem 1.6rem;
  background: #fffdf9;
  color: #132033;
}

/* Fix: .lightbox-info heeft van zichzelf ook nog een oude padding-regel
   (zie hierboven bij ".lightbox-info { padding: 2rem 2.5rem 2.5rem; }").
   Binnen .lightbox-details zorgde dat voor dubbele padding, waardoor
   vooral op mobiel een groot deel van de tekst onzichtbaar werd.
   Deze override neutraliseert dat, enkel binnen de kunstwerken-lightbox. */
.lightbox-details .lightbox-info {
  padding: 0;
}

.lightbox-details .lightbox-actions {
  margin-top: 0;
}

.lightbox-content {
  position: relative;
}

.lightbox-card .lightbox-nav {
  opacity: 0.82;
  z-index: 2;
  background: rgba(28, 46, 81, 0.58);
  box-shadow: 0 8px 18px rgba(1, 9, 32, 0.16);
}

.lightbox-card .lightbox-nav:hover,
.lightbox-card .lightbox-nav:focus-visible {
  opacity: 1;
  background: rgba(28, 46, 81, 0.76);
}

.lightbox-scroll-hint {
  display: none;
}

.lightbox-placeholder {
  width: 90%;
  max-width: 520px;
  height: 280px;
  background: linear-gradient(135deg, rgba(236, 235, 228, 1), rgba(199, 198, 198, 0.4));
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-size: 1rem;
  text-align: center;
  padding: 1.5rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 46, 81, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 90px rgba(1, 9, 32, 0.3);
  padding: 3rem 2rem 2rem;
}

.modal-content h2 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.modal-content .modal-subtitle {
  margin: 0 0 1.5rem;
  color: var(--secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.modal-content p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

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

.modal-image {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: none;
  background: rgba(28, 46, 81, 0.1);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

/* Eenvoudige foto-only lightbox (geen tekst) - gebruikt bij "Recente werken en sfeerbeelden"
   op de homepage, zodat een klik op een foto gewoon de volledige afbeelding groot toont,
   net zoals bij de individuele expo, groepsexpo en galerie-pagina's. */
.simple-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 32, 0.85);
  padding: 1.25rem;
}

.simple-photo-modal.active {
  display: flex;
}

.simple-photo-modal-content {
  position: relative;
  max-width: min(1100px, 96vw);
  max-height: 92dvh;
  max-height: 92vh;
}

.simple-photo-modal-content img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 92dvh;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
}

.simple-photo-modal-close {
  position: absolute;
  top: -0.9rem;
  right: -0.9rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(1, 9, 32, 0.28);
}

@media (max-width: 660px) {
  .simple-photo-modal {
    padding: 0.75rem;
  }

  .simple-photo-modal-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

.modal-body {
  padding: 3rem 2rem 2rem;
}

.modal-body h2 {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.modal-body p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* ====== CAROUSEL STYLES ====== */

.carousel {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(28, 46, 81, 0.1);
  margin-bottom: 2rem;
  touch-action: pan-y;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 16 / 10;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(28, 46, 81, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.carousel-nav:hover {
  background: rgba(28, 46, 81, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav--prev {
  left: 1rem;
}

.carousel-nav--next {
  right: 1rem;
}

/* Mobile: Keep nav buttons subtly visible */
@media (max-width: 768px) {
  .carousel-nav {
    opacity: 0.5;
    width: 40px;
    height: 40px;
    font-size: 24px;
    left: 0.5rem;
    right: 0.5rem;
  }

  .carousel-nav--prev {
    left: 0.5rem;
  }

  .carousel-nav--next {
    right: 0.5rem;
  }

  .carousel-nav:active {
    opacity: 1;
  }
}

/* Indicators (Dots) */
.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-indicator.active {
  background: #fff;
  width: 24px;
  border-radius: 999px;
}

.lightbox-info {
  display: grid;
  gap: 0.9rem;
  min-height: 0;
  width: 100%;
  align-content: start;
}

.lightbox-category {
  margin: 0;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.82rem;
}

.lightbox-header {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.lightbox-info h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

@media (max-width: 660px) {
  .lightbox-overlay {
    padding: 0.75rem;
    align-items: center;
  }

  .lightbox-card {
    height: auto;
    max-height: calc(100vh - 1.5rem);
    max-height: calc(100dvh - 1.5rem);
    grid-template-columns: 1fr;
    grid-template-areas:
      'media'
      'details';
  }

  .lightbox-media {
    min-height: 46vh;
  }

  .lightbox-media img {
    max-height: 48vh;
  }

  .lightbox-card .lightbox-nav {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.4rem;
  }

  .lightbox-prev {
    left: 0.55rem;
  }

  .lightbox-next {
    right: 0.55rem;
  }

  .lightbox-actions {
    margin: 0;
  }

  .lightbox-details {
    padding: 1.15rem 1.2rem 1.4rem;
    gap: 0.85rem;
  }

  .lightbox-info {
    gap: 0.75rem;
  }

  .lightbox-info h3 {
    font-size: 1.55rem;
  }

  .lightbox-purpose {
    margin-top: 0;
  }
}

.section-filters {
  padding: 3rem 0 1.5rem;
}

.section-gallery {
  padding-top: 1.5rem;
}

.gallery-controls {
  justify-content: flex-start;
  align-items: center;
}

.gallery-controls--preview {
  margin-bottom: 1.5rem;
}

.gallery-controls--bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(28, 46, 81, 0.1);
}

@media (max-width: 660px) {
  .gallery-controls--bottom {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }
}

.gallery-search {
  display: flex;
  flex: 0 1 320px;
  margin-left: 0.25rem;
}

.gallery-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: #1C2E51;
  color: #fff;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 16px 34px rgba(28, 46, 81, 0.14);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-search input:focus {
  border-color: rgba(190, 24, 34, 0.75);
  box-shadow: 0 18px 38px rgba(28, 46, 81, 0.2);
}

.filter-button {
  padding: 0.95rem 1.5rem;
  border: 1px solid rgba(28, 46, 81, 0.12);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px dashed rgba(28, 46, 81, 0.24);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-radius: 1rem;
  text-align: center;
}

.gallery-item {
  position: relative;
}

.gallery-card--placeholder .placeholder-background {
  background: linear-gradient(135deg, rgba(236, 235, 228, 1), rgba(199, 198, 198, 0.4));
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero--gallery {
  padding: 3rem 0 2rem;
  min-height: auto;
  background-color: #1C2E51;
}

.hero--gallery::before {
  background: linear-gradient(180deg, rgba(28, 46, 81, 0.9), rgba(28, 46, 81, 0.85));
}

.hero--gallery .hero-grid {
  min-height: auto;
  align-items: start;
  padding-top: 2rem;
}

.hero--gallery .hero-copy h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.hero--gallery .hero-copy p {
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.hero--gallery .hero-panel__card {
  padding: 1.35rem;
  background: rgba(28, 46, 81, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel__card h2 {
  margin: 0 0 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
}

.hero-panel__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.hero--gallery .btn-primary {
  background: #596c92;
  box-shadow: 0 18px 40px rgba(101, 121, 134, 0.2);
}

.hero--gallery .btn-primary:hover,
.hero--gallery .btn-primary:focus-visible {
  background: #546773;
}

.hero--gallery {
  padding: 1.35rem 0 1rem;
}

.hero--gallery .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 1rem;
  align-items: center;
  padding-top: 0.4rem;
}

.hero--gallery .hero-copy h1 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.hero--gallery .hero-copy p,
.hero-panel__card p {
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.78;
}

.hero--gallery .hero-panel__card {
  padding: 0.85rem;
}

.hero-panel__card h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.btn-subtle {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(28, 46, 81, 0.16);
  box-shadow: none;
}

.btn-subtle:hover,
.btn-subtle:focus-visible {
  background: rgba(28, 46, 81, 0.06);
  color: var(--text);
}

.section-design .btn-subtle {
  background: #BE1822;
  color: #fff;
  border-color: #BE1822;
  box-shadow: 0 18px 40px rgba(190, 24, 34, 0.18);
}

.section-design .btn-subtle:hover,
.section-design .btn-subtle:focus-visible {
  background: #BE1822;
  color: #fff;
  border-color: #BE1822;
  box-shadow: 0 20px 42px rgba(190, 24, 34, 0.24);
}

.section-design .section-header {
  align-items: center;
}

.portfolio-hero--compact {
  padding: 1.4rem 0 0.8rem;
}

.portfolio-hero--compact .portfolio-hero-copy {
  max-width: 920px;
  text-align: left;
}

.portfolio-hero--compact h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.portfolio-hero--compact .portfolio-intro {
  margin: 0.65rem 0 0.9rem;
  max-width: 620px;
  font-size: 0.86rem;
  line-height: 1.55;
  opacity: 0.76;
}

.portfolio-hero--compact .hero-actions {
  gap: 0.55rem;
}

.section-portfolio {
  padding-top: 1.6rem;
}

.section-portfolio .section-header {
  margin-bottom: 1.2rem;
}

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

.portfolio-card {
  border-radius: 0;
}

.portfolio-card img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0.6rem;
}

.portfolio-card-content {
  padding: 0.9rem;
  gap: 0.45rem;
}

.portfolio-card h3 {
  font-size: 1.05rem;
}

.portfolio-purpose {
  font-size: 0.82rem;
  line-height: 1.45;
}

.portfolio-card .portfolio-label {
  font-size: 0.66rem;
}

.portfolio-card + .portfolio-card {
  min-width: 0;
}

@media (max-width: 920px) {
  .section-grid,
  .section-grid--compact,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bio-composition {
    grid-template-columns: 1fr;
  }

  .bio-portrait img {
    width: 100%;
    max-height: 520px;
  }

  .site-header {
    padding: 0 0.5rem;
  }

  .main-nav {
    justify-content: center;
    gap: 1rem;
  }

  .hero {
    padding-top: 4rem;
    min-height: 75vh;
  }

  .hero-expo-poster {
    right: 1rem;
    bottom: 1.1rem;
    width: clamp(120px, 21vw, 185px);
  }

  .hero--gallery {
    padding: 2rem 0 1.5rem;
  }

  .hero--gallery .hero-grid {
    padding-top: 1rem;
  }
}

@media (max-width: 660px) {
  body::before {
    display: none;
  }

  .container {
    width: min(100% - 1.25rem, 1140px);
  }

  .site-header {
    padding: 0;
  }

  .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    padding: 0.35rem 0;
  }

  .brand {
    order: 1;
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 44px;
    max-height: 28px;
    margin: 0;
  }

  .lang-switcher {
    order: 2;
    flex: 0 0 auto;
    gap: 0.08rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .lang-switcher button {
    font-size: 10px;
    padding: 1px;
  }

  .main-nav {
    order: 3;
    flex: 1 1 auto;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.1rem;
    overflow-x: visible;
  }

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

  .main-nav a,
  .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.5rem;
    padding: 0.18rem 0.08rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: clamp(0.38rem, 1.85vw, 0.5rem);
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
    gap: 0.12rem;
  }

  .nav-dropdown {
    flex: 0 0 auto;
  }

  /* Uitklapmenu als kleine zwevende kaart tonen i.p.v. de rij te breken */
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: auto;
    right: 0;
    width: max-content;
    max-width: 200px;
    display: none;
    background: #fff;
    border: 1px solid rgba(28, 46, 81, 0.12);
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(28, 46, 81, 0.2);
    z-index: 30;
  }

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

  .nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: normal;
    text-align: left;
  }

  .hero {
    display: grid;
    min-height: auto;
    padding: 3.2rem 0 8.6rem;
    background-position: 52% center;
    background-size: cover;
    animation: none;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(28, 46, 81, 0.12), rgba(28, 46, 81, 0.05) 45%, rgba(28, 46, 81, 0.4));
  }

  .hero-grid {
    min-height: auto;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
  }

  .hero-copy p {
    margin: 1.1rem 0 1.45rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .eyebrow,
  .section-eyebrow,
  .portfolio-label,
  .lightbox-category {
    letter-spacing: 0.15em;
    font-size: 0.72rem;
  }

  .hero-actions,
  .section-footer {
    width: auto;
    gap: 0.45rem;
  }

  .btn-primary,
  .btn-secondary,
  .filter-button {
    width: auto;
    min-height: 2.2rem;
    padding: 0.52rem 0.72rem;
    font-size: 0.72rem;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 8px 18px rgba(190, 24, 34, 0.13);
  }

  .gallery-card h3,
  .highlight-text h3,
  .design-card h3,
  .design-overlay h3 {
    font-size: 1.1rem;
  }

  .hero-actions,
  .social-links,
  .section-footer {
    justify-content: flex-start;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.6rem;
  }

  .section-header h2,
  .contact-content h2,
  .bio-content h2 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
    line-height: 1.08;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-gallery-preview {
    padding-top: 0.5rem;
  }

  .section-gallery-preview .section-header {
    margin-bottom: 1.1rem;
  }

  .bio-composition {
    gap: 1.4rem;
    padding: 0.5rem 0;
  }

  .bio-portrait img {
    width: 100%;
    max-height: 390px;
    object-fit: cover;
    object-position: center top;
  }

  .bio-content {
    gap: 0.75rem;
  }

  .bio-intro,
  .bio-block p,
  .portfolio-intro,
  .section-copy,
  .highlight-text p,
  .contact-list li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-expo-poster {
    right: 0.75rem;
    bottom: 0.8rem;
    width: clamp(108px, 34vw, 150px);
    transform: rotate(-5deg);
    box-shadow: 0 12px 28px rgba(8, 8, 8, 0.28);
  }

  .highlights-grid,
  .gallery-preview,
  .design-showcase,
  .graphic-grid,
  .portfolio-grid {
    gap: 0.55rem;
  }

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

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

  .gallery-grid,
  .section-gallery .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .highlight-card,
  .gallery-card,
  .design-item,
  .graphic-item,
  .portfolio-card,
  .carousel {
    border-radius: 0;
    box-shadow: 0 16px 36px rgba(28, 46, 81, 0.1);
  }

  .highlight-card img,
  .portfolio-card img {
    height: auto;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .gallery-card img,
  .gallery-card .placeholder-background {
    aspect-ratio: 1 / 1;
  }

  .gallery-card h3 {
    margin: 0;
    padding: 0.38rem 0.28rem 0.42rem;
    font-size: 0.56rem;
    line-height: 1.1;
    background: #fff;
    overflow-wrap: anywhere;
  }

  .highlight-text,
  .portfolio-card-content {
    padding: 0.48rem;
  }

  .highlight-text h3 {
    margin-bottom: 0.2rem;
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .highlight-subtitle {
    margin-bottom: 0.35rem;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .highlight-text p:not(.highlight-subtitle) {
    display: none;
  }

  .highlight-text .btn-secondary {
    min-width: 0;
    width: 100%;
    padding: 0.42rem 0.3rem;
    font-size: 0.54rem;
    letter-spacing: 0;
    box-shadow: none;
  }

  .design-item img,
  .graphic-item img {
    height: auto;
    max-height: 330px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .design-overlay {
    position: static;
    align-items: flex-start;
    padding: 1rem;
    opacity: 1;
    text-align: left;
    background: #1C2E51;
  }

  .feature-image {
    width: min(100% - 1.25rem, 1140px);
    max-height: 340px;
    margin: 0 auto;
  }

  .contact-content {
    width: 100%;
    padding: 1.25rem;
    gap: 1.1rem;
  }

  .contact-list {
    gap: 0.7rem;
  }

  .contact-list a {
    overflow-wrap: anywhere;
  }

  .social-links {
    gap: 0.7rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .section-filters {
    padding: 1.4rem 0 0.8rem;
  }

  .section-gallery {
    padding-top: 1rem;
  }

  .gallery-controls {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.32rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .gallery-controls::-webkit-scrollbar {
    display: none;
  }

  .gallery-controls .filter-button {
    flex: 0 0 auto;
    min-height: 2rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.64rem;
    white-space: nowrap;
  }

  .gallery-controls .filter-button[data-filter="abstracte landschappen"] {
    grid-column: auto;
  }

  .gallery-search {
    flex: 0 0 8rem;
    margin-left: 0;
  }

  .gallery-search input {
    min-height: 2rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.68rem;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: clamp(400px, 70vh, 700px);
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: zoomInSlow 8s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190, 24, 34, 0.15) 0%, rgba(28, 46, 81, 0.1) 100%);
  pointer-events: none;
}

/* Section Grid with Large Image */
.section-grid--with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-image-large {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.6s ease-out forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-image-large img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-image-large:hover img {
  transform: scale(1.03);
}

.section-content {
  padding: 1rem 0;
}

.section-content h1 {
  margin-top: 0;
}

/* Gallery Grid Styles */
.section-gallery {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(190, 24, 34, 0.02) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(28, 46, 81, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.gallery-item--1 { animation-delay: 0.1s; }
.gallery-item--2 { animation-delay: 0.15s; }
.gallery-item--3 { animation-delay: 0.2s; }
.gallery-item--4 { animation-delay: 0.25s; }
.gallery-item--5 { animation-delay: 0.3s; }
.gallery-item--6 { animation-delay: 0.35s; }
.gallery-item--7 { animation-delay: 0.4s; }
.gallery-item--8 { animation-delay: 0.45s; }

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(190, 24, 34, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(190, 24, 34, 0) 0%, rgba(28, 46, 81, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Animations */
@keyframes zoomInSlow {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-grid--with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .hero--gallery {
    padding: 2.6rem 0 1.8rem;
  }

  .hero--gallery .hero-grid {
    display: grid;
    gap: 1.2rem;
  }

  .hero--gallery .hero-panel__card {
    padding: 1rem;
  }

  .lightbox-overlay {
    padding: 0;
    align-items: center;
  }

  .lightbox-card {
    height: auto;
    max-height: 100vh;
    max-height: 100dvh;
    width: 100%;
  }

  .lightbox-close {
    position: fixed;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 80;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(1, 9, 32, 0.28);
    font-size: 1.55rem;
    line-height: 1;
  }

  .lightbox-details {
    max-height: 42vh;
    overflow-y: auto;
    padding: 1rem;
  }

  .lightbox-actions {
    gap: 0.55rem;
  }

  .lightbox-action {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 8px;
  }

  .modal-content {
    width: calc(100% - 1rem);
    max-height: calc(100vh - 1rem);
    max-height: calc(100dvh - 1rem);
    padding: 3.5rem 1rem 1.2rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 660px) {
  .hero--gallery {
    padding: 0.85rem 0 0.75rem;
  }

  .hero--gallery .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 34%);
    gap: 0.55rem;
    padding-top: 0;
  }

  .hero--gallery .hero-copy h1 {
    font-size: 1.25rem;
    line-height: 1.05;
  }

  .hero--gallery .hero-copy p,
  .hero-panel__card p {
    margin: 0.35rem 0 0;
    font-size: 0.58rem;
    line-height: 1.28;
  }

  .hero--gallery .hero-panel {
    gap: 0.45rem;
  }

  .hero--gallery .hero-panel__card {
    padding: 0.48rem;
  }

  .hero-panel__card h2 {
    font-size: 0.82rem;
    margin-bottom: 0.15rem;
  }

  .hero--gallery .btn-primary {
    min-height: 1.85rem;
    padding: 0.38rem 0.5rem;
    font-size: 0.58rem;
    box-shadow: none;
  }

  .section-design .section-header {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
  }

  .section-design .section-header h2 {
    font-size: 1.55rem;
  }

  .section-design .btn-subtle {
    flex: 0 0 auto;
    min-height: 2rem;
    padding: 0.42rem 0.55rem;
    font-size: 0.58rem;
  }

  .portfolio-hero--compact {
    padding: 0.95rem 0 0.45rem;
  }

  .portfolio-hero--compact h1 {
    font-size: 1.45rem;
  }

  .portfolio-hero--compact .portfolio-intro {
    margin: 0.35rem 0 0.55rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .portfolio-hero--compact .hero-actions {
    gap: 0.35rem;
  }

  .portfolio-hero--compact .btn-primary,
  .portfolio-hero--compact .btn-secondary {
    min-height: 1.95rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.6rem;
  }

  .section-portfolio {
    padding-top: 0.85rem;
  }

  .section-portfolio .section-header {
    margin-bottom: 0.65rem;
  }

  .section-portfolio .section-header h2 {
    font-size: 1.45rem;
  }

  .section-portfolio .section-copy {
    font-size: 0.68rem;
    line-height: 1.35;
  }

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

  .portfolio-card img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 0.28rem;
  }

  .portfolio-card-content {
    padding: 0.36rem;
    gap: 0.18rem;
  }

  .portfolio-card .portfolio-label {
    font-size: 0.46rem;
    letter-spacing: 0.08em;
  }

  .portfolio-card h3 {
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .portfolio-purpose {
    display: none;
  }

  .lightbox-content .lightbox-media,
  .lightbox-media {
    min-height: 54vh;
  }

  .lightbox-media img {
    width: auto;
    max-width: 100%;
    max-height: 54vh;
    object-fit: contain;
  }
}
/* De glazen plaat truc */
.foto-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Zorgt dat de plaat precies over de foto valt, net als de overlay */
    height: calc(100% - 40px); 
    z-index: 5; /* Staat boven de foto, maar onder de screenshot-overlay */
    background: transparent;
}

.highlight-text h3 {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.highlight-subtitle {
  font-size: 0.88rem;
  line-height: 1.35;
}

.highlight-text .btn-secondary {
  min-width: 0;
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  background: #1C2E51;
  color: #fff;
  box-shadow: 0 10px 22px rgba(28, 46, 81, 0.16);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.highlight-text .btn-secondary:hover,
.highlight-text .btn-secondary:focus-visible {
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(190, 24, 34, 0.2);
}

@media (max-width: 660px) {
  .highlight-text h3 {
    font-size: 0.74rem;
    font-weight: 800;
  }

  .highlight-subtitle {
    font-size: 0.52rem;
    line-height: 1.12;
  }

  .highlight-text .btn-secondary {
    width: auto;
    min-height: 1.55rem;
    padding: 0.34rem 0.5rem;
    font-size: 0.5rem;
    line-height: 1;
  }

  .section-gallery .gallery-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
  }

  .section-filters .gallery-controls {
    flex-wrap: wrap;
    overflow: visible;
    gap: 0.34rem;
  }

  .section-filters .gallery-controls .filter-button {
    flex: 0 0 auto;
  }

  .section-filters .gallery-search {
    order: 2;
    flex: 1 0 100%;
    width: 100%;
    margin-top: 0.15rem;
  }

  .section-filters .gallery-search input {
    width: 100%;
    min-height: 1.95rem;
    padding: 0.42rem 0.6rem;
    font-size: 0.66rem;
  }
}
/* Zorgt dat het logo, menu en de vlaggen op één lijn staan */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

/* Styling voor de vlaggenknopjes */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 15px; /* Ruimte tussen het menu en de vlaggen */
}

.lang-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.1); /* Maakt de vlag subtiel groter bij aanwijzen */
}

.lang-btn.active {
    opacity: 1;
    border-bottom: 2px solid var(--accent, #000); /* Geeft de actieve taal een subtiel streepje */
}
/* Dit dwingt 4 kolommen af op de computer */
.gallery-preview.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important; /* Ruimte tussen de foto's */
}

@media (max-width: 660px) {
  .gallery-preview.gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }
}

/* Deze foto enkel tonen op mobiel, niet op de computer */
.gallery-card--mobile-only {
  display: none;
}

@media (max-width: 660px) {
  .gallery-card--mobile-only {
    display: block;
  }
}

/* ============================================================
   MOBIEL HAMBURGERMENU
   Alles hieronder valt binnen media queries met max-width.
   Op desktop/tablet (breder dan 860px) verandert er NIETS:
   de hamburgerknop blijft display:none en de bestaande
   .main-nav / .nav-dropdown-menu regels van hierboven blijven
   gewoon actief zoals ze al waren.
   ============================================================ */

.hamburger-btn,
.nav-close-btn {
  display: none;
}

@media (max-width: 860px) {

  /* --- Hamburger-icoon rechtsboven in de header --- */
  .hamburger-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    order: 3;
    flex: 0 0 auto;
    z-index: 120;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger-btn span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  /* Animatie naar een kruisje wanneer het menu open staat */
  .hamburger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-inner {
    flex-wrap: nowrap !important;
  }

  /* --- Donkere overlay achter het uitklapmenu --- */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 46, 81, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 95;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* --- Het uitklapmenu zelf: vloeiend inschuivend paneel --- */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    height: 100vh !important;
    width: min(80vw, 320px) !important;
    max-width: 320px;
    margin: 0 !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 1.25rem 1.5rem 2rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    box-shadow: -18px 0 48px rgba(28, 46, 81, 0.24);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 110;
    order: initial !important;
    flex-wrap: nowrap !important;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  /* Sluitknop bovenaan het uitklapmenu */
  .nav-close-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 38px;
    height: 38px;
    margin-bottom: 0.75rem;
    border: none;
    background: none;
    color: var(--text);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.9rem 0.15rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    background: none !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(28, 46, 81, 0.1) !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .nav-dropdown {
    width: 100%;
    flex: 0 0 auto !important;
    position: static !important;
  }

  .nav-dropdown::after {
    content: none;
  }

  .nav-dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(28, 46, 81, 0.04) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    display: none !important;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }

  .nav-dropdown-menu a {
    padding: 0.75rem 0.5rem 0.75rem 1.25rem !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(28, 46, 81, 0.07) !important;
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  /* Voorkomt scrollen van de pagina op de achtergrond terwijl het menu open is */
  body.nav-open {
    overflow: hidden;
  }
}

/* Op erg kleine schermen het paneel iets breder t.o.v. het scherm */
@media (max-width: 380px) {
  .main-nav {
    width: min(86vw, 320px) !important;
  }
}

/* ============================================================
   AFBEELDINGSBESCHERMING
   Onzichtbare beschermlaag over de afbeeldingen bij:
   - Kunstwerken (.gallery-card, ook gebruikt bij "Recente werken"
     op de homepage)
   - Grafisch design (.portfolio-card)
   - Sfeerbeelden / hoogtepunten (.highlight-card)
   Dit maakt het lastiger om een afbeelding te slepen of via
   lang-indrukken (mobiel) op te slaan. Rechtsklikken wordt al
   apart uitgeschakeld via script.js. Let op: 100% waterdicht
   is dit nooit (via de browser-broncode blijft een afbeelding
   altijd terug te vinden), maar dit ontmoedigt het gewone
   slepen/opslaan sterk.
   ============================================================ */
.gallery-card,
.portfolio-card,
.highlight-card {
  position: relative;
}

.gallery-card img,
.portfolio-card img,
.highlight-card img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.gallery-card::after,
.portfolio-card::after,
.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
}

/* ============================================================
   UNIFORME FOOTER
   Zelfde opbouw op elke pagina: logo, "Tessa's Creations",
   "Art is an investment", contactgegevens en copyright.
   Consistente NAP-gegevens (naam/adres/telefoon) op elke
   pagina zijn ook goed voor lokale SEO.
   ============================================================ */
.footer-inner {
  flex-wrap: wrap;
  row-gap: 1.1rem;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo {
  width: 44px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.25rem;
  margin: 0;
  font-style: normal;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--accent);
}

.footer-rights {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .footer-rights {
    white-space: normal;
  }
}

@media (max-width: 660px) {
  .footer-brand-block {
    gap: 0.65rem;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}
