
  :root {
    --bg: #181513;
    --bg-2: #1f1c19;
    --bg-3: #26221e;
    --gold: #b89968;
    --gold-2: #a88758;
    --gold-soft: #c7ad82;
    --text: #ffffff;
    --text-dim: #c9c4be;
    --text-muted: #8a8580;
    --line: rgba(255,255,255,0.08);
    --card: #211d19;
    --card-2: #1c1814;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* === HERO === */
  .hero {
    position: relative;
    min-height: 760px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-bg {
    position: absolute; inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #14110e;
  }
  .hero-bg video,
  .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(20,17,14,0.78) 0%, rgba(20,17,14,0.55) 40%, rgba(20,17,14,0.85) 100%),
      linear-gradient(90deg, rgba(20,17,14,0.55), rgba(20,17,14,0.15));
    z-index: -1;
  }

  /* === NAV === */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
  }
  .nav-logo img { height: 44px; width: auto; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-links a {
    color: #fff;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
  }
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--gold);
  }
  .nav-links a:hover { color: var(--gold-soft); }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-gold {
    background: var(--gold);
    color: #1a1714;
    box-shadow: 0 6px 20px -8px rgba(184,153,104,0.6);
  }
  .btn-gold:hover { background: var(--gold-soft); }
  .btn-dark {
    background: #1a1714;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .btn-dark:hover { background: #252118; }
  .btn-arrow {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }
  .btn-gold .btn-arrow { background: rgba(0,0,0,0.18); }
  .btn-dark .btn-arrow { background: var(--gold); color: #1a1714; }
  .btn-nav {
    background: var(--gold);
    color: #1a1714;
    padding: 14px 26px;
    font-size: 11px;
    border-radius: 6px;
    letter-spacing: 0.12em;
  }
  .btn-nav:hover { background: var(--gold-soft); }

  /* === HERO CONTENT === */
  .hero-content {
    padding: 90px 0 120px;
    max-width: 720px;
  }
  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-title .gold {
    color: var(--gold);
    display: block;
  }
  .hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.55;
  }
  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* === FEATURES STRIP === */
  .features {
    background: var(--bg-2);
    padding: 48px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
  }
  .feature-icon svg { width: 20px; height: 20px; }
  .feature h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #fff;
  }
  .feature p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* === OVER ONS === */
  .over-ons {
    background: #f5f3ef;
    color: #1d1a16;
    padding: 100px 0;
  }
  .over-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
  }
  .eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 18px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
    color: #1d1a16;
    text-wrap: balance;
  }
  .over-ons p {
    color: #4a4640;
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
  }
  .over-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 24px 60px -30px rgba(0,0,0,0.4);
  }
  .over-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* === DIENSTEN === */
  .diensten {
    background: var(--bg);
    padding: 100px 0;
  }
  .section-head {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-head .eyebrow { color: var(--gold); }
  .section-head .section-title { color: #fff; }
  .diensten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .dienst-card {
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .dienst-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184,153,104,0.4);
  }
  .dienst-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #2a2520;
  }
  .dienst-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .dienst-card:hover .dienst-img img { transform: scale(1.05); }
  .dienst-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .dienst-icon {
    width: 36px; height: 36px;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .dienst-icon svg { width: 100%; height: 100%; }
  .dienst-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
  }
  .dienst-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
  }
  .lees-meer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 8px;
  }
  .lees-meer:hover { color: var(--gold-soft); }
  .lees-meer .arrow {
    transition: transform 0.2s;
  }
  .lees-meer:hover .arrow { transform: translateX(4px); }

  /* === PROJECTEN === */
  .projecten {
    background: var(--bg-2);
    padding: 100px 0;
  }
  .projecten-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .projecten-head .eyebrow { color: var(--gold); }
  .projecten-head .section-title { color: #fff; margin-bottom: 0; }
  .projecten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .project {
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .project img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .project:hover img { transform: scale(1.06); }
  .project::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
    opacity: 0;
    transition: opacity 0.25s;
  }
  .project:hover::after { opacity: 1; }

  /* === CTA BANNER === */
  .cta-banner {
    background: var(--bg);
    padding: 60px 0;
  }
  .cta-inner {
    background: var(--gold);
    border-radius: 10px;
    padding: 44px 56px;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #1d1814;
  }
  .cta-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cta-icon svg { width: 28px; height: 28px; color: #1d1814; }
  .cta-text { flex: 1; }
  .cta-text .eyebrow {
    color: rgba(29,24,20,0.6);
    margin-bottom: 6px;
  }
  .cta-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0;
  }
  .cta-text p {
    font-size: 14px;
    color: rgba(29,24,20,0.75);
  }
  .cta-banner .btn-dark {
    flex-shrink: 0;
    background: #1d1814;
    color: #fff;
  }

  /* === FOOTER === */
  footer {
    background: var(--bg);
    padding: 70px 0 30px;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand img { height: 40px; margin-bottom: 20px; }
  .footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .socials {
    display: flex;
    gap: 10px;
  }
  .social {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s;
  }
  .social:hover { color: var(--gold); border-color: var(--gold); }
  .social svg { width: 14px; height: 14px; }
  .footer-col h5 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-col .contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 14px;
  }
  .contact-row svg {
    width: 16px; height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
  }
  .footer-cert {
    display: block;
    width: 84px;
    height: auto;
    margin-top: 22px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom-links {
    display: flex;
    gap: 24px;
  }

  /* === MOBILE NAV === */
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    color: #fff;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-toggle .icon-close { display: none; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle .icon-open { display: none; }
  body.menu-open .nav-toggle .icon-close { display: block; }

  /* Tablet */
  @media (max-width: 1024px) {
    .container { padding: 0 28px; }
    .nav-links { gap: 26px; font-size: 13px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .diensten-grid { grid-template-columns: repeat(2, 1fr); }
    .projecten-grid { grid-template-columns: repeat(2, 1fr); }
    .over-grid { gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav { padding: 18px 0; }
    .nav-logo img { height: 36px; }
    .nav-toggle { display: inline-flex; }

    .nav-links {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(20,17,14,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 88px 24px 32px;
      transform: translateY(-100%);
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 90;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
    }
    body.menu-open .nav-links { transform: translateY(0); }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 16px 4px;
      font-size: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      letter-spacing: 0.1em;
    }
    .nav-links a.active::after { display: none; }
    .nav-links a.active { color: var(--gold); }
    .nav-links li:last-child a {
      border-bottom: none;
      margin-top: 14px;
      text-align: center;
      background: var(--gold);
      color: #1a1714;
      border-radius: 6px;
      padding: 14px;
    }

    /* Hero */
    .hero { min-height: 620px; }
    .hero-content { padding: 50px 0 90px; }
    .hero-title { font-size: clamp(40px, 11vw, 64px); }
    .hero-sub { font-size: 16px; margin-bottom: 32px; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-cta .btn { justify-content: center; padding: 16px 22px; }

    /* Features */
    .features { padding: 36px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 22px; }
    .feature { gap: 14px; }

    /* Sections */
    .over-ons { padding: 64px 0; }
    .over-grid { grid-template-columns: 1fr; gap: 36px; }
    .section-title { font-size: clamp(28px, 8vw, 40px); }
    .over-ons p { font-size: 15px; }
    .over-ons .btn { width: 100%; justify-content: center; }

    .diensten { padding: 64px 0; }
    .section-head { margin-bottom: 36px; }
    .diensten-grid { grid-template-columns: 1fr; gap: 18px; }
    .dienst-body { padding: 22px 22px 24px; }

    .projecten { padding: 64px 0; }
    .projecten-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
    .projecten-head .btn { width: 100%; justify-content: center; }
    .projecten-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* CTA */
    .cta-banner { padding: 40px 0; }
    .cta-inner {
      flex-direction: column;
      align-items: flex-start;
      padding: 32px 26px;
      gap: 20px;
      text-align: left;
    }
    .cta-icon { width: 52px; height: 52px; }
    .cta-text h3 { font-size: 26px; }
    .cta-banner .btn { width: 100%; justify-content: center; }

    /* Footer */
    footer { padding: 50px 0 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      font-size: 12px;
    }
    .footer-bottom-links { flex-wrap: wrap; gap: 18px; }
  }

  @media (max-width: 380px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 38px; }
  }


/* ============ NAV DROPDOWN ============ */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a { cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.nav-links .has-sub > a::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  margin-left: 4px;
  opacity: 0.7;
}
.nav-links .submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: rgba(20,17,14,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  z-index: 80;
}
.nav-links .has-sub:hover .submenu,
.nav-links .has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-links .submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-dim);
  border-radius: 5px;
  white-space: nowrap;
}
.nav-links .submenu a:hover { background: rgba(184,153,104,0.1); color: var(--gold); }

/* Dark nav variant for subpages where hero is shorter */
.site-header {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

/* ============ PAGE HERO (smaller, for subpages) ============ */
.page-hero {
  position: relative;
  padding: 80px 0 80px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background: #14110e;
}
.page-hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.6), rgba(20,17,14,0.85));
  z-index: -1;
}
.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { color: var(--gold-soft); }
.page-hero .breadcrumb .sep { color: var(--text-muted); }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 14px; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: 800px;
  text-wrap: balance;
}

