/* ========================================================================
   CCM Broeren · hakken-voegen.com
   Modern construction/masonry site — Dutch
   ======================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-bg:        #faf8f4;
  --c-bg-alt:    #f0ebe1;
  --c-ink:       #1a1817;
  --c-ink-soft:  #4a4541;
  --c-muted:     #7d756e;
  --c-line:      #e5ddd0;
  --c-card:      #ffffff;
  --c-accent:    #b6451c;
  --c-accent-d:  #8a3414;
  --c-accent-l:  #e85a25;
  --c-dark:      #1f1c1a;
  --c-dark-2:    #2a2624;

  --shadow-sm: 0 1px 2px rgba(20,15,10,.04), 0 1px 3px rgba(20,15,10,.06);
  --shadow-md: 0 4px 12px rgba(20,15,10,.06), 0 2px 4px rgba(20,15,10,.04);
  --shadow-lg: 0 24px 48px -12px rgba(20,15,10,.18), 0 8px 16px rgba(20,15,10,.06);

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --wrap: 1200px;
  --wrap-sm: 880px;

  --t-fast: 180ms cubic-bezier(.4,0,.2,1);
  --t-base: 280ms cubic-bezier(.4,0,.2,1);
  --t-slow: 480ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font: inherit; }

/* ---------- Utility ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--c-muted); }
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.eyebrow a { color: inherit; opacity: .8; }
.eyebrow a:hover { opacity: 1; text-decoration: underline; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--c-dark); color: #fff; padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn--primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, var(--shadow-md);
}
.btn--primary:hover { background: var(--c-accent-d); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--ghost { color: var(--c-ink); border: 1.5px solid var(--c-line); }
.btn--ghost:hover { border-color: var(--c-ink); transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,244,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.site-header.is-scrolled { border-color: var(--c-line); box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; gap: 24px;
  max-width: var(--wrap); margin: 0 auto;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: -.01em;
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--c-dark); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; letter-spacing: .02em;
}
.brand__name {
  display: flex; flex-direction: column; line-height: 1.1;
  font-size: 1.05rem;
}
.brand__tag {
  font-weight: 400; font-size: .78rem; color: var(--c-muted);
  letter-spacing: 0; margin-top: 2px;
}
.brand--footer .brand__mark { background: var(--c-accent); }
.brand--footer .brand__tag { color: rgba(255,255,255,.55); }
.brand--footer .brand__name { color: #fff; }

.nav {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.nav__link {
  padding: 8px 14px; border-radius: 999px;
  font-weight: 500; font-size: .92rem;
  color: var(--c-ink-soft);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--c-ink); background: var(--c-bg-alt); }
.nav__link.is-active { color: var(--c-accent); background: rgba(182,69,28,.07); }
.nav__cta { margin-left: 10px; }
.nav__cta span { display: inline; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--c-ink);
}
.nav-toggle:hover { background: var(--c-bg-alt); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }

@media (max-width: 1100px) {
  .nav__link { font-size: .86rem; padding: 6px 10px; }
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 72px 0 0 0;
    background: var(--c-bg);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 24px 24px 40px;
    transform: translateX(100%);
    transition: transform var(--t-base);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link {
    padding: 16px 0; font-size: 1.1rem;
    border-bottom: 1px solid var(--c-line);
    border-radius: 0;
  }
  .nav__link.is-active { background: transparent; }
  .nav__cta { margin: 24px 0 0; align-self: flex-start; }
  .nav-toggle.is-open .nav-toggle__open { display: none; }
  .nav-toggle.is-open .nav-toggle__close { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--c-dark);
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at top right, rgba(232,90,37,.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(232,90,37,.10), transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent 0 60px,
      rgba(255,255,255,.025) 60px 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 22px,
      rgba(255,255,255,.025) 22px 23px
    ),
    linear-gradient(180deg, #1f1c1a 0%, #2a2624 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.04), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.03), transparent 40%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 880px; }
.hero .eyebrow { color: var(--c-accent-l); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic; font-weight: 600;
  color: var(--c-accent-l);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero__lead strong { color: #fff; font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero__cta .btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }

.hero__trust {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .92rem; color: rgba(255,255,255,.78);
}
.hero__trust svg { width: 18px; height: 18px; color: var(--c-accent-l); }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head--small { margin-bottom: 36px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-head__lead { color: var(--c-ink-soft); font-size: 1.08rem; }

/* ---------- Services grid ---------- */
.services { background: var(--c-bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 920px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--c-accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-base);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(182,69,28,.08);
  color: var(--c-accent);
  margin-bottom: 18px;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem; line-height: 1.2;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.service-card__text {
  color: var(--c-ink-soft);
  font-size: .95rem; line-height: 1.55;
  flex-grow: 1; margin-bottom: 18px;
}
.service-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9rem;
  color: var(--c-accent);
}
.service-card__more svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.service-card:hover .service-card__more svg { transform: translateX(4px); }

