@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500&display=swap');

:root {
  --color-primary: #2C2C2C;
  --color-secondary: #C9A96E;
  --color-secondary-hover: #A8854A;
  --color-bg: #F9F6F2;
  --color-bg-dark: #2C2C2C;
  --color-bg-light: #F0EBE3;
  --color-text: #1A1A1A;
  --color-text-light: #5A5A5A;
  --color-text-muted: #8A8A8A;
  --color-white: #FFFFFF;
  --color-border: #E0D8CE;
  --color-success: #4A7C59;
  --color-warning: #C07A2A;
  --color-error: #B94040;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --header-height: 72px;
  --transition: 0.22s ease;
  --container-max: 1200px;
  --container-pad: 1.25rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  margin-bottom: 1em;
  color: var(--color-text);
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-secondary-hover); }
a:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

table {
  border-collapse: collapse;
  width: 100%;
}

section { display: block; }
article { display: block; }
main { display: block; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6,
.section--dark p {
  color: var(--color-white);
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}

.section-title {
  color: var(--color-text);
  margin-bottom: 0.5em;
}

.section--dark .section-title {
  color: var(--color-white);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.section--dark .section-intro {
  color: rgba(255,255,255,0.75);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--color-secondary);
  color: var(--color-text);
  border-color: var(--color-secondary);
}

.btn--primary:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  color: var(--color-text);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn--secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--dark .btn--outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.section--dark .btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--large {
  font-size: 0.95rem;
  padding: 1rem 2rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(44,44,44,0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-sm);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-img--footer {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-lg) var(--container-pad);
}

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

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-link {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--color-secondary);
}

.nav-link--active {
  color: var(--color-secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.80) 0%, rgba(44,44,44,0.50) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
}

.hero--page,
.hero--small {
  min-height: 340px;
  padding-top: var(--header-height);
}

.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  padding-top: var(--header-height);
  overflow: hidden;
}

.page-hero--compact {
  min-height: 220px;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.88) 0%, rgba(44,44,44,0.60) 100%);
  z-index: 1;
}

.page-hero__inner,
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.page-hero__titel,
.page-hero__title {
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: 0.4em;
}

.page-hero__intro,
.page-hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 0;
}

.trust-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

.trust-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.trust-bar__badge {
  flex-shrink: 0;
}

.trust-bar__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.trust-bar__text,
.trust-bar__claim {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0;
  max-width: 560px;
}

.trust-bar__link {
  flex-shrink: 0;
}

.diensten {
  background-color: var(--color-bg);
}