/* ============ CONTENT (article) ============ */
.content {
  background: var(--bg);
  padding: 80px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.article {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
}
.article > * + * { margin-top: 22px; }
.article .lead {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.article h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: #fff;
  margin-top: 44px;
  text-wrap: balance;
}
.article h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 28px;
}
.article p { color: var(--text-dim); }
.article strong { color: #fff; font-weight: 600; }
.article ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.article ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text-dim);
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 2px;
  background: var(--gold);
}
.article .feature-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid var(--line);
}
.article .feature-image img,
.article .feature-image video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}
.article .article-cta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 26px;
}
.sidebar-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-dim);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.sidebar-list a::after {
  content: "→";
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.sidebar-list a:hover {
  background: rgba(184,153,104,0.08);
  color: #fff;
}
.sidebar-list a:hover::after { opacity: 1; transform: translateX(2px); }
.sidebar-list a.active {
  background: rgba(184,153,104,0.12);
  color: var(--gold);
}
.sidebar-list a.active::after { opacity: 1; }

.sidebar-cta {
  background: var(--gold);
  border-radius: 10px;
  padding: 28px 26px;
  color: #1d1814;
}
.sidebar-cta h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
  color: #1d1814;
}
.sidebar-cta p {
  font-size: 13.5px;
  color: rgba(29,24,20,0.78);
  margin-bottom: 18px;
  line-height: 1.55;
}
.sidebar-cta .btn { width: 100%; justify-content: center; background: #1d1814; color: #fff; }

/* Mobile content */
@media (max-width: 980px) {
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .content { padding: 56px 0; }
  .page-hero { padding: 56px 0; }

  /* Mobile nav: accordion-style submenus */
  .nav-links .has-sub > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links .has-sub > a::after {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin: 0 6px 4px 0;
    opacity: 0.7;
    transition: transform 0.22s ease;
  }
  .nav-links .has-sub.expanded > a::after {
    transform: rotate(-135deg);
    margin-bottom: -2px;
  }
  .nav-links .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links .has-sub.expanded .submenu {
    max-height: 600px;
    padding: 4px 0 10px 14px;
  }
  /* Neutralise desktop hover/focus transform on mobile, otherwise focus on
     the parent link shifts the submenu off-screen to the left. */
  .nav-links .has-sub:hover .submenu,
  .nav-links .has-sub:focus-within .submenu {
    transform: none;
  }
  .nav-links .has-sub:not(.expanded):focus-within .submenu,
  .nav-links .has-sub:not(.expanded):hover .submenu {
    max-height: 0;
    padding: 0;
  }
  .nav-links .submenu a {
    padding: 12px 4px;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    letter-spacing: 0.04em;
    text-transform: none;
  }
  .nav-links .submenu a:hover { color: var(--gold); background: transparent; }
}