/* ---------- Trust strip ---------- */
.trust { background: var(--c-dark); color: #fff; padding: 64px 0; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
@media (max-width: 720px) { .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.trust__item p {
  color: rgba(255,255,255,.7);
  font-size: .92rem; line-height: 1.5;
  max-width: 220px;
}
.trust__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1; letter-spacing: -.025em;
  color: var(--c-accent-l);
  margin-bottom: 8px;
}
.trust__num small { font-size: .55em; color: rgba(255,255,255,.6); margin-left: 4px; font-weight: 400; }

/* ---------- Process ---------- */
.process { background: var(--c-bg-alt); }
.process-steps {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
@media (max-width: 920px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
.process-steps li {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  border: 1px solid transparent;
  transition: border-color var(--t-base);
}
.process-steps li:hover { border-color: var(--c-line); }
.process-steps__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.process-steps h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem; line-height: 1.25;
  margin-bottom: 8px;
}
.process-steps p { color: var(--c-ink-soft); font-size: .94rem; line-height: 1.55; }

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(ellipse at top, rgba(232,90,37,.18), transparent 60%),
    var(--c-dark);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta p { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 32px; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--c-bg-alt);
  padding: 88px 0 72px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 20px;
  max-width: 880px;
}
.page-hero__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 720px;
  margin-bottom: 32px;
}
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Prose (service pages) ---------- */
.prose { padding: 64px 0; }
.prose__inner { max-width: var(--wrap-sm); margin: 0 auto; }
.prose-block { margin-bottom: 56px; }
.prose-block:last-child { margin-bottom: 0; }
.prose-block h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.2; letter-spacing: -.015em;
  margin-bottom: 16px;
  position: relative; padding-left: 22px;
}
.prose-block h2::before {
  content: '';
  position: absolute; left: 0; top: .42em;
  width: 12px; height: 12px;
  background: var(--c-accent);
  border-radius: 3px;
}
.prose-block p {
  color: var(--c-ink-soft);
  font-size: 1.04rem; line-height: 1.75;
  margin-bottom: 14px;
}
.prose-block p:last-child { margin-bottom: 0; }
.prose-block strong { color: var(--c-ink); font-weight: 600; }

.check-list { list-style: none; padding: 0; margin-top: 8px; }
.check-list li {
  position: relative;
  padding: 6px 0 6px 32px;
  color: var(--c-ink-soft);
  font-size: 1rem; line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px;
  background: var(--c-accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center/14px no-repeat;
  border-radius: 4px;
}

/* ---------- Related ---------- */
.related { background: var(--c-bg-alt); }
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 920px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  display: flex; flex-direction: column;
  border: 1px solid var(--c-line);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.related-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem; line-height: 1.2;
  margin-bottom: 8px;
}
.related-card p { color: var(--c-ink-soft); font-size: .9rem; line-height: 1.5; flex-grow: 1; margin-bottom: 14px; }
.related-card__more { color: var(--c-accent); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }
.related-card__more svg { width: 14px; height: 14px; }

/* ---------- Contact page ---------- */
.contact { padding: 80px 0; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }

.contact__info h2,
.contact-form h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem; line-height: 1.2; letter-spacing: -.015em;
  margin-bottom: 24px;
}
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.contact-list li:first-child { padding-top: 0; }
.contact-list__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(182,69,28,.08); color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list__label {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--c-muted);
  margin-bottom: 2px;
}
.contact-list__value {
  font-size: 1.08rem; font-weight: 500; color: var(--c-ink);
  font-style: normal;
}
a.contact-list__value:hover { color: var(--c-accent); }
.contact__note {
  margin-top: 28px; padding: 22px;
  background: var(--c-bg-alt); border-radius: var(--radius);
}
.contact__note h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin-bottom: 8px; }

.contact-form {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
@media (max-width: 560px) { .contact-form { padding: 26px 22px; border-radius: var(--radius); } }
.contact-form > p.muted { margin-bottom: 28px; }
.field { display: block; margin-bottom: 18px; }
.field__label {
  display: block;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  font-size: .98rem;
  color: var(--c-ink);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--c-accent); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note { margin-top: 14px; font-size: .82rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark-2); color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
  margin-top: 0;
}
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr; gap: 36px; } }
.site-footer h4 {
  color: #fff; font-size: .92rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-list { list-style: none; padding: 0; }
.footer-list li { padding: 5px 0; }
.footer-list a { transition: color var(--t-fast); }
.footer-list a:hover { color: var(--c-accent-l); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--c-accent-l); flex-shrink: 0; margin-top: 2px; }
.footer-contact address { font-style: normal; line-height: 1.5; }

.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer p.muted { color: rgba(255,255,255,.5); font-size: .94rem; max-width: 380px; }
.site-footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.site-footer__bottom .muted { color: rgba(255,255,255,.4); }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
  .fade-up.is-visible { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .nav-toggle, .cta, .hero__cta, .page-hero__cta { display: none; }
  body { color: #000; background: #fff; }
  a { color: inherit; text-decoration: underline; }
}


/* === Logo + mobile menu fix (added for CCM / Hakken & Voegen) === */
.brand__logo { height: 44px; width: auto; display: block; }
@media (max-width: 920px) {
  /* backdrop-filter on the header broke position:fixed for the mobile nav panel */
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--c-bg); }
  .brand__logo { height: 38px; }
}

/* === Nóvare Digital footer credit (middle of footer bar) === */
.footer-credit { display:flex; align-items:center; gap:8px; font-size:.78rem; color:rgba(255,255,255,.5); }
.footer-credit a { display:inline-flex; align-items:center; }
.footer-novare-logo { height:50px; width:auto; opacity:.85; transition:opacity .2s; }
.footer-credit a:hover .footer-novare-logo { opacity:1; }
@media (max-width:760px){ .site-footer__bottom { justify-content:center; text-align:center; } }