.diensten__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.dienst-kaart {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.dienst-kaart:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dienst-kaart--accent {
  border-color: var(--color-secondary);
  background-color: #FFFBF5;
}

.dienst-kaart__icon {
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.dienst-kaart__titel {
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.dienst-kaart__omschrijving {
  color: var(--color-text-light);
  font-size: 0.97rem;
  margin-bottom: 0;
}

.dienst-kaart__lijst {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.dienst-kaart__lijst li {
  font-size: 0.92rem;
  color: var(--color-text);
  padding-left: 1.2em;
  position: relative;
}

.dienst-kaart__lijst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.dienst-kaart__cta {
  margin-top: var(--space-xs);
  align-self: flex-start;
}

.combinatie {
  background-color: var(--color-bg-dark);
}

.combinatie__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.combinatie__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.combinatie__titel {
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.combinatie__omschrijving {
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-md);
}

.combinatie__tekst {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.combinatie__visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.combinatie__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.keune-sectie {
  background-color: var(--color-bg);
}

.keune-sectie__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.keune-sectie__visual {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.keune-sectie__img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.keune-sectie__badge {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.keune-sectie__titel {
  margin-bottom: var(--space-xs);
}

.keune-sectie__omschrijving {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.keune-sectie__tekst {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.keune-sectie__acties {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-top: var(--space-xs);
}

.revital-sectie {
  background-color: var(--color-bg-light);
}

.revital-sectie__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.revital-sectie__tekst {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.revital-sectie__titel {
  margin-bottom: var(--space-xs);
}

.revital-sectie__omschrijving {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.revital-sectie__visual {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.revital-sectie__img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.openingstijden {
  background-color: var(--color-bg);
}

.openingstijden__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.openingstijden__kaart {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.openingstijden__kaart--afspraak {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.openingstijden__kaart--afspraak h3,
.openingstijden__kaart--afspraak p {
  color: var(--color-text);
}

.openingstijden__subtitel {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-secondary);
}

.openingstijden__tabel {
  width: 100%;
}

.openingstijden__tabel td {
  padding: 0.45rem 0;
  font-size: 0.93rem;
  color: var(--color-text);
}

.openingstijden__tabel td:first-child {
  font-weight: var(--fw-medium);
  width: 55%;
}

.openingstijden__tabel td:last-child {
  text-align: right;
}

.openingstijden__tabel tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-border);
}

.openingstijden__status {
  font-weight: var(--fw-medium);
}

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

.openingstijden__adres {
  margin-bottom: var(--space-md);
}

.openingstijden__adres p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.2em;
}

.openingstijden__socials {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.social-link:hover {
  opacity: 0.75;
  transform: scale(1.08);
}

.social-link__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.social-link--footer .social-link__icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.social-link--footer:hover .social-link__icon {
  opacity: 1;
}

.openingstijden__contact-btn {
  margin-bottom: var(--space-sm);
}

.openingstijden__afspraak-tekst {
  font-size: 0.97rem;
  margin-bottom: var(--space-md);
}

.openingstijden__beleid-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

.openingstijden__kaart--afspraak .openingstijden__beleid-note {
  color: rgba(26,26,26,0.65);
}

.vacature-banner {
  background-color: var(--color-bg-dark);
  padding: var(--space-xl) 0;
}

.vacature-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.vacature-banner__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.vacature-banner__tekst {
  flex: 1;
}

.vacature-banner__titel {
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.vacature-banner__omschrijving {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

.vacature-banner__cta {
  flex-shrink: 0;
}

.site-footer {
  background-color: var(--color-primary);
  color: rgba(255,255,255,0.82);
  padding-top: var(--space-xl);
}

.footer-inner,
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-col,
.footer__nav,
.footer__contact,
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col--brand,
.footer__brand {
  align-items: flex-start;
}

.footer-col__titel,
.footer-col__title,
.footer__nav-title,
.footer-nav__titel,
.footer-heading,
.footer-contact__titel {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5em;
}

.footer-logo,
.footer__logo,
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--space-xs);
}

.footer-logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-tagline,
.footer__tagline,
.footer-logo__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 0;
  font-style: italic;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav__lijst,
.footer__nav-list,
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav__link,
.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav__link:hover,
.footer__nav-link:hover {
  color: var(--color-secondary);
}

.footer-address,
.footer-adres,
.footer-contact__adres,
.footer__adres,
.footer__uren {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
}

.footer-address p,
.footer-adres p,
.footer-contact__adres p,
.footer__adres p {
  margin-bottom: 0.2em;
  color: rgba(255,255,255,0.70);
}

.footer-contact,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-hours,
.footer-tijden,
.footer__uren {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-socials,
.footer__socials {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-xs);
}

.footer-cta,
.footer__cta {
  padding: var(--space-sm) 0;
  text-align: center;
}

.footer-copy,
.footer__copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 0;
}

.footer-bottom,
.footer__bottom {
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom__inner,
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.footer-bottom__copy,
.footer-bottom__tekst,
.footer-bottom__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.footer-bottom__link,
.footer-legal-link,
.footer__legal-link,
.legal-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom__link:hover,
.footer-legal-link:hover,
.footer__legal-link:hover,
.legal-link:hover {
  color: var(--color-secondary);
}

.mobile-cta-bar,
.mobile-sticky,
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: 60px;
  background-color: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
}

.mobile-cta-bar__btn,
.mobile-sticky__btn,
.mobile-sticky-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.mobile-cta-bar__btn--bel,
.mobile-sticky__btn--bel,
.mobile-sticky__btn--call,
.mobile-sticky-bar__btn--bel {
  background-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  border-right: 1px solid rgba(255,255,255,0.10);
}

.mobile-cta-bar__btn--bel:hover,
.mobile-sticky__btn--bel:hover,
.mobile-sticky__btn--call:hover,
.mobile-sticky-bar__btn--bel:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--color-white);
}

.mobile-cta-bar__btn--boek,
.mobile-sticky__btn--boek,
.mobile-sticky__btn--book,
.mobile-sticky-bar__btn--boek {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.mobile-cta-bar__btn--boek:hover,
.mobile-sticky__btn--boek:hover,
.mobile-sticky__btn--book:hover,
.mobile-sticky-bar__btn--boek:hover {
  background-color: var(--color-secondary-hover);
  color: var(--color-text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info__blok {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.contact-info__blok--accent {
  border-color: var(--color-secondary);
  background-color: #FFFBF5;
}

.contact-info__titel {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: var(--space-xs);
}

.contact-info__adres p,
.contact-info__note {
  font-size: 0.93rem;
  color: var(--color-text-light);
  margin-bottom: 0.2em;
}

.contact-form-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form__titel {
  font-size: 1.4rem;
  margin-bottom: 0.25em;
}

.contact-form__intro {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-form__privacynote {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.18);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  background-color: var(--color-secondary);
  color: var(--color-text);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition);
  align-self: flex-start;
}

.form-submit:hover {
  background-color: var(--color-secondary-hover);
}

.form-submit:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.portfolio-filter__btn {
  background-color: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-light);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.portfolio-filter__btn:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.portfolio-filter__btn--active {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-text);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-bg-light);
}

.portfolio-item__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.portfolio-item:hover .portfolio-item__img {
  transform: scale(1.04);
}

.portfolio-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.80), transparent);
  color: var(--color-white);
  font-size: 0.82rem;
  padding: 0.75rem var(--space-sm);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.portfolio-item:hover .portfolio-item__caption {
  transform: translateY(0);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin-top: var(--space-xs);
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background-color: rgba(255,255,255,0.12);
  color: var(--color-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background-color: rgba(255,255,255,0.25);
}

.lightbox__close {
  top: -52px;
  right: 0;
}

.lightbox__prev {
  left: -52px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: -52px;
  top: 50%;
  transform: translateY(-50%);
}

.prijslijst__blokken {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.prijslijst__blok {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.prijslijst__categorie {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  padding: var(--space-sm) var(--space-lg);
  margin: 0;
}

.prijslijst__tabel,
.prijzen-tabel {
  width: 100%;
  border-collapse: collapse;
}

.prijslijst__tabel tr,
.prijzen-tabel tr {
  border-bottom: 1px solid var(--color-border);
}

.prijslijst__tabel tr:last-child,
.prijzen-tabel tr:last-child {
  border-bottom: none;
}

.prijslijst__tabel td,
.prijzen-tabel td {
  padding: 0.7rem var(--space-lg);
  font-size: 0.92rem;
  color: var(--color-text);
}

.prijslijst__tabel td:first-child,
.prijzen-tabel td:first-child {
  font-weight: var(--fw-medium);
  width: 50%;
}

.prijslijst__tabel td:not(:first-child),
.prijzen-tabel td:not(:first-child) {
  text-align: right;
  color: var(--color-text-light);
}

.prijzen-tabel-wrapper {
  overflow-x: auto;
}

.prijzen-tabel-note,
.prijslijst__opmerking {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: var(--space-sm) var(--space-lg);
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-light);
}

.prijslijst-intro {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.boeking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.boeking__widget-kolom {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.boeking__widget-wrapper {
  min-height: 420px;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.boeking__widget-placeholder {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.boeking__widget-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.boeking__widget-tekst {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.boeking__widget-subtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.boeking__widget-acties {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
}

.boeking__info-kolom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.boeking__info-kaart {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.boeking__info-kaart--beleid {
  border-color: var(--color-secondary);
}

.boeking__info-titel {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
}

.boeking__stappenlijst {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.boeking__stap {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.boeking__stap-nr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-text);
  font-weight: var(--fw-bold);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.boeking__beleid-lijst {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.boeking__beleid-icoon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  margin-right: 0.5em;
  flex-shrink: 0;
}

.boeking__beleid-icoon--ok {
  background-color: #D4EDDA;
  color: var(--color-success);
}

.boeking__beleid-icoon--let {
  background-color: #FFF3CD;
  color: var(--color-warning);
}

.boeking__beleid-tekst {
  font-size: 0.9rem;
  color: var(--color-text);
}

.boeking__beleid-contact {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.annulering,
.annulering-beleid {
  background-color: var(--color-bg-light);
}

.annulering__tekst,
.annulering-beleid__tekst {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.annulering__titel,
.annulering-beleid__titel {
  margin-bottom: 0.5em;
}

.annulering__kaart {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.annulering-grid,
.beleid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.annulering-kaart,
.beleid-kaart {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  box-shadow: var(--shadow-sm);
}

.annulering-kaart--groen {
  border-left: 4px solid var(--color-success);
}

.annulering-kaart--oranje {
  border-left: 4px solid var(--color-warning);
}

.annulering-kaart--rood {
  border-left: 4px solid var(--color-error);
}

.annulering-kaart__icon {
  font-size: 1.5rem;
  margin-bottom: 0.25em;
}

.annulering-kaart__titel,
.beleid-kaart__titel {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 1rem;
  margin-bottom: 0;
}

.annulering-kaart__tekst,
.beleid-kaart__tekst {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.annulering__acties {
  text-align: center;
  margin-top: var(--space-lg);
}

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.kaart-sectie {
  background-color: var(--color-bg);
}

.legal-container {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-xl) var(--container-pad);
}

.legal-nav {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
}

.legal-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  list-style: none;
}

.legal-nav__link {
  font-size: 0.88rem;
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-nav__link:hover {
  color: var(--color-secondary-hover);
}

.legal-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block--highlight {
  background-color: #FFFBF5;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.legal-block__titel {
  font-size: 1.35rem;
  margin-bottom: 0.5em;
}

.legal-block__subtitel {
  font-size: 1.1rem;
  margin-top: var(--space-sm);
  margin-bottom: 0.4em;
}

.legal-block__intro {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.legal-block__lijst {
  list-style: disc;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-block__lijst li {
  font-size: 0.92rem;
  color: var(--color-text-light);
}

.legal-block__adres {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.legal-block__voetnoot {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}

.legal-update {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

@media (min-width: 600px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .trust-bar__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }

  .trust-bar__text {
    flex: 1;
  }

  .annulering-grid,
  .beleid-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .portfolio-item__img {
    height: 220px;
  }

  .vacature-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
    --header-height: 80px;
  }

  .main-nav {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    overflow: visible;
    align-items: center;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: row;
    gap: 0.2rem;
    align-items: center;
  }

  .nav-link {
    font-size: 0.88rem;
    padding: 0.4rem 0.7rem;
    border-bottom: none;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.82);
  }

  .nav-link:hover {
    background-color: rgba(255,255,255,0.06);
    color: var(--color-secondary);
  }

  .nav-link--active {
    color: var(--color-secondary);
  }

  .header-cta {
    display: inline-block;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-cta-bar,
  .mobile-sticky,
  .mobile-sticky-bar {
    display: none;
  }

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

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

  .combinatie__img {
    height: 380px;
  }

  .keune-sectie__inner {
    grid-template-columns: 1fr 1fr;
  }

  .keune-sectie__img {
    height: 320px;
  }

  .revital-sectie__inner {
    grid-template-columns: 1fr 1fr;
  }

  .revital-sectie__img {
    height: 280px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .boeking__grid {
    grid-template-columns: 1.6fr 1fr;
  }

  .keune-sectie__acties {
    flex-direction: row;
  }

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

  .portfolio-item__img {
    height: 240px;
  }
}

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

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

  .portfolio-item__img {
    height: 260px;
  }

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

@media (min-width: 1280px) {
  :root {
    --container-pad: 2.5rem;
  }

  .hero__content {
    max-width: 860px;
  }

  .combinatie__img {
    height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}